AVX-512: Implemented CMOV for 512-bit vectors
[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->isOSWindows() && !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::FP_TO_SINT,         MVT::v8i16, Custom);
1154
1155     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1156     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1157     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1158     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1159
1160     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1161     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1162
1163     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1164
1165     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1166     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1167
1168     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1169     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1170
1171     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1172     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1173
1174     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1175
1176     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1177     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1178     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1179     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1180
1181     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1182     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1183     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1184
1185     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1186     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1187     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1188     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1189
1190     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1191     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1192     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1193     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1194     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1195     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1196     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1197     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1199     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1200     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1201     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1202
1203     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1204       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1205       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1206       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1208       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1209       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1210     }
1211
1212     if (Subtarget->hasInt256()) {
1213       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1214       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1215       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1216       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1217
1218       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1219       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1220       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1221       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1222
1223       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1224       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1225       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1226       // Don't lower v32i8 because there is no 128-bit byte mul
1227
1228       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1229
1230       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1231     } else {
1232       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1233       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1234       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1235       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1236
1237       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1238       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1239       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1240       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1241
1242       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1243       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1244       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1245       // Don't lower v32i8 because there is no 128-bit byte mul
1246     }
1247
1248     // In the customized shift lowering, the legal cases in AVX2 will be
1249     // recognized.
1250     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1251     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1252
1253     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1254     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1255
1256     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1257
1258     // Custom lower several nodes for 256-bit types.
1259     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1260              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1261       MVT VT = (MVT::SimpleValueType)i;
1262
1263       // Extract subvector is special because the value type
1264       // (result) is 128-bit but the source is 256-bit wide.
1265       if (VT.is128BitVector())
1266         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1267
1268       // Do not attempt to custom lower other non-256-bit vectors
1269       if (!VT.is256BitVector())
1270         continue;
1271
1272       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1273       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1274       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1275       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1276       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1277       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1278       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1279     }
1280
1281     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1282     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1283       MVT VT = (MVT::SimpleValueType)i;
1284
1285       // Do not attempt to promote non-256-bit vectors
1286       if (!VT.is256BitVector())
1287         continue;
1288
1289       setOperationAction(ISD::AND,    VT, Promote);
1290       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1291       setOperationAction(ISD::OR,     VT, Promote);
1292       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1293       setOperationAction(ISD::XOR,    VT, Promote);
1294       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1295       setOperationAction(ISD::LOAD,   VT, Promote);
1296       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1297       setOperationAction(ISD::SELECT, VT, Promote);
1298       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1299     }
1300   }
1301
1302   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1303     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1304     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1305     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1306     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1307
1308     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1309     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1310
1311     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1312     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1313     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1314     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1315     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1316     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1317
1318     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1319     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1320     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1321     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1322     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1323     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1324
1325     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1326     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1327     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1328     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1329     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1330     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1331     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1332     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1333     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1334
1335     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1336     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1337     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1338     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1339     if (Subtarget->is64Bit()) {
1340       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1341       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1342       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1343       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1344     }
1345     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1346     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1347     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1348     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1349     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1350     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1351     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1352     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1353
1354     setOperationAction(ISD::TRUNCATE,           MVT::i1, Legal);
1355     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1356     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1357     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1358     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1359     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1360     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1361     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1362     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1363     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1364     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1365     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1366
1367     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1368     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1369     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1370     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1371     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1372
1373     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1374     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1375
1376     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1377
1378     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1379     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1380     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1381     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1382     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1383
1384     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1385     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1386
1387     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1388     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1389
1390     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1391
1392     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1393     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1394
1395     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1396     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1397
1398     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1399     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1400
1401     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1402     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1403     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1404     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1405     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1406     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1407
1408     // Custom lower several nodes.
1409     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1410              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1411       MVT VT = (MVT::SimpleValueType)i;
1412
1413       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1414       // Extract subvector is special because the value type
1415       // (result) is 256/128-bit but the source is 512-bit wide.
1416       if (VT.is128BitVector() || VT.is256BitVector())
1417         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1418
1419       if (VT.getVectorElementType() == MVT::i1)
1420         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1421
1422       // Do not attempt to custom lower other non-512-bit vectors
1423       if (!VT.is512BitVector())
1424         continue;
1425
1426       if ( EltSize >= 32) {
1427         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1428         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1429         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1430         setOperationAction(ISD::VSELECT,             VT, Legal);
1431         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1432         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1433         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1434       }
1435     }
1436     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1437       MVT VT = (MVT::SimpleValueType)i;
1438
1439       // Do not attempt to promote non-256-bit vectors
1440       if (!VT.is512BitVector())
1441         continue;
1442
1443       setOperationAction(ISD::SELECT, VT, Promote);
1444       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1445     }
1446   }// has  AVX-512
1447
1448   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1449   // of this type with custom code.
1450   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1451            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1452     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1453                        Custom);
1454   }
1455
1456   // We want to custom lower some of our intrinsics.
1457   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1458   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1459   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1460
1461   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1462   // handle type legalization for these operations here.
1463   //
1464   // FIXME: We really should do custom legalization for addition and
1465   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1466   // than generic legalization for 64-bit multiplication-with-overflow, though.
1467   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1468     // Add/Sub/Mul with overflow operations are custom lowered.
1469     MVT VT = IntVTs[i];
1470     setOperationAction(ISD::SADDO, VT, Custom);
1471     setOperationAction(ISD::UADDO, VT, Custom);
1472     setOperationAction(ISD::SSUBO, VT, Custom);
1473     setOperationAction(ISD::USUBO, VT, Custom);
1474     setOperationAction(ISD::SMULO, VT, Custom);
1475     setOperationAction(ISD::UMULO, VT, Custom);
1476   }
1477
1478   // There are no 8-bit 3-address imul/mul instructions
1479   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1480   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1481
1482   if (!Subtarget->is64Bit()) {
1483     // These libcalls are not available in 32-bit.
1484     setLibcallName(RTLIB::SHL_I128, 0);
1485     setLibcallName(RTLIB::SRL_I128, 0);
1486     setLibcallName(RTLIB::SRA_I128, 0);
1487   }
1488
1489   // Combine sin / cos into one node or libcall if possible.
1490   if (Subtarget->hasSinCos()) {
1491     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1492     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1493     if (Subtarget->isTargetDarwin()) {
1494       // For MacOSX, we don't want to the normal expansion of a libcall to
1495       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1496       // traffic.
1497       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1498       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1499     }
1500   }
1501
1502   // We have target-specific dag combine patterns for the following nodes:
1503   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1504   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1505   setTargetDAGCombine(ISD::VSELECT);
1506   setTargetDAGCombine(ISD::SELECT);
1507   setTargetDAGCombine(ISD::SHL);
1508   setTargetDAGCombine(ISD::SRA);
1509   setTargetDAGCombine(ISD::SRL);
1510   setTargetDAGCombine(ISD::OR);
1511   setTargetDAGCombine(ISD::AND);
1512   setTargetDAGCombine(ISD::ADD);
1513   setTargetDAGCombine(ISD::FADD);
1514   setTargetDAGCombine(ISD::FSUB);
1515   setTargetDAGCombine(ISD::FMA);
1516   setTargetDAGCombine(ISD::SUB);
1517   setTargetDAGCombine(ISD::LOAD);
1518   setTargetDAGCombine(ISD::STORE);
1519   setTargetDAGCombine(ISD::ZERO_EXTEND);
1520   setTargetDAGCombine(ISD::ANY_EXTEND);
1521   setTargetDAGCombine(ISD::SIGN_EXTEND);
1522   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1523   setTargetDAGCombine(ISD::TRUNCATE);
1524   setTargetDAGCombine(ISD::SINT_TO_FP);
1525   setTargetDAGCombine(ISD::SETCC);
1526   if (Subtarget->is64Bit())
1527     setTargetDAGCombine(ISD::MUL);
1528   setTargetDAGCombine(ISD::XOR);
1529
1530   computeRegisterProperties();
1531
1532   // On Darwin, -Os means optimize for size without hurting performance,
1533   // do not reduce the limit.
1534   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1535   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1536   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1537   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1538   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1539   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1540   setPrefLoopAlignment(4); // 2^4 bytes.
1541
1542   // Predictable cmov don't hurt on atom because it's in-order.
1543   PredictableSelectIsExpensive = !Subtarget->isAtom();
1544
1545   setPrefFunctionAlignment(4); // 2^4 bytes.
1546 }
1547
1548 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1549   if (!VT.isVector()) return MVT::i8;
1550   return VT.changeVectorElementTypeToInteger();
1551 }
1552
1553 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1554 /// the desired ByVal argument alignment.
1555 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1556   if (MaxAlign == 16)
1557     return;
1558   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1559     if (VTy->getBitWidth() == 128)
1560       MaxAlign = 16;
1561   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1562     unsigned EltAlign = 0;
1563     getMaxByValAlign(ATy->getElementType(), EltAlign);
1564     if (EltAlign > MaxAlign)
1565       MaxAlign = EltAlign;
1566   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1567     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1568       unsigned EltAlign = 0;
1569       getMaxByValAlign(STy->getElementType(i), EltAlign);
1570       if (EltAlign > MaxAlign)
1571         MaxAlign = EltAlign;
1572       if (MaxAlign == 16)
1573         break;
1574     }
1575   }
1576 }
1577
1578 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1579 /// function arguments in the caller parameter area. For X86, aggregates
1580 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1581 /// are at 4-byte boundaries.
1582 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1583   if (Subtarget->is64Bit()) {
1584     // Max of 8 and alignment of type.
1585     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1586     if (TyAlign > 8)
1587       return TyAlign;
1588     return 8;
1589   }
1590
1591   unsigned Align = 4;
1592   if (Subtarget->hasSSE1())
1593     getMaxByValAlign(Ty, Align);
1594   return Align;
1595 }
1596
1597 /// getOptimalMemOpType - Returns the target specific optimal type for load
1598 /// and store operations as a result of memset, memcpy, and memmove
1599 /// lowering. If DstAlign is zero that means it's safe to destination
1600 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1601 /// means there isn't a need to check it against alignment requirement,
1602 /// probably because the source does not need to be loaded. If 'IsMemset' is
1603 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1604 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1605 /// source is constant so it does not need to be loaded.
1606 /// It returns EVT::Other if the type should be determined using generic
1607 /// target-independent logic.
1608 EVT
1609 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1610                                        unsigned DstAlign, unsigned SrcAlign,
1611                                        bool IsMemset, bool ZeroMemset,
1612                                        bool MemcpyStrSrc,
1613                                        MachineFunction &MF) const {
1614   const Function *F = MF.getFunction();
1615   if ((!IsMemset || ZeroMemset) &&
1616       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1617                                        Attribute::NoImplicitFloat)) {
1618     if (Size >= 16 &&
1619         (Subtarget->isUnalignedMemAccessFast() ||
1620          ((DstAlign == 0 || DstAlign >= 16) &&
1621           (SrcAlign == 0 || SrcAlign >= 16)))) {
1622       if (Size >= 32) {
1623         if (Subtarget->hasInt256())
1624           return MVT::v8i32;
1625         if (Subtarget->hasFp256())
1626           return MVT::v8f32;
1627       }
1628       if (Subtarget->hasSSE2())
1629         return MVT::v4i32;
1630       if (Subtarget->hasSSE1())
1631         return MVT::v4f32;
1632     } else if (!MemcpyStrSrc && Size >= 8 &&
1633                !Subtarget->is64Bit() &&
1634                Subtarget->hasSSE2()) {
1635       // Do not use f64 to lower memcpy if source is string constant. It's
1636       // better to use i32 to avoid the loads.
1637       return MVT::f64;
1638     }
1639   }
1640   if (Subtarget->is64Bit() && Size >= 8)
1641     return MVT::i64;
1642   return MVT::i32;
1643 }
1644
1645 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1646   if (VT == MVT::f32)
1647     return X86ScalarSSEf32;
1648   else if (VT == MVT::f64)
1649     return X86ScalarSSEf64;
1650   return true;
1651 }
1652
1653 bool
1654 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1655   if (Fast)
1656     *Fast = Subtarget->isUnalignedMemAccessFast();
1657   return true;
1658 }
1659
1660 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1661 /// current function.  The returned value is a member of the
1662 /// MachineJumpTableInfo::JTEntryKind enum.
1663 unsigned X86TargetLowering::getJumpTableEncoding() const {
1664   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1665   // symbol.
1666   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1667       Subtarget->isPICStyleGOT())
1668     return MachineJumpTableInfo::EK_Custom32;
1669
1670   // Otherwise, use the normal jump table encoding heuristics.
1671   return TargetLowering::getJumpTableEncoding();
1672 }
1673
1674 const MCExpr *
1675 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1676                                              const MachineBasicBlock *MBB,
1677                                              unsigned uid,MCContext &Ctx) const{
1678   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1679          Subtarget->isPICStyleGOT());
1680   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1681   // entries.
1682   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1683                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1684 }
1685
1686 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1687 /// jumptable.
1688 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1689                                                     SelectionDAG &DAG) const {
1690   if (!Subtarget->is64Bit())
1691     // This doesn't have SDLoc associated with it, but is not really the
1692     // same as a Register.
1693     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1694   return Table;
1695 }
1696
1697 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1698 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1699 /// MCExpr.
1700 const MCExpr *X86TargetLowering::
1701 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1702                              MCContext &Ctx) const {
1703   // X86-64 uses RIP relative addressing based on the jump table label.
1704   if (Subtarget->isPICStyleRIPRel())
1705     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1706
1707   // Otherwise, the reference is relative to the PIC base.
1708   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1709 }
1710
1711 // FIXME: Why this routine is here? Move to RegInfo!
1712 std::pair<const TargetRegisterClass*, uint8_t>
1713 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1714   const TargetRegisterClass *RRC = 0;
1715   uint8_t Cost = 1;
1716   switch (VT.SimpleTy) {
1717   default:
1718     return TargetLowering::findRepresentativeClass(VT);
1719   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1720     RRC = Subtarget->is64Bit() ?
1721       (const TargetRegisterClass*)&X86::GR64RegClass :
1722       (const TargetRegisterClass*)&X86::GR32RegClass;
1723     break;
1724   case MVT::x86mmx:
1725     RRC = &X86::VR64RegClass;
1726     break;
1727   case MVT::f32: case MVT::f64:
1728   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1729   case MVT::v4f32: case MVT::v2f64:
1730   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1731   case MVT::v4f64:
1732     RRC = &X86::VR128RegClass;
1733     break;
1734   }
1735   return std::make_pair(RRC, Cost);
1736 }
1737
1738 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1739                                                unsigned &Offset) const {
1740   if (!Subtarget->isTargetLinux())
1741     return false;
1742
1743   if (Subtarget->is64Bit()) {
1744     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1745     Offset = 0x28;
1746     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1747       AddressSpace = 256;
1748     else
1749       AddressSpace = 257;
1750   } else {
1751     // %gs:0x14 on i386
1752     Offset = 0x14;
1753     AddressSpace = 256;
1754   }
1755   return true;
1756 }
1757
1758 //===----------------------------------------------------------------------===//
1759 //               Return Value Calling Convention Implementation
1760 //===----------------------------------------------------------------------===//
1761
1762 #include "X86GenCallingConv.inc"
1763
1764 bool
1765 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1766                                   MachineFunction &MF, bool isVarArg,
1767                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1768                         LLVMContext &Context) const {
1769   SmallVector<CCValAssign, 16> RVLocs;
1770   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1771                  RVLocs, Context);
1772   return CCInfo.CheckReturn(Outs, RetCC_X86);
1773 }
1774
1775 SDValue
1776 X86TargetLowering::LowerReturn(SDValue Chain,
1777                                CallingConv::ID CallConv, bool isVarArg,
1778                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1779                                const SmallVectorImpl<SDValue> &OutVals,
1780                                SDLoc dl, SelectionDAG &DAG) const {
1781   MachineFunction &MF = DAG.getMachineFunction();
1782   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1783
1784   SmallVector<CCValAssign, 16> RVLocs;
1785   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1786                  RVLocs, *DAG.getContext());
1787   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1788
1789   SDValue Flag;
1790   SmallVector<SDValue, 6> RetOps;
1791   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1792   // Operand #1 = Bytes To Pop
1793   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1794                    MVT::i16));
1795
1796   // Copy the result values into the output registers.
1797   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1798     CCValAssign &VA = RVLocs[i];
1799     assert(VA.isRegLoc() && "Can only return in registers!");
1800     SDValue ValToCopy = OutVals[i];
1801     EVT ValVT = ValToCopy.getValueType();
1802
1803     // Promote values to the appropriate types
1804     if (VA.getLocInfo() == CCValAssign::SExt)
1805       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1806     else if (VA.getLocInfo() == CCValAssign::ZExt)
1807       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1808     else if (VA.getLocInfo() == CCValAssign::AExt)
1809       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1810     else if (VA.getLocInfo() == CCValAssign::BCvt)
1811       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1812
1813     // If this is x86-64, and we disabled SSE, we can't return FP values,
1814     // or SSE or MMX vectors.
1815     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1816          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1817           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1818       report_fatal_error("SSE register return with SSE disabled");
1819     }
1820     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1821     // llvm-gcc has never done it right and no one has noticed, so this
1822     // should be OK for now.
1823     if (ValVT == MVT::f64 &&
1824         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1825       report_fatal_error("SSE2 register return with SSE2 disabled");
1826
1827     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1828     // the RET instruction and handled by the FP Stackifier.
1829     if (VA.getLocReg() == X86::ST0 ||
1830         VA.getLocReg() == X86::ST1) {
1831       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1832       // change the value to the FP stack register class.
1833       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1834         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1835       RetOps.push_back(ValToCopy);
1836       // Don't emit a copytoreg.
1837       continue;
1838     }
1839
1840     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1841     // which is returned in RAX / RDX.
1842     if (Subtarget->is64Bit()) {
1843       if (ValVT == MVT::x86mmx) {
1844         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1845           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1846           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1847                                   ValToCopy);
1848           // If we don't have SSE2 available, convert to v4f32 so the generated
1849           // register is legal.
1850           if (!Subtarget->hasSSE2())
1851             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1852         }
1853       }
1854     }
1855
1856     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1857     Flag = Chain.getValue(1);
1858     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1859   }
1860
1861   // The x86-64 ABIs require that for returning structs by value we copy
1862   // the sret argument into %rax/%eax (depending on ABI) for the return.
1863   // Win32 requires us to put the sret argument to %eax as well.
1864   // We saved the argument into a virtual register in the entry block,
1865   // so now we copy the value out and into %rax/%eax.
1866   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1867       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1868     MachineFunction &MF = DAG.getMachineFunction();
1869     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1870     unsigned Reg = FuncInfo->getSRetReturnReg();
1871     assert(Reg &&
1872            "SRetReturnReg should have been set in LowerFormalArguments().");
1873     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1874
1875     unsigned RetValReg
1876         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1877           X86::RAX : X86::EAX;
1878     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1879     Flag = Chain.getValue(1);
1880
1881     // RAX/EAX now acts like a return value.
1882     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1883   }
1884
1885   RetOps[0] = Chain;  // Update chain.
1886
1887   // Add the flag if we have it.
1888   if (Flag.getNode())
1889     RetOps.push_back(Flag);
1890
1891   return DAG.getNode(X86ISD::RET_FLAG, dl,
1892                      MVT::Other, &RetOps[0], RetOps.size());
1893 }
1894
1895 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1896   if (N->getNumValues() != 1)
1897     return false;
1898   if (!N->hasNUsesOfValue(1, 0))
1899     return false;
1900
1901   SDValue TCChain = Chain;
1902   SDNode *Copy = *N->use_begin();
1903   if (Copy->getOpcode() == ISD::CopyToReg) {
1904     // If the copy has a glue operand, we conservatively assume it isn't safe to
1905     // perform a tail call.
1906     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1907       return false;
1908     TCChain = Copy->getOperand(0);
1909   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1910     return false;
1911
1912   bool HasRet = false;
1913   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1914        UI != UE; ++UI) {
1915     if (UI->getOpcode() != X86ISD::RET_FLAG)
1916       return false;
1917     HasRet = true;
1918   }
1919
1920   if (!HasRet)
1921     return false;
1922
1923   Chain = TCChain;
1924   return true;
1925 }
1926
1927 MVT
1928 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1929                                             ISD::NodeType ExtendKind) const {
1930   MVT ReturnMVT;
1931   // TODO: Is this also valid on 32-bit?
1932   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1933     ReturnMVT = MVT::i8;
1934   else
1935     ReturnMVT = MVT::i32;
1936
1937   MVT MinVT = getRegisterType(ReturnMVT);
1938   return VT.bitsLT(MinVT) ? MinVT : VT;
1939 }
1940
1941 /// LowerCallResult - Lower the result values of a call into the
1942 /// appropriate copies out of appropriate physical registers.
1943 ///
1944 SDValue
1945 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1946                                    CallingConv::ID CallConv, bool isVarArg,
1947                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1948                                    SDLoc dl, SelectionDAG &DAG,
1949                                    SmallVectorImpl<SDValue> &InVals) const {
1950
1951   // Assign locations to each value returned by this call.
1952   SmallVector<CCValAssign, 16> RVLocs;
1953   bool Is64Bit = Subtarget->is64Bit();
1954   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1955                  getTargetMachine(), RVLocs, *DAG.getContext());
1956   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1957
1958   // Copy all of the result registers out of their specified physreg.
1959   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1960     CCValAssign &VA = RVLocs[i];
1961     EVT CopyVT = VA.getValVT();
1962
1963     // If this is x86-64, and we disabled SSE, we can't return FP values
1964     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1965         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1966       report_fatal_error("SSE register return with SSE disabled");
1967     }
1968
1969     SDValue Val;
1970
1971     // If this is a call to a function that returns an fp value on the floating
1972     // point stack, we must guarantee the value is popped from the stack, so
1973     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1974     // if the return value is not used. We use the FpPOP_RETVAL instruction
1975     // instead.
1976     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1977       // If we prefer to use the value in xmm registers, copy it out as f80 and
1978       // use a truncate to move it from fp stack reg to xmm reg.
1979       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1980       SDValue Ops[] = { Chain, InFlag };
1981       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1982                                          MVT::Other, MVT::Glue, Ops), 1);
1983       Val = Chain.getValue(0);
1984
1985       // Round the f80 to the right size, which also moves it to the appropriate
1986       // xmm register.
1987       if (CopyVT != VA.getValVT())
1988         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1989                           // This truncation won't change the value.
1990                           DAG.getIntPtrConstant(1));
1991     } else {
1992       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1993                                  CopyVT, InFlag).getValue(1);
1994       Val = Chain.getValue(0);
1995     }
1996     InFlag = Chain.getValue(2);
1997     InVals.push_back(Val);
1998   }
1999
2000   return Chain;
2001 }
2002
2003 //===----------------------------------------------------------------------===//
2004 //                C & StdCall & Fast Calling Convention implementation
2005 //===----------------------------------------------------------------------===//
2006 //  StdCall calling convention seems to be standard for many Windows' API
2007 //  routines and around. It differs from C calling convention just a little:
2008 //  callee should clean up the stack, not caller. Symbols should be also
2009 //  decorated in some fancy way :) It doesn't support any vector arguments.
2010 //  For info on fast calling convention see Fast Calling Convention (tail call)
2011 //  implementation LowerX86_32FastCCCallTo.
2012
2013 /// CallIsStructReturn - Determines whether a call uses struct return
2014 /// semantics.
2015 enum StructReturnType {
2016   NotStructReturn,
2017   RegStructReturn,
2018   StackStructReturn
2019 };
2020 static StructReturnType
2021 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2022   if (Outs.empty())
2023     return NotStructReturn;
2024
2025   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2026   if (!Flags.isSRet())
2027     return NotStructReturn;
2028   if (Flags.isInReg())
2029     return RegStructReturn;
2030   return StackStructReturn;
2031 }
2032
2033 /// ArgsAreStructReturn - Determines whether a function uses struct
2034 /// return semantics.
2035 static StructReturnType
2036 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2037   if (Ins.empty())
2038     return NotStructReturn;
2039
2040   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2041   if (!Flags.isSRet())
2042     return NotStructReturn;
2043   if (Flags.isInReg())
2044     return RegStructReturn;
2045   return StackStructReturn;
2046 }
2047
2048 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2049 /// by "Src" to address "Dst" with size and alignment information specified by
2050 /// the specific parameter attribute. The copy will be passed as a byval
2051 /// function parameter.
2052 static SDValue
2053 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2054                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2055                           SDLoc dl) {
2056   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2057
2058   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2059                        /*isVolatile*/false, /*AlwaysInline=*/true,
2060                        MachinePointerInfo(), MachinePointerInfo());
2061 }
2062
2063 /// IsTailCallConvention - Return true if the calling convention is one that
2064 /// supports tail call optimization.
2065 static bool IsTailCallConvention(CallingConv::ID CC) {
2066   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2067           CC == CallingConv::HiPE);
2068 }
2069
2070 /// \brief Return true if the calling convention is a C calling convention.
2071 static bool IsCCallConvention(CallingConv::ID CC) {
2072   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2073           CC == CallingConv::X86_64_SysV);
2074 }
2075
2076 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2077   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2078     return false;
2079
2080   CallSite CS(CI);
2081   CallingConv::ID CalleeCC = CS.getCallingConv();
2082   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2083     return false;
2084
2085   return true;
2086 }
2087
2088 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2089 /// a tailcall target by changing its ABI.
2090 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2091                                    bool GuaranteedTailCallOpt) {
2092   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2093 }
2094
2095 SDValue
2096 X86TargetLowering::LowerMemArgument(SDValue Chain,
2097                                     CallingConv::ID CallConv,
2098                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2099                                     SDLoc dl, SelectionDAG &DAG,
2100                                     const CCValAssign &VA,
2101                                     MachineFrameInfo *MFI,
2102                                     unsigned i) const {
2103   // Create the nodes corresponding to a load from this parameter slot.
2104   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2105   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2106                               getTargetMachine().Options.GuaranteedTailCallOpt);
2107   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2108   EVT ValVT;
2109
2110   // If value is passed by pointer we have address passed instead of the value
2111   // itself.
2112   if (VA.getLocInfo() == CCValAssign::Indirect)
2113     ValVT = VA.getLocVT();
2114   else
2115     ValVT = VA.getValVT();
2116
2117   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2118   // changed with more analysis.
2119   // In case of tail call optimization mark all arguments mutable. Since they
2120   // could be overwritten by lowering of arguments in case of a tail call.
2121   if (Flags.isByVal()) {
2122     unsigned Bytes = Flags.getByValSize();
2123     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2124     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2125     return DAG.getFrameIndex(FI, getPointerTy());
2126   } else {
2127     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2128                                     VA.getLocMemOffset(), isImmutable);
2129     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2130     return DAG.getLoad(ValVT, dl, Chain, FIN,
2131                        MachinePointerInfo::getFixedStack(FI),
2132                        false, false, false, 0);
2133   }
2134 }
2135
2136 SDValue
2137 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2138                                         CallingConv::ID CallConv,
2139                                         bool isVarArg,
2140                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2141                                         SDLoc dl,
2142                                         SelectionDAG &DAG,
2143                                         SmallVectorImpl<SDValue> &InVals)
2144                                           const {
2145   MachineFunction &MF = DAG.getMachineFunction();
2146   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2147
2148   const Function* Fn = MF.getFunction();
2149   if (Fn->hasExternalLinkage() &&
2150       Subtarget->isTargetCygMing() &&
2151       Fn->getName() == "main")
2152     FuncInfo->setForceFramePointer(true);
2153
2154   MachineFrameInfo *MFI = MF.getFrameInfo();
2155   bool Is64Bit = Subtarget->is64Bit();
2156   bool IsWindows = Subtarget->isTargetWindows();
2157   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2158
2159   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2160          "Var args not supported with calling convention fastcc, ghc or hipe");
2161
2162   // Assign locations to all of the incoming arguments.
2163   SmallVector<CCValAssign, 16> ArgLocs;
2164   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2165                  ArgLocs, *DAG.getContext());
2166
2167   // Allocate shadow area for Win64
2168   if (IsWin64)
2169     CCInfo.AllocateStack(32, 8);
2170
2171   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2172
2173   unsigned LastVal = ~0U;
2174   SDValue ArgValue;
2175   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2176     CCValAssign &VA = ArgLocs[i];
2177     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2178     // places.
2179     assert(VA.getValNo() != LastVal &&
2180            "Don't support value assigned to multiple locs yet");
2181     (void)LastVal;
2182     LastVal = VA.getValNo();
2183
2184     if (VA.isRegLoc()) {
2185       EVT RegVT = VA.getLocVT();
2186       const TargetRegisterClass *RC;
2187       if (RegVT == MVT::i32)
2188         RC = &X86::GR32RegClass;
2189       else if (Is64Bit && RegVT == MVT::i64)
2190         RC = &X86::GR64RegClass;
2191       else if (RegVT == MVT::f32)
2192         RC = &X86::FR32RegClass;
2193       else if (RegVT == MVT::f64)
2194         RC = &X86::FR64RegClass;
2195       else if (RegVT.is512BitVector())
2196         RC = &X86::VR512RegClass;
2197       else if (RegVT.is256BitVector())
2198         RC = &X86::VR256RegClass;
2199       else if (RegVT.is128BitVector())
2200         RC = &X86::VR128RegClass;
2201       else if (RegVT == MVT::x86mmx)
2202         RC = &X86::VR64RegClass;
2203       else if (RegVT == MVT::v8i1)
2204         RC = &X86::VK8RegClass;
2205       else if (RegVT == MVT::v16i1)
2206         RC = &X86::VK16RegClass;
2207       else
2208         llvm_unreachable("Unknown argument type!");
2209
2210       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2211       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2212
2213       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2214       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2215       // right size.
2216       if (VA.getLocInfo() == CCValAssign::SExt)
2217         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2218                                DAG.getValueType(VA.getValVT()));
2219       else if (VA.getLocInfo() == CCValAssign::ZExt)
2220         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2221                                DAG.getValueType(VA.getValVT()));
2222       else if (VA.getLocInfo() == CCValAssign::BCvt)
2223         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2224
2225       if (VA.isExtInLoc()) {
2226         // Handle MMX values passed in XMM regs.
2227         if (RegVT.isVector())
2228           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2229         else
2230           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2231       }
2232     } else {
2233       assert(VA.isMemLoc());
2234       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2235     }
2236
2237     // If value is passed via pointer - do a load.
2238     if (VA.getLocInfo() == CCValAssign::Indirect)
2239       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2240                              MachinePointerInfo(), false, false, false, 0);
2241
2242     InVals.push_back(ArgValue);
2243   }
2244
2245   // The x86-64 ABIs require that for returning structs by value we copy
2246   // the sret argument into %rax/%eax (depending on ABI) for the return.
2247   // Win32 requires us to put the sret argument to %eax as well.
2248   // Save the argument into a virtual register so that we can access it
2249   // from the return points.
2250   if (MF.getFunction()->hasStructRetAttr() &&
2251       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2252     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2253     unsigned Reg = FuncInfo->getSRetReturnReg();
2254     if (!Reg) {
2255       MVT PtrTy = getPointerTy();
2256       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2257       FuncInfo->setSRetReturnReg(Reg);
2258     }
2259     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2260     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2261   }
2262
2263   unsigned StackSize = CCInfo.getNextStackOffset();
2264   // Align stack specially for tail calls.
2265   if (FuncIsMadeTailCallSafe(CallConv,
2266                              MF.getTarget().Options.GuaranteedTailCallOpt))
2267     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2268
2269   // If the function takes variable number of arguments, make a frame index for
2270   // the start of the first vararg value... for expansion of llvm.va_start.
2271   if (isVarArg) {
2272     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2273                     CallConv != CallingConv::X86_ThisCall)) {
2274       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2275     }
2276     if (Is64Bit) {
2277       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2278
2279       // FIXME: We should really autogenerate these arrays
2280       static const uint16_t GPR64ArgRegsWin64[] = {
2281         X86::RCX, X86::RDX, X86::R8,  X86::R9
2282       };
2283       static const uint16_t GPR64ArgRegs64Bit[] = {
2284         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2285       };
2286       static const uint16_t XMMArgRegs64Bit[] = {
2287         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2288         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2289       };
2290       const uint16_t *GPR64ArgRegs;
2291       unsigned NumXMMRegs = 0;
2292
2293       if (IsWin64) {
2294         // The XMM registers which might contain var arg parameters are shadowed
2295         // in their paired GPR.  So we only need to save the GPR to their home
2296         // slots.
2297         TotalNumIntRegs = 4;
2298         GPR64ArgRegs = GPR64ArgRegsWin64;
2299       } else {
2300         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2301         GPR64ArgRegs = GPR64ArgRegs64Bit;
2302
2303         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2304                                                 TotalNumXMMRegs);
2305       }
2306       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2307                                                        TotalNumIntRegs);
2308
2309       bool NoImplicitFloatOps = Fn->getAttributes().
2310         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2311       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2312              "SSE register cannot be used when SSE is disabled!");
2313       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2314                NoImplicitFloatOps) &&
2315              "SSE register cannot be used when SSE is disabled!");
2316       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2317           !Subtarget->hasSSE1())
2318         // Kernel mode asks for SSE to be disabled, so don't push them
2319         // on the stack.
2320         TotalNumXMMRegs = 0;
2321
2322       if (IsWin64) {
2323         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2324         // Get to the caller-allocated home save location.  Add 8 to account
2325         // for the return address.
2326         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2327         FuncInfo->setRegSaveFrameIndex(
2328           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2329         // Fixup to set vararg frame on shadow area (4 x i64).
2330         if (NumIntRegs < 4)
2331           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2332       } else {
2333         // For X86-64, if there are vararg parameters that are passed via
2334         // registers, then we must store them to their spots on the stack so
2335         // they may be loaded by deferencing the result of va_next.
2336         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2337         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2338         FuncInfo->setRegSaveFrameIndex(
2339           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2340                                false));
2341       }
2342
2343       // Store the integer parameter registers.
2344       SmallVector<SDValue, 8> MemOps;
2345       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2346                                         getPointerTy());
2347       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2348       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2349         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2350                                   DAG.getIntPtrConstant(Offset));
2351         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2352                                      &X86::GR64RegClass);
2353         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2354         SDValue Store =
2355           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2356                        MachinePointerInfo::getFixedStack(
2357                          FuncInfo->getRegSaveFrameIndex(), Offset),
2358                        false, false, 0);
2359         MemOps.push_back(Store);
2360         Offset += 8;
2361       }
2362
2363       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2364         // Now store the XMM (fp + vector) parameter registers.
2365         SmallVector<SDValue, 11> SaveXMMOps;
2366         SaveXMMOps.push_back(Chain);
2367
2368         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2369         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2370         SaveXMMOps.push_back(ALVal);
2371
2372         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2373                                FuncInfo->getRegSaveFrameIndex()));
2374         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2375                                FuncInfo->getVarArgsFPOffset()));
2376
2377         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2378           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2379                                        &X86::VR128RegClass);
2380           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2381           SaveXMMOps.push_back(Val);
2382         }
2383         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2384                                      MVT::Other,
2385                                      &SaveXMMOps[0], SaveXMMOps.size()));
2386       }
2387
2388       if (!MemOps.empty())
2389         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2390                             &MemOps[0], MemOps.size());
2391     }
2392   }
2393
2394   // Some CCs need callee pop.
2395   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2396                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2397     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2398   } else {
2399     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2400     // If this is an sret function, the return should pop the hidden pointer.
2401     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2402         argsAreStructReturn(Ins) == StackStructReturn)
2403       FuncInfo->setBytesToPopOnReturn(4);
2404   }
2405
2406   if (!Is64Bit) {
2407     // RegSaveFrameIndex is X86-64 only.
2408     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2409     if (CallConv == CallingConv::X86_FastCall ||
2410         CallConv == CallingConv::X86_ThisCall)
2411       // fastcc functions can't have varargs.
2412       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2413   }
2414
2415   FuncInfo->setArgumentStackSize(StackSize);
2416
2417   return Chain;
2418 }
2419
2420 SDValue
2421 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2422                                     SDValue StackPtr, SDValue Arg,
2423                                     SDLoc dl, SelectionDAG &DAG,
2424                                     const CCValAssign &VA,
2425                                     ISD::ArgFlagsTy Flags) const {
2426   unsigned LocMemOffset = VA.getLocMemOffset();
2427   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2428   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2429   if (Flags.isByVal())
2430     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2431
2432   return DAG.getStore(Chain, dl, Arg, PtrOff,
2433                       MachinePointerInfo::getStack(LocMemOffset),
2434                       false, false, 0);
2435 }
2436
2437 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2438 /// optimization is performed and it is required.
2439 SDValue
2440 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2441                                            SDValue &OutRetAddr, SDValue Chain,
2442                                            bool IsTailCall, bool Is64Bit,
2443                                            int FPDiff, SDLoc dl) const {
2444   // Adjust the Return address stack slot.
2445   EVT VT = getPointerTy();
2446   OutRetAddr = getReturnAddressFrameIndex(DAG);
2447
2448   // Load the "old" Return address.
2449   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2450                            false, false, false, 0);
2451   return SDValue(OutRetAddr.getNode(), 1);
2452 }
2453
2454 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2455 /// optimization is performed and it is required (FPDiff!=0).
2456 static SDValue
2457 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2458                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2459                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2460   // Store the return address to the appropriate stack slot.
2461   if (!FPDiff) return Chain;
2462   // Calculate the new stack slot for the return address.
2463   int NewReturnAddrFI =
2464     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2465                                          false);
2466   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2467   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2468                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2469                        false, false, 0);
2470   return Chain;
2471 }
2472
2473 SDValue
2474 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2475                              SmallVectorImpl<SDValue> &InVals) const {
2476   SelectionDAG &DAG                     = CLI.DAG;
2477   SDLoc &dl                             = CLI.DL;
2478   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2479   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2480   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2481   SDValue Chain                         = CLI.Chain;
2482   SDValue Callee                        = CLI.Callee;
2483   CallingConv::ID CallConv              = CLI.CallConv;
2484   bool &isTailCall                      = CLI.IsTailCall;
2485   bool isVarArg                         = CLI.IsVarArg;
2486
2487   MachineFunction &MF = DAG.getMachineFunction();
2488   bool Is64Bit        = Subtarget->is64Bit();
2489   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2490   bool IsWindows      = Subtarget->isTargetWindows();
2491   StructReturnType SR = callIsStructReturn(Outs);
2492   bool IsSibcall      = false;
2493
2494   if (MF.getTarget().Options.DisableTailCalls)
2495     isTailCall = false;
2496
2497   if (isTailCall) {
2498     // Check if it's really possible to do a tail call.
2499     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2500                     isVarArg, SR != NotStructReturn,
2501                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2502                     Outs, OutVals, Ins, DAG);
2503
2504     // Sibcalls are automatically detected tailcalls which do not require
2505     // ABI changes.
2506     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2507       IsSibcall = true;
2508
2509     if (isTailCall)
2510       ++NumTailCalls;
2511   }
2512
2513   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2514          "Var args not supported with calling convention fastcc, ghc or hipe");
2515
2516   // Analyze operands of the call, assigning locations to each operand.
2517   SmallVector<CCValAssign, 16> ArgLocs;
2518   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2519                  ArgLocs, *DAG.getContext());
2520
2521   // Allocate shadow area for Win64
2522   if (IsWin64)
2523     CCInfo.AllocateStack(32, 8);
2524
2525   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2526
2527   // Get a count of how many bytes are to be pushed on the stack.
2528   unsigned NumBytes = CCInfo.getNextStackOffset();
2529   if (IsSibcall)
2530     // This is a sibcall. The memory operands are available in caller's
2531     // own caller's stack.
2532     NumBytes = 0;
2533   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2534            IsTailCallConvention(CallConv))
2535     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2536
2537   int FPDiff = 0;
2538   if (isTailCall && !IsSibcall) {
2539     // Lower arguments at fp - stackoffset + fpdiff.
2540     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2541     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2542
2543     FPDiff = NumBytesCallerPushed - NumBytes;
2544
2545     // Set the delta of movement of the returnaddr stackslot.
2546     // But only set if delta is greater than previous delta.
2547     if (FPDiff < X86Info->getTCReturnAddrDelta())
2548       X86Info->setTCReturnAddrDelta(FPDiff);
2549   }
2550
2551   if (!IsSibcall)
2552     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2553                                  dl);
2554
2555   SDValue RetAddrFrIdx;
2556   // Load return address for tail calls.
2557   if (isTailCall && FPDiff)
2558     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2559                                     Is64Bit, FPDiff, dl);
2560
2561   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2562   SmallVector<SDValue, 8> MemOpChains;
2563   SDValue StackPtr;
2564
2565   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2566   // of tail call optimization arguments are handle later.
2567   const X86RegisterInfo *RegInfo =
2568     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2569   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2570     CCValAssign &VA = ArgLocs[i];
2571     EVT RegVT = VA.getLocVT();
2572     SDValue Arg = OutVals[i];
2573     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2574     bool isByVal = Flags.isByVal();
2575
2576     // Promote the value if needed.
2577     switch (VA.getLocInfo()) {
2578     default: llvm_unreachable("Unknown loc info!");
2579     case CCValAssign::Full: break;
2580     case CCValAssign::SExt:
2581       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2582       break;
2583     case CCValAssign::ZExt:
2584       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2585       break;
2586     case CCValAssign::AExt:
2587       if (RegVT.is128BitVector()) {
2588         // Special case: passing MMX values in XMM registers.
2589         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2590         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2591         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2592       } else
2593         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2594       break;
2595     case CCValAssign::BCvt:
2596       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2597       break;
2598     case CCValAssign::Indirect: {
2599       // Store the argument.
2600       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2601       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2602       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2603                            MachinePointerInfo::getFixedStack(FI),
2604                            false, false, 0);
2605       Arg = SpillSlot;
2606       break;
2607     }
2608     }
2609
2610     if (VA.isRegLoc()) {
2611       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2612       if (isVarArg && IsWin64) {
2613         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2614         // shadow reg if callee is a varargs function.
2615         unsigned ShadowReg = 0;
2616         switch (VA.getLocReg()) {
2617         case X86::XMM0: ShadowReg = X86::RCX; break;
2618         case X86::XMM1: ShadowReg = X86::RDX; break;
2619         case X86::XMM2: ShadowReg = X86::R8; break;
2620         case X86::XMM3: ShadowReg = X86::R9; break;
2621         }
2622         if (ShadowReg)
2623           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2624       }
2625     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2626       assert(VA.isMemLoc());
2627       if (StackPtr.getNode() == 0)
2628         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2629                                       getPointerTy());
2630       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2631                                              dl, DAG, VA, Flags));
2632     }
2633   }
2634
2635   if (!MemOpChains.empty())
2636     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2637                         &MemOpChains[0], MemOpChains.size());
2638
2639   if (Subtarget->isPICStyleGOT()) {
2640     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2641     // GOT pointer.
2642     if (!isTailCall) {
2643       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2644                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2645     } else {
2646       // If we are tail calling and generating PIC/GOT style code load the
2647       // address of the callee into ECX. The value in ecx is used as target of
2648       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2649       // for tail calls on PIC/GOT architectures. Normally we would just put the
2650       // address of GOT into ebx and then call target@PLT. But for tail calls
2651       // ebx would be restored (since ebx is callee saved) before jumping to the
2652       // target@PLT.
2653
2654       // Note: The actual moving to ECX is done further down.
2655       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2656       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2657           !G->getGlobal()->hasProtectedVisibility())
2658         Callee = LowerGlobalAddress(Callee, DAG);
2659       else if (isa<ExternalSymbolSDNode>(Callee))
2660         Callee = LowerExternalSymbol(Callee, DAG);
2661     }
2662   }
2663
2664   if (Is64Bit && isVarArg && !IsWin64) {
2665     // From AMD64 ABI document:
2666     // For calls that may call functions that use varargs or stdargs
2667     // (prototype-less calls or calls to functions containing ellipsis (...) in
2668     // the declaration) %al is used as hidden argument to specify the number
2669     // of SSE registers used. The contents of %al do not need to match exactly
2670     // the number of registers, but must be an ubound on the number of SSE
2671     // registers used and is in the range 0 - 8 inclusive.
2672
2673     // Count the number of XMM registers allocated.
2674     static const uint16_t XMMArgRegs[] = {
2675       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2676       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2677     };
2678     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2679     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2680            && "SSE registers cannot be used when SSE is disabled");
2681
2682     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2683                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2684   }
2685
2686   // For tail calls lower the arguments to the 'real' stack slot.
2687   if (isTailCall) {
2688     // Force all the incoming stack arguments to be loaded from the stack
2689     // before any new outgoing arguments are stored to the stack, because the
2690     // outgoing stack slots may alias the incoming argument stack slots, and
2691     // the alias isn't otherwise explicit. This is slightly more conservative
2692     // than necessary, because it means that each store effectively depends
2693     // on every argument instead of just those arguments it would clobber.
2694     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2695
2696     SmallVector<SDValue, 8> MemOpChains2;
2697     SDValue FIN;
2698     int FI = 0;
2699     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2700       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2701         CCValAssign &VA = ArgLocs[i];
2702         if (VA.isRegLoc())
2703           continue;
2704         assert(VA.isMemLoc());
2705         SDValue Arg = OutVals[i];
2706         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2707         // Create frame index.
2708         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2709         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2710         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2711         FIN = DAG.getFrameIndex(FI, getPointerTy());
2712
2713         if (Flags.isByVal()) {
2714           // Copy relative to framepointer.
2715           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2716           if (StackPtr.getNode() == 0)
2717             StackPtr = DAG.getCopyFromReg(Chain, dl,
2718                                           RegInfo->getStackRegister(),
2719                                           getPointerTy());
2720           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2721
2722           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2723                                                            ArgChain,
2724                                                            Flags, DAG, dl));
2725         } else {
2726           // Store relative to framepointer.
2727           MemOpChains2.push_back(
2728             DAG.getStore(ArgChain, dl, Arg, FIN,
2729                          MachinePointerInfo::getFixedStack(FI),
2730                          false, false, 0));
2731         }
2732       }
2733     }
2734
2735     if (!MemOpChains2.empty())
2736       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2737                           &MemOpChains2[0], MemOpChains2.size());
2738
2739     // Store the return address to the appropriate stack slot.
2740     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2741                                      getPointerTy(), RegInfo->getSlotSize(),
2742                                      FPDiff, dl);
2743   }
2744
2745   // Build a sequence of copy-to-reg nodes chained together with token chain
2746   // and flag operands which copy the outgoing args into registers.
2747   SDValue InFlag;
2748   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2749     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2750                              RegsToPass[i].second, InFlag);
2751     InFlag = Chain.getValue(1);
2752   }
2753
2754   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2755     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2756     // In the 64-bit large code model, we have to make all calls
2757     // through a register, since the call instruction's 32-bit
2758     // pc-relative offset may not be large enough to hold the whole
2759     // address.
2760   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2761     // If the callee is a GlobalAddress node (quite common, every direct call
2762     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2763     // it.
2764
2765     // We should use extra load for direct calls to dllimported functions in
2766     // non-JIT mode.
2767     const GlobalValue *GV = G->getGlobal();
2768     if (!GV->hasDLLImportLinkage()) {
2769       unsigned char OpFlags = 0;
2770       bool ExtraLoad = false;
2771       unsigned WrapperKind = ISD::DELETED_NODE;
2772
2773       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2774       // external symbols most go through the PLT in PIC mode.  If the symbol
2775       // has hidden or protected visibility, or if it is static or local, then
2776       // we don't need to use the PLT - we can directly call it.
2777       if (Subtarget->isTargetELF() &&
2778           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2779           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2780         OpFlags = X86II::MO_PLT;
2781       } else if (Subtarget->isPICStyleStubAny() &&
2782                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2783                  (!Subtarget->getTargetTriple().isMacOSX() ||
2784                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2785         // PC-relative references to external symbols should go through $stub,
2786         // unless we're building with the leopard linker or later, which
2787         // automatically synthesizes these stubs.
2788         OpFlags = X86II::MO_DARWIN_STUB;
2789       } else if (Subtarget->isPICStyleRIPRel() &&
2790                  isa<Function>(GV) &&
2791                  cast<Function>(GV)->getAttributes().
2792                    hasAttribute(AttributeSet::FunctionIndex,
2793                                 Attribute::NonLazyBind)) {
2794         // If the function is marked as non-lazy, generate an indirect call
2795         // which loads from the GOT directly. This avoids runtime overhead
2796         // at the cost of eager binding (and one extra byte of encoding).
2797         OpFlags = X86II::MO_GOTPCREL;
2798         WrapperKind = X86ISD::WrapperRIP;
2799         ExtraLoad = true;
2800       }
2801
2802       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2803                                           G->getOffset(), OpFlags);
2804
2805       // Add a wrapper if needed.
2806       if (WrapperKind != ISD::DELETED_NODE)
2807         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2808       // Add extra indirection if needed.
2809       if (ExtraLoad)
2810         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2811                              MachinePointerInfo::getGOT(),
2812                              false, false, false, 0);
2813     }
2814   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2815     unsigned char OpFlags = 0;
2816
2817     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2818     // external symbols should go through the PLT.
2819     if (Subtarget->isTargetELF() &&
2820         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2821       OpFlags = X86II::MO_PLT;
2822     } else if (Subtarget->isPICStyleStubAny() &&
2823                (!Subtarget->getTargetTriple().isMacOSX() ||
2824                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2825       // PC-relative references to external symbols should go through $stub,
2826       // unless we're building with the leopard linker or later, which
2827       // automatically synthesizes these stubs.
2828       OpFlags = X86II::MO_DARWIN_STUB;
2829     }
2830
2831     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2832                                          OpFlags);
2833   }
2834
2835   // Returns a chain & a flag for retval copy to use.
2836   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2837   SmallVector<SDValue, 8> Ops;
2838
2839   if (!IsSibcall && isTailCall) {
2840     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2841                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2842     InFlag = Chain.getValue(1);
2843   }
2844
2845   Ops.push_back(Chain);
2846   Ops.push_back(Callee);
2847
2848   if (isTailCall)
2849     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2850
2851   // Add argument registers to the end of the list so that they are known live
2852   // into the call.
2853   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2854     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2855                                   RegsToPass[i].second.getValueType()));
2856
2857   // Add a register mask operand representing the call-preserved registers.
2858   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2859   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2860   assert(Mask && "Missing call preserved mask for calling convention");
2861   Ops.push_back(DAG.getRegisterMask(Mask));
2862
2863   if (InFlag.getNode())
2864     Ops.push_back(InFlag);
2865
2866   if (isTailCall) {
2867     // We used to do:
2868     //// If this is the first return lowered for this function, add the regs
2869     //// to the liveout set for the function.
2870     // This isn't right, although it's probably harmless on x86; liveouts
2871     // should be computed from returns not tail calls.  Consider a void
2872     // function making a tail call to a function returning int.
2873     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2874   }
2875
2876   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2877   InFlag = Chain.getValue(1);
2878
2879   // Create the CALLSEQ_END node.
2880   unsigned NumBytesForCalleeToPush;
2881   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2882                        getTargetMachine().Options.GuaranteedTailCallOpt))
2883     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2884   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2885            SR == StackStructReturn)
2886     // If this is a call to a struct-return function, the callee
2887     // pops the hidden struct pointer, so we have to push it back.
2888     // This is common for Darwin/X86, Linux & Mingw32 targets.
2889     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2890     NumBytesForCalleeToPush = 4;
2891   else
2892     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2893
2894   // Returns a flag for retval copy to use.
2895   if (!IsSibcall) {
2896     Chain = DAG.getCALLSEQ_END(Chain,
2897                                DAG.getIntPtrConstant(NumBytes, true),
2898                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2899                                                      true),
2900                                InFlag, dl);
2901     InFlag = Chain.getValue(1);
2902   }
2903
2904   // Handle result values, copying them out of physregs into vregs that we
2905   // return.
2906   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2907                          Ins, dl, DAG, InVals);
2908 }
2909
2910 //===----------------------------------------------------------------------===//
2911 //                Fast Calling Convention (tail call) implementation
2912 //===----------------------------------------------------------------------===//
2913
2914 //  Like std call, callee cleans arguments, convention except that ECX is
2915 //  reserved for storing the tail called function address. Only 2 registers are
2916 //  free for argument passing (inreg). Tail call optimization is performed
2917 //  provided:
2918 //                * tailcallopt is enabled
2919 //                * caller/callee are fastcc
2920 //  On X86_64 architecture with GOT-style position independent code only local
2921 //  (within module) calls are supported at the moment.
2922 //  To keep the stack aligned according to platform abi the function
2923 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2924 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2925 //  If a tail called function callee has more arguments than the caller the
2926 //  caller needs to make sure that there is room to move the RETADDR to. This is
2927 //  achieved by reserving an area the size of the argument delta right after the
2928 //  original REtADDR, but before the saved framepointer or the spilled registers
2929 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2930 //  stack layout:
2931 //    arg1
2932 //    arg2
2933 //    RETADDR
2934 //    [ new RETADDR
2935 //      move area ]
2936 //    (possible EBP)
2937 //    ESI
2938 //    EDI
2939 //    local1 ..
2940
2941 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2942 /// for a 16 byte align requirement.
2943 unsigned
2944 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2945                                                SelectionDAG& DAG) const {
2946   MachineFunction &MF = DAG.getMachineFunction();
2947   const TargetMachine &TM = MF.getTarget();
2948   const X86RegisterInfo *RegInfo =
2949     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2950   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2951   unsigned StackAlignment = TFI.getStackAlignment();
2952   uint64_t AlignMask = StackAlignment - 1;
2953   int64_t Offset = StackSize;
2954   unsigned SlotSize = RegInfo->getSlotSize();
2955   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2956     // Number smaller than 12 so just add the difference.
2957     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2958   } else {
2959     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2960     Offset = ((~AlignMask) & Offset) + StackAlignment +
2961       (StackAlignment-SlotSize);
2962   }
2963   return Offset;
2964 }
2965
2966 /// MatchingStackOffset - Return true if the given stack call argument is
2967 /// already available in the same position (relatively) of the caller's
2968 /// incoming argument stack.
2969 static
2970 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2971                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2972                          const X86InstrInfo *TII) {
2973   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2974   int FI = INT_MAX;
2975   if (Arg.getOpcode() == ISD::CopyFromReg) {
2976     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2977     if (!TargetRegisterInfo::isVirtualRegister(VR))
2978       return false;
2979     MachineInstr *Def = MRI->getVRegDef(VR);
2980     if (!Def)
2981       return false;
2982     if (!Flags.isByVal()) {
2983       if (!TII->isLoadFromStackSlot(Def, FI))
2984         return false;
2985     } else {
2986       unsigned Opcode = Def->getOpcode();
2987       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2988           Def->getOperand(1).isFI()) {
2989         FI = Def->getOperand(1).getIndex();
2990         Bytes = Flags.getByValSize();
2991       } else
2992         return false;
2993     }
2994   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2995     if (Flags.isByVal())
2996       // ByVal argument is passed in as a pointer but it's now being
2997       // dereferenced. e.g.
2998       // define @foo(%struct.X* %A) {
2999       //   tail call @bar(%struct.X* byval %A)
3000       // }
3001       return false;
3002     SDValue Ptr = Ld->getBasePtr();
3003     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3004     if (!FINode)
3005       return false;
3006     FI = FINode->getIndex();
3007   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3008     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3009     FI = FINode->getIndex();
3010     Bytes = Flags.getByValSize();
3011   } else
3012     return false;
3013
3014   assert(FI != INT_MAX);
3015   if (!MFI->isFixedObjectIndex(FI))
3016     return false;
3017   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3018 }
3019
3020 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3021 /// for tail call optimization. Targets which want to do tail call
3022 /// optimization should implement this function.
3023 bool
3024 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3025                                                      CallingConv::ID CalleeCC,
3026                                                      bool isVarArg,
3027                                                      bool isCalleeStructRet,
3028                                                      bool isCallerStructRet,
3029                                                      Type *RetTy,
3030                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3031                                     const SmallVectorImpl<SDValue> &OutVals,
3032                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3033                                                      SelectionDAG &DAG) const {
3034   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3035     return false;
3036
3037   // If -tailcallopt is specified, make fastcc functions tail-callable.
3038   const MachineFunction &MF = DAG.getMachineFunction();
3039   const Function *CallerF = MF.getFunction();
3040
3041   // If the function return type is x86_fp80 and the callee return type is not,
3042   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3043   // perform a tailcall optimization here.
3044   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3045     return false;
3046
3047   CallingConv::ID CallerCC = CallerF->getCallingConv();
3048   bool CCMatch = CallerCC == CalleeCC;
3049   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3050   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3051
3052   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3053     if (IsTailCallConvention(CalleeCC) && CCMatch)
3054       return true;
3055     return false;
3056   }
3057
3058   // Look for obvious safe cases to perform tail call optimization that do not
3059   // require ABI changes. This is what gcc calls sibcall.
3060
3061   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3062   // emit a special epilogue.
3063   const X86RegisterInfo *RegInfo =
3064     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3065   if (RegInfo->needsStackRealignment(MF))
3066     return false;
3067
3068   // Also avoid sibcall optimization if either caller or callee uses struct
3069   // return semantics.
3070   if (isCalleeStructRet || isCallerStructRet)
3071     return false;
3072
3073   // An stdcall caller is expected to clean up its arguments; the callee
3074   // isn't going to do that.
3075   if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
3076     return false;
3077
3078   // Do not sibcall optimize vararg calls unless all arguments are passed via
3079   // registers.
3080   if (isVarArg && !Outs.empty()) {
3081
3082     // Optimizing for varargs on Win64 is unlikely to be safe without
3083     // additional testing.
3084     if (IsCalleeWin64 || IsCallerWin64)
3085       return false;
3086
3087     SmallVector<CCValAssign, 16> ArgLocs;
3088     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3089                    getTargetMachine(), ArgLocs, *DAG.getContext());
3090
3091     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3092     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3093       if (!ArgLocs[i].isRegLoc())
3094         return false;
3095   }
3096
3097   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3098   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3099   // this into a sibcall.
3100   bool Unused = false;
3101   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3102     if (!Ins[i].Used) {
3103       Unused = true;
3104       break;
3105     }
3106   }
3107   if (Unused) {
3108     SmallVector<CCValAssign, 16> RVLocs;
3109     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3110                    getTargetMachine(), RVLocs, *DAG.getContext());
3111     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3112     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3113       CCValAssign &VA = RVLocs[i];
3114       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3115         return false;
3116     }
3117   }
3118
3119   // If the calling conventions do not match, then we'd better make sure the
3120   // results are returned in the same way as what the caller expects.
3121   if (!CCMatch) {
3122     SmallVector<CCValAssign, 16> RVLocs1;
3123     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3124                     getTargetMachine(), RVLocs1, *DAG.getContext());
3125     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3126
3127     SmallVector<CCValAssign, 16> RVLocs2;
3128     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3129                     getTargetMachine(), RVLocs2, *DAG.getContext());
3130     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3131
3132     if (RVLocs1.size() != RVLocs2.size())
3133       return false;
3134     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3135       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3136         return false;
3137       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3138         return false;
3139       if (RVLocs1[i].isRegLoc()) {
3140         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3141           return false;
3142       } else {
3143         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3144           return false;
3145       }
3146     }
3147   }
3148
3149   // If the callee takes no arguments then go on to check the results of the
3150   // call.
3151   if (!Outs.empty()) {
3152     // Check if stack adjustment is needed. For now, do not do this if any
3153     // argument is passed on the stack.
3154     SmallVector<CCValAssign, 16> ArgLocs;
3155     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3156                    getTargetMachine(), ArgLocs, *DAG.getContext());
3157
3158     // Allocate shadow area for Win64
3159     if (IsCalleeWin64)
3160       CCInfo.AllocateStack(32, 8);
3161
3162     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3163     if (CCInfo.getNextStackOffset()) {
3164       MachineFunction &MF = DAG.getMachineFunction();
3165       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3166         return false;
3167
3168       // Check if the arguments are already laid out in the right way as
3169       // the caller's fixed stack objects.
3170       MachineFrameInfo *MFI = MF.getFrameInfo();
3171       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3172       const X86InstrInfo *TII =
3173         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3174       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3175         CCValAssign &VA = ArgLocs[i];
3176         SDValue Arg = OutVals[i];
3177         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3178         if (VA.getLocInfo() == CCValAssign::Indirect)
3179           return false;
3180         if (!VA.isRegLoc()) {
3181           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3182                                    MFI, MRI, TII))
3183             return false;
3184         }
3185       }
3186     }
3187
3188     // If the tailcall address may be in a register, then make sure it's
3189     // possible to register allocate for it. In 32-bit, the call address can
3190     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3191     // callee-saved registers are restored. These happen to be the same
3192     // registers used to pass 'inreg' arguments so watch out for those.
3193     if (!Subtarget->is64Bit() &&
3194         ((!isa<GlobalAddressSDNode>(Callee) &&
3195           !isa<ExternalSymbolSDNode>(Callee)) ||
3196          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3197       unsigned NumInRegs = 0;
3198       // In PIC we need an extra register to formulate the address computation
3199       // for the callee.
3200       unsigned MaxInRegs =
3201           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3202
3203       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3204         CCValAssign &VA = ArgLocs[i];
3205         if (!VA.isRegLoc())
3206           continue;
3207         unsigned Reg = VA.getLocReg();
3208         switch (Reg) {
3209         default: break;
3210         case X86::EAX: case X86::EDX: case X86::ECX:
3211           if (++NumInRegs == MaxInRegs)
3212             return false;
3213           break;
3214         }
3215       }
3216     }
3217   }
3218
3219   return true;
3220 }
3221
3222 FastISel *
3223 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3224                                   const TargetLibraryInfo *libInfo) const {
3225   return X86::createFastISel(funcInfo, libInfo);
3226 }
3227
3228 //===----------------------------------------------------------------------===//
3229 //                           Other Lowering Hooks
3230 //===----------------------------------------------------------------------===//
3231
3232 static bool MayFoldLoad(SDValue Op) {
3233   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3234 }
3235
3236 static bool MayFoldIntoStore(SDValue Op) {
3237   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3238 }
3239
3240 static bool isTargetShuffle(unsigned Opcode) {
3241   switch(Opcode) {
3242   default: return false;
3243   case X86ISD::PSHUFD:
3244   case X86ISD::PSHUFHW:
3245   case X86ISD::PSHUFLW:
3246   case X86ISD::SHUFP:
3247   case X86ISD::PALIGNR:
3248   case X86ISD::MOVLHPS:
3249   case X86ISD::MOVLHPD:
3250   case X86ISD::MOVHLPS:
3251   case X86ISD::MOVLPS:
3252   case X86ISD::MOVLPD:
3253   case X86ISD::MOVSHDUP:
3254   case X86ISD::MOVSLDUP:
3255   case X86ISD::MOVDDUP:
3256   case X86ISD::MOVSS:
3257   case X86ISD::MOVSD:
3258   case X86ISD::UNPCKL:
3259   case X86ISD::UNPCKH:
3260   case X86ISD::VPERMILP:
3261   case X86ISD::VPERM2X128:
3262   case X86ISD::VPERMI:
3263     return true;
3264   }
3265 }
3266
3267 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3268                                     SDValue V1, SelectionDAG &DAG) {
3269   switch(Opc) {
3270   default: llvm_unreachable("Unknown x86 shuffle node");
3271   case X86ISD::MOVSHDUP:
3272   case X86ISD::MOVSLDUP:
3273   case X86ISD::MOVDDUP:
3274     return DAG.getNode(Opc, dl, VT, V1);
3275   }
3276 }
3277
3278 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3279                                     SDValue V1, unsigned TargetMask,
3280                                     SelectionDAG &DAG) {
3281   switch(Opc) {
3282   default: llvm_unreachable("Unknown x86 shuffle node");
3283   case X86ISD::PSHUFD:
3284   case X86ISD::PSHUFHW:
3285   case X86ISD::PSHUFLW:
3286   case X86ISD::VPERMILP:
3287   case X86ISD::VPERMI:
3288     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3289   }
3290 }
3291
3292 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3293                                     SDValue V1, SDValue V2, unsigned TargetMask,
3294                                     SelectionDAG &DAG) {
3295   switch(Opc) {
3296   default: llvm_unreachable("Unknown x86 shuffle node");
3297   case X86ISD::PALIGNR:
3298   case X86ISD::SHUFP:
3299   case X86ISD::VPERM2X128:
3300     return DAG.getNode(Opc, dl, VT, V1, V2,
3301                        DAG.getConstant(TargetMask, MVT::i8));
3302   }
3303 }
3304
3305 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3306                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3307   switch(Opc) {
3308   default: llvm_unreachable("Unknown x86 shuffle node");
3309   case X86ISD::MOVLHPS:
3310   case X86ISD::MOVLHPD:
3311   case X86ISD::MOVHLPS:
3312   case X86ISD::MOVLPS:
3313   case X86ISD::MOVLPD:
3314   case X86ISD::MOVSS:
3315   case X86ISD::MOVSD:
3316   case X86ISD::UNPCKL:
3317   case X86ISD::UNPCKH:
3318     return DAG.getNode(Opc, dl, VT, V1, V2);
3319   }
3320 }
3321
3322 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3323   MachineFunction &MF = DAG.getMachineFunction();
3324   const X86RegisterInfo *RegInfo =
3325     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3326   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3327   int ReturnAddrIndex = FuncInfo->getRAIndex();
3328
3329   if (ReturnAddrIndex == 0) {
3330     // Set up a frame object for the return address.
3331     unsigned SlotSize = RegInfo->getSlotSize();
3332     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3333                                                            -(int64_t)SlotSize,
3334                                                            false);
3335     FuncInfo->setRAIndex(ReturnAddrIndex);
3336   }
3337
3338   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3339 }
3340
3341 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3342                                        bool hasSymbolicDisplacement) {
3343   // Offset should fit into 32 bit immediate field.
3344   if (!isInt<32>(Offset))
3345     return false;
3346
3347   // If we don't have a symbolic displacement - we don't have any extra
3348   // restrictions.
3349   if (!hasSymbolicDisplacement)
3350     return true;
3351
3352   // FIXME: Some tweaks might be needed for medium code model.
3353   if (M != CodeModel::Small && M != CodeModel::Kernel)
3354     return false;
3355
3356   // For small code model we assume that latest object is 16MB before end of 31
3357   // bits boundary. We may also accept pretty large negative constants knowing
3358   // that all objects are in the positive half of address space.
3359   if (M == CodeModel::Small && Offset < 16*1024*1024)
3360     return true;
3361
3362   // For kernel code model we know that all object resist in the negative half
3363   // of 32bits address space. We may not accept negative offsets, since they may
3364   // be just off and we may accept pretty large positive ones.
3365   if (M == CodeModel::Kernel && Offset > 0)
3366     return true;
3367
3368   return false;
3369 }
3370
3371 /// isCalleePop - Determines whether the callee is required to pop its
3372 /// own arguments. Callee pop is necessary to support tail calls.
3373 bool X86::isCalleePop(CallingConv::ID CallingConv,
3374                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3375   if (IsVarArg)
3376     return false;
3377
3378   switch (CallingConv) {
3379   default:
3380     return false;
3381   case CallingConv::X86_StdCall:
3382     return !is64Bit;
3383   case CallingConv::X86_FastCall:
3384     return !is64Bit;
3385   case CallingConv::X86_ThisCall:
3386     return !is64Bit;
3387   case CallingConv::Fast:
3388     return TailCallOpt;
3389   case CallingConv::GHC:
3390     return TailCallOpt;
3391   case CallingConv::HiPE:
3392     return TailCallOpt;
3393   }
3394 }
3395
3396 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3397 /// specific condition code, returning the condition code and the LHS/RHS of the
3398 /// comparison to make.
3399 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3400                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3401   if (!isFP) {
3402     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3403       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3404         // X > -1   -> X == 0, jump !sign.
3405         RHS = DAG.getConstant(0, RHS.getValueType());
3406         return X86::COND_NS;
3407       }
3408       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3409         // X < 0   -> X == 0, jump on sign.
3410         return X86::COND_S;
3411       }
3412       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3413         // X < 1   -> X <= 0
3414         RHS = DAG.getConstant(0, RHS.getValueType());
3415         return X86::COND_LE;
3416       }
3417     }
3418
3419     switch (SetCCOpcode) {
3420     default: llvm_unreachable("Invalid integer condition!");
3421     case ISD::SETEQ:  return X86::COND_E;
3422     case ISD::SETGT:  return X86::COND_G;
3423     case ISD::SETGE:  return X86::COND_GE;
3424     case ISD::SETLT:  return X86::COND_L;
3425     case ISD::SETLE:  return X86::COND_LE;
3426     case ISD::SETNE:  return X86::COND_NE;
3427     case ISD::SETULT: return X86::COND_B;
3428     case ISD::SETUGT: return X86::COND_A;
3429     case ISD::SETULE: return X86::COND_BE;
3430     case ISD::SETUGE: return X86::COND_AE;
3431     }
3432   }
3433
3434   // First determine if it is required or is profitable to flip the operands.
3435
3436   // If LHS is a foldable load, but RHS is not, flip the condition.
3437   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3438       !ISD::isNON_EXTLoad(RHS.getNode())) {
3439     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3440     std::swap(LHS, RHS);
3441   }
3442
3443   switch (SetCCOpcode) {
3444   default: break;
3445   case ISD::SETOLT:
3446   case ISD::SETOLE:
3447   case ISD::SETUGT:
3448   case ISD::SETUGE:
3449     std::swap(LHS, RHS);
3450     break;
3451   }
3452
3453   // On a floating point condition, the flags are set as follows:
3454   // ZF  PF  CF   op
3455   //  0 | 0 | 0 | X > Y
3456   //  0 | 0 | 1 | X < Y
3457   //  1 | 0 | 0 | X == Y
3458   //  1 | 1 | 1 | unordered
3459   switch (SetCCOpcode) {
3460   default: llvm_unreachable("Condcode should be pre-legalized away");
3461   case ISD::SETUEQ:
3462   case ISD::SETEQ:   return X86::COND_E;
3463   case ISD::SETOLT:              // flipped
3464   case ISD::SETOGT:
3465   case ISD::SETGT:   return X86::COND_A;
3466   case ISD::SETOLE:              // flipped
3467   case ISD::SETOGE:
3468   case ISD::SETGE:   return X86::COND_AE;
3469   case ISD::SETUGT:              // flipped
3470   case ISD::SETULT:
3471   case ISD::SETLT:   return X86::COND_B;
3472   case ISD::SETUGE:              // flipped
3473   case ISD::SETULE:
3474   case ISD::SETLE:   return X86::COND_BE;
3475   case ISD::SETONE:
3476   case ISD::SETNE:   return X86::COND_NE;
3477   case ISD::SETUO:   return X86::COND_P;
3478   case ISD::SETO:    return X86::COND_NP;
3479   case ISD::SETOEQ:
3480   case ISD::SETUNE:  return X86::COND_INVALID;
3481   }
3482 }
3483
3484 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3485 /// code. Current x86 isa includes the following FP cmov instructions:
3486 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3487 static bool hasFPCMov(unsigned X86CC) {
3488   switch (X86CC) {
3489   default:
3490     return false;
3491   case X86::COND_B:
3492   case X86::COND_BE:
3493   case X86::COND_E:
3494   case X86::COND_P:
3495   case X86::COND_A:
3496   case X86::COND_AE:
3497   case X86::COND_NE:
3498   case X86::COND_NP:
3499     return true;
3500   }
3501 }
3502
3503 /// isFPImmLegal - Returns true if the target can instruction select the
3504 /// specified FP immediate natively. If false, the legalizer will
3505 /// materialize the FP immediate as a load from a constant pool.
3506 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3507   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3508     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3509       return true;
3510   }
3511   return false;
3512 }
3513
3514 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3515 /// the specified range (L, H].
3516 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3517   return (Val < 0) || (Val >= Low && Val < Hi);
3518 }
3519
3520 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3521 /// specified value.
3522 static bool isUndefOrEqual(int Val, int CmpVal) {
3523   return (Val < 0 || Val == CmpVal);
3524 }
3525
3526 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3527 /// from position Pos and ending in Pos+Size, falls within the specified
3528 /// sequential range (L, L+Pos]. or is undef.
3529 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3530                                        unsigned Pos, unsigned Size, int Low) {
3531   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3532     if (!isUndefOrEqual(Mask[i], Low))
3533       return false;
3534   return true;
3535 }
3536
3537 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3538 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3539 /// the second operand.
3540 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3541   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3542     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3543   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3544     return (Mask[0] < 2 && Mask[1] < 2);
3545   return false;
3546 }
3547
3548 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3549 /// is suitable for input to PSHUFHW.
3550 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3551   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3552     return false;
3553
3554   // Lower quadword copied in order or undef.
3555   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3556     return false;
3557
3558   // Upper quadword shuffled.
3559   for (unsigned i = 4; i != 8; ++i)
3560     if (!isUndefOrInRange(Mask[i], 4, 8))
3561       return false;
3562
3563   if (VT == MVT::v16i16) {
3564     // Lower quadword copied in order or undef.
3565     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3566       return false;
3567
3568     // Upper quadword shuffled.
3569     for (unsigned i = 12; i != 16; ++i)
3570       if (!isUndefOrInRange(Mask[i], 12, 16))
3571         return false;
3572   }
3573
3574   return true;
3575 }
3576
3577 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3578 /// is suitable for input to PSHUFLW.
3579 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3580   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3581     return false;
3582
3583   // Upper quadword copied in order.
3584   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3585     return false;
3586
3587   // Lower quadword shuffled.
3588   for (unsigned i = 0; i != 4; ++i)
3589     if (!isUndefOrInRange(Mask[i], 0, 4))
3590       return false;
3591
3592   if (VT == MVT::v16i16) {
3593     // Upper quadword copied in order.
3594     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3595       return false;
3596
3597     // Lower quadword shuffled.
3598     for (unsigned i = 8; i != 12; ++i)
3599       if (!isUndefOrInRange(Mask[i], 8, 12))
3600         return false;
3601   }
3602
3603   return true;
3604 }
3605
3606 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3607 /// is suitable for input to PALIGNR.
3608 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3609                           const X86Subtarget *Subtarget) {
3610   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3611       (VT.is256BitVector() && !Subtarget->hasInt256()))
3612     return false;
3613
3614   unsigned NumElts = VT.getVectorNumElements();
3615   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3616   unsigned NumLaneElts = NumElts/NumLanes;
3617
3618   // Do not handle 64-bit element shuffles with palignr.
3619   if (NumLaneElts == 2)
3620     return false;
3621
3622   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3623     unsigned i;
3624     for (i = 0; i != NumLaneElts; ++i) {
3625       if (Mask[i+l] >= 0)
3626         break;
3627     }
3628
3629     // Lane is all undef, go to next lane
3630     if (i == NumLaneElts)
3631       continue;
3632
3633     int Start = Mask[i+l];
3634
3635     // Make sure its in this lane in one of the sources
3636     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3637         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3638       return false;
3639
3640     // If not lane 0, then we must match lane 0
3641     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3642       return false;
3643
3644     // Correct second source to be contiguous with first source
3645     if (Start >= (int)NumElts)
3646       Start -= NumElts - NumLaneElts;
3647
3648     // Make sure we're shifting in the right direction.
3649     if (Start <= (int)(i+l))
3650       return false;
3651
3652     Start -= i;
3653
3654     // Check the rest of the elements to see if they are consecutive.
3655     for (++i; i != NumLaneElts; ++i) {
3656       int Idx = Mask[i+l];
3657
3658       // Make sure its in this lane
3659       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3660           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3661         return false;
3662
3663       // If not lane 0, then we must match lane 0
3664       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3665         return false;
3666
3667       if (Idx >= (int)NumElts)
3668         Idx -= NumElts - NumLaneElts;
3669
3670       if (!isUndefOrEqual(Idx, Start+i))
3671         return false;
3672
3673     }
3674   }
3675
3676   return true;
3677 }
3678
3679 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3680 /// the two vector operands have swapped position.
3681 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3682                                      unsigned NumElems) {
3683   for (unsigned i = 0; i != NumElems; ++i) {
3684     int idx = Mask[i];
3685     if (idx < 0)
3686       continue;
3687     else if (idx < (int)NumElems)
3688       Mask[i] = idx + NumElems;
3689     else
3690       Mask[i] = idx - NumElems;
3691   }
3692 }
3693
3694 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3695 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3696 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3697 /// reverse of what x86 shuffles want.
3698 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3699
3700   unsigned NumElems = VT.getVectorNumElements();
3701   unsigned NumLanes = VT.getSizeInBits()/128;
3702   unsigned NumLaneElems = NumElems/NumLanes;
3703
3704   if (NumLaneElems != 2 && NumLaneElems != 4)
3705     return false;
3706
3707   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3708   bool symetricMaskRequired =
3709     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3710
3711   // VSHUFPSY divides the resulting vector into 4 chunks.
3712   // The sources are also splitted into 4 chunks, and each destination
3713   // chunk must come from a different source chunk.
3714   //
3715   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3716   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3717   //
3718   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3719   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3720   //
3721   // VSHUFPDY divides the resulting vector into 4 chunks.
3722   // The sources are also splitted into 4 chunks, and each destination
3723   // chunk must come from a different source chunk.
3724   //
3725   //  SRC1 =>      X3       X2       X1       X0
3726   //  SRC2 =>      Y3       Y2       Y1       Y0
3727   //
3728   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3729   //
3730   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3731   unsigned HalfLaneElems = NumLaneElems/2;
3732   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3733     for (unsigned i = 0; i != NumLaneElems; ++i) {
3734       int Idx = Mask[i+l];
3735       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3736       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3737         return false;
3738       // For VSHUFPSY, the mask of the second half must be the same as the
3739       // first but with the appropriate offsets. This works in the same way as
3740       // VPERMILPS works with masks.
3741       if (!symetricMaskRequired || Idx < 0)
3742         continue;
3743       if (MaskVal[i] < 0) {
3744         MaskVal[i] = Idx - l;
3745         continue;
3746       }
3747       if ((signed)(Idx - l) != MaskVal[i])
3748         return false;
3749     }
3750   }
3751
3752   return true;
3753 }
3754
3755 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3756 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3757 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3758   if (!VT.is128BitVector())
3759     return false;
3760
3761   unsigned NumElems = VT.getVectorNumElements();
3762
3763   if (NumElems != 4)
3764     return false;
3765
3766   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3767   return isUndefOrEqual(Mask[0], 6) &&
3768          isUndefOrEqual(Mask[1], 7) &&
3769          isUndefOrEqual(Mask[2], 2) &&
3770          isUndefOrEqual(Mask[3], 3);
3771 }
3772
3773 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3774 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3775 /// <2, 3, 2, 3>
3776 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3777   if (!VT.is128BitVector())
3778     return false;
3779
3780   unsigned NumElems = VT.getVectorNumElements();
3781
3782   if (NumElems != 4)
3783     return false;
3784
3785   return isUndefOrEqual(Mask[0], 2) &&
3786          isUndefOrEqual(Mask[1], 3) &&
3787          isUndefOrEqual(Mask[2], 2) &&
3788          isUndefOrEqual(Mask[3], 3);
3789 }
3790
3791 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3792 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3793 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3794   if (!VT.is128BitVector())
3795     return false;
3796
3797   unsigned NumElems = VT.getVectorNumElements();
3798
3799   if (NumElems != 2 && NumElems != 4)
3800     return false;
3801
3802   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3803     if (!isUndefOrEqual(Mask[i], i + NumElems))
3804       return false;
3805
3806   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3807     if (!isUndefOrEqual(Mask[i], i))
3808       return false;
3809
3810   return true;
3811 }
3812
3813 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3814 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3815 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3816   if (!VT.is128BitVector())
3817     return false;
3818
3819   unsigned NumElems = VT.getVectorNumElements();
3820
3821   if (NumElems != 2 && NumElems != 4)
3822     return false;
3823
3824   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3825     if (!isUndefOrEqual(Mask[i], i))
3826       return false;
3827
3828   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3829     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3830       return false;
3831
3832   return true;
3833 }
3834
3835 //
3836 // Some special combinations that can be optimized.
3837 //
3838 static
3839 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3840                                SelectionDAG &DAG) {
3841   MVT VT = SVOp->getSimpleValueType(0);
3842   SDLoc dl(SVOp);
3843
3844   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3845     return SDValue();
3846
3847   ArrayRef<int> Mask = SVOp->getMask();
3848
3849   // These are the special masks that may be optimized.
3850   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3851   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3852   bool MatchEvenMask = true;
3853   bool MatchOddMask  = true;
3854   for (int i=0; i<8; ++i) {
3855     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3856       MatchEvenMask = false;
3857     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3858       MatchOddMask = false;
3859   }
3860
3861   if (!MatchEvenMask && !MatchOddMask)
3862     return SDValue();
3863
3864   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3865
3866   SDValue Op0 = SVOp->getOperand(0);
3867   SDValue Op1 = SVOp->getOperand(1);
3868
3869   if (MatchEvenMask) {
3870     // Shift the second operand right to 32 bits.
3871     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3872     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3873   } else {
3874     // Shift the first operand left to 32 bits.
3875     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3876     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3877   }
3878   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3879   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3880 }
3881
3882 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3883 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3884 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3885                          bool HasInt256, bool V2IsSplat = false) {
3886
3887   assert(VT.getSizeInBits() >= 128 &&
3888          "Unsupported vector type for unpckl");
3889
3890   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3891   unsigned NumLanes;
3892   unsigned NumOf256BitLanes;
3893   unsigned NumElts = VT.getVectorNumElements();
3894   if (VT.is256BitVector()) {
3895     if (NumElts != 4 && NumElts != 8 &&
3896         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3897     return false;
3898     NumLanes = 2;
3899     NumOf256BitLanes = 1;
3900   } else if (VT.is512BitVector()) {
3901     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3902            "Unsupported vector type for unpckh");
3903     NumLanes = 2;
3904     NumOf256BitLanes = 2;
3905   } else {
3906     NumLanes = 1;
3907     NumOf256BitLanes = 1;
3908   }
3909
3910   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3911   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3912
3913   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3914     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3915       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3916         int BitI  = Mask[l256*NumEltsInStride+l+i];
3917         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3918         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3919           return false;
3920         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3921           return false;
3922         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3923           return false;
3924       }
3925     }
3926   }
3927   return true;
3928 }
3929
3930 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3931 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3932 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3933                          bool HasInt256, bool V2IsSplat = false) {
3934   assert(VT.getSizeInBits() >= 128 &&
3935          "Unsupported vector type for unpckh");
3936
3937   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3938   unsigned NumLanes;
3939   unsigned NumOf256BitLanes;
3940   unsigned NumElts = VT.getVectorNumElements();
3941   if (VT.is256BitVector()) {
3942     if (NumElts != 4 && NumElts != 8 &&
3943         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3944     return false;
3945     NumLanes = 2;
3946     NumOf256BitLanes = 1;
3947   } else if (VT.is512BitVector()) {
3948     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3949            "Unsupported vector type for unpckh");
3950     NumLanes = 2;
3951     NumOf256BitLanes = 2;
3952   } else {
3953     NumLanes = 1;
3954     NumOf256BitLanes = 1;
3955   }
3956
3957   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3958   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3959
3960   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3961     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3962       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3963         int BitI  = Mask[l256*NumEltsInStride+l+i];
3964         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3965         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3966           return false;
3967         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3968           return false;
3969         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3970           return false;
3971       }
3972     }
3973   }
3974   return true;
3975 }
3976
3977 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3978 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3979 /// <0, 0, 1, 1>
3980 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3981   unsigned NumElts = VT.getVectorNumElements();
3982   bool Is256BitVec = VT.is256BitVector();
3983
3984   if (VT.is512BitVector())
3985     return false;
3986   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3987          "Unsupported vector type for unpckh");
3988
3989   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
3990       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3991     return false;
3992
3993   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3994   // FIXME: Need a better way to get rid of this, there's no latency difference
3995   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3996   // the former later. We should also remove the "_undef" special mask.
3997   if (NumElts == 4 && Is256BitVec)
3998     return false;
3999
4000   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4001   // independently on 128-bit lanes.
4002   unsigned NumLanes = VT.getSizeInBits()/128;
4003   unsigned NumLaneElts = NumElts/NumLanes;
4004
4005   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4006     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4007       int BitI  = Mask[l+i];
4008       int BitI1 = Mask[l+i+1];
4009
4010       if (!isUndefOrEqual(BitI, j))
4011         return false;
4012       if (!isUndefOrEqual(BitI1, j))
4013         return false;
4014     }
4015   }
4016
4017   return true;
4018 }
4019
4020 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4021 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4022 /// <2, 2, 3, 3>
4023 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4024   unsigned NumElts = VT.getVectorNumElements();
4025
4026   if (VT.is512BitVector())
4027     return false;
4028
4029   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4030          "Unsupported vector type for unpckh");
4031
4032   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4033       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4034     return false;
4035
4036   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4037   // independently on 128-bit lanes.
4038   unsigned NumLanes = VT.getSizeInBits()/128;
4039   unsigned NumLaneElts = NumElts/NumLanes;
4040
4041   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4042     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4043       int BitI  = Mask[l+i];
4044       int BitI1 = Mask[l+i+1];
4045       if (!isUndefOrEqual(BitI, j))
4046         return false;
4047       if (!isUndefOrEqual(BitI1, j))
4048         return false;
4049     }
4050   }
4051   return true;
4052 }
4053
4054 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4055 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4056 /// MOVSD, and MOVD, i.e. setting the lowest element.
4057 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4058   if (VT.getVectorElementType().getSizeInBits() < 32)
4059     return false;
4060   if (!VT.is128BitVector())
4061     return false;
4062
4063   unsigned NumElts = VT.getVectorNumElements();
4064
4065   if (!isUndefOrEqual(Mask[0], NumElts))
4066     return false;
4067
4068   for (unsigned i = 1; i != NumElts; ++i)
4069     if (!isUndefOrEqual(Mask[i], i))
4070       return false;
4071
4072   return true;
4073 }
4074
4075 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4076 /// as permutations between 128-bit chunks or halves. As an example: this
4077 /// shuffle bellow:
4078 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4079 /// The first half comes from the second half of V1 and the second half from the
4080 /// the second half of V2.
4081 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4082   if (!HasFp256 || !VT.is256BitVector())
4083     return false;
4084
4085   // The shuffle result is divided into half A and half B. In total the two
4086   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4087   // B must come from C, D, E or F.
4088   unsigned HalfSize = VT.getVectorNumElements()/2;
4089   bool MatchA = false, MatchB = false;
4090
4091   // Check if A comes from one of C, D, E, F.
4092   for (unsigned Half = 0; Half != 4; ++Half) {
4093     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4094       MatchA = true;
4095       break;
4096     }
4097   }
4098
4099   // Check if B comes from one of C, D, E, F.
4100   for (unsigned Half = 0; Half != 4; ++Half) {
4101     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4102       MatchB = true;
4103       break;
4104     }
4105   }
4106
4107   return MatchA && MatchB;
4108 }
4109
4110 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4111 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4112 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4113   MVT VT = SVOp->getSimpleValueType(0);
4114
4115   unsigned HalfSize = VT.getVectorNumElements()/2;
4116
4117   unsigned FstHalf = 0, SndHalf = 0;
4118   for (unsigned i = 0; i < HalfSize; ++i) {
4119     if (SVOp->getMaskElt(i) > 0) {
4120       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4121       break;
4122     }
4123   }
4124   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4125     if (SVOp->getMaskElt(i) > 0) {
4126       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4127       break;
4128     }
4129   }
4130
4131   return (FstHalf | (SndHalf << 4));
4132 }
4133
4134 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4135 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4136   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4137   if (EltSize < 32)
4138     return false;
4139
4140   unsigned NumElts = VT.getVectorNumElements();
4141   Imm8 = 0;
4142   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4143     for (unsigned i = 0; i != NumElts; ++i) {
4144       if (Mask[i] < 0)
4145         continue;
4146       Imm8 |= Mask[i] << (i*2);
4147     }
4148     return true;
4149   }
4150
4151   unsigned LaneSize = 4;
4152   SmallVector<int, 4> MaskVal(LaneSize, -1);
4153
4154   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4155     for (unsigned i = 0; i != LaneSize; ++i) {
4156       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4157         return false;
4158       if (Mask[i+l] < 0)
4159         continue;
4160       if (MaskVal[i] < 0) {
4161         MaskVal[i] = Mask[i+l] - l;
4162         Imm8 |= MaskVal[i] << (i*2);
4163         continue;
4164       }
4165       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4166         return false;
4167     }
4168   }
4169   return true;
4170 }
4171
4172 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4173 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4174 /// Note that VPERMIL mask matching is different depending whether theunderlying
4175 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4176 /// to the same elements of the low, but to the higher half of the source.
4177 /// In VPERMILPD the two lanes could be shuffled independently of each other
4178 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4179 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4180   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4181   if (VT.getSizeInBits() < 256 || EltSize < 32)
4182     return false;
4183   bool symetricMaskRequired = (EltSize == 32);
4184   unsigned NumElts = VT.getVectorNumElements();
4185
4186   unsigned NumLanes = VT.getSizeInBits()/128;
4187   unsigned LaneSize = NumElts/NumLanes;
4188   // 2 or 4 elements in one lane
4189   
4190   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4191   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4192     for (unsigned i = 0; i != LaneSize; ++i) {
4193       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4194         return false;
4195       if (symetricMaskRequired) {
4196         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4197           ExpectedMaskVal[i] = Mask[i+l] - l;
4198           continue;
4199         }
4200         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4201           return false;
4202       }
4203     }
4204   }
4205   return true;
4206 }
4207
4208 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4209 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4210 /// element of vector 2 and the other elements to come from vector 1 in order.
4211 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4212                                bool V2IsSplat = false, bool V2IsUndef = false) {
4213   if (!VT.is128BitVector())
4214     return false;
4215
4216   unsigned NumOps = VT.getVectorNumElements();
4217   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4218     return false;
4219
4220   if (!isUndefOrEqual(Mask[0], 0))
4221     return false;
4222
4223   for (unsigned i = 1; i != NumOps; ++i)
4224     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4225           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4226           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4227       return false;
4228
4229   return true;
4230 }
4231
4232 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4233 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4234 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4235 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4236                            const X86Subtarget *Subtarget) {
4237   if (!Subtarget->hasSSE3())
4238     return false;
4239
4240   unsigned NumElems = VT.getVectorNumElements();
4241
4242   if ((VT.is128BitVector() && NumElems != 4) ||
4243       (VT.is256BitVector() && NumElems != 8) ||
4244       (VT.is512BitVector() && NumElems != 16))
4245     return false;
4246
4247   // "i+1" is the value the indexed mask element must have
4248   for (unsigned i = 0; i != NumElems; i += 2)
4249     if (!isUndefOrEqual(Mask[i], i+1) ||
4250         !isUndefOrEqual(Mask[i+1], i+1))
4251       return false;
4252
4253   return true;
4254 }
4255
4256 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4257 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4258 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4259 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4260                            const X86Subtarget *Subtarget) {
4261   if (!Subtarget->hasSSE3())
4262     return false;
4263
4264   unsigned NumElems = VT.getVectorNumElements();
4265
4266   if ((VT.is128BitVector() && NumElems != 4) ||
4267       (VT.is256BitVector() && NumElems != 8) ||
4268       (VT.is512BitVector() && NumElems != 16))
4269     return false;
4270
4271   // "i" is the value the indexed mask element must have
4272   for (unsigned i = 0; i != NumElems; i += 2)
4273     if (!isUndefOrEqual(Mask[i], i) ||
4274         !isUndefOrEqual(Mask[i+1], i))
4275       return false;
4276
4277   return true;
4278 }
4279
4280 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4281 /// specifies a shuffle of elements that is suitable for input to 256-bit
4282 /// version of MOVDDUP.
4283 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4284   if (!HasFp256 || !VT.is256BitVector())
4285     return false;
4286
4287   unsigned NumElts = VT.getVectorNumElements();
4288   if (NumElts != 4)
4289     return false;
4290
4291   for (unsigned i = 0; i != NumElts/2; ++i)
4292     if (!isUndefOrEqual(Mask[i], 0))
4293       return false;
4294   for (unsigned i = NumElts/2; i != NumElts; ++i)
4295     if (!isUndefOrEqual(Mask[i], NumElts/2))
4296       return false;
4297   return true;
4298 }
4299
4300 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4301 /// specifies a shuffle of elements that is suitable for input to 128-bit
4302 /// version of MOVDDUP.
4303 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4304   if (!VT.is128BitVector())
4305     return false;
4306
4307   unsigned e = VT.getVectorNumElements() / 2;
4308   for (unsigned i = 0; i != e; ++i)
4309     if (!isUndefOrEqual(Mask[i], i))
4310       return false;
4311   for (unsigned i = 0; i != e; ++i)
4312     if (!isUndefOrEqual(Mask[e+i], i))
4313       return false;
4314   return true;
4315 }
4316
4317 /// isVEXTRACTIndex - Return true if the specified
4318 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4319 /// suitable for instruction that extract 128 or 256 bit vectors
4320 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4321   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4322   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4323     return false;
4324
4325   // The index should be aligned on a vecWidth-bit boundary.
4326   uint64_t Index =
4327     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4328
4329   MVT VT = N->getSimpleValueType(0);
4330   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4331   bool Result = (Index * ElSize) % vecWidth == 0;
4332
4333   return Result;
4334 }
4335
4336 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4337 /// operand specifies a subvector insert that is suitable for input to
4338 /// insertion of 128 or 256-bit subvectors
4339 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4340   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4341   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4342     return false;
4343   // The index should be aligned on a vecWidth-bit boundary.
4344   uint64_t Index =
4345     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4346
4347   MVT VT = N->getSimpleValueType(0);
4348   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4349   bool Result = (Index * ElSize) % vecWidth == 0;
4350
4351   return Result;
4352 }
4353
4354 bool X86::isVINSERT128Index(SDNode *N) {
4355   return isVINSERTIndex(N, 128);
4356 }
4357
4358 bool X86::isVINSERT256Index(SDNode *N) {
4359   return isVINSERTIndex(N, 256);
4360 }
4361
4362 bool X86::isVEXTRACT128Index(SDNode *N) {
4363   return isVEXTRACTIndex(N, 128);
4364 }
4365
4366 bool X86::isVEXTRACT256Index(SDNode *N) {
4367   return isVEXTRACTIndex(N, 256);
4368 }
4369
4370 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4371 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4372 /// Handles 128-bit and 256-bit.
4373 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4374   MVT VT = N->getSimpleValueType(0);
4375
4376   assert((VT.getSizeInBits() >= 128) &&
4377          "Unsupported vector type for PSHUF/SHUFP");
4378
4379   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4380   // independently on 128-bit lanes.
4381   unsigned NumElts = VT.getVectorNumElements();
4382   unsigned NumLanes = VT.getSizeInBits()/128;
4383   unsigned NumLaneElts = NumElts/NumLanes;
4384
4385   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4386          "Only supports 2, 4 or 8 elements per lane");
4387
4388   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4389   unsigned Mask = 0;
4390   for (unsigned i = 0; i != NumElts; ++i) {
4391     int Elt = N->getMaskElt(i);
4392     if (Elt < 0) continue;
4393     Elt &= NumLaneElts - 1;
4394     unsigned ShAmt = (i << Shift) % 8;
4395     Mask |= Elt << ShAmt;
4396   }
4397
4398   return Mask;
4399 }
4400
4401 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4402 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4403 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4404   MVT VT = N->getSimpleValueType(0);
4405
4406   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4407          "Unsupported vector type for PSHUFHW");
4408
4409   unsigned NumElts = VT.getVectorNumElements();
4410
4411   unsigned Mask = 0;
4412   for (unsigned l = 0; l != NumElts; l += 8) {
4413     // 8 nodes per lane, but we only care about the last 4.
4414     for (unsigned i = 0; i < 4; ++i) {
4415       int Elt = N->getMaskElt(l+i+4);
4416       if (Elt < 0) continue;
4417       Elt &= 0x3; // only 2-bits.
4418       Mask |= Elt << (i * 2);
4419     }
4420   }
4421
4422   return Mask;
4423 }
4424
4425 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4426 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4427 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4428   MVT VT = N->getSimpleValueType(0);
4429
4430   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4431          "Unsupported vector type for PSHUFHW");
4432
4433   unsigned NumElts = VT.getVectorNumElements();
4434
4435   unsigned Mask = 0;
4436   for (unsigned l = 0; l != NumElts; l += 8) {
4437     // 8 nodes per lane, but we only care about the first 4.
4438     for (unsigned i = 0; i < 4; ++i) {
4439       int Elt = N->getMaskElt(l+i);
4440       if (Elt < 0) continue;
4441       Elt &= 0x3; // only 2-bits
4442       Mask |= Elt << (i * 2);
4443     }
4444   }
4445
4446   return Mask;
4447 }
4448
4449 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4450 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4451 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4452   MVT VT = SVOp->getSimpleValueType(0);
4453   unsigned EltSize = VT.is512BitVector() ? 1 :
4454     VT.getVectorElementType().getSizeInBits() >> 3;
4455
4456   unsigned NumElts = VT.getVectorNumElements();
4457   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4458   unsigned NumLaneElts = NumElts/NumLanes;
4459
4460   int Val = 0;
4461   unsigned i;
4462   for (i = 0; i != NumElts; ++i) {
4463     Val = SVOp->getMaskElt(i);
4464     if (Val >= 0)
4465       break;
4466   }
4467   if (Val >= (int)NumElts)
4468     Val -= NumElts - NumLaneElts;
4469
4470   assert(Val - i > 0 && "PALIGNR imm should be positive");
4471   return (Val - i) * EltSize;
4472 }
4473
4474 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4475   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4476   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4477     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4478
4479   uint64_t Index =
4480     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4481
4482   MVT VecVT = N->getOperand(0).getSimpleValueType();
4483   MVT ElVT = VecVT.getVectorElementType();
4484
4485   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4486   return Index / NumElemsPerChunk;
4487 }
4488
4489 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4490   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4491   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4492     llvm_unreachable("Illegal insert subvector for VINSERT");
4493
4494   uint64_t Index =
4495     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4496
4497   MVT VecVT = N->getSimpleValueType(0);
4498   MVT ElVT = VecVT.getVectorElementType();
4499
4500   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4501   return Index / NumElemsPerChunk;
4502 }
4503
4504 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4505 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4506 /// and VINSERTI128 instructions.
4507 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4508   return getExtractVEXTRACTImmediate(N, 128);
4509 }
4510
4511 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4512 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4513 /// and VINSERTI64x4 instructions.
4514 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4515   return getExtractVEXTRACTImmediate(N, 256);
4516 }
4517
4518 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4519 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4520 /// and VINSERTI128 instructions.
4521 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4522   return getInsertVINSERTImmediate(N, 128);
4523 }
4524
4525 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4526 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4527 /// and VINSERTI64x4 instructions.
4528 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4529   return getInsertVINSERTImmediate(N, 256);
4530 }
4531
4532 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4533 /// constant +0.0.
4534 bool X86::isZeroNode(SDValue Elt) {
4535   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4536     return CN->isNullValue();
4537   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4538     return CFP->getValueAPF().isPosZero();
4539   return false;
4540 }
4541
4542 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4543 /// their permute mask.
4544 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4545                                     SelectionDAG &DAG) {
4546   MVT VT = SVOp->getSimpleValueType(0);
4547   unsigned NumElems = VT.getVectorNumElements();
4548   SmallVector<int, 8> MaskVec;
4549
4550   for (unsigned i = 0; i != NumElems; ++i) {
4551     int Idx = SVOp->getMaskElt(i);
4552     if (Idx >= 0) {
4553       if (Idx < (int)NumElems)
4554         Idx += NumElems;
4555       else
4556         Idx -= NumElems;
4557     }
4558     MaskVec.push_back(Idx);
4559   }
4560   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4561                               SVOp->getOperand(0), &MaskVec[0]);
4562 }
4563
4564 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4565 /// match movhlps. The lower half elements should come from upper half of
4566 /// V1 (and in order), and the upper half elements should come from the upper
4567 /// half of V2 (and in order).
4568 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4569   if (!VT.is128BitVector())
4570     return false;
4571   if (VT.getVectorNumElements() != 4)
4572     return false;
4573   for (unsigned i = 0, e = 2; i != e; ++i)
4574     if (!isUndefOrEqual(Mask[i], i+2))
4575       return false;
4576   for (unsigned i = 2; i != 4; ++i)
4577     if (!isUndefOrEqual(Mask[i], i+4))
4578       return false;
4579   return true;
4580 }
4581
4582 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4583 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4584 /// required.
4585 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4586   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4587     return false;
4588   N = N->getOperand(0).getNode();
4589   if (!ISD::isNON_EXTLoad(N))
4590     return false;
4591   if (LD)
4592     *LD = cast<LoadSDNode>(N);
4593   return true;
4594 }
4595
4596 // Test whether the given value is a vector value which will be legalized
4597 // into a load.
4598 static bool WillBeConstantPoolLoad(SDNode *N) {
4599   if (N->getOpcode() != ISD::BUILD_VECTOR)
4600     return false;
4601
4602   // Check for any non-constant elements.
4603   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4604     switch (N->getOperand(i).getNode()->getOpcode()) {
4605     case ISD::UNDEF:
4606     case ISD::ConstantFP:
4607     case ISD::Constant:
4608       break;
4609     default:
4610       return false;
4611     }
4612
4613   // Vectors of all-zeros and all-ones are materialized with special
4614   // instructions rather than being loaded.
4615   return !ISD::isBuildVectorAllZeros(N) &&
4616          !ISD::isBuildVectorAllOnes(N);
4617 }
4618
4619 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4620 /// match movlp{s|d}. The lower half elements should come from lower half of
4621 /// V1 (and in order), and the upper half elements should come from the upper
4622 /// half of V2 (and in order). And since V1 will become the source of the
4623 /// MOVLP, it must be either a vector load or a scalar load to vector.
4624 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4625                                ArrayRef<int> Mask, MVT VT) {
4626   if (!VT.is128BitVector())
4627     return false;
4628
4629   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4630     return false;
4631   // Is V2 is a vector load, don't do this transformation. We will try to use
4632   // load folding shufps op.
4633   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4634     return false;
4635
4636   unsigned NumElems = VT.getVectorNumElements();
4637
4638   if (NumElems != 2 && NumElems != 4)
4639     return false;
4640   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4641     if (!isUndefOrEqual(Mask[i], i))
4642       return false;
4643   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4644     if (!isUndefOrEqual(Mask[i], i+NumElems))
4645       return false;
4646   return true;
4647 }
4648
4649 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4650 /// all the same.
4651 static bool isSplatVector(SDNode *N) {
4652   if (N->getOpcode() != ISD::BUILD_VECTOR)
4653     return false;
4654
4655   SDValue SplatValue = N->getOperand(0);
4656   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4657     if (N->getOperand(i) != SplatValue)
4658       return false;
4659   return true;
4660 }
4661
4662 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4663 /// to an zero vector.
4664 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4665 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4666   SDValue V1 = N->getOperand(0);
4667   SDValue V2 = N->getOperand(1);
4668   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4669   for (unsigned i = 0; i != NumElems; ++i) {
4670     int Idx = N->getMaskElt(i);
4671     if (Idx >= (int)NumElems) {
4672       unsigned Opc = V2.getOpcode();
4673       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4674         continue;
4675       if (Opc != ISD::BUILD_VECTOR ||
4676           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4677         return false;
4678     } else if (Idx >= 0) {
4679       unsigned Opc = V1.getOpcode();
4680       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4681         continue;
4682       if (Opc != ISD::BUILD_VECTOR ||
4683           !X86::isZeroNode(V1.getOperand(Idx)))
4684         return false;
4685     }
4686   }
4687   return true;
4688 }
4689
4690 /// getZeroVector - Returns a vector of specified type with all zero elements.
4691 ///
4692 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4693                              SelectionDAG &DAG, SDLoc dl) {
4694   assert(VT.isVector() && "Expected a vector type");
4695
4696   // Always build SSE zero vectors as <4 x i32> bitcasted
4697   // to their dest type. This ensures they get CSE'd.
4698   SDValue Vec;
4699   if (VT.is128BitVector()) {  // SSE
4700     if (Subtarget->hasSSE2()) {  // SSE2
4701       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4702       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4703     } else { // SSE1
4704       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4705       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4706     }
4707   } else if (VT.is256BitVector()) { // AVX
4708     if (Subtarget->hasInt256()) { // AVX2
4709       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4710       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4711       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4712                         array_lengthof(Ops));
4713     } else {
4714       // 256-bit logic and arithmetic instructions in AVX are all
4715       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4716       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4717       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4718       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4719                         array_lengthof(Ops));
4720     }
4721   } else if (VT.is512BitVector()) { // AVX-512
4722       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4723       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4724                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4725       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4726   } else
4727     llvm_unreachable("Unexpected vector type");
4728
4729   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4730 }
4731
4732 /// getOnesVector - Returns a vector of specified type with all bits set.
4733 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4734 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4735 /// Then bitcast to their original type, ensuring they get CSE'd.
4736 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4737                              SDLoc dl) {
4738   assert(VT.isVector() && "Expected a vector type");
4739
4740   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4741   SDValue Vec;
4742   if (VT.is256BitVector()) {
4743     if (HasInt256) { // AVX2
4744       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4745       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4746                         array_lengthof(Ops));
4747     } else { // AVX
4748       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4749       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4750     }
4751   } else if (VT.is128BitVector()) {
4752     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4753   } else
4754     llvm_unreachable("Unexpected vector type");
4755
4756   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4757 }
4758
4759 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4760 /// that point to V2 points to its first element.
4761 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4762   for (unsigned i = 0; i != NumElems; ++i) {
4763     if (Mask[i] > (int)NumElems) {
4764       Mask[i] = NumElems;
4765     }
4766   }
4767 }
4768
4769 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4770 /// operation of specified width.
4771 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4772                        SDValue V2) {
4773   unsigned NumElems = VT.getVectorNumElements();
4774   SmallVector<int, 8> Mask;
4775   Mask.push_back(NumElems);
4776   for (unsigned i = 1; i != NumElems; ++i)
4777     Mask.push_back(i);
4778   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4779 }
4780
4781 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4782 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4783                           SDValue V2) {
4784   unsigned NumElems = VT.getVectorNumElements();
4785   SmallVector<int, 8> Mask;
4786   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4787     Mask.push_back(i);
4788     Mask.push_back(i + NumElems);
4789   }
4790   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4791 }
4792
4793 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4794 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4795                           SDValue V2) {
4796   unsigned NumElems = VT.getVectorNumElements();
4797   SmallVector<int, 8> Mask;
4798   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4799     Mask.push_back(i + Half);
4800     Mask.push_back(i + NumElems + Half);
4801   }
4802   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4803 }
4804
4805 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4806 // a generic shuffle instruction because the target has no such instructions.
4807 // Generate shuffles which repeat i16 and i8 several times until they can be
4808 // represented by v4f32 and then be manipulated by target suported shuffles.
4809 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4810   MVT VT = V.getSimpleValueType();
4811   int NumElems = VT.getVectorNumElements();
4812   SDLoc dl(V);
4813
4814   while (NumElems > 4) {
4815     if (EltNo < NumElems/2) {
4816       V = getUnpackl(DAG, dl, VT, V, V);
4817     } else {
4818       V = getUnpackh(DAG, dl, VT, V, V);
4819       EltNo -= NumElems/2;
4820     }
4821     NumElems >>= 1;
4822   }
4823   return V;
4824 }
4825
4826 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4827 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4828   MVT VT = V.getSimpleValueType();
4829   SDLoc dl(V);
4830
4831   if (VT.is128BitVector()) {
4832     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4833     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4834     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4835                              &SplatMask[0]);
4836   } else if (VT.is256BitVector()) {
4837     // To use VPERMILPS to splat scalars, the second half of indicies must
4838     // refer to the higher part, which is a duplication of the lower one,
4839     // because VPERMILPS can only handle in-lane permutations.
4840     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4841                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4842
4843     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4844     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4845                              &SplatMask[0]);
4846   } else
4847     llvm_unreachable("Vector size not supported");
4848
4849   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4850 }
4851
4852 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4853 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4854   MVT SrcVT = SV->getSimpleValueType(0);
4855   SDValue V1 = SV->getOperand(0);
4856   SDLoc dl(SV);
4857
4858   int EltNo = SV->getSplatIndex();
4859   int NumElems = SrcVT.getVectorNumElements();
4860   bool Is256BitVec = SrcVT.is256BitVector();
4861
4862   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4863          "Unknown how to promote splat for type");
4864
4865   // Extract the 128-bit part containing the splat element and update
4866   // the splat element index when it refers to the higher register.
4867   if (Is256BitVec) {
4868     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4869     if (EltNo >= NumElems/2)
4870       EltNo -= NumElems/2;
4871   }
4872
4873   // All i16 and i8 vector types can't be used directly by a generic shuffle
4874   // instruction because the target has no such instruction. Generate shuffles
4875   // which repeat i16 and i8 several times until they fit in i32, and then can
4876   // be manipulated by target suported shuffles.
4877   MVT EltVT = SrcVT.getVectorElementType();
4878   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4879     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4880
4881   // Recreate the 256-bit vector and place the same 128-bit vector
4882   // into the low and high part. This is necessary because we want
4883   // to use VPERM* to shuffle the vectors
4884   if (Is256BitVec) {
4885     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4886   }
4887
4888   return getLegalSplat(DAG, V1, EltNo);
4889 }
4890
4891 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4892 /// vector of zero or undef vector.  This produces a shuffle where the low
4893 /// element of V2 is swizzled into the zero/undef vector, landing at element
4894 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4895 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4896                                            bool IsZero,
4897                                            const X86Subtarget *Subtarget,
4898                                            SelectionDAG &DAG) {
4899   MVT VT = V2.getSimpleValueType();
4900   SDValue V1 = IsZero
4901     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4902   unsigned NumElems = VT.getVectorNumElements();
4903   SmallVector<int, 16> MaskVec;
4904   for (unsigned i = 0; i != NumElems; ++i)
4905     // If this is the insertion idx, put the low elt of V2 here.
4906     MaskVec.push_back(i == Idx ? NumElems : i);
4907   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4908 }
4909
4910 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4911 /// target specific opcode. Returns true if the Mask could be calculated.
4912 /// Sets IsUnary to true if only uses one source.
4913 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4914                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4915   unsigned NumElems = VT.getVectorNumElements();
4916   SDValue ImmN;
4917
4918   IsUnary = false;
4919   switch(N->getOpcode()) {
4920   case X86ISD::SHUFP:
4921     ImmN = N->getOperand(N->getNumOperands()-1);
4922     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4923     break;
4924   case X86ISD::UNPCKH:
4925     DecodeUNPCKHMask(VT, Mask);
4926     break;
4927   case X86ISD::UNPCKL:
4928     DecodeUNPCKLMask(VT, Mask);
4929     break;
4930   case X86ISD::MOVHLPS:
4931     DecodeMOVHLPSMask(NumElems, Mask);
4932     break;
4933   case X86ISD::MOVLHPS:
4934     DecodeMOVLHPSMask(NumElems, Mask);
4935     break;
4936   case X86ISD::PALIGNR:
4937     ImmN = N->getOperand(N->getNumOperands()-1);
4938     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4939     break;
4940   case X86ISD::PSHUFD:
4941   case X86ISD::VPERMILP:
4942     ImmN = N->getOperand(N->getNumOperands()-1);
4943     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4944     IsUnary = true;
4945     break;
4946   case X86ISD::PSHUFHW:
4947     ImmN = N->getOperand(N->getNumOperands()-1);
4948     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4949     IsUnary = true;
4950     break;
4951   case X86ISD::PSHUFLW:
4952     ImmN = N->getOperand(N->getNumOperands()-1);
4953     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4954     IsUnary = true;
4955     break;
4956   case X86ISD::VPERMI:
4957     ImmN = N->getOperand(N->getNumOperands()-1);
4958     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4959     IsUnary = true;
4960     break;
4961   case X86ISD::MOVSS:
4962   case X86ISD::MOVSD: {
4963     // The index 0 always comes from the first element of the second source,
4964     // this is why MOVSS and MOVSD are used in the first place. The other
4965     // elements come from the other positions of the first source vector
4966     Mask.push_back(NumElems);
4967     for (unsigned i = 1; i != NumElems; ++i) {
4968       Mask.push_back(i);
4969     }
4970     break;
4971   }
4972   case X86ISD::VPERM2X128:
4973     ImmN = N->getOperand(N->getNumOperands()-1);
4974     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4975     if (Mask.empty()) return false;
4976     break;
4977   case X86ISD::MOVDDUP:
4978   case X86ISD::MOVLHPD:
4979   case X86ISD::MOVLPD:
4980   case X86ISD::MOVLPS:
4981   case X86ISD::MOVSHDUP:
4982   case X86ISD::MOVSLDUP:
4983     // Not yet implemented
4984     return false;
4985   default: llvm_unreachable("unknown target shuffle node");
4986   }
4987
4988   return true;
4989 }
4990
4991 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4992 /// element of the result of the vector shuffle.
4993 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4994                                    unsigned Depth) {
4995   if (Depth == 6)
4996     return SDValue();  // Limit search depth.
4997
4998   SDValue V = SDValue(N, 0);
4999   EVT VT = V.getValueType();
5000   unsigned Opcode = V.getOpcode();
5001
5002   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5003   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5004     int Elt = SV->getMaskElt(Index);
5005
5006     if (Elt < 0)
5007       return DAG.getUNDEF(VT.getVectorElementType());
5008
5009     unsigned NumElems = VT.getVectorNumElements();
5010     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5011                                          : SV->getOperand(1);
5012     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5013   }
5014
5015   // Recurse into target specific vector shuffles to find scalars.
5016   if (isTargetShuffle(Opcode)) {
5017     MVT ShufVT = V.getSimpleValueType();
5018     unsigned NumElems = ShufVT.getVectorNumElements();
5019     SmallVector<int, 16> ShuffleMask;
5020     bool IsUnary;
5021
5022     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5023       return SDValue();
5024
5025     int Elt = ShuffleMask[Index];
5026     if (Elt < 0)
5027       return DAG.getUNDEF(ShufVT.getVectorElementType());
5028
5029     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5030                                          : N->getOperand(1);
5031     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5032                                Depth+1);
5033   }
5034
5035   // Actual nodes that may contain scalar elements
5036   if (Opcode == ISD::BITCAST) {
5037     V = V.getOperand(0);
5038     EVT SrcVT = V.getValueType();
5039     unsigned NumElems = VT.getVectorNumElements();
5040
5041     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5042       return SDValue();
5043   }
5044
5045   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5046     return (Index == 0) ? V.getOperand(0)
5047                         : DAG.getUNDEF(VT.getVectorElementType());
5048
5049   if (V.getOpcode() == ISD::BUILD_VECTOR)
5050     return V.getOperand(Index);
5051
5052   return SDValue();
5053 }
5054
5055 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5056 /// shuffle operation which come from a consecutively from a zero. The
5057 /// search can start in two different directions, from left or right.
5058 /// We count undefs as zeros until PreferredNum is reached.
5059 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5060                                          unsigned NumElems, bool ZerosFromLeft,
5061                                          SelectionDAG &DAG,
5062                                          unsigned PreferredNum = -1U) {
5063   unsigned NumZeros = 0;
5064   for (unsigned i = 0; i != NumElems; ++i) {
5065     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5066     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5067     if (!Elt.getNode())
5068       break;
5069
5070     if (X86::isZeroNode(Elt))
5071       ++NumZeros;
5072     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5073       NumZeros = std::min(NumZeros + 1, PreferredNum);
5074     else
5075       break;
5076   }
5077
5078   return NumZeros;
5079 }
5080
5081 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5082 /// correspond consecutively to elements from one of the vector operands,
5083 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5084 static
5085 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5086                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5087                               unsigned NumElems, unsigned &OpNum) {
5088   bool SeenV1 = false;
5089   bool SeenV2 = false;
5090
5091   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5092     int Idx = SVOp->getMaskElt(i);
5093     // Ignore undef indicies
5094     if (Idx < 0)
5095       continue;
5096
5097     if (Idx < (int)NumElems)
5098       SeenV1 = true;
5099     else
5100       SeenV2 = true;
5101
5102     // Only accept consecutive elements from the same vector
5103     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5104       return false;
5105   }
5106
5107   OpNum = SeenV1 ? 0 : 1;
5108   return true;
5109 }
5110
5111 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5112 /// logical left shift of a vector.
5113 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5114                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5115   unsigned NumElems =
5116     SVOp->getSimpleValueType(0).getVectorNumElements();
5117   unsigned NumZeros = getNumOfConsecutiveZeros(
5118       SVOp, NumElems, false /* check zeros from right */, DAG,
5119       SVOp->getMaskElt(0));
5120   unsigned OpSrc;
5121
5122   if (!NumZeros)
5123     return false;
5124
5125   // Considering the elements in the mask that are not consecutive zeros,
5126   // check if they consecutively come from only one of the source vectors.
5127   //
5128   //               V1 = {X, A, B, C}     0
5129   //                         \  \  \    /
5130   //   vector_shuffle V1, V2 <1, 2, 3, X>
5131   //
5132   if (!isShuffleMaskConsecutive(SVOp,
5133             0,                   // Mask Start Index
5134             NumElems-NumZeros,   // Mask End Index(exclusive)
5135             NumZeros,            // Where to start looking in the src vector
5136             NumElems,            // Number of elements in vector
5137             OpSrc))              // Which source operand ?
5138     return false;
5139
5140   isLeft = false;
5141   ShAmt = NumZeros;
5142   ShVal = SVOp->getOperand(OpSrc);
5143   return true;
5144 }
5145
5146 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5147 /// logical left shift of a vector.
5148 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5149                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5150   unsigned NumElems =
5151     SVOp->getSimpleValueType(0).getVectorNumElements();
5152   unsigned NumZeros = getNumOfConsecutiveZeros(
5153       SVOp, NumElems, true /* check zeros from left */, DAG,
5154       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5155   unsigned OpSrc;
5156
5157   if (!NumZeros)
5158     return false;
5159
5160   // Considering the elements in the mask that are not consecutive zeros,
5161   // check if they consecutively come from only one of the source vectors.
5162   //
5163   //                           0    { A, B, X, X } = V2
5164   //                          / \    /  /
5165   //   vector_shuffle V1, V2 <X, X, 4, 5>
5166   //
5167   if (!isShuffleMaskConsecutive(SVOp,
5168             NumZeros,     // Mask Start Index
5169             NumElems,     // Mask End Index(exclusive)
5170             0,            // Where to start looking in the src vector
5171             NumElems,     // Number of elements in vector
5172             OpSrc))       // Which source operand ?
5173     return false;
5174
5175   isLeft = true;
5176   ShAmt = NumZeros;
5177   ShVal = SVOp->getOperand(OpSrc);
5178   return true;
5179 }
5180
5181 /// isVectorShift - Returns true if the shuffle can be implemented as a
5182 /// logical left or right shift of a vector.
5183 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5184                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5185   // Although the logic below support any bitwidth size, there are no
5186   // shift instructions which handle more than 128-bit vectors.
5187   if (!SVOp->getSimpleValueType(0).is128BitVector())
5188     return false;
5189
5190   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5191       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5192     return true;
5193
5194   return false;
5195 }
5196
5197 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5198 ///
5199 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5200                                        unsigned NumNonZero, unsigned NumZero,
5201                                        SelectionDAG &DAG,
5202                                        const X86Subtarget* Subtarget,
5203                                        const TargetLowering &TLI) {
5204   if (NumNonZero > 8)
5205     return SDValue();
5206
5207   SDLoc dl(Op);
5208   SDValue V(0, 0);
5209   bool First = true;
5210   for (unsigned i = 0; i < 16; ++i) {
5211     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5212     if (ThisIsNonZero && First) {
5213       if (NumZero)
5214         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5215       else
5216         V = DAG.getUNDEF(MVT::v8i16);
5217       First = false;
5218     }
5219
5220     if ((i & 1) != 0) {
5221       SDValue ThisElt(0, 0), LastElt(0, 0);
5222       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5223       if (LastIsNonZero) {
5224         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5225                               MVT::i16, Op.getOperand(i-1));
5226       }
5227       if (ThisIsNonZero) {
5228         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5229         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5230                               ThisElt, DAG.getConstant(8, MVT::i8));
5231         if (LastIsNonZero)
5232           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5233       } else
5234         ThisElt = LastElt;
5235
5236       if (ThisElt.getNode())
5237         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5238                         DAG.getIntPtrConstant(i/2));
5239     }
5240   }
5241
5242   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5243 }
5244
5245 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5246 ///
5247 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5248                                      unsigned NumNonZero, unsigned NumZero,
5249                                      SelectionDAG &DAG,
5250                                      const X86Subtarget* Subtarget,
5251                                      const TargetLowering &TLI) {
5252   if (NumNonZero > 4)
5253     return SDValue();
5254
5255   SDLoc dl(Op);
5256   SDValue V(0, 0);
5257   bool First = true;
5258   for (unsigned i = 0; i < 8; ++i) {
5259     bool isNonZero = (NonZeros & (1 << i)) != 0;
5260     if (isNonZero) {
5261       if (First) {
5262         if (NumZero)
5263           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5264         else
5265           V = DAG.getUNDEF(MVT::v8i16);
5266         First = false;
5267       }
5268       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5269                       MVT::v8i16, V, Op.getOperand(i),
5270                       DAG.getIntPtrConstant(i));
5271     }
5272   }
5273
5274   return V;
5275 }
5276
5277 /// getVShift - Return a vector logical shift node.
5278 ///
5279 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5280                          unsigned NumBits, SelectionDAG &DAG,
5281                          const TargetLowering &TLI, SDLoc dl) {
5282   assert(VT.is128BitVector() && "Unknown type for VShift");
5283   EVT ShVT = MVT::v2i64;
5284   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5285   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5286   return DAG.getNode(ISD::BITCAST, dl, VT,
5287                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5288                              DAG.getConstant(NumBits,
5289                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5290 }
5291
5292 static SDValue
5293 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5294
5295   // Check if the scalar load can be widened into a vector load. And if
5296   // the address is "base + cst" see if the cst can be "absorbed" into
5297   // the shuffle mask.
5298   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5299     SDValue Ptr = LD->getBasePtr();
5300     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5301       return SDValue();
5302     EVT PVT = LD->getValueType(0);
5303     if (PVT != MVT::i32 && PVT != MVT::f32)
5304       return SDValue();
5305
5306     int FI = -1;
5307     int64_t Offset = 0;
5308     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5309       FI = FINode->getIndex();
5310       Offset = 0;
5311     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5312                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5313       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5314       Offset = Ptr.getConstantOperandVal(1);
5315       Ptr = Ptr.getOperand(0);
5316     } else {
5317       return SDValue();
5318     }
5319
5320     // FIXME: 256-bit vector instructions don't require a strict alignment,
5321     // improve this code to support it better.
5322     unsigned RequiredAlign = VT.getSizeInBits()/8;
5323     SDValue Chain = LD->getChain();
5324     // Make sure the stack object alignment is at least 16 or 32.
5325     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5326     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5327       if (MFI->isFixedObjectIndex(FI)) {
5328         // Can't change the alignment. FIXME: It's possible to compute
5329         // the exact stack offset and reference FI + adjust offset instead.
5330         // If someone *really* cares about this. That's the way to implement it.
5331         return SDValue();
5332       } else {
5333         MFI->setObjectAlignment(FI, RequiredAlign);
5334       }
5335     }
5336
5337     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5338     // Ptr + (Offset & ~15).
5339     if (Offset < 0)
5340       return SDValue();
5341     if ((Offset % RequiredAlign) & 3)
5342       return SDValue();
5343     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5344     if (StartOffset)
5345       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5346                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5347
5348     int EltNo = (Offset - StartOffset) >> 2;
5349     unsigned NumElems = VT.getVectorNumElements();
5350
5351     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5352     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5353                              LD->getPointerInfo().getWithOffset(StartOffset),
5354                              false, false, false, 0);
5355
5356     SmallVector<int, 8> Mask;
5357     for (unsigned i = 0; i != NumElems; ++i)
5358       Mask.push_back(EltNo);
5359
5360     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5361   }
5362
5363   return SDValue();
5364 }
5365
5366 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5367 /// vector of type 'VT', see if the elements can be replaced by a single large
5368 /// load which has the same value as a build_vector whose operands are 'elts'.
5369 ///
5370 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5371 ///
5372 /// FIXME: we'd also like to handle the case where the last elements are zero
5373 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5374 /// There's even a handy isZeroNode for that purpose.
5375 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5376                                         SDLoc &DL, SelectionDAG &DAG) {
5377   EVT EltVT = VT.getVectorElementType();
5378   unsigned NumElems = Elts.size();
5379
5380   LoadSDNode *LDBase = NULL;
5381   unsigned LastLoadedElt = -1U;
5382
5383   // For each element in the initializer, see if we've found a load or an undef.
5384   // If we don't find an initial load element, or later load elements are
5385   // non-consecutive, bail out.
5386   for (unsigned i = 0; i < NumElems; ++i) {
5387     SDValue Elt = Elts[i];
5388
5389     if (!Elt.getNode() ||
5390         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5391       return SDValue();
5392     if (!LDBase) {
5393       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5394         return SDValue();
5395       LDBase = cast<LoadSDNode>(Elt.getNode());
5396       LastLoadedElt = i;
5397       continue;
5398     }
5399     if (Elt.getOpcode() == ISD::UNDEF)
5400       continue;
5401
5402     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5403     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5404       return SDValue();
5405     LastLoadedElt = i;
5406   }
5407
5408   // If we have found an entire vector of loads and undefs, then return a large
5409   // load of the entire vector width starting at the base pointer.  If we found
5410   // consecutive loads for the low half, generate a vzext_load node.
5411   if (LastLoadedElt == NumElems - 1) {
5412     SDValue NewLd = SDValue();
5413     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5414       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5415                           LDBase->getPointerInfo(),
5416                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5417                           LDBase->isInvariant(), 0);
5418     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5419                         LDBase->getPointerInfo(),
5420                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5421                         LDBase->isInvariant(), LDBase->getAlignment());
5422
5423     if (LDBase->hasAnyUseOfValue(1)) {
5424       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5425                                      SDValue(LDBase, 1),
5426                                      SDValue(NewLd.getNode(), 1));
5427       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5428       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5429                              SDValue(NewLd.getNode(), 1));
5430     }
5431
5432     return NewLd;
5433   }
5434   if (NumElems == 4 && LastLoadedElt == 1 &&
5435       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5436     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5437     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5438     SDValue ResNode =
5439         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5440                                 array_lengthof(Ops), MVT::i64,
5441                                 LDBase->getPointerInfo(),
5442                                 LDBase->getAlignment(),
5443                                 false/*isVolatile*/, true/*ReadMem*/,
5444                                 false/*WriteMem*/);
5445
5446     // Make sure the newly-created LOAD is in the same position as LDBase in
5447     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5448     // update uses of LDBase's output chain to use the TokenFactor.
5449     if (LDBase->hasAnyUseOfValue(1)) {
5450       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5451                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5452       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5453       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5454                              SDValue(ResNode.getNode(), 1));
5455     }
5456
5457     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5458   }
5459   return SDValue();
5460 }
5461
5462 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5463 /// to generate a splat value for the following cases:
5464 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5465 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5466 /// a scalar load, or a constant.
5467 /// The VBROADCAST node is returned when a pattern is found,
5468 /// or SDValue() otherwise.
5469 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5470                                     SelectionDAG &DAG) {
5471   if (!Subtarget->hasFp256())
5472     return SDValue();
5473
5474   MVT VT = Op.getSimpleValueType();
5475   SDLoc dl(Op);
5476
5477   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5478          "Unsupported vector type for broadcast.");
5479
5480   SDValue Ld;
5481   bool ConstSplatVal;
5482
5483   switch (Op.getOpcode()) {
5484     default:
5485       // Unknown pattern found.
5486       return SDValue();
5487
5488     case ISD::BUILD_VECTOR: {
5489       // The BUILD_VECTOR node must be a splat.
5490       if (!isSplatVector(Op.getNode()))
5491         return SDValue();
5492
5493       Ld = Op.getOperand(0);
5494       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5495                      Ld.getOpcode() == ISD::ConstantFP);
5496
5497       // The suspected load node has several users. Make sure that all
5498       // of its users are from the BUILD_VECTOR node.
5499       // Constants may have multiple users.
5500       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5501         return SDValue();
5502       break;
5503     }
5504
5505     case ISD::VECTOR_SHUFFLE: {
5506       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5507
5508       // Shuffles must have a splat mask where the first element is
5509       // broadcasted.
5510       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5511         return SDValue();
5512
5513       SDValue Sc = Op.getOperand(0);
5514       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5515           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5516
5517         if (!Subtarget->hasInt256())
5518           return SDValue();
5519
5520         // Use the register form of the broadcast instruction available on AVX2.
5521         if (VT.getSizeInBits() >= 256)
5522           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5523         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5524       }
5525
5526       Ld = Sc.getOperand(0);
5527       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5528                        Ld.getOpcode() == ISD::ConstantFP);
5529
5530       // The scalar_to_vector node and the suspected
5531       // load node must have exactly one user.
5532       // Constants may have multiple users.
5533
5534       // AVX-512 has register version of the broadcast
5535       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5536         Ld.getValueType().getSizeInBits() >= 32;
5537       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5538           !hasRegVer))
5539         return SDValue();
5540       break;
5541     }
5542   }
5543
5544   bool IsGE256 = (VT.getSizeInBits() >= 256);
5545
5546   // Handle the broadcasting a single constant scalar from the constant pool
5547   // into a vector. On Sandybridge it is still better to load a constant vector
5548   // from the constant pool and not to broadcast it from a scalar.
5549   if (ConstSplatVal && Subtarget->hasInt256()) {
5550     EVT CVT = Ld.getValueType();
5551     assert(!CVT.isVector() && "Must not broadcast a vector type");
5552     unsigned ScalarSize = CVT.getSizeInBits();
5553
5554     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5555       const Constant *C = 0;
5556       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5557         C = CI->getConstantIntValue();
5558       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5559         C = CF->getConstantFPValue();
5560
5561       assert(C && "Invalid constant type");
5562
5563       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5564       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5565       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5566       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5567                        MachinePointerInfo::getConstantPool(),
5568                        false, false, false, Alignment);
5569
5570       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5571     }
5572   }
5573
5574   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5575   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5576
5577   // Handle AVX2 in-register broadcasts.
5578   if (!IsLoad && Subtarget->hasInt256() &&
5579       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5580     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5581
5582   // The scalar source must be a normal load.
5583   if (!IsLoad)
5584     return SDValue();
5585
5586   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5587     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5588
5589   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5590   // double since there is no vbroadcastsd xmm
5591   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5592     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5593       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5594   }
5595
5596   // Unsupported broadcast.
5597   return SDValue();
5598 }
5599
5600 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5601   MVT VT = Op.getSimpleValueType();
5602
5603   // Skip if insert_vec_elt is not supported.
5604   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5605   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5606     return SDValue();
5607
5608   SDLoc DL(Op);
5609   unsigned NumElems = Op.getNumOperands();
5610
5611   SDValue VecIn1;
5612   SDValue VecIn2;
5613   SmallVector<unsigned, 4> InsertIndices;
5614   SmallVector<int, 8> Mask(NumElems, -1);
5615
5616   for (unsigned i = 0; i != NumElems; ++i) {
5617     unsigned Opc = Op.getOperand(i).getOpcode();
5618
5619     if (Opc == ISD::UNDEF)
5620       continue;
5621
5622     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5623       // Quit if more than 1 elements need inserting.
5624       if (InsertIndices.size() > 1)
5625         return SDValue();
5626
5627       InsertIndices.push_back(i);
5628       continue;
5629     }
5630
5631     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5632     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5633
5634     // Quit if extracted from vector of different type.
5635     if (ExtractedFromVec.getValueType() != VT)
5636       return SDValue();
5637
5638     // Quit if non-constant index.
5639     if (!isa<ConstantSDNode>(ExtIdx))
5640       return SDValue();
5641
5642     if (VecIn1.getNode() == 0)
5643       VecIn1 = ExtractedFromVec;
5644     else if (VecIn1 != ExtractedFromVec) {
5645       if (VecIn2.getNode() == 0)
5646         VecIn2 = ExtractedFromVec;
5647       else if (VecIn2 != ExtractedFromVec)
5648         // Quit if more than 2 vectors to shuffle
5649         return SDValue();
5650     }
5651
5652     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5653
5654     if (ExtractedFromVec == VecIn1)
5655       Mask[i] = Idx;
5656     else if (ExtractedFromVec == VecIn2)
5657       Mask[i] = Idx + NumElems;
5658   }
5659
5660   if (VecIn1.getNode() == 0)
5661     return SDValue();
5662
5663   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5664   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5665   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5666     unsigned Idx = InsertIndices[i];
5667     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5668                      DAG.getIntPtrConstant(Idx));
5669   }
5670
5671   return NV;
5672 }
5673
5674 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5675 SDValue
5676 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5677
5678   MVT VT = Op.getSimpleValueType();
5679   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5680          "Unexpected type in LowerBUILD_VECTORvXi1!");
5681
5682   SDLoc dl(Op);
5683   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5684     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5685     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5686                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5687     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5688                        Ops, VT.getVectorNumElements());
5689   }
5690
5691   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5692     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5693     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5694                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5695     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5696                        Ops, VT.getVectorNumElements());
5697   }
5698
5699   bool AllContants = true;
5700   uint64_t Immediate = 0;
5701   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5702     SDValue In = Op.getOperand(idx);
5703     if (In.getOpcode() == ISD::UNDEF)
5704       continue;
5705     if (!isa<ConstantSDNode>(In)) {
5706       AllContants = false;
5707       break;
5708     }
5709     if (cast<ConstantSDNode>(In)->getZExtValue())
5710       Immediate |= (1ULL << idx);
5711   }
5712
5713   if (AllContants) {
5714     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5715       DAG.getConstant(Immediate, MVT::i16));
5716     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5717                        DAG.getIntPtrConstant(0));
5718   }
5719
5720   // Splat vector (with undefs)
5721   SDValue In = Op.getOperand(0);
5722   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5723     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5724       llvm_unreachable("Unsupported predicate operation");
5725   }
5726
5727   SDValue EFLAGS, X86CC;
5728   if (In.getOpcode() == ISD::SETCC) {
5729     SDValue Op0 = In.getOperand(0);
5730     SDValue Op1 = In.getOperand(1);
5731     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5732     bool isFP = Op1.getValueType().isFloatingPoint();
5733     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5734
5735     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5736
5737     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5738     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5739     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5740   } else if (In.getOpcode() == X86ISD::SETCC) {
5741     X86CC = In.getOperand(0);
5742     EFLAGS = In.getOperand(1);
5743   } else {
5744     // The algorithm:
5745     //   Bit1 = In & 0x1
5746     //   if (Bit1 != 0)
5747     //     ZF = 0
5748     //   else
5749     //     ZF = 1
5750     //   if (ZF == 0)
5751     //     res = allOnes ### CMOVNE -1, %res
5752     //   else
5753     //     res = allZero
5754     MVT InVT = In.getSimpleValueType();
5755     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5756     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5757     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5758   }
5759
5760   if (VT == MVT::v16i1) {
5761     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5762     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5763     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5764           Cst0, Cst1, X86CC, EFLAGS);
5765     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5766   }
5767
5768   if (VT == MVT::v8i1) {
5769     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5770     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5771     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5772           Cst0, Cst1, X86CC, EFLAGS);
5773     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5774     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5775   }
5776   llvm_unreachable("Unsupported predicate operation");
5777 }
5778
5779 SDValue
5780 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5781   SDLoc dl(Op);
5782
5783   MVT VT = Op.getSimpleValueType();
5784   MVT ExtVT = VT.getVectorElementType();
5785   unsigned NumElems = Op.getNumOperands();
5786
5787   // Generate vectors for predicate vectors.
5788   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5789     return LowerBUILD_VECTORvXi1(Op, DAG);
5790
5791   // Vectors containing all zeros can be matched by pxor and xorps later
5792   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5793     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5794     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5795     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5796       return Op;
5797
5798     return getZeroVector(VT, Subtarget, DAG, dl);
5799   }
5800
5801   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5802   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5803   // vpcmpeqd on 256-bit vectors.
5804   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5805     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5806       return Op;
5807
5808     if (!VT.is512BitVector())
5809       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5810   }
5811
5812   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5813   if (Broadcast.getNode())
5814     return Broadcast;
5815
5816   unsigned EVTBits = ExtVT.getSizeInBits();
5817
5818   unsigned NumZero  = 0;
5819   unsigned NumNonZero = 0;
5820   unsigned NonZeros = 0;
5821   bool IsAllConstants = true;
5822   SmallSet<SDValue, 8> Values;
5823   for (unsigned i = 0; i < NumElems; ++i) {
5824     SDValue Elt = Op.getOperand(i);
5825     if (Elt.getOpcode() == ISD::UNDEF)
5826       continue;
5827     Values.insert(Elt);
5828     if (Elt.getOpcode() != ISD::Constant &&
5829         Elt.getOpcode() != ISD::ConstantFP)
5830       IsAllConstants = false;
5831     if (X86::isZeroNode(Elt))
5832       NumZero++;
5833     else {
5834       NonZeros |= (1 << i);
5835       NumNonZero++;
5836     }
5837   }
5838
5839   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5840   if (NumNonZero == 0)
5841     return DAG.getUNDEF(VT);
5842
5843   // Special case for single non-zero, non-undef, element.
5844   if (NumNonZero == 1) {
5845     unsigned Idx = countTrailingZeros(NonZeros);
5846     SDValue Item = Op.getOperand(Idx);
5847
5848     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5849     // the value are obviously zero, truncate the value to i32 and do the
5850     // insertion that way.  Only do this if the value is non-constant or if the
5851     // value is a constant being inserted into element 0.  It is cheaper to do
5852     // a constant pool load than it is to do a movd + shuffle.
5853     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5854         (!IsAllConstants || Idx == 0)) {
5855       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5856         // Handle SSE only.
5857         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5858         EVT VecVT = MVT::v4i32;
5859         unsigned VecElts = 4;
5860
5861         // Truncate the value (which may itself be a constant) to i32, and
5862         // convert it to a vector with movd (S2V+shuffle to zero extend).
5863         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5864         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5865         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5866
5867         // Now we have our 32-bit value zero extended in the low element of
5868         // a vector.  If Idx != 0, swizzle it into place.
5869         if (Idx != 0) {
5870           SmallVector<int, 4> Mask;
5871           Mask.push_back(Idx);
5872           for (unsigned i = 1; i != VecElts; ++i)
5873             Mask.push_back(i);
5874           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5875                                       &Mask[0]);
5876         }
5877         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5878       }
5879     }
5880
5881     // If we have a constant or non-constant insertion into the low element of
5882     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5883     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5884     // depending on what the source datatype is.
5885     if (Idx == 0) {
5886       if (NumZero == 0)
5887         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5888
5889       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5890           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5891         if (VT.is256BitVector() || VT.is512BitVector()) {
5892           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5893           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5894                              Item, DAG.getIntPtrConstant(0));
5895         }
5896         assert(VT.is128BitVector() && "Expected an SSE value type!");
5897         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5898         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5899         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5900       }
5901
5902       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5903         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5904         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5905         if (VT.is256BitVector()) {
5906           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5907           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5908         } else {
5909           assert(VT.is128BitVector() && "Expected an SSE value type!");
5910           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5911         }
5912         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5913       }
5914     }
5915
5916     // Is it a vector logical left shift?
5917     if (NumElems == 2 && Idx == 1 &&
5918         X86::isZeroNode(Op.getOperand(0)) &&
5919         !X86::isZeroNode(Op.getOperand(1))) {
5920       unsigned NumBits = VT.getSizeInBits();
5921       return getVShift(true, VT,
5922                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5923                                    VT, Op.getOperand(1)),
5924                        NumBits/2, DAG, *this, dl);
5925     }
5926
5927     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5928       return SDValue();
5929
5930     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5931     // is a non-constant being inserted into an element other than the low one,
5932     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5933     // movd/movss) to move this into the low element, then shuffle it into
5934     // place.
5935     if (EVTBits == 32) {
5936       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5937
5938       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5939       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5940       SmallVector<int, 8> MaskVec;
5941       for (unsigned i = 0; i != NumElems; ++i)
5942         MaskVec.push_back(i == Idx ? 0 : 1);
5943       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5944     }
5945   }
5946
5947   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5948   if (Values.size() == 1) {
5949     if (EVTBits == 32) {
5950       // Instead of a shuffle like this:
5951       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5952       // Check if it's possible to issue this instead.
5953       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5954       unsigned Idx = countTrailingZeros(NonZeros);
5955       SDValue Item = Op.getOperand(Idx);
5956       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5957         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5958     }
5959     return SDValue();
5960   }
5961
5962   // A vector full of immediates; various special cases are already
5963   // handled, so this is best done with a single constant-pool load.
5964   if (IsAllConstants)
5965     return SDValue();
5966
5967   // For AVX-length vectors, build the individual 128-bit pieces and use
5968   // shuffles to put them in place.
5969   if (VT.is256BitVector()) {
5970     SmallVector<SDValue, 32> V;
5971     for (unsigned i = 0; i != NumElems; ++i)
5972       V.push_back(Op.getOperand(i));
5973
5974     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5975
5976     // Build both the lower and upper subvector.
5977     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5978     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5979                                 NumElems/2);
5980
5981     // Recreate the wider vector with the lower and upper part.
5982     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5983   }
5984
5985   // Let legalizer expand 2-wide build_vectors.
5986   if (EVTBits == 64) {
5987     if (NumNonZero == 1) {
5988       // One half is zero or undef.
5989       unsigned Idx = countTrailingZeros(NonZeros);
5990       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5991                                  Op.getOperand(Idx));
5992       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5993     }
5994     return SDValue();
5995   }
5996
5997   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5998   if (EVTBits == 8 && NumElems == 16) {
5999     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6000                                         Subtarget, *this);
6001     if (V.getNode()) return V;
6002   }
6003
6004   if (EVTBits == 16 && NumElems == 8) {
6005     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6006                                       Subtarget, *this);
6007     if (V.getNode()) return V;
6008   }
6009
6010   // If element VT is == 32 bits, turn it into a number of shuffles.
6011   SmallVector<SDValue, 8> V(NumElems);
6012   if (NumElems == 4 && NumZero > 0) {
6013     for (unsigned i = 0; i < 4; ++i) {
6014       bool isZero = !(NonZeros & (1 << i));
6015       if (isZero)
6016         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6017       else
6018         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6019     }
6020
6021     for (unsigned i = 0; i < 2; ++i) {
6022       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6023         default: break;
6024         case 0:
6025           V[i] = V[i*2];  // Must be a zero vector.
6026           break;
6027         case 1:
6028           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6029           break;
6030         case 2:
6031           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6032           break;
6033         case 3:
6034           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6035           break;
6036       }
6037     }
6038
6039     bool Reverse1 = (NonZeros & 0x3) == 2;
6040     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6041     int MaskVec[] = {
6042       Reverse1 ? 1 : 0,
6043       Reverse1 ? 0 : 1,
6044       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6045       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6046     };
6047     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6048   }
6049
6050   if (Values.size() > 1 && VT.is128BitVector()) {
6051     // Check for a build vector of consecutive loads.
6052     for (unsigned i = 0; i < NumElems; ++i)
6053       V[i] = Op.getOperand(i);
6054
6055     // Check for elements which are consecutive loads.
6056     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6057     if (LD.getNode())
6058       return LD;
6059
6060     // Check for a build vector from mostly shuffle plus few inserting.
6061     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6062     if (Sh.getNode())
6063       return Sh;
6064
6065     // For SSE 4.1, use insertps to put the high elements into the low element.
6066     if (getSubtarget()->hasSSE41()) {
6067       SDValue Result;
6068       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6069         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6070       else
6071         Result = DAG.getUNDEF(VT);
6072
6073       for (unsigned i = 1; i < NumElems; ++i) {
6074         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6075         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6076                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6077       }
6078       return Result;
6079     }
6080
6081     // Otherwise, expand into a number of unpckl*, start by extending each of
6082     // our (non-undef) elements to the full vector width with the element in the
6083     // bottom slot of the vector (which generates no code for SSE).
6084     for (unsigned i = 0; i < NumElems; ++i) {
6085       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6086         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6087       else
6088         V[i] = DAG.getUNDEF(VT);
6089     }
6090
6091     // Next, we iteratively mix elements, e.g. for v4f32:
6092     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6093     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6094     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6095     unsigned EltStride = NumElems >> 1;
6096     while (EltStride != 0) {
6097       for (unsigned i = 0; i < EltStride; ++i) {
6098         // If V[i+EltStride] is undef and this is the first round of mixing,
6099         // then it is safe to just drop this shuffle: V[i] is already in the
6100         // right place, the one element (since it's the first round) being
6101         // inserted as undef can be dropped.  This isn't safe for successive
6102         // rounds because they will permute elements within both vectors.
6103         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6104             EltStride == NumElems/2)
6105           continue;
6106
6107         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6108       }
6109       EltStride >>= 1;
6110     }
6111     return V[0];
6112   }
6113   return SDValue();
6114 }
6115
6116 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6117 // to create 256-bit vectors from two other 128-bit ones.
6118 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6119   SDLoc dl(Op);
6120   MVT ResVT = Op.getSimpleValueType();
6121
6122   assert((ResVT.is256BitVector() ||
6123           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6124
6125   SDValue V1 = Op.getOperand(0);
6126   SDValue V2 = Op.getOperand(1);
6127   unsigned NumElems = ResVT.getVectorNumElements();
6128   if(ResVT.is256BitVector())
6129     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6130
6131   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6132 }
6133
6134 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6135   assert(Op.getNumOperands() == 2);
6136
6137   // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
6138   // from two other 128-bit ones.
6139   return LowerAVXCONCAT_VECTORS(Op, DAG);
6140 }
6141
6142 // Try to lower a shuffle node into a simple blend instruction.
6143 static SDValue
6144 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6145                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6146   SDValue V1 = SVOp->getOperand(0);
6147   SDValue V2 = SVOp->getOperand(1);
6148   SDLoc dl(SVOp);
6149   MVT VT = SVOp->getSimpleValueType(0);
6150   MVT EltVT = VT.getVectorElementType();
6151   unsigned NumElems = VT.getVectorNumElements();
6152
6153   // There is no blend with immediate in AVX-512.
6154   if (VT.is512BitVector())
6155     return SDValue();
6156
6157   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6158     return SDValue();
6159   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6160     return SDValue();
6161
6162   // Check the mask for BLEND and build the value.
6163   unsigned MaskValue = 0;
6164   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6165   unsigned NumLanes = (NumElems-1)/8 + 1;
6166   unsigned NumElemsInLane = NumElems / NumLanes;
6167
6168   // Blend for v16i16 should be symetric for the both lanes.
6169   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6170
6171     int SndLaneEltIdx = (NumLanes == 2) ?
6172       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6173     int EltIdx = SVOp->getMaskElt(i);
6174
6175     if ((EltIdx < 0 || EltIdx == (int)i) &&
6176         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6177       continue;
6178
6179     if (((unsigned)EltIdx == (i + NumElems)) &&
6180         (SndLaneEltIdx < 0 ||
6181          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6182       MaskValue |= (1<<i);
6183     else
6184       return SDValue();
6185   }
6186
6187   // Convert i32 vectors to floating point if it is not AVX2.
6188   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6189   MVT BlendVT = VT;
6190   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6191     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6192                                NumElems);
6193     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6194     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6195   }
6196
6197   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6198                             DAG.getConstant(MaskValue, MVT::i32));
6199   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6200 }
6201
6202 // v8i16 shuffles - Prefer shuffles in the following order:
6203 // 1. [all]   pshuflw, pshufhw, optional move
6204 // 2. [ssse3] 1 x pshufb
6205 // 3. [ssse3] 2 x pshufb + 1 x por
6206 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6207 static SDValue
6208 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6209                          SelectionDAG &DAG) {
6210   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6211   SDValue V1 = SVOp->getOperand(0);
6212   SDValue V2 = SVOp->getOperand(1);
6213   SDLoc dl(SVOp);
6214   SmallVector<int, 8> MaskVals;
6215
6216   // Determine if more than 1 of the words in each of the low and high quadwords
6217   // of the result come from the same quadword of one of the two inputs.  Undef
6218   // mask values count as coming from any quadword, for better codegen.
6219   unsigned LoQuad[] = { 0, 0, 0, 0 };
6220   unsigned HiQuad[] = { 0, 0, 0, 0 };
6221   std::bitset<4> InputQuads;
6222   for (unsigned i = 0; i < 8; ++i) {
6223     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6224     int EltIdx = SVOp->getMaskElt(i);
6225     MaskVals.push_back(EltIdx);
6226     if (EltIdx < 0) {
6227       ++Quad[0];
6228       ++Quad[1];
6229       ++Quad[2];
6230       ++Quad[3];
6231       continue;
6232     }
6233     ++Quad[EltIdx / 4];
6234     InputQuads.set(EltIdx / 4);
6235   }
6236
6237   int BestLoQuad = -1;
6238   unsigned MaxQuad = 1;
6239   for (unsigned i = 0; i < 4; ++i) {
6240     if (LoQuad[i] > MaxQuad) {
6241       BestLoQuad = i;
6242       MaxQuad = LoQuad[i];
6243     }
6244   }
6245
6246   int BestHiQuad = -1;
6247   MaxQuad = 1;
6248   for (unsigned i = 0; i < 4; ++i) {
6249     if (HiQuad[i] > MaxQuad) {
6250       BestHiQuad = i;
6251       MaxQuad = HiQuad[i];
6252     }
6253   }
6254
6255   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6256   // of the two input vectors, shuffle them into one input vector so only a
6257   // single pshufb instruction is necessary. If There are more than 2 input
6258   // quads, disable the next transformation since it does not help SSSE3.
6259   bool V1Used = InputQuads[0] || InputQuads[1];
6260   bool V2Used = InputQuads[2] || InputQuads[3];
6261   if (Subtarget->hasSSSE3()) {
6262     if (InputQuads.count() == 2 && V1Used && V2Used) {
6263       BestLoQuad = InputQuads[0] ? 0 : 1;
6264       BestHiQuad = InputQuads[2] ? 2 : 3;
6265     }
6266     if (InputQuads.count() > 2) {
6267       BestLoQuad = -1;
6268       BestHiQuad = -1;
6269     }
6270   }
6271
6272   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6273   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6274   // words from all 4 input quadwords.
6275   SDValue NewV;
6276   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6277     int MaskV[] = {
6278       BestLoQuad < 0 ? 0 : BestLoQuad,
6279       BestHiQuad < 0 ? 1 : BestHiQuad
6280     };
6281     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6282                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6283                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6284     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6285
6286     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6287     // source words for the shuffle, to aid later transformations.
6288     bool AllWordsInNewV = true;
6289     bool InOrder[2] = { true, true };
6290     for (unsigned i = 0; i != 8; ++i) {
6291       int idx = MaskVals[i];
6292       if (idx != (int)i)
6293         InOrder[i/4] = false;
6294       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6295         continue;
6296       AllWordsInNewV = false;
6297       break;
6298     }
6299
6300     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6301     if (AllWordsInNewV) {
6302       for (int i = 0; i != 8; ++i) {
6303         int idx = MaskVals[i];
6304         if (idx < 0)
6305           continue;
6306         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6307         if ((idx != i) && idx < 4)
6308           pshufhw = false;
6309         if ((idx != i) && idx > 3)
6310           pshuflw = false;
6311       }
6312       V1 = NewV;
6313       V2Used = false;
6314       BestLoQuad = 0;
6315       BestHiQuad = 1;
6316     }
6317
6318     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6319     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6320     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6321       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6322       unsigned TargetMask = 0;
6323       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6324                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6325       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6326       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6327                              getShufflePSHUFLWImmediate(SVOp);
6328       V1 = NewV.getOperand(0);
6329       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6330     }
6331   }
6332
6333   // Promote splats to a larger type which usually leads to more efficient code.
6334   // FIXME: Is this true if pshufb is available?
6335   if (SVOp->isSplat())
6336     return PromoteSplat(SVOp, DAG);
6337
6338   // If we have SSSE3, and all words of the result are from 1 input vector,
6339   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6340   // is present, fall back to case 4.
6341   if (Subtarget->hasSSSE3()) {
6342     SmallVector<SDValue,16> pshufbMask;
6343
6344     // If we have elements from both input vectors, set the high bit of the
6345     // shuffle mask element to zero out elements that come from V2 in the V1
6346     // mask, and elements that come from V1 in the V2 mask, so that the two
6347     // results can be OR'd together.
6348     bool TwoInputs = V1Used && V2Used;
6349     for (unsigned i = 0; i != 8; ++i) {
6350       int EltIdx = MaskVals[i] * 2;
6351       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6352       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6353       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6354       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6355     }
6356     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6357     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6358                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6359                                  MVT::v16i8, &pshufbMask[0], 16));
6360     if (!TwoInputs)
6361       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6362
6363     // Calculate the shuffle mask for the second input, shuffle it, and
6364     // OR it with the first shuffled input.
6365     pshufbMask.clear();
6366     for (unsigned i = 0; i != 8; ++i) {
6367       int EltIdx = MaskVals[i] * 2;
6368       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6369       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6370       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6371       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6372     }
6373     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6374     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6375                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6376                                  MVT::v16i8, &pshufbMask[0], 16));
6377     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6378     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6379   }
6380
6381   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6382   // and update MaskVals with new element order.
6383   std::bitset<8> InOrder;
6384   if (BestLoQuad >= 0) {
6385     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6386     for (int i = 0; i != 4; ++i) {
6387       int idx = MaskVals[i];
6388       if (idx < 0) {
6389         InOrder.set(i);
6390       } else if ((idx / 4) == BestLoQuad) {
6391         MaskV[i] = idx & 3;
6392         InOrder.set(i);
6393       }
6394     }
6395     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6396                                 &MaskV[0]);
6397
6398     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6399       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6400       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6401                                   NewV.getOperand(0),
6402                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6403     }
6404   }
6405
6406   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6407   // and update MaskVals with the new element order.
6408   if (BestHiQuad >= 0) {
6409     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6410     for (unsigned i = 4; i != 8; ++i) {
6411       int idx = MaskVals[i];
6412       if (idx < 0) {
6413         InOrder.set(i);
6414       } else if ((idx / 4) == BestHiQuad) {
6415         MaskV[i] = (idx & 3) + 4;
6416         InOrder.set(i);
6417       }
6418     }
6419     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6420                                 &MaskV[0]);
6421
6422     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6423       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6424       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6425                                   NewV.getOperand(0),
6426                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6427     }
6428   }
6429
6430   // In case BestHi & BestLo were both -1, which means each quadword has a word
6431   // from each of the four input quadwords, calculate the InOrder bitvector now
6432   // before falling through to the insert/extract cleanup.
6433   if (BestLoQuad == -1 && BestHiQuad == -1) {
6434     NewV = V1;
6435     for (int i = 0; i != 8; ++i)
6436       if (MaskVals[i] < 0 || MaskVals[i] == i)
6437         InOrder.set(i);
6438   }
6439
6440   // The other elements are put in the right place using pextrw and pinsrw.
6441   for (unsigned i = 0; i != 8; ++i) {
6442     if (InOrder[i])
6443       continue;
6444     int EltIdx = MaskVals[i];
6445     if (EltIdx < 0)
6446       continue;
6447     SDValue ExtOp = (EltIdx < 8) ?
6448       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6449                   DAG.getIntPtrConstant(EltIdx)) :
6450       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6451                   DAG.getIntPtrConstant(EltIdx - 8));
6452     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6453                        DAG.getIntPtrConstant(i));
6454   }
6455   return NewV;
6456 }
6457
6458 // v16i8 shuffles - Prefer shuffles in the following order:
6459 // 1. [ssse3] 1 x pshufb
6460 // 2. [ssse3] 2 x pshufb + 1 x por
6461 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6462 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6463                                         const X86Subtarget* Subtarget,
6464                                         SelectionDAG &DAG) {
6465   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6466   SDValue V1 = SVOp->getOperand(0);
6467   SDValue V2 = SVOp->getOperand(1);
6468   SDLoc dl(SVOp);
6469   ArrayRef<int> MaskVals = SVOp->getMask();
6470
6471   // Promote splats to a larger type which usually leads to more efficient code.
6472   // FIXME: Is this true if pshufb is available?
6473   if (SVOp->isSplat())
6474     return PromoteSplat(SVOp, DAG);
6475
6476   // If we have SSSE3, case 1 is generated when all result bytes come from
6477   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6478   // present, fall back to case 3.
6479
6480   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6481   if (Subtarget->hasSSSE3()) {
6482     SmallVector<SDValue,16> pshufbMask;
6483
6484     // If all result elements are from one input vector, then only translate
6485     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6486     //
6487     // Otherwise, we have elements from both input vectors, and must zero out
6488     // elements that come from V2 in the first mask, and V1 in the second mask
6489     // so that we can OR them together.
6490     for (unsigned i = 0; i != 16; ++i) {
6491       int EltIdx = MaskVals[i];
6492       if (EltIdx < 0 || EltIdx >= 16)
6493         EltIdx = 0x80;
6494       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6495     }
6496     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6497                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6498                                  MVT::v16i8, &pshufbMask[0], 16));
6499
6500     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6501     // the 2nd operand if it's undefined or zero.
6502     if (V2.getOpcode() == ISD::UNDEF ||
6503         ISD::isBuildVectorAllZeros(V2.getNode()))
6504       return V1;
6505
6506     // Calculate the shuffle mask for the second input, shuffle it, and
6507     // OR it with the first shuffled input.
6508     pshufbMask.clear();
6509     for (unsigned i = 0; i != 16; ++i) {
6510       int EltIdx = MaskVals[i];
6511       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6512       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6513     }
6514     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6515                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6516                                  MVT::v16i8, &pshufbMask[0], 16));
6517     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6518   }
6519
6520   // No SSSE3 - Calculate in place words and then fix all out of place words
6521   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6522   // the 16 different words that comprise the two doublequadword input vectors.
6523   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6524   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6525   SDValue NewV = V1;
6526   for (int i = 0; i != 8; ++i) {
6527     int Elt0 = MaskVals[i*2];
6528     int Elt1 = MaskVals[i*2+1];
6529
6530     // This word of the result is all undef, skip it.
6531     if (Elt0 < 0 && Elt1 < 0)
6532       continue;
6533
6534     // This word of the result is already in the correct place, skip it.
6535     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6536       continue;
6537
6538     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6539     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6540     SDValue InsElt;
6541
6542     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6543     // using a single extract together, load it and store it.
6544     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6545       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6546                            DAG.getIntPtrConstant(Elt1 / 2));
6547       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6548                         DAG.getIntPtrConstant(i));
6549       continue;
6550     }
6551
6552     // If Elt1 is defined, extract it from the appropriate source.  If the
6553     // source byte is not also odd, shift the extracted word left 8 bits
6554     // otherwise clear the bottom 8 bits if we need to do an or.
6555     if (Elt1 >= 0) {
6556       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6557                            DAG.getIntPtrConstant(Elt1 / 2));
6558       if ((Elt1 & 1) == 0)
6559         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6560                              DAG.getConstant(8,
6561                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6562       else if (Elt0 >= 0)
6563         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6564                              DAG.getConstant(0xFF00, MVT::i16));
6565     }
6566     // If Elt0 is defined, extract it from the appropriate source.  If the
6567     // source byte is not also even, shift the extracted word right 8 bits. If
6568     // Elt1 was also defined, OR the extracted values together before
6569     // inserting them in the result.
6570     if (Elt0 >= 0) {
6571       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6572                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6573       if ((Elt0 & 1) != 0)
6574         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6575                               DAG.getConstant(8,
6576                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6577       else if (Elt1 >= 0)
6578         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6579                              DAG.getConstant(0x00FF, MVT::i16));
6580       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6581                          : InsElt0;
6582     }
6583     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6584                        DAG.getIntPtrConstant(i));
6585   }
6586   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6587 }
6588
6589 // v32i8 shuffles - Translate to VPSHUFB if possible.
6590 static
6591 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6592                                  const X86Subtarget *Subtarget,
6593                                  SelectionDAG &DAG) {
6594   MVT VT = SVOp->getSimpleValueType(0);
6595   SDValue V1 = SVOp->getOperand(0);
6596   SDValue V2 = SVOp->getOperand(1);
6597   SDLoc dl(SVOp);
6598   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6599
6600   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6601   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6602   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6603
6604   // VPSHUFB may be generated if
6605   // (1) one of input vector is undefined or zeroinitializer.
6606   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6607   // And (2) the mask indexes don't cross the 128-bit lane.
6608   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6609       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6610     return SDValue();
6611
6612   if (V1IsAllZero && !V2IsAllZero) {
6613     CommuteVectorShuffleMask(MaskVals, 32);
6614     V1 = V2;
6615   }
6616   SmallVector<SDValue, 32> pshufbMask;
6617   for (unsigned i = 0; i != 32; i++) {
6618     int EltIdx = MaskVals[i];
6619     if (EltIdx < 0 || EltIdx >= 32)
6620       EltIdx = 0x80;
6621     else {
6622       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6623         // Cross lane is not allowed.
6624         return SDValue();
6625       EltIdx &= 0xf;
6626     }
6627     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6628   }
6629   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6630                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6631                                   MVT::v32i8, &pshufbMask[0], 32));
6632 }
6633
6634 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6635 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6636 /// done when every pair / quad of shuffle mask elements point to elements in
6637 /// the right sequence. e.g.
6638 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6639 static
6640 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6641                                  SelectionDAG &DAG) {
6642   MVT VT = SVOp->getSimpleValueType(0);
6643   SDLoc dl(SVOp);
6644   unsigned NumElems = VT.getVectorNumElements();
6645   MVT NewVT;
6646   unsigned Scale;
6647   switch (VT.SimpleTy) {
6648   default: llvm_unreachable("Unexpected!");
6649   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6650   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6651   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6652   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6653   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6654   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6655   }
6656
6657   SmallVector<int, 8> MaskVec;
6658   for (unsigned i = 0; i != NumElems; i += Scale) {
6659     int StartIdx = -1;
6660     for (unsigned j = 0; j != Scale; ++j) {
6661       int EltIdx = SVOp->getMaskElt(i+j);
6662       if (EltIdx < 0)
6663         continue;
6664       if (StartIdx < 0)
6665         StartIdx = (EltIdx / Scale);
6666       if (EltIdx != (int)(StartIdx*Scale + j))
6667         return SDValue();
6668     }
6669     MaskVec.push_back(StartIdx);
6670   }
6671
6672   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6673   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6674   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6675 }
6676
6677 /// getVZextMovL - Return a zero-extending vector move low node.
6678 ///
6679 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6680                             SDValue SrcOp, SelectionDAG &DAG,
6681                             const X86Subtarget *Subtarget, SDLoc dl) {
6682   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6683     LoadSDNode *LD = NULL;
6684     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6685       LD = dyn_cast<LoadSDNode>(SrcOp);
6686     if (!LD) {
6687       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6688       // instead.
6689       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6690       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6691           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6692           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6693           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6694         // PR2108
6695         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6696         return DAG.getNode(ISD::BITCAST, dl, VT,
6697                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6698                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6699                                                    OpVT,
6700                                                    SrcOp.getOperand(0)
6701                                                           .getOperand(0))));
6702       }
6703     }
6704   }
6705
6706   return DAG.getNode(ISD::BITCAST, dl, VT,
6707                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6708                                  DAG.getNode(ISD::BITCAST, dl,
6709                                              OpVT, SrcOp)));
6710 }
6711
6712 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6713 /// which could not be matched by any known target speficic shuffle
6714 static SDValue
6715 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6716
6717   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6718   if (NewOp.getNode())
6719     return NewOp;
6720
6721   MVT VT = SVOp->getSimpleValueType(0);
6722
6723   unsigned NumElems = VT.getVectorNumElements();
6724   unsigned NumLaneElems = NumElems / 2;
6725
6726   SDLoc dl(SVOp);
6727   MVT EltVT = VT.getVectorElementType();
6728   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6729   SDValue Output[2];
6730
6731   SmallVector<int, 16> Mask;
6732   for (unsigned l = 0; l < 2; ++l) {
6733     // Build a shuffle mask for the output, discovering on the fly which
6734     // input vectors to use as shuffle operands (recorded in InputUsed).
6735     // If building a suitable shuffle vector proves too hard, then bail
6736     // out with UseBuildVector set.
6737     bool UseBuildVector = false;
6738     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6739     unsigned LaneStart = l * NumLaneElems;
6740     for (unsigned i = 0; i != NumLaneElems; ++i) {
6741       // The mask element.  This indexes into the input.
6742       int Idx = SVOp->getMaskElt(i+LaneStart);
6743       if (Idx < 0) {
6744         // the mask element does not index into any input vector.
6745         Mask.push_back(-1);
6746         continue;
6747       }
6748
6749       // The input vector this mask element indexes into.
6750       int Input = Idx / NumLaneElems;
6751
6752       // Turn the index into an offset from the start of the input vector.
6753       Idx -= Input * NumLaneElems;
6754
6755       // Find or create a shuffle vector operand to hold this input.
6756       unsigned OpNo;
6757       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6758         if (InputUsed[OpNo] == Input)
6759           // This input vector is already an operand.
6760           break;
6761         if (InputUsed[OpNo] < 0) {
6762           // Create a new operand for this input vector.
6763           InputUsed[OpNo] = Input;
6764           break;
6765         }
6766       }
6767
6768       if (OpNo >= array_lengthof(InputUsed)) {
6769         // More than two input vectors used!  Give up on trying to create a
6770         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6771         UseBuildVector = true;
6772         break;
6773       }
6774
6775       // Add the mask index for the new shuffle vector.
6776       Mask.push_back(Idx + OpNo * NumLaneElems);
6777     }
6778
6779     if (UseBuildVector) {
6780       SmallVector<SDValue, 16> SVOps;
6781       for (unsigned i = 0; i != NumLaneElems; ++i) {
6782         // The mask element.  This indexes into the input.
6783         int Idx = SVOp->getMaskElt(i+LaneStart);
6784         if (Idx < 0) {
6785           SVOps.push_back(DAG.getUNDEF(EltVT));
6786           continue;
6787         }
6788
6789         // The input vector this mask element indexes into.
6790         int Input = Idx / NumElems;
6791
6792         // Turn the index into an offset from the start of the input vector.
6793         Idx -= Input * NumElems;
6794
6795         // Extract the vector element by hand.
6796         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6797                                     SVOp->getOperand(Input),
6798                                     DAG.getIntPtrConstant(Idx)));
6799       }
6800
6801       // Construct the output using a BUILD_VECTOR.
6802       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6803                               SVOps.size());
6804     } else if (InputUsed[0] < 0) {
6805       // No input vectors were used! The result is undefined.
6806       Output[l] = DAG.getUNDEF(NVT);
6807     } else {
6808       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6809                                         (InputUsed[0] % 2) * NumLaneElems,
6810                                         DAG, dl);
6811       // If only one input was used, use an undefined vector for the other.
6812       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6813         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6814                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6815       // At least one input vector was used. Create a new shuffle vector.
6816       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6817     }
6818
6819     Mask.clear();
6820   }
6821
6822   // Concatenate the result back
6823   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6824 }
6825
6826 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6827 /// 4 elements, and match them with several different shuffle types.
6828 static SDValue
6829 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6830   SDValue V1 = SVOp->getOperand(0);
6831   SDValue V2 = SVOp->getOperand(1);
6832   SDLoc dl(SVOp);
6833   MVT VT = SVOp->getSimpleValueType(0);
6834
6835   assert(VT.is128BitVector() && "Unsupported vector size");
6836
6837   std::pair<int, int> Locs[4];
6838   int Mask1[] = { -1, -1, -1, -1 };
6839   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6840
6841   unsigned NumHi = 0;
6842   unsigned NumLo = 0;
6843   for (unsigned i = 0; i != 4; ++i) {
6844     int Idx = PermMask[i];
6845     if (Idx < 0) {
6846       Locs[i] = std::make_pair(-1, -1);
6847     } else {
6848       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6849       if (Idx < 4) {
6850         Locs[i] = std::make_pair(0, NumLo);
6851         Mask1[NumLo] = Idx;
6852         NumLo++;
6853       } else {
6854         Locs[i] = std::make_pair(1, NumHi);
6855         if (2+NumHi < 4)
6856           Mask1[2+NumHi] = Idx;
6857         NumHi++;
6858       }
6859     }
6860   }
6861
6862   if (NumLo <= 2 && NumHi <= 2) {
6863     // If no more than two elements come from either vector. This can be
6864     // implemented with two shuffles. First shuffle gather the elements.
6865     // The second shuffle, which takes the first shuffle as both of its
6866     // vector operands, put the elements into the right order.
6867     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6868
6869     int Mask2[] = { -1, -1, -1, -1 };
6870
6871     for (unsigned i = 0; i != 4; ++i)
6872       if (Locs[i].first != -1) {
6873         unsigned Idx = (i < 2) ? 0 : 4;
6874         Idx += Locs[i].first * 2 + Locs[i].second;
6875         Mask2[i] = Idx;
6876       }
6877
6878     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6879   }
6880
6881   if (NumLo == 3 || NumHi == 3) {
6882     // Otherwise, we must have three elements from one vector, call it X, and
6883     // one element from the other, call it Y.  First, use a shufps to build an
6884     // intermediate vector with the one element from Y and the element from X
6885     // that will be in the same half in the final destination (the indexes don't
6886     // matter). Then, use a shufps to build the final vector, taking the half
6887     // containing the element from Y from the intermediate, and the other half
6888     // from X.
6889     if (NumHi == 3) {
6890       // Normalize it so the 3 elements come from V1.
6891       CommuteVectorShuffleMask(PermMask, 4);
6892       std::swap(V1, V2);
6893     }
6894
6895     // Find the element from V2.
6896     unsigned HiIndex;
6897     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6898       int Val = PermMask[HiIndex];
6899       if (Val < 0)
6900         continue;
6901       if (Val >= 4)
6902         break;
6903     }
6904
6905     Mask1[0] = PermMask[HiIndex];
6906     Mask1[1] = -1;
6907     Mask1[2] = PermMask[HiIndex^1];
6908     Mask1[3] = -1;
6909     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6910
6911     if (HiIndex >= 2) {
6912       Mask1[0] = PermMask[0];
6913       Mask1[1] = PermMask[1];
6914       Mask1[2] = HiIndex & 1 ? 6 : 4;
6915       Mask1[3] = HiIndex & 1 ? 4 : 6;
6916       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6917     }
6918
6919     Mask1[0] = HiIndex & 1 ? 2 : 0;
6920     Mask1[1] = HiIndex & 1 ? 0 : 2;
6921     Mask1[2] = PermMask[2];
6922     Mask1[3] = PermMask[3];
6923     if (Mask1[2] >= 0)
6924       Mask1[2] += 4;
6925     if (Mask1[3] >= 0)
6926       Mask1[3] += 4;
6927     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6928   }
6929
6930   // Break it into (shuffle shuffle_hi, shuffle_lo).
6931   int LoMask[] = { -1, -1, -1, -1 };
6932   int HiMask[] = { -1, -1, -1, -1 };
6933
6934   int *MaskPtr = LoMask;
6935   unsigned MaskIdx = 0;
6936   unsigned LoIdx = 0;
6937   unsigned HiIdx = 2;
6938   for (unsigned i = 0; i != 4; ++i) {
6939     if (i == 2) {
6940       MaskPtr = HiMask;
6941       MaskIdx = 1;
6942       LoIdx = 0;
6943       HiIdx = 2;
6944     }
6945     int Idx = PermMask[i];
6946     if (Idx < 0) {
6947       Locs[i] = std::make_pair(-1, -1);
6948     } else if (Idx < 4) {
6949       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6950       MaskPtr[LoIdx] = Idx;
6951       LoIdx++;
6952     } else {
6953       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6954       MaskPtr[HiIdx] = Idx;
6955       HiIdx++;
6956     }
6957   }
6958
6959   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6960   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6961   int MaskOps[] = { -1, -1, -1, -1 };
6962   for (unsigned i = 0; i != 4; ++i)
6963     if (Locs[i].first != -1)
6964       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6965   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6966 }
6967
6968 static bool MayFoldVectorLoad(SDValue V) {
6969   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6970     V = V.getOperand(0);
6971
6972   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6973     V = V.getOperand(0);
6974   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6975       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6976     // BUILD_VECTOR (load), undef
6977     V = V.getOperand(0);
6978
6979   return MayFoldLoad(V);
6980 }
6981
6982 static
6983 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
6984   MVT VT = Op.getSimpleValueType();
6985
6986   // Canonizalize to v2f64.
6987   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6988   return DAG.getNode(ISD::BITCAST, dl, VT,
6989                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6990                                           V1, DAG));
6991 }
6992
6993 static
6994 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
6995                         bool HasSSE2) {
6996   SDValue V1 = Op.getOperand(0);
6997   SDValue V2 = Op.getOperand(1);
6998   MVT VT = Op.getSimpleValueType();
6999
7000   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7001
7002   if (HasSSE2 && VT == MVT::v2f64)
7003     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7004
7005   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7006   return DAG.getNode(ISD::BITCAST, dl, VT,
7007                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7008                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7009                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7010 }
7011
7012 static
7013 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7014   SDValue V1 = Op.getOperand(0);
7015   SDValue V2 = Op.getOperand(1);
7016   MVT VT = Op.getSimpleValueType();
7017
7018   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7019          "unsupported shuffle type");
7020
7021   if (V2.getOpcode() == ISD::UNDEF)
7022     V2 = V1;
7023
7024   // v4i32 or v4f32
7025   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7026 }
7027
7028 static
7029 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7030   SDValue V1 = Op.getOperand(0);
7031   SDValue V2 = Op.getOperand(1);
7032   MVT VT = Op.getSimpleValueType();
7033   unsigned NumElems = VT.getVectorNumElements();
7034
7035   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7036   // operand of these instructions is only memory, so check if there's a
7037   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7038   // same masks.
7039   bool CanFoldLoad = false;
7040
7041   // Trivial case, when V2 comes from a load.
7042   if (MayFoldVectorLoad(V2))
7043     CanFoldLoad = true;
7044
7045   // When V1 is a load, it can be folded later into a store in isel, example:
7046   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7047   //    turns into:
7048   //  (MOVLPSmr addr:$src1, VR128:$src2)
7049   // So, recognize this potential and also use MOVLPS or MOVLPD
7050   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7051     CanFoldLoad = true;
7052
7053   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7054   if (CanFoldLoad) {
7055     if (HasSSE2 && NumElems == 2)
7056       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7057
7058     if (NumElems == 4)
7059       // If we don't care about the second element, proceed to use movss.
7060       if (SVOp->getMaskElt(1) != -1)
7061         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7062   }
7063
7064   // movl and movlp will both match v2i64, but v2i64 is never matched by
7065   // movl earlier because we make it strict to avoid messing with the movlp load
7066   // folding logic (see the code above getMOVLP call). Match it here then,
7067   // this is horrible, but will stay like this until we move all shuffle
7068   // matching to x86 specific nodes. Note that for the 1st condition all
7069   // types are matched with movsd.
7070   if (HasSSE2) {
7071     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7072     // as to remove this logic from here, as much as possible
7073     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7074       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7075     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7076   }
7077
7078   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7079
7080   // Invert the operand order and use SHUFPS to match it.
7081   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7082                               getShuffleSHUFImmediate(SVOp), DAG);
7083 }
7084
7085 // Reduce a vector shuffle to zext.
7086 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7087                                     SelectionDAG &DAG) {
7088   // PMOVZX is only available from SSE41.
7089   if (!Subtarget->hasSSE41())
7090     return SDValue();
7091
7092   MVT VT = Op.getSimpleValueType();
7093
7094   // Only AVX2 support 256-bit vector integer extending.
7095   if (!Subtarget->hasInt256() && VT.is256BitVector())
7096     return SDValue();
7097
7098   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7099   SDLoc DL(Op);
7100   SDValue V1 = Op.getOperand(0);
7101   SDValue V2 = Op.getOperand(1);
7102   unsigned NumElems = VT.getVectorNumElements();
7103
7104   // Extending is an unary operation and the element type of the source vector
7105   // won't be equal to or larger than i64.
7106   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7107       VT.getVectorElementType() == MVT::i64)
7108     return SDValue();
7109
7110   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7111   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7112   while ((1U << Shift) < NumElems) {
7113     if (SVOp->getMaskElt(1U << Shift) == 1)
7114       break;
7115     Shift += 1;
7116     // The maximal ratio is 8, i.e. from i8 to i64.
7117     if (Shift > 3)
7118       return SDValue();
7119   }
7120
7121   // Check the shuffle mask.
7122   unsigned Mask = (1U << Shift) - 1;
7123   for (unsigned i = 0; i != NumElems; ++i) {
7124     int EltIdx = SVOp->getMaskElt(i);
7125     if ((i & Mask) != 0 && EltIdx != -1)
7126       return SDValue();
7127     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7128       return SDValue();
7129   }
7130
7131   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7132   MVT NeVT = MVT::getIntegerVT(NBits);
7133   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7134
7135   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7136     return SDValue();
7137
7138   // Simplify the operand as it's prepared to be fed into shuffle.
7139   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7140   if (V1.getOpcode() == ISD::BITCAST &&
7141       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7142       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7143       V1.getOperand(0).getOperand(0)
7144         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7145     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7146     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7147     ConstantSDNode *CIdx =
7148       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7149     // If it's foldable, i.e. normal load with single use, we will let code
7150     // selection to fold it. Otherwise, we will short the conversion sequence.
7151     if (CIdx && CIdx->getZExtValue() == 0 &&
7152         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7153       MVT FullVT = V.getSimpleValueType();
7154       MVT V1VT = V1.getSimpleValueType();
7155       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7156         // The "ext_vec_elt" node is wider than the result node.
7157         // In this case we should extract subvector from V.
7158         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7159         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7160         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7161                                         FullVT.getVectorNumElements()/Ratio);
7162         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7163                         DAG.getIntPtrConstant(0));
7164       }
7165       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7166     }
7167   }
7168
7169   return DAG.getNode(ISD::BITCAST, DL, VT,
7170                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7171 }
7172
7173 static SDValue
7174 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7175                        SelectionDAG &DAG) {
7176   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7177   MVT VT = Op.getSimpleValueType();
7178   SDLoc dl(Op);
7179   SDValue V1 = Op.getOperand(0);
7180   SDValue V2 = Op.getOperand(1);
7181
7182   if (isZeroShuffle(SVOp))
7183     return getZeroVector(VT, Subtarget, DAG, dl);
7184
7185   // Handle splat operations
7186   if (SVOp->isSplat()) {
7187     // Use vbroadcast whenever the splat comes from a foldable load
7188     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7189     if (Broadcast.getNode())
7190       return Broadcast;
7191   }
7192
7193   // Check integer expanding shuffles.
7194   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7195   if (NewOp.getNode())
7196     return NewOp;
7197
7198   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7199   // do it!
7200   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7201       VT == MVT::v16i16 || VT == MVT::v32i8) {
7202     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7203     if (NewOp.getNode())
7204       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7205   } else if ((VT == MVT::v4i32 ||
7206              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7207     // FIXME: Figure out a cleaner way to do this.
7208     // Try to make use of movq to zero out the top part.
7209     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7210       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7211       if (NewOp.getNode()) {
7212         MVT NewVT = NewOp.getSimpleValueType();
7213         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7214                                NewVT, true, false))
7215           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7216                               DAG, Subtarget, dl);
7217       }
7218     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7219       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7220       if (NewOp.getNode()) {
7221         MVT NewVT = NewOp.getSimpleValueType();
7222         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7223           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7224                               DAG, Subtarget, dl);
7225       }
7226     }
7227   }
7228   return SDValue();
7229 }
7230
7231 SDValue
7232 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7233   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7234   SDValue V1 = Op.getOperand(0);
7235   SDValue V2 = Op.getOperand(1);
7236   MVT VT = Op.getSimpleValueType();
7237   SDLoc dl(Op);
7238   unsigned NumElems = VT.getVectorNumElements();
7239   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7240   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7241   bool V1IsSplat = false;
7242   bool V2IsSplat = false;
7243   bool HasSSE2 = Subtarget->hasSSE2();
7244   bool HasFp256    = Subtarget->hasFp256();
7245   bool HasInt256   = Subtarget->hasInt256();
7246   MachineFunction &MF = DAG.getMachineFunction();
7247   bool OptForSize = MF.getFunction()->getAttributes().
7248     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7249
7250   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7251
7252   if (V1IsUndef && V2IsUndef)
7253     return DAG.getUNDEF(VT);
7254
7255   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7256
7257   // Vector shuffle lowering takes 3 steps:
7258   //
7259   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7260   //    narrowing and commutation of operands should be handled.
7261   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7262   //    shuffle nodes.
7263   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7264   //    so the shuffle can be broken into other shuffles and the legalizer can
7265   //    try the lowering again.
7266   //
7267   // The general idea is that no vector_shuffle operation should be left to
7268   // be matched during isel, all of them must be converted to a target specific
7269   // node here.
7270
7271   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7272   // narrowing and commutation of operands should be handled. The actual code
7273   // doesn't include all of those, work in progress...
7274   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7275   if (NewOp.getNode())
7276     return NewOp;
7277
7278   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7279
7280   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7281   // unpckh_undef). Only use pshufd if speed is more important than size.
7282   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7283     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7284   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7285     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7286
7287   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7288       V2IsUndef && MayFoldVectorLoad(V1))
7289     return getMOVDDup(Op, dl, V1, DAG);
7290
7291   if (isMOVHLPS_v_undef_Mask(M, VT))
7292     return getMOVHighToLow(Op, dl, DAG);
7293
7294   // Use to match splats
7295   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7296       (VT == MVT::v2f64 || VT == MVT::v2i64))
7297     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7298
7299   if (isPSHUFDMask(M, VT)) {
7300     // The actual implementation will match the mask in the if above and then
7301     // during isel it can match several different instructions, not only pshufd
7302     // as its name says, sad but true, emulate the behavior for now...
7303     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7304       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7305
7306     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7307
7308     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7309       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7310
7311     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7312       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7313                                   DAG);
7314
7315     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7316                                 TargetMask, DAG);
7317   }
7318
7319   if (isPALIGNRMask(M, VT, Subtarget))
7320     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7321                                 getShufflePALIGNRImmediate(SVOp),
7322                                 DAG);
7323
7324   // Check if this can be converted into a logical shift.
7325   bool isLeft = false;
7326   unsigned ShAmt = 0;
7327   SDValue ShVal;
7328   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7329   if (isShift && ShVal.hasOneUse()) {
7330     // If the shifted value has multiple uses, it may be cheaper to use
7331     // v_set0 + movlhps or movhlps, etc.
7332     MVT EltVT = VT.getVectorElementType();
7333     ShAmt *= EltVT.getSizeInBits();
7334     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7335   }
7336
7337   if (isMOVLMask(M, VT)) {
7338     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7339       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7340     if (!isMOVLPMask(M, VT)) {
7341       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7342         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7343
7344       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7345         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7346     }
7347   }
7348
7349   // FIXME: fold these into legal mask.
7350   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7351     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7352
7353   if (isMOVHLPSMask(M, VT))
7354     return getMOVHighToLow(Op, dl, DAG);
7355
7356   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7357     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7358
7359   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7360     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7361
7362   if (isMOVLPMask(M, VT))
7363     return getMOVLP(Op, dl, DAG, HasSSE2);
7364
7365   if (ShouldXformToMOVHLPS(M, VT) ||
7366       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7367     return CommuteVectorShuffle(SVOp, DAG);
7368
7369   if (isShift) {
7370     // No better options. Use a vshldq / vsrldq.
7371     MVT EltVT = VT.getVectorElementType();
7372     ShAmt *= EltVT.getSizeInBits();
7373     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7374   }
7375
7376   bool Commuted = false;
7377   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7378   // 1,1,1,1 -> v8i16 though.
7379   V1IsSplat = isSplatVector(V1.getNode());
7380   V2IsSplat = isSplatVector(V2.getNode());
7381
7382   // Canonicalize the splat or undef, if present, to be on the RHS.
7383   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7384     CommuteVectorShuffleMask(M, NumElems);
7385     std::swap(V1, V2);
7386     std::swap(V1IsSplat, V2IsSplat);
7387     Commuted = true;
7388   }
7389
7390   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7391     // Shuffling low element of v1 into undef, just return v1.
7392     if (V2IsUndef)
7393       return V1;
7394     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7395     // the instruction selector will not match, so get a canonical MOVL with
7396     // swapped operands to undo the commute.
7397     return getMOVL(DAG, dl, VT, V2, V1);
7398   }
7399
7400   if (isUNPCKLMask(M, VT, HasInt256))
7401     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7402
7403   if (isUNPCKHMask(M, VT, HasInt256))
7404     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7405
7406   if (V2IsSplat) {
7407     // Normalize mask so all entries that point to V2 points to its first
7408     // element then try to match unpck{h|l} again. If match, return a
7409     // new vector_shuffle with the corrected mask.p
7410     SmallVector<int, 8> NewMask(M.begin(), M.end());
7411     NormalizeMask(NewMask, NumElems);
7412     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7413       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7414     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7415       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7416   }
7417
7418   if (Commuted) {
7419     // Commute is back and try unpck* again.
7420     // FIXME: this seems wrong.
7421     CommuteVectorShuffleMask(M, NumElems);
7422     std::swap(V1, V2);
7423     std::swap(V1IsSplat, V2IsSplat);
7424     Commuted = false;
7425
7426     if (isUNPCKLMask(M, VT, HasInt256))
7427       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7428
7429     if (isUNPCKHMask(M, VT, HasInt256))
7430       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7431   }
7432
7433   // Normalize the node to match x86 shuffle ops if needed
7434   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7435     return CommuteVectorShuffle(SVOp, DAG);
7436
7437   // The checks below are all present in isShuffleMaskLegal, but they are
7438   // inlined here right now to enable us to directly emit target specific
7439   // nodes, and remove one by one until they don't return Op anymore.
7440
7441   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7442       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7443     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7444       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7445   }
7446
7447   if (isPSHUFHWMask(M, VT, HasInt256))
7448     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7449                                 getShufflePSHUFHWImmediate(SVOp),
7450                                 DAG);
7451
7452   if (isPSHUFLWMask(M, VT, HasInt256))
7453     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7454                                 getShufflePSHUFLWImmediate(SVOp),
7455                                 DAG);
7456
7457   if (isSHUFPMask(M, VT))
7458     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7459                                 getShuffleSHUFImmediate(SVOp), DAG);
7460
7461   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7462     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7463   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7464     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7465
7466   //===--------------------------------------------------------------------===//
7467   // Generate target specific nodes for 128 or 256-bit shuffles only
7468   // supported in the AVX instruction set.
7469   //
7470
7471   // Handle VMOVDDUPY permutations
7472   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7473     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7474
7475   // Handle VPERMILPS/D* permutations
7476   if (isVPERMILPMask(M, VT)) {
7477     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7478       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7479                                   getShuffleSHUFImmediate(SVOp), DAG);
7480     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7481                                 getShuffleSHUFImmediate(SVOp), DAG);
7482   }
7483
7484   // Handle VPERM2F128/VPERM2I128 permutations
7485   if (isVPERM2X128Mask(M, VT, HasFp256))
7486     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7487                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7488
7489   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7490   if (BlendOp.getNode())
7491     return BlendOp;
7492
7493   unsigned Imm8;
7494   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7495     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7496
7497   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7498       VT.is512BitVector()) {
7499     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7500     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7501     SmallVector<SDValue, 16> permclMask;
7502     for (unsigned i = 0; i != NumElems; ++i) {
7503       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7504     }
7505
7506     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7507                                 &permclMask[0], NumElems);
7508     if (V2IsUndef)
7509       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7510       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7511                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7512     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7513                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7514   }
7515
7516   //===--------------------------------------------------------------------===//
7517   // Since no target specific shuffle was selected for this generic one,
7518   // lower it into other known shuffles. FIXME: this isn't true yet, but
7519   // this is the plan.
7520   //
7521
7522   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7523   if (VT == MVT::v8i16) {
7524     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7525     if (NewOp.getNode())
7526       return NewOp;
7527   }
7528
7529   if (VT == MVT::v16i8) {
7530     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7531     if (NewOp.getNode())
7532       return NewOp;
7533   }
7534
7535   if (VT == MVT::v32i8) {
7536     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7537     if (NewOp.getNode())
7538       return NewOp;
7539   }
7540
7541   // Handle all 128-bit wide vectors with 4 elements, and match them with
7542   // several different shuffle types.
7543   if (NumElems == 4 && VT.is128BitVector())
7544     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7545
7546   // Handle general 256-bit shuffles
7547   if (VT.is256BitVector())
7548     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7549
7550   return SDValue();
7551 }
7552
7553 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7554   MVT VT = Op.getSimpleValueType();
7555   SDLoc dl(Op);
7556
7557   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7558     return SDValue();
7559
7560   if (VT.getSizeInBits() == 8) {
7561     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7562                                   Op.getOperand(0), Op.getOperand(1));
7563     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7564                                   DAG.getValueType(VT));
7565     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7566   }
7567
7568   if (VT.getSizeInBits() == 16) {
7569     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7570     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7571     if (Idx == 0)
7572       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7573                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7574                                      DAG.getNode(ISD::BITCAST, dl,
7575                                                  MVT::v4i32,
7576                                                  Op.getOperand(0)),
7577                                      Op.getOperand(1)));
7578     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7579                                   Op.getOperand(0), Op.getOperand(1));
7580     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7581                                   DAG.getValueType(VT));
7582     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7583   }
7584
7585   if (VT == MVT::f32) {
7586     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7587     // the result back to FR32 register. It's only worth matching if the
7588     // result has a single use which is a store or a bitcast to i32.  And in
7589     // the case of a store, it's not worth it if the index is a constant 0,
7590     // because a MOVSSmr can be used instead, which is smaller and faster.
7591     if (!Op.hasOneUse())
7592       return SDValue();
7593     SDNode *User = *Op.getNode()->use_begin();
7594     if ((User->getOpcode() != ISD::STORE ||
7595          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7596           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7597         (User->getOpcode() != ISD::BITCAST ||
7598          User->getValueType(0) != MVT::i32))
7599       return SDValue();
7600     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7601                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7602                                               Op.getOperand(0)),
7603                                               Op.getOperand(1));
7604     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7605   }
7606
7607   if (VT == MVT::i32 || VT == MVT::i64) {
7608     // ExtractPS/pextrq works with constant index.
7609     if (isa<ConstantSDNode>(Op.getOperand(1)))
7610       return Op;
7611   }
7612   return SDValue();
7613 }
7614
7615 SDValue
7616 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7617                                            SelectionDAG &DAG) const {
7618   SDLoc dl(Op);
7619   SDValue Vec = Op.getOperand(0);
7620   MVT VecVT = Vec.getSimpleValueType();
7621   SDValue Idx = Op.getOperand(1);
7622   if (!isa<ConstantSDNode>(Idx)) {
7623     if (VecVT.is512BitVector() ||
7624         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7625          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7626
7627       MVT MaskEltVT =
7628         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7629       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7630                                     MaskEltVT.getSizeInBits());
7631       
7632       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
7633       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7634                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7635                                 Idx, DAG.getConstant(0, getPointerTy()));
7636       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7637       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7638                         Perm, DAG.getConstant(0, getPointerTy()));
7639     }
7640     return SDValue();
7641   }
7642
7643   // If this is a 256-bit vector result, first extract the 128-bit vector and
7644   // then extract the element from the 128-bit vector.
7645   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7646
7647     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7648     // Get the 128-bit vector.
7649     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7650     MVT EltVT = VecVT.getVectorElementType();
7651
7652     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7653
7654     //if (IdxVal >= NumElems/2)
7655     //  IdxVal -= NumElems/2;
7656     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7657     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7658                        DAG.getConstant(IdxVal, MVT::i32));
7659   }
7660
7661   assert(VecVT.is128BitVector() && "Unexpected vector length");
7662
7663   if (Subtarget->hasSSE41()) {
7664     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7665     if (Res.getNode())
7666       return Res;
7667   }
7668
7669   MVT VT = Op.getSimpleValueType();
7670   // TODO: handle v16i8.
7671   if (VT.getSizeInBits() == 16) {
7672     SDValue Vec = Op.getOperand(0);
7673     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7674     if (Idx == 0)
7675       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7676                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7677                                      DAG.getNode(ISD::BITCAST, dl,
7678                                                  MVT::v4i32, Vec),
7679                                      Op.getOperand(1)));
7680     // Transform it so it match pextrw which produces a 32-bit result.
7681     MVT EltVT = MVT::i32;
7682     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7683                                   Op.getOperand(0), Op.getOperand(1));
7684     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7685                                   DAG.getValueType(VT));
7686     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7687   }
7688
7689   if (VT.getSizeInBits() == 32) {
7690     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7691     if (Idx == 0)
7692       return Op;
7693
7694     // SHUFPS the element to the lowest double word, then movss.
7695     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7696     MVT VVT = Op.getOperand(0).getSimpleValueType();
7697     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7698                                        DAG.getUNDEF(VVT), Mask);
7699     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7700                        DAG.getIntPtrConstant(0));
7701   }
7702
7703   if (VT.getSizeInBits() == 64) {
7704     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7705     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7706     //        to match extract_elt for f64.
7707     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7708     if (Idx == 0)
7709       return Op;
7710
7711     // UNPCKHPD the element to the lowest double word, then movsd.
7712     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7713     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7714     int Mask[2] = { 1, -1 };
7715     MVT VVT = Op.getOperand(0).getSimpleValueType();
7716     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7717                                        DAG.getUNDEF(VVT), Mask);
7718     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7719                        DAG.getIntPtrConstant(0));
7720   }
7721
7722   return SDValue();
7723 }
7724
7725 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7726   MVT VT = Op.getSimpleValueType();
7727   MVT EltVT = VT.getVectorElementType();
7728   SDLoc dl(Op);
7729
7730   SDValue N0 = Op.getOperand(0);
7731   SDValue N1 = Op.getOperand(1);
7732   SDValue N2 = Op.getOperand(2);
7733
7734   if (!VT.is128BitVector())
7735     return SDValue();
7736
7737   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7738       isa<ConstantSDNode>(N2)) {
7739     unsigned Opc;
7740     if (VT == MVT::v8i16)
7741       Opc = X86ISD::PINSRW;
7742     else if (VT == MVT::v16i8)
7743       Opc = X86ISD::PINSRB;
7744     else
7745       Opc = X86ISD::PINSRB;
7746
7747     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7748     // argument.
7749     if (N1.getValueType() != MVT::i32)
7750       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7751     if (N2.getValueType() != MVT::i32)
7752       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7753     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7754   }
7755
7756   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7757     // Bits [7:6] of the constant are the source select.  This will always be
7758     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7759     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7760     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7761     // Bits [5:4] of the constant are the destination select.  This is the
7762     //  value of the incoming immediate.
7763     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7764     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7765     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7766     // Create this as a scalar to vector..
7767     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7768     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7769   }
7770
7771   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7772     // PINSR* works with constant index.
7773     return Op;
7774   }
7775   return SDValue();
7776 }
7777
7778 SDValue
7779 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7780   MVT VT = Op.getSimpleValueType();
7781   MVT EltVT = VT.getVectorElementType();
7782
7783   SDLoc dl(Op);
7784   SDValue N0 = Op.getOperand(0);
7785   SDValue N1 = Op.getOperand(1);
7786   SDValue N2 = Op.getOperand(2);
7787
7788   // If this is a 256-bit vector result, first extract the 128-bit vector,
7789   // insert the element into the extracted half and then place it back.
7790   if (VT.is256BitVector() || VT.is512BitVector()) {
7791     if (!isa<ConstantSDNode>(N2))
7792       return SDValue();
7793
7794     // Get the desired 128-bit vector half.
7795     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7796     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7797
7798     // Insert the element into the desired half.
7799     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7800     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7801
7802     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7803                     DAG.getConstant(IdxIn128, MVT::i32));
7804
7805     // Insert the changed part back to the 256-bit vector
7806     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7807   }
7808
7809   if (Subtarget->hasSSE41())
7810     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7811
7812   if (EltVT == MVT::i8)
7813     return SDValue();
7814
7815   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7816     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7817     // as its second argument.
7818     if (N1.getValueType() != MVT::i32)
7819       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7820     if (N2.getValueType() != MVT::i32)
7821       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7822     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7823   }
7824   return SDValue();
7825 }
7826
7827 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7828   SDLoc dl(Op);
7829   MVT OpVT = Op.getSimpleValueType();
7830
7831   // If this is a 256-bit vector result, first insert into a 128-bit
7832   // vector and then insert into the 256-bit vector.
7833   if (!OpVT.is128BitVector()) {
7834     // Insert into a 128-bit vector.
7835     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7836     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7837                                  OpVT.getVectorNumElements() / SizeFactor);
7838
7839     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7840
7841     // Insert the 128-bit vector.
7842     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7843   }
7844
7845   if (OpVT == MVT::v1i64 &&
7846       Op.getOperand(0).getValueType() == MVT::i64)
7847     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7848
7849   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7850   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7851   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7852                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7853 }
7854
7855 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7856 // a simple subregister reference or explicit instructions to grab
7857 // upper bits of a vector.
7858 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7859                                       SelectionDAG &DAG) {
7860   SDLoc dl(Op);
7861   SDValue In =  Op.getOperand(0);
7862   SDValue Idx = Op.getOperand(1);
7863   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7864   MVT ResVT   = Op.getSimpleValueType();
7865   MVT InVT    = In.getSimpleValueType();
7866
7867   if (Subtarget->hasFp256()) {
7868     if (ResVT.is128BitVector() &&
7869         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7870         isa<ConstantSDNode>(Idx)) {
7871       return Extract128BitVector(In, IdxVal, DAG, dl);
7872     }
7873     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7874         isa<ConstantSDNode>(Idx)) {
7875       return Extract256BitVector(In, IdxVal, DAG, dl);
7876     }
7877   }
7878   return SDValue();
7879 }
7880
7881 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7882 // simple superregister reference or explicit instructions to insert
7883 // the upper bits of a vector.
7884 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7885                                      SelectionDAG &DAG) {
7886   if (Subtarget->hasFp256()) {
7887     SDLoc dl(Op.getNode());
7888     SDValue Vec = Op.getNode()->getOperand(0);
7889     SDValue SubVec = Op.getNode()->getOperand(1);
7890     SDValue Idx = Op.getNode()->getOperand(2);
7891
7892     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7893          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7894         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
7895         isa<ConstantSDNode>(Idx)) {
7896       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7897       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7898     }
7899
7900     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7901         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
7902         isa<ConstantSDNode>(Idx)) {
7903       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7904       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7905     }
7906   }
7907   return SDValue();
7908 }
7909
7910 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7911 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7912 // one of the above mentioned nodes. It has to be wrapped because otherwise
7913 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7914 // be used to form addressing mode. These wrapped nodes will be selected
7915 // into MOV32ri.
7916 SDValue
7917 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7918   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7919
7920   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7921   // global base reg.
7922   unsigned char OpFlag = 0;
7923   unsigned WrapperKind = X86ISD::Wrapper;
7924   CodeModel::Model M = getTargetMachine().getCodeModel();
7925
7926   if (Subtarget->isPICStyleRIPRel() &&
7927       (M == CodeModel::Small || M == CodeModel::Kernel))
7928     WrapperKind = X86ISD::WrapperRIP;
7929   else if (Subtarget->isPICStyleGOT())
7930     OpFlag = X86II::MO_GOTOFF;
7931   else if (Subtarget->isPICStyleStubPIC())
7932     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7933
7934   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7935                                              CP->getAlignment(),
7936                                              CP->getOffset(), OpFlag);
7937   SDLoc DL(CP);
7938   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7939   // With PIC, the address is actually $g + Offset.
7940   if (OpFlag) {
7941     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7942                          DAG.getNode(X86ISD::GlobalBaseReg,
7943                                      SDLoc(), getPointerTy()),
7944                          Result);
7945   }
7946
7947   return Result;
7948 }
7949
7950 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7951   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7952
7953   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7954   // global base reg.
7955   unsigned char OpFlag = 0;
7956   unsigned WrapperKind = X86ISD::Wrapper;
7957   CodeModel::Model M = getTargetMachine().getCodeModel();
7958
7959   if (Subtarget->isPICStyleRIPRel() &&
7960       (M == CodeModel::Small || M == CodeModel::Kernel))
7961     WrapperKind = X86ISD::WrapperRIP;
7962   else if (Subtarget->isPICStyleGOT())
7963     OpFlag = X86II::MO_GOTOFF;
7964   else if (Subtarget->isPICStyleStubPIC())
7965     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7966
7967   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7968                                           OpFlag);
7969   SDLoc DL(JT);
7970   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7971
7972   // With PIC, the address is actually $g + Offset.
7973   if (OpFlag)
7974     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7975                          DAG.getNode(X86ISD::GlobalBaseReg,
7976                                      SDLoc(), getPointerTy()),
7977                          Result);
7978
7979   return Result;
7980 }
7981
7982 SDValue
7983 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7984   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7985
7986   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7987   // global base reg.
7988   unsigned char OpFlag = 0;
7989   unsigned WrapperKind = X86ISD::Wrapper;
7990   CodeModel::Model M = getTargetMachine().getCodeModel();
7991
7992   if (Subtarget->isPICStyleRIPRel() &&
7993       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7994     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7995       OpFlag = X86II::MO_GOTPCREL;
7996     WrapperKind = X86ISD::WrapperRIP;
7997   } else if (Subtarget->isPICStyleGOT()) {
7998     OpFlag = X86II::MO_GOT;
7999   } else if (Subtarget->isPICStyleStubPIC()) {
8000     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8001   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8002     OpFlag = X86II::MO_DARWIN_NONLAZY;
8003   }
8004
8005   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8006
8007   SDLoc DL(Op);
8008   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8009
8010   // With PIC, the address is actually $g + Offset.
8011   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8012       !Subtarget->is64Bit()) {
8013     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8014                          DAG.getNode(X86ISD::GlobalBaseReg,
8015                                      SDLoc(), getPointerTy()),
8016                          Result);
8017   }
8018
8019   // For symbols that require a load from a stub to get the address, emit the
8020   // load.
8021   if (isGlobalStubReference(OpFlag))
8022     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8023                          MachinePointerInfo::getGOT(), false, false, false, 0);
8024
8025   return Result;
8026 }
8027
8028 SDValue
8029 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8030   // Create the TargetBlockAddressAddress node.
8031   unsigned char OpFlags =
8032     Subtarget->ClassifyBlockAddressReference();
8033   CodeModel::Model M = getTargetMachine().getCodeModel();
8034   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8035   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8036   SDLoc dl(Op);
8037   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8038                                              OpFlags);
8039
8040   if (Subtarget->isPICStyleRIPRel() &&
8041       (M == CodeModel::Small || M == CodeModel::Kernel))
8042     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8043   else
8044     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8045
8046   // With PIC, the address is actually $g + Offset.
8047   if (isGlobalRelativeToPICBase(OpFlags)) {
8048     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8049                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8050                          Result);
8051   }
8052
8053   return Result;
8054 }
8055
8056 SDValue
8057 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8058                                       int64_t Offset, SelectionDAG &DAG) const {
8059   // Create the TargetGlobalAddress node, folding in the constant
8060   // offset if it is legal.
8061   unsigned char OpFlags =
8062     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8063   CodeModel::Model M = getTargetMachine().getCodeModel();
8064   SDValue Result;
8065   if (OpFlags == X86II::MO_NO_FLAG &&
8066       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8067     // A direct static reference to a global.
8068     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8069     Offset = 0;
8070   } else {
8071     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8072   }
8073
8074   if (Subtarget->isPICStyleRIPRel() &&
8075       (M == CodeModel::Small || M == CodeModel::Kernel))
8076     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8077   else
8078     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8079
8080   // With PIC, the address is actually $g + Offset.
8081   if (isGlobalRelativeToPICBase(OpFlags)) {
8082     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8083                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8084                          Result);
8085   }
8086
8087   // For globals that require a load from a stub to get the address, emit the
8088   // load.
8089   if (isGlobalStubReference(OpFlags))
8090     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8091                          MachinePointerInfo::getGOT(), false, false, false, 0);
8092
8093   // If there was a non-zero offset that we didn't fold, create an explicit
8094   // addition for it.
8095   if (Offset != 0)
8096     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8097                          DAG.getConstant(Offset, getPointerTy()));
8098
8099   return Result;
8100 }
8101
8102 SDValue
8103 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8104   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8105   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8106   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8107 }
8108
8109 static SDValue
8110 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8111            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8112            unsigned char OperandFlags, bool LocalDynamic = false) {
8113   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8114   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8115   SDLoc dl(GA);
8116   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8117                                            GA->getValueType(0),
8118                                            GA->getOffset(),
8119                                            OperandFlags);
8120
8121   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8122                                            : X86ISD::TLSADDR;
8123
8124   if (InFlag) {
8125     SDValue Ops[] = { Chain,  TGA, *InFlag };
8126     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8127   } else {
8128     SDValue Ops[]  = { Chain, TGA };
8129     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8130   }
8131
8132   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8133   MFI->setAdjustsStack(true);
8134
8135   SDValue Flag = Chain.getValue(1);
8136   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8137 }
8138
8139 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8140 static SDValue
8141 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8142                                 const EVT PtrVT) {
8143   SDValue InFlag;
8144   SDLoc dl(GA);  // ? function entry point might be better
8145   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8146                                    DAG.getNode(X86ISD::GlobalBaseReg,
8147                                                SDLoc(), PtrVT), InFlag);
8148   InFlag = Chain.getValue(1);
8149
8150   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8151 }
8152
8153 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8154 static SDValue
8155 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8156                                 const EVT PtrVT) {
8157   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8158                     X86::RAX, X86II::MO_TLSGD);
8159 }
8160
8161 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8162                                            SelectionDAG &DAG,
8163                                            const EVT PtrVT,
8164                                            bool is64Bit) {
8165   SDLoc dl(GA);
8166
8167   // Get the start address of the TLS block for this module.
8168   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8169       .getInfo<X86MachineFunctionInfo>();
8170   MFI->incNumLocalDynamicTLSAccesses();
8171
8172   SDValue Base;
8173   if (is64Bit) {
8174     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8175                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8176   } else {
8177     SDValue InFlag;
8178     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8179         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8180     InFlag = Chain.getValue(1);
8181     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8182                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8183   }
8184
8185   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8186   // of Base.
8187
8188   // Build x@dtpoff.
8189   unsigned char OperandFlags = X86II::MO_DTPOFF;
8190   unsigned WrapperKind = X86ISD::Wrapper;
8191   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8192                                            GA->getValueType(0),
8193                                            GA->getOffset(), OperandFlags);
8194   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8195
8196   // Add x@dtpoff with the base.
8197   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8198 }
8199
8200 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8201 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8202                                    const EVT PtrVT, TLSModel::Model model,
8203                                    bool is64Bit, bool isPIC) {
8204   SDLoc dl(GA);
8205
8206   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8207   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8208                                                          is64Bit ? 257 : 256));
8209
8210   SDValue ThreadPointer =
8211       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8212                   MachinePointerInfo(Ptr), false, false, false, 0);
8213
8214   unsigned char OperandFlags = 0;
8215   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8216   // initialexec.
8217   unsigned WrapperKind = X86ISD::Wrapper;
8218   if (model == TLSModel::LocalExec) {
8219     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8220   } else if (model == TLSModel::InitialExec) {
8221     if (is64Bit) {
8222       OperandFlags = X86II::MO_GOTTPOFF;
8223       WrapperKind = X86ISD::WrapperRIP;
8224     } else {
8225       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8226     }
8227   } else {
8228     llvm_unreachable("Unexpected model");
8229   }
8230
8231   // emit "addl x@ntpoff,%eax" (local exec)
8232   // or "addl x@indntpoff,%eax" (initial exec)
8233   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8234   SDValue TGA =
8235       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8236                                  GA->getOffset(), OperandFlags);
8237   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8238
8239   if (model == TLSModel::InitialExec) {
8240     if (isPIC && !is64Bit) {
8241       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8242                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8243                            Offset);
8244     }
8245
8246     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8247                          MachinePointerInfo::getGOT(), false, false, false, 0);
8248   }
8249
8250   // The address of the thread local variable is the add of the thread
8251   // pointer with the offset of the variable.
8252   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8253 }
8254
8255 SDValue
8256 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8257
8258   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8259   const GlobalValue *GV = GA->getGlobal();
8260
8261   if (Subtarget->isTargetELF()) {
8262     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8263
8264     switch (model) {
8265       case TLSModel::GeneralDynamic:
8266         if (Subtarget->is64Bit())
8267           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8268         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8269       case TLSModel::LocalDynamic:
8270         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8271                                            Subtarget->is64Bit());
8272       case TLSModel::InitialExec:
8273       case TLSModel::LocalExec:
8274         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8275                                    Subtarget->is64Bit(),
8276                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8277     }
8278     llvm_unreachable("Unknown TLS model.");
8279   }
8280
8281   if (Subtarget->isTargetDarwin()) {
8282     // Darwin only has one model of TLS.  Lower to that.
8283     unsigned char OpFlag = 0;
8284     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8285                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8286
8287     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8288     // global base reg.
8289     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8290                   !Subtarget->is64Bit();
8291     if (PIC32)
8292       OpFlag = X86II::MO_TLVP_PIC_BASE;
8293     else
8294       OpFlag = X86II::MO_TLVP;
8295     SDLoc DL(Op);
8296     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8297                                                 GA->getValueType(0),
8298                                                 GA->getOffset(), OpFlag);
8299     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8300
8301     // With PIC32, the address is actually $g + Offset.
8302     if (PIC32)
8303       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8304                            DAG.getNode(X86ISD::GlobalBaseReg,
8305                                        SDLoc(), getPointerTy()),
8306                            Offset);
8307
8308     // Lowering the machine isd will make sure everything is in the right
8309     // location.
8310     SDValue Chain = DAG.getEntryNode();
8311     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8312     SDValue Args[] = { Chain, Offset };
8313     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8314
8315     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8316     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8317     MFI->setAdjustsStack(true);
8318
8319     // And our return value (tls address) is in the standard call return value
8320     // location.
8321     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8322     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8323                               Chain.getValue(1));
8324   }
8325
8326   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8327     // Just use the implicit TLS architecture
8328     // Need to generate someting similar to:
8329     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8330     //                                  ; from TEB
8331     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8332     //   mov     rcx, qword [rdx+rcx*8]
8333     //   mov     eax, .tls$:tlsvar
8334     //   [rax+rcx] contains the address
8335     // Windows 64bit: gs:0x58
8336     // Windows 32bit: fs:__tls_array
8337
8338     // If GV is an alias then use the aliasee for determining
8339     // thread-localness.
8340     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8341       GV = GA->resolveAliasedGlobal(false);
8342     SDLoc dl(GA);
8343     SDValue Chain = DAG.getEntryNode();
8344
8345     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8346     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8347     // use its literal value of 0x2C.
8348     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8349                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8350                                                              256)
8351                                         : Type::getInt32PtrTy(*DAG.getContext(),
8352                                                               257));
8353
8354     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8355       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8356         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8357
8358     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8359                                         MachinePointerInfo(Ptr),
8360                                         false, false, false, 0);
8361
8362     // Load the _tls_index variable
8363     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8364     if (Subtarget->is64Bit())
8365       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8366                            IDX, MachinePointerInfo(), MVT::i32,
8367                            false, false, 0);
8368     else
8369       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8370                         false, false, false, 0);
8371
8372     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8373                                     getPointerTy());
8374     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8375
8376     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8377     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8378                       false, false, false, 0);
8379
8380     // Get the offset of start of .tls section
8381     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8382                                              GA->getValueType(0),
8383                                              GA->getOffset(), X86II::MO_SECREL);
8384     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8385
8386     // The address of the thread local variable is the add of the thread
8387     // pointer with the offset of the variable.
8388     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8389   }
8390
8391   llvm_unreachable("TLS not implemented for this target.");
8392 }
8393
8394 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8395 /// and take a 2 x i32 value to shift plus a shift amount.
8396 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
8397   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8398   EVT VT = Op.getValueType();
8399   unsigned VTBits = VT.getSizeInBits();
8400   SDLoc dl(Op);
8401   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8402   SDValue ShOpLo = Op.getOperand(0);
8403   SDValue ShOpHi = Op.getOperand(1);
8404   SDValue ShAmt  = Op.getOperand(2);
8405   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8406                                      DAG.getConstant(VTBits - 1, MVT::i8))
8407                        : DAG.getConstant(0, VT);
8408
8409   SDValue Tmp2, Tmp3;
8410   if (Op.getOpcode() == ISD::SHL_PARTS) {
8411     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8412     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
8413   } else {
8414     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8415     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
8416   }
8417
8418   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8419                                 DAG.getConstant(VTBits, MVT::i8));
8420   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8421                              AndNode, DAG.getConstant(0, MVT::i8));
8422
8423   SDValue Hi, Lo;
8424   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8425   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8426   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8427
8428   if (Op.getOpcode() == ISD::SHL_PARTS) {
8429     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8430     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8431   } else {
8432     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8433     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8434   }
8435
8436   SDValue Ops[2] = { Lo, Hi };
8437   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8438 }
8439
8440 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8441                                            SelectionDAG &DAG) const {
8442   EVT SrcVT = Op.getOperand(0).getValueType();
8443
8444   if (SrcVT.isVector())
8445     return SDValue();
8446
8447   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
8448          "Unknown SINT_TO_FP to lower!");
8449
8450   // These are really Legal; return the operand so the caller accepts it as
8451   // Legal.
8452   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8453     return Op;
8454   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8455       Subtarget->is64Bit()) {
8456     return Op;
8457   }
8458
8459   SDLoc dl(Op);
8460   unsigned Size = SrcVT.getSizeInBits()/8;
8461   MachineFunction &MF = DAG.getMachineFunction();
8462   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8463   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8464   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8465                                StackSlot,
8466                                MachinePointerInfo::getFixedStack(SSFI),
8467                                false, false, 0);
8468   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8469 }
8470
8471 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8472                                      SDValue StackSlot,
8473                                      SelectionDAG &DAG) const {
8474   // Build the FILD
8475   SDLoc DL(Op);
8476   SDVTList Tys;
8477   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8478   if (useSSE)
8479     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8480   else
8481     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8482
8483   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8484
8485   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8486   MachineMemOperand *MMO;
8487   if (FI) {
8488     int SSFI = FI->getIndex();
8489     MMO =
8490       DAG.getMachineFunction()
8491       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8492                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8493   } else {
8494     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8495     StackSlot = StackSlot.getOperand(1);
8496   }
8497   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8498   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8499                                            X86ISD::FILD, DL,
8500                                            Tys, Ops, array_lengthof(Ops),
8501                                            SrcVT, MMO);
8502
8503   if (useSSE) {
8504     Chain = Result.getValue(1);
8505     SDValue InFlag = Result.getValue(2);
8506
8507     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8508     // shouldn't be necessary except that RFP cannot be live across
8509     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8510     MachineFunction &MF = DAG.getMachineFunction();
8511     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8512     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8513     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8514     Tys = DAG.getVTList(MVT::Other);
8515     SDValue Ops[] = {
8516       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8517     };
8518     MachineMemOperand *MMO =
8519       DAG.getMachineFunction()
8520       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8521                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8522
8523     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8524                                     Ops, array_lengthof(Ops),
8525                                     Op.getValueType(), MMO);
8526     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8527                          MachinePointerInfo::getFixedStack(SSFI),
8528                          false, false, false, 0);
8529   }
8530
8531   return Result;
8532 }
8533
8534 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8535 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8536                                                SelectionDAG &DAG) const {
8537   // This algorithm is not obvious. Here it is what we're trying to output:
8538   /*
8539      movq       %rax,  %xmm0
8540      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8541      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8542      #ifdef __SSE3__
8543        haddpd   %xmm0, %xmm0
8544      #else
8545        pshufd   $0x4e, %xmm0, %xmm1
8546        addpd    %xmm1, %xmm0
8547      #endif
8548   */
8549
8550   SDLoc dl(Op);
8551   LLVMContext *Context = DAG.getContext();
8552
8553   // Build some magic constants.
8554   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8555   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8556   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8557
8558   SmallVector<Constant*,2> CV1;
8559   CV1.push_back(
8560     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8561                                       APInt(64, 0x4330000000000000ULL))));
8562   CV1.push_back(
8563     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8564                                       APInt(64, 0x4530000000000000ULL))));
8565   Constant *C1 = ConstantVector::get(CV1);
8566   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8567
8568   // Load the 64-bit value into an XMM register.
8569   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8570                             Op.getOperand(0));
8571   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8572                               MachinePointerInfo::getConstantPool(),
8573                               false, false, false, 16);
8574   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8575                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8576                               CLod0);
8577
8578   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8579                               MachinePointerInfo::getConstantPool(),
8580                               false, false, false, 16);
8581   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8582   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8583   SDValue Result;
8584
8585   if (Subtarget->hasSSE3()) {
8586     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8587     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8588   } else {
8589     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8590     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8591                                            S2F, 0x4E, DAG);
8592     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8593                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8594                          Sub);
8595   }
8596
8597   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8598                      DAG.getIntPtrConstant(0));
8599 }
8600
8601 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8602 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8603                                                SelectionDAG &DAG) const {
8604   SDLoc dl(Op);
8605   // FP constant to bias correct the final result.
8606   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8607                                    MVT::f64);
8608
8609   // Load the 32-bit value into an XMM register.
8610   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8611                              Op.getOperand(0));
8612
8613   // Zero out the upper parts of the register.
8614   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8615
8616   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8617                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8618                      DAG.getIntPtrConstant(0));
8619
8620   // Or the load with the bias.
8621   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8622                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8623                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8624                                                    MVT::v2f64, Load)),
8625                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8626                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8627                                                    MVT::v2f64, Bias)));
8628   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8629                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8630                    DAG.getIntPtrConstant(0));
8631
8632   // Subtract the bias.
8633   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8634
8635   // Handle final rounding.
8636   EVT DestVT = Op.getValueType();
8637
8638   if (DestVT.bitsLT(MVT::f64))
8639     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8640                        DAG.getIntPtrConstant(0));
8641   if (DestVT.bitsGT(MVT::f64))
8642     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8643
8644   // Handle final rounding.
8645   return Sub;
8646 }
8647
8648 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8649                                                SelectionDAG &DAG) const {
8650   SDValue N0 = Op.getOperand(0);
8651   EVT SVT = N0.getValueType();
8652   SDLoc dl(Op);
8653
8654   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8655           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8656          "Custom UINT_TO_FP is not supported!");
8657
8658   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8659                              SVT.getVectorNumElements());
8660   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8661                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8662 }
8663
8664 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8665                                            SelectionDAG &DAG) const {
8666   SDValue N0 = Op.getOperand(0);
8667   SDLoc dl(Op);
8668
8669   if (Op.getValueType().isVector())
8670     return lowerUINT_TO_FP_vec(Op, DAG);
8671
8672   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8673   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8674   // the optimization here.
8675   if (DAG.SignBitIsZero(N0))
8676     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8677
8678   EVT SrcVT = N0.getValueType();
8679   EVT DstVT = Op.getValueType();
8680   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8681     return LowerUINT_TO_FP_i64(Op, DAG);
8682   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8683     return LowerUINT_TO_FP_i32(Op, DAG);
8684   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8685     return SDValue();
8686
8687   // Make a 64-bit buffer, and use it to build an FILD.
8688   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8689   if (SrcVT == MVT::i32) {
8690     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8691     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8692                                      getPointerTy(), StackSlot, WordOff);
8693     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8694                                   StackSlot, MachinePointerInfo(),
8695                                   false, false, 0);
8696     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8697                                   OffsetSlot, MachinePointerInfo(),
8698                                   false, false, 0);
8699     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8700     return Fild;
8701   }
8702
8703   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8704   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8705                                StackSlot, MachinePointerInfo(),
8706                                false, false, 0);
8707   // For i64 source, we need to add the appropriate power of 2 if the input
8708   // was negative.  This is the same as the optimization in
8709   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8710   // we must be careful to do the computation in x87 extended precision, not
8711   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8712   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8713   MachineMemOperand *MMO =
8714     DAG.getMachineFunction()
8715     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8716                           MachineMemOperand::MOLoad, 8, 8);
8717
8718   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8719   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8720   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8721                                          array_lengthof(Ops), MVT::i64, MMO);
8722
8723   APInt FF(32, 0x5F800000ULL);
8724
8725   // Check whether the sign bit is set.
8726   SDValue SignSet = DAG.getSetCC(dl,
8727                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8728                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8729                                  ISD::SETLT);
8730
8731   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8732   SDValue FudgePtr = DAG.getConstantPool(
8733                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8734                                          getPointerTy());
8735
8736   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8737   SDValue Zero = DAG.getIntPtrConstant(0);
8738   SDValue Four = DAG.getIntPtrConstant(4);
8739   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8740                                Zero, Four);
8741   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8742
8743   // Load the value out, extending it from f32 to f80.
8744   // FIXME: Avoid the extend by constructing the right constant pool?
8745   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8746                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8747                                  MVT::f32, false, false, 4);
8748   // Extend everything to 80 bits to force it to be done on x87.
8749   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8750   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8751 }
8752
8753 std::pair<SDValue,SDValue>
8754 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8755                                     bool IsSigned, bool IsReplace) const {
8756   SDLoc DL(Op);
8757
8758   EVT DstTy = Op.getValueType();
8759
8760   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8761     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8762     DstTy = MVT::i64;
8763   }
8764
8765   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8766          DstTy.getSimpleVT() >= MVT::i16 &&
8767          "Unknown FP_TO_INT to lower!");
8768
8769   // These are really Legal.
8770   if (DstTy == MVT::i32 &&
8771       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8772     return std::make_pair(SDValue(), SDValue());
8773   if (Subtarget->is64Bit() &&
8774       DstTy == MVT::i64 &&
8775       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8776     return std::make_pair(SDValue(), SDValue());
8777
8778   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8779   // stack slot, or into the FTOL runtime function.
8780   MachineFunction &MF = DAG.getMachineFunction();
8781   unsigned MemSize = DstTy.getSizeInBits()/8;
8782   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8783   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8784
8785   unsigned Opc;
8786   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8787     Opc = X86ISD::WIN_FTOL;
8788   else
8789     switch (DstTy.getSimpleVT().SimpleTy) {
8790     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8791     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8792     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8793     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8794     }
8795
8796   SDValue Chain = DAG.getEntryNode();
8797   SDValue Value = Op.getOperand(0);
8798   EVT TheVT = Op.getOperand(0).getValueType();
8799   // FIXME This causes a redundant load/store if the SSE-class value is already
8800   // in memory, such as if it is on the callstack.
8801   if (isScalarFPTypeInSSEReg(TheVT)) {
8802     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8803     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8804                          MachinePointerInfo::getFixedStack(SSFI),
8805                          false, false, 0);
8806     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8807     SDValue Ops[] = {
8808       Chain, StackSlot, DAG.getValueType(TheVT)
8809     };
8810
8811     MachineMemOperand *MMO =
8812       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8813                               MachineMemOperand::MOLoad, MemSize, MemSize);
8814     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8815                                     array_lengthof(Ops), DstTy, MMO);
8816     Chain = Value.getValue(1);
8817     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8818     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8819   }
8820
8821   MachineMemOperand *MMO =
8822     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8823                             MachineMemOperand::MOStore, MemSize, MemSize);
8824
8825   if (Opc != X86ISD::WIN_FTOL) {
8826     // Build the FP_TO_INT*_IN_MEM
8827     SDValue Ops[] = { Chain, Value, StackSlot };
8828     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8829                                            Ops, array_lengthof(Ops), DstTy,
8830                                            MMO);
8831     return std::make_pair(FIST, StackSlot);
8832   } else {
8833     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8834       DAG.getVTList(MVT::Other, MVT::Glue),
8835       Chain, Value);
8836     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8837       MVT::i32, ftol.getValue(1));
8838     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8839       MVT::i32, eax.getValue(2));
8840     SDValue Ops[] = { eax, edx };
8841     SDValue pair = IsReplace
8842       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8843       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8844     return std::make_pair(pair, SDValue());
8845   }
8846 }
8847
8848 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8849                               const X86Subtarget *Subtarget) {
8850   MVT VT = Op->getSimpleValueType(0);
8851   SDValue In = Op->getOperand(0);
8852   MVT InVT = In.getSimpleValueType();
8853   SDLoc dl(Op);
8854
8855   // Optimize vectors in AVX mode:
8856   //
8857   //   v8i16 -> v8i32
8858   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8859   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8860   //   Concat upper and lower parts.
8861   //
8862   //   v4i32 -> v4i64
8863   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8864   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8865   //   Concat upper and lower parts.
8866   //
8867
8868   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8869       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8870       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8871     return SDValue();
8872
8873   if (Subtarget->hasInt256())
8874     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8875
8876   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8877   SDValue Undef = DAG.getUNDEF(InVT);
8878   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8879   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8880   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8881
8882   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
8883                              VT.getVectorNumElements()/2);
8884
8885   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8886   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8887
8888   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8889 }
8890
8891 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8892                                         SelectionDAG &DAG) {
8893   MVT VT = Op->getValueType(0).getSimpleVT();
8894   SDValue In = Op->getOperand(0);
8895   MVT InVT = In.getValueType().getSimpleVT();
8896   SDLoc DL(Op);
8897   unsigned int NumElts = VT.getVectorNumElements();
8898   if (NumElts != 8 && NumElts != 16)
8899     return SDValue();
8900
8901   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8902     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8903
8904   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8905   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8906   // Now we have only mask extension
8907   assert(InVT.getVectorElementType() == MVT::i1);
8908   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8909   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8910   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8911   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8912   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8913                            MachinePointerInfo::getConstantPool(),
8914                            false, false, false, Alignment);
8915
8916   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8917   if (VT.is512BitVector())
8918     return Brcst;
8919   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8920 }
8921
8922 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8923                                SelectionDAG &DAG) {
8924   if (Subtarget->hasFp256()) {
8925     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8926     if (Res.getNode())
8927       return Res;
8928   }
8929
8930   return SDValue();
8931 }
8932
8933 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8934                                 SelectionDAG &DAG) {
8935   SDLoc DL(Op);
8936   MVT VT = Op.getSimpleValueType();
8937   SDValue In = Op.getOperand(0);
8938   MVT SVT = In.getSimpleValueType();
8939
8940   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8941     return LowerZERO_EXTEND_AVX512(Op, DAG);
8942
8943   if (Subtarget->hasFp256()) {
8944     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8945     if (Res.getNode())
8946       return Res;
8947   }
8948
8949   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
8950          VT.getVectorNumElements() != SVT.getVectorNumElements());
8951   return SDValue();
8952 }
8953
8954 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8955   SDLoc DL(Op);
8956   MVT VT = Op.getSimpleValueType();  
8957   SDValue In = Op.getOperand(0);
8958   MVT InVT = In.getSimpleValueType();
8959   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8960          "Invalid TRUNCATE operation");
8961
8962   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8963     if (VT.getVectorElementType().getSizeInBits() >=8)
8964       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8965
8966     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8967     unsigned NumElts = InVT.getVectorNumElements();
8968     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8969     if (InVT.getSizeInBits() < 512) {
8970       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8971       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8972       InVT = ExtVT;
8973     }
8974     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8975     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8976     SDValue CP = DAG.getConstantPool(C, getPointerTy());
8977     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8978     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8979                            MachinePointerInfo::getConstantPool(),
8980                            false, false, false, Alignment);
8981     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8982     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8983     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8984   }
8985
8986   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
8987     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8988     if (Subtarget->hasInt256()) {
8989       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8990       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8991       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8992                                 ShufMask);
8993       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8994                          DAG.getIntPtrConstant(0));
8995     }
8996
8997     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8998     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8999                                DAG.getIntPtrConstant(0));
9000     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9001                                DAG.getIntPtrConstant(2));
9002
9003     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9004     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9005
9006     // The PSHUFD mask:
9007     static const int ShufMask1[] = {0, 2, 0, 0};
9008     SDValue Undef = DAG.getUNDEF(VT);
9009     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9010     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9011
9012     // The MOVLHPS mask:
9013     static const int ShufMask2[] = {0, 1, 4, 5};
9014     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9015   }
9016
9017   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9018     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9019     if (Subtarget->hasInt256()) {
9020       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9021
9022       SmallVector<SDValue,32> pshufbMask;
9023       for (unsigned i = 0; i < 2; ++i) {
9024         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9025         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9026         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9027         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9028         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9029         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9030         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9031         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9032         for (unsigned j = 0; j < 8; ++j)
9033           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9034       }
9035       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9036                                &pshufbMask[0], 32);
9037       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9038       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9039
9040       static const int ShufMask[] = {0,  2,  -1,  -1};
9041       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9042                                 &ShufMask[0]);
9043       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9044                        DAG.getIntPtrConstant(0));
9045       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9046     }
9047
9048     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9049                                DAG.getIntPtrConstant(0));
9050
9051     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9052                                DAG.getIntPtrConstant(4));
9053
9054     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9055     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9056
9057     // The PSHUFB mask:
9058     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9059                                    -1, -1, -1, -1, -1, -1, -1, -1};
9060
9061     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9062     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9063     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9064
9065     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9066     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9067
9068     // The MOVLHPS Mask:
9069     static const int ShufMask2[] = {0, 1, 4, 5};
9070     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9071     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9072   }
9073
9074   // Handle truncation of V256 to V128 using shuffles.
9075   if (!VT.is128BitVector() || !InVT.is256BitVector())
9076     return SDValue();
9077
9078   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9079
9080   unsigned NumElems = VT.getVectorNumElements();
9081   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9082                              NumElems * 2);
9083
9084   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9085   // Prepare truncation shuffle mask
9086   for (unsigned i = 0; i != NumElems; ++i)
9087     MaskVec[i] = i * 2;
9088   SDValue V = DAG.getVectorShuffle(NVT, DL,
9089                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9090                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9091   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9092                      DAG.getIntPtrConstant(0));
9093 }
9094
9095 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9096                                            SelectionDAG &DAG) const {
9097   MVT VT = Op.getSimpleValueType();
9098   if (VT.isVector()) {
9099     if (VT == MVT::v8i16)
9100       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9101                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9102                                      MVT::v8i32, Op.getOperand(0)));
9103     return SDValue();
9104   }
9105
9106   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9107     /*IsSigned=*/ true, /*IsReplace=*/ false);
9108   SDValue FIST = Vals.first, StackSlot = Vals.second;
9109   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9110   if (FIST.getNode() == 0) return Op;
9111
9112   if (StackSlot.getNode())
9113     // Load the result.
9114     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9115                        FIST, StackSlot, MachinePointerInfo(),
9116                        false, false, false, 0);
9117
9118   // The node is the result.
9119   return FIST;
9120 }
9121
9122 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9123                                            SelectionDAG &DAG) const {
9124   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9125     /*IsSigned=*/ false, /*IsReplace=*/ false);
9126   SDValue FIST = Vals.first, StackSlot = Vals.second;
9127   assert(FIST.getNode() && "Unexpected failure");
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 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9140   SDLoc DL(Op);
9141   MVT VT = Op.getSimpleValueType();
9142   SDValue In = Op.getOperand(0);
9143   MVT SVT = In.getSimpleValueType();
9144
9145   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9146
9147   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9148                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9149                                  In, DAG.getUNDEF(SVT)));
9150 }
9151
9152 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
9153   LLVMContext *Context = DAG.getContext();
9154   SDLoc dl(Op);
9155   MVT VT = Op.getSimpleValueType();
9156   MVT EltVT = VT;
9157   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9158   if (VT.isVector()) {
9159     EltVT = VT.getVectorElementType();
9160     NumElts = VT.getVectorNumElements();
9161   }
9162   Constant *C;
9163   if (EltVT == MVT::f64)
9164     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9165                                           APInt(64, ~(1ULL << 63))));
9166   else
9167     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9168                                           APInt(32, ~(1U << 31))));
9169   C = ConstantVector::getSplat(NumElts, C);
9170   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9171   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9172   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9173                              MachinePointerInfo::getConstantPool(),
9174                              false, false, false, Alignment);
9175   if (VT.isVector()) {
9176     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9177     return DAG.getNode(ISD::BITCAST, dl, VT,
9178                        DAG.getNode(ISD::AND, dl, ANDVT,
9179                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9180                                                Op.getOperand(0)),
9181                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9182   }
9183   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9184 }
9185
9186 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9187   LLVMContext *Context = DAG.getContext();
9188   SDLoc dl(Op);
9189   MVT VT = Op.getSimpleValueType();
9190   MVT EltVT = VT;
9191   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9192   if (VT.isVector()) {
9193     EltVT = VT.getVectorElementType();
9194     NumElts = VT.getVectorNumElements();
9195   }
9196   Constant *C;
9197   if (EltVT == MVT::f64)
9198     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9199                                           APInt(64, 1ULL << 63)));
9200   else
9201     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9202                                           APInt(32, 1U << 31)));
9203   C = ConstantVector::getSplat(NumElts, C);
9204   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9205   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9206   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9207                              MachinePointerInfo::getConstantPool(),
9208                              false, false, false, Alignment);
9209   if (VT.isVector()) {
9210     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9211     return DAG.getNode(ISD::BITCAST, dl, VT,
9212                        DAG.getNode(ISD::XOR, dl, XORVT,
9213                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9214                                                Op.getOperand(0)),
9215                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9216   }
9217
9218   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9219 }
9220
9221 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9222   LLVMContext *Context = DAG.getContext();
9223   SDValue Op0 = Op.getOperand(0);
9224   SDValue Op1 = Op.getOperand(1);
9225   SDLoc dl(Op);
9226   MVT VT = Op.getSimpleValueType();
9227   MVT SrcVT = Op1.getSimpleValueType();
9228
9229   // If second operand is smaller, extend it first.
9230   if (SrcVT.bitsLT(VT)) {
9231     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9232     SrcVT = VT;
9233   }
9234   // And if it is bigger, shrink it first.
9235   if (SrcVT.bitsGT(VT)) {
9236     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9237     SrcVT = VT;
9238   }
9239
9240   // At this point the operands and the result should have the same
9241   // type, and that won't be f80 since that is not custom lowered.
9242
9243   // First get the sign bit of second operand.
9244   SmallVector<Constant*,4> CV;
9245   if (SrcVT == MVT::f64) {
9246     const fltSemantics &Sem = APFloat::IEEEdouble;
9247     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9248     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9249   } else {
9250     const fltSemantics &Sem = APFloat::IEEEsingle;
9251     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9252     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9253     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9254     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9255   }
9256   Constant *C = ConstantVector::get(CV);
9257   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9258   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9259                               MachinePointerInfo::getConstantPool(),
9260                               false, false, false, 16);
9261   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9262
9263   // Shift sign bit right or left if the two operands have different types.
9264   if (SrcVT.bitsGT(VT)) {
9265     // Op0 is MVT::f32, Op1 is MVT::f64.
9266     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9267     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9268                           DAG.getConstant(32, MVT::i32));
9269     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9270     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9271                           DAG.getIntPtrConstant(0));
9272   }
9273
9274   // Clear first operand sign bit.
9275   CV.clear();
9276   if (VT == MVT::f64) {
9277     const fltSemantics &Sem = APFloat::IEEEdouble;
9278     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9279                                                    APInt(64, ~(1ULL << 63)))));
9280     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9281   } else {
9282     const fltSemantics &Sem = APFloat::IEEEsingle;
9283     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9284                                                    APInt(32, ~(1U << 31)))));
9285     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9286     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9287     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9288   }
9289   C = ConstantVector::get(CV);
9290   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9291   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9292                               MachinePointerInfo::getConstantPool(),
9293                               false, false, false, 16);
9294   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9295
9296   // Or the value with the sign bit.
9297   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9298 }
9299
9300 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9301   SDValue N0 = Op.getOperand(0);
9302   SDLoc dl(Op);
9303   MVT VT = Op.getSimpleValueType();
9304
9305   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9306   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9307                                   DAG.getConstant(1, VT));
9308   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9309 }
9310
9311 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9312 //
9313 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9314                                       SelectionDAG &DAG) {
9315   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9316
9317   if (!Subtarget->hasSSE41())
9318     return SDValue();
9319
9320   if (!Op->hasOneUse())
9321     return SDValue();
9322
9323   SDNode *N = Op.getNode();
9324   SDLoc DL(N);
9325
9326   SmallVector<SDValue, 8> Opnds;
9327   DenseMap<SDValue, unsigned> VecInMap;
9328   EVT VT = MVT::Other;
9329
9330   // Recognize a special case where a vector is casted into wide integer to
9331   // test all 0s.
9332   Opnds.push_back(N->getOperand(0));
9333   Opnds.push_back(N->getOperand(1));
9334
9335   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9336     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9337     // BFS traverse all OR'd operands.
9338     if (I->getOpcode() == ISD::OR) {
9339       Opnds.push_back(I->getOperand(0));
9340       Opnds.push_back(I->getOperand(1));
9341       // Re-evaluate the number of nodes to be traversed.
9342       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9343       continue;
9344     }
9345
9346     // Quit if a non-EXTRACT_VECTOR_ELT
9347     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9348       return SDValue();
9349
9350     // Quit if without a constant index.
9351     SDValue Idx = I->getOperand(1);
9352     if (!isa<ConstantSDNode>(Idx))
9353       return SDValue();
9354
9355     SDValue ExtractedFromVec = I->getOperand(0);
9356     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9357     if (M == VecInMap.end()) {
9358       VT = ExtractedFromVec.getValueType();
9359       // Quit if not 128/256-bit vector.
9360       if (!VT.is128BitVector() && !VT.is256BitVector())
9361         return SDValue();
9362       // Quit if not the same type.
9363       if (VecInMap.begin() != VecInMap.end() &&
9364           VT != VecInMap.begin()->first.getValueType())
9365         return SDValue();
9366       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9367     }
9368     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9369   }
9370
9371   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9372          "Not extracted from 128-/256-bit vector.");
9373
9374   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9375   SmallVector<SDValue, 8> VecIns;
9376
9377   for (DenseMap<SDValue, unsigned>::const_iterator
9378         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9379     // Quit if not all elements are used.
9380     if (I->second != FullMask)
9381       return SDValue();
9382     VecIns.push_back(I->first);
9383   }
9384
9385   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9386
9387   // Cast all vectors into TestVT for PTEST.
9388   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9389     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9390
9391   // If more than one full vectors are evaluated, OR them first before PTEST.
9392   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9393     // Each iteration will OR 2 nodes and append the result until there is only
9394     // 1 node left, i.e. the final OR'd value of all vectors.
9395     SDValue LHS = VecIns[Slot];
9396     SDValue RHS = VecIns[Slot + 1];
9397     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9398   }
9399
9400   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9401                      VecIns.back(), VecIns.back());
9402 }
9403
9404 /// Emit nodes that will be selected as "test Op0,Op0", or something
9405 /// equivalent.
9406 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9407                                     SelectionDAG &DAG) const {
9408   SDLoc dl(Op);
9409
9410   // CF and OF aren't always set the way we want. Determine which
9411   // of these we need.
9412   bool NeedCF = false;
9413   bool NeedOF = false;
9414   switch (X86CC) {
9415   default: break;
9416   case X86::COND_A: case X86::COND_AE:
9417   case X86::COND_B: case X86::COND_BE:
9418     NeedCF = true;
9419     break;
9420   case X86::COND_G: case X86::COND_GE:
9421   case X86::COND_L: case X86::COND_LE:
9422   case X86::COND_O: case X86::COND_NO:
9423     NeedOF = true;
9424     break;
9425   }
9426
9427   // See if we can use the EFLAGS value from the operand instead of
9428   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9429   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9430   if (Op.getResNo() != 0 || NeedOF || NeedCF)
9431     // Emit a CMP with 0, which is the TEST pattern.
9432     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9433                        DAG.getConstant(0, Op.getValueType()));
9434
9435   unsigned Opcode = 0;
9436   unsigned NumOperands = 0;
9437
9438   // Truncate operations may prevent the merge of the SETCC instruction
9439   // and the arithmetic instruction before it. Attempt to truncate the operands
9440   // of the arithmetic instruction and use a reduced bit-width instruction.
9441   bool NeedTruncation = false;
9442   SDValue ArithOp = Op;
9443   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9444     SDValue Arith = Op->getOperand(0);
9445     // Both the trunc and the arithmetic op need to have one user each.
9446     if (Arith->hasOneUse())
9447       switch (Arith.getOpcode()) {
9448         default: break;
9449         case ISD::ADD:
9450         case ISD::SUB:
9451         case ISD::AND:
9452         case ISD::OR:
9453         case ISD::XOR: {
9454           NeedTruncation = true;
9455           ArithOp = Arith;
9456         }
9457       }
9458   }
9459
9460   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9461   // which may be the result of a CAST.  We use the variable 'Op', which is the
9462   // non-casted variable when we check for possible users.
9463   switch (ArithOp.getOpcode()) {
9464   case ISD::ADD:
9465     // Due to an isel shortcoming, be conservative if this add is likely to be
9466     // selected as part of a load-modify-store instruction. When the root node
9467     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9468     // uses of other nodes in the match, such as the ADD in this case. This
9469     // leads to the ADD being left around and reselected, with the result being
9470     // two adds in the output.  Alas, even if none our users are stores, that
9471     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9472     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9473     // climbing the DAG back to the root, and it doesn't seem to be worth the
9474     // effort.
9475     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9476          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9477       if (UI->getOpcode() != ISD::CopyToReg &&
9478           UI->getOpcode() != ISD::SETCC &&
9479           UI->getOpcode() != ISD::STORE)
9480         goto default_case;
9481
9482     if (ConstantSDNode *C =
9483         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9484       // An add of one will be selected as an INC.
9485       if (C->getAPIntValue() == 1) {
9486         Opcode = X86ISD::INC;
9487         NumOperands = 1;
9488         break;
9489       }
9490
9491       // An add of negative one (subtract of one) will be selected as a DEC.
9492       if (C->getAPIntValue().isAllOnesValue()) {
9493         Opcode = X86ISD::DEC;
9494         NumOperands = 1;
9495         break;
9496       }
9497     }
9498
9499     // Otherwise use a regular EFLAGS-setting add.
9500     Opcode = X86ISD::ADD;
9501     NumOperands = 2;
9502     break;
9503   case ISD::AND: {
9504     // If the primary and result isn't used, don't bother using X86ISD::AND,
9505     // because a TEST instruction will be better.
9506     bool NonFlagUse = false;
9507     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9508            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9509       SDNode *User = *UI;
9510       unsigned UOpNo = UI.getOperandNo();
9511       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9512         // Look pass truncate.
9513         UOpNo = User->use_begin().getOperandNo();
9514         User = *User->use_begin();
9515       }
9516
9517       if (User->getOpcode() != ISD::BRCOND &&
9518           User->getOpcode() != ISD::SETCC &&
9519           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9520         NonFlagUse = true;
9521         break;
9522       }
9523     }
9524
9525     if (!NonFlagUse)
9526       break;
9527   }
9528     // FALL THROUGH
9529   case ISD::SUB:
9530   case ISD::OR:
9531   case ISD::XOR:
9532     // Due to the ISEL shortcoming noted above, be conservative if this op is
9533     // likely to be selected as part of a load-modify-store instruction.
9534     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9535            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9536       if (UI->getOpcode() == ISD::STORE)
9537         goto default_case;
9538
9539     // Otherwise use a regular EFLAGS-setting instruction.
9540     switch (ArithOp.getOpcode()) {
9541     default: llvm_unreachable("unexpected operator!");
9542     case ISD::SUB: Opcode = X86ISD::SUB; break;
9543     case ISD::XOR: Opcode = X86ISD::XOR; break;
9544     case ISD::AND: Opcode = X86ISD::AND; break;
9545     case ISD::OR: {
9546       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9547         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9548         if (EFLAGS.getNode())
9549           return EFLAGS;
9550       }
9551       Opcode = X86ISD::OR;
9552       break;
9553     }
9554     }
9555
9556     NumOperands = 2;
9557     break;
9558   case X86ISD::ADD:
9559   case X86ISD::SUB:
9560   case X86ISD::INC:
9561   case X86ISD::DEC:
9562   case X86ISD::OR:
9563   case X86ISD::XOR:
9564   case X86ISD::AND:
9565     return SDValue(Op.getNode(), 1);
9566   default:
9567   default_case:
9568     break;
9569   }
9570
9571   // If we found that truncation is beneficial, perform the truncation and
9572   // update 'Op'.
9573   if (NeedTruncation) {
9574     EVT VT = Op.getValueType();
9575     SDValue WideVal = Op->getOperand(0);
9576     EVT WideVT = WideVal.getValueType();
9577     unsigned ConvertedOp = 0;
9578     // Use a target machine opcode to prevent further DAGCombine
9579     // optimizations that may separate the arithmetic operations
9580     // from the setcc node.
9581     switch (WideVal.getOpcode()) {
9582       default: break;
9583       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9584       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9585       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9586       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9587       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9588     }
9589
9590     if (ConvertedOp) {
9591       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9592       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9593         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9594         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9595         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9596       }
9597     }
9598   }
9599
9600   if (Opcode == 0)
9601     // Emit a CMP with 0, which is the TEST pattern.
9602     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9603                        DAG.getConstant(0, Op.getValueType()));
9604
9605   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9606   SmallVector<SDValue, 4> Ops;
9607   for (unsigned i = 0; i != NumOperands; ++i)
9608     Ops.push_back(Op.getOperand(i));
9609
9610   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9611   DAG.ReplaceAllUsesWith(Op, New);
9612   return SDValue(New.getNode(), 1);
9613 }
9614
9615 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9616 /// equivalent.
9617 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9618                                    SelectionDAG &DAG) const {
9619   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9620     if (C->getAPIntValue() == 0)
9621       return EmitTest(Op0, X86CC, DAG);
9622
9623   SDLoc dl(Op0);
9624   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9625        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9626     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9627     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9628     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9629                               Op0, Op1);
9630     return SDValue(Sub.getNode(), 1);
9631   }
9632   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9633 }
9634
9635 /// Convert a comparison if required by the subtarget.
9636 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9637                                                  SelectionDAG &DAG) const {
9638   // If the subtarget does not support the FUCOMI instruction, floating-point
9639   // comparisons have to be converted.
9640   if (Subtarget->hasCMov() ||
9641       Cmp.getOpcode() != X86ISD::CMP ||
9642       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9643       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9644     return Cmp;
9645
9646   // The instruction selector will select an FUCOM instruction instead of
9647   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9648   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9649   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9650   SDLoc dl(Cmp);
9651   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9652   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9653   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9654                             DAG.getConstant(8, MVT::i8));
9655   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9656   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9657 }
9658
9659 static bool isAllOnes(SDValue V) {
9660   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9661   return C && C->isAllOnesValue();
9662 }
9663
9664 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9665 /// if it's possible.
9666 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9667                                      SDLoc dl, SelectionDAG &DAG) const {
9668   SDValue Op0 = And.getOperand(0);
9669   SDValue Op1 = And.getOperand(1);
9670   if (Op0.getOpcode() == ISD::TRUNCATE)
9671     Op0 = Op0.getOperand(0);
9672   if (Op1.getOpcode() == ISD::TRUNCATE)
9673     Op1 = Op1.getOperand(0);
9674
9675   SDValue LHS, RHS;
9676   if (Op1.getOpcode() == ISD::SHL)
9677     std::swap(Op0, Op1);
9678   if (Op0.getOpcode() == ISD::SHL) {
9679     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9680       if (And00C->getZExtValue() == 1) {
9681         // If we looked past a truncate, check that it's only truncating away
9682         // known zeros.
9683         unsigned BitWidth = Op0.getValueSizeInBits();
9684         unsigned AndBitWidth = And.getValueSizeInBits();
9685         if (BitWidth > AndBitWidth) {
9686           APInt Zeros, Ones;
9687           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9688           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9689             return SDValue();
9690         }
9691         LHS = Op1;
9692         RHS = Op0.getOperand(1);
9693       }
9694   } else if (Op1.getOpcode() == ISD::Constant) {
9695     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9696     uint64_t AndRHSVal = AndRHS->getZExtValue();
9697     SDValue AndLHS = Op0;
9698
9699     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9700       LHS = AndLHS.getOperand(0);
9701       RHS = AndLHS.getOperand(1);
9702     }
9703
9704     // Use BT if the immediate can't be encoded in a TEST instruction.
9705     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9706       LHS = AndLHS;
9707       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9708     }
9709   }
9710
9711   if (LHS.getNode()) {
9712     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9713     // instruction.  Since the shift amount is in-range-or-undefined, we know
9714     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9715     // the encoding for the i16 version is larger than the i32 version.
9716     // Also promote i16 to i32 for performance / code size reason.
9717     if (LHS.getValueType() == MVT::i8 ||
9718         LHS.getValueType() == MVT::i16)
9719       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9720
9721     // If the operand types disagree, extend the shift amount to match.  Since
9722     // BT ignores high bits (like shifts) we can use anyextend.
9723     if (LHS.getValueType() != RHS.getValueType())
9724       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9725
9726     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9727     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9728     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9729                        DAG.getConstant(Cond, MVT::i8), BT);
9730   }
9731
9732   return SDValue();
9733 }
9734
9735 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9736 /// mask CMPs.
9737 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9738                               SDValue &Op1) {
9739   unsigned SSECC;
9740   bool Swap = false;
9741
9742   // SSE Condition code mapping:
9743   //  0 - EQ
9744   //  1 - LT
9745   //  2 - LE
9746   //  3 - UNORD
9747   //  4 - NEQ
9748   //  5 - NLT
9749   //  6 - NLE
9750   //  7 - ORD
9751   switch (SetCCOpcode) {
9752   default: llvm_unreachable("Unexpected SETCC condition");
9753   case ISD::SETOEQ:
9754   case ISD::SETEQ:  SSECC = 0; break;
9755   case ISD::SETOGT:
9756   case ISD::SETGT:  Swap = true; // Fallthrough
9757   case ISD::SETLT:
9758   case ISD::SETOLT: SSECC = 1; break;
9759   case ISD::SETOGE:
9760   case ISD::SETGE:  Swap = true; // Fallthrough
9761   case ISD::SETLE:
9762   case ISD::SETOLE: SSECC = 2; break;
9763   case ISD::SETUO:  SSECC = 3; break;
9764   case ISD::SETUNE:
9765   case ISD::SETNE:  SSECC = 4; break;
9766   case ISD::SETULE: Swap = true; // Fallthrough
9767   case ISD::SETUGE: SSECC = 5; break;
9768   case ISD::SETULT: Swap = true; // Fallthrough
9769   case ISD::SETUGT: SSECC = 6; break;
9770   case ISD::SETO:   SSECC = 7; break;
9771   case ISD::SETUEQ:
9772   case ISD::SETONE: SSECC = 8; break;
9773   }
9774   if (Swap)
9775     std::swap(Op0, Op1);
9776
9777   return SSECC;
9778 }
9779
9780 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9781 // ones, and then concatenate the result back.
9782 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9783   MVT VT = Op.getSimpleValueType();
9784
9785   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9786          "Unsupported value type for operation");
9787
9788   unsigned NumElems = VT.getVectorNumElements();
9789   SDLoc dl(Op);
9790   SDValue CC = Op.getOperand(2);
9791
9792   // Extract the LHS vectors
9793   SDValue LHS = Op.getOperand(0);
9794   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9795   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9796
9797   // Extract the RHS vectors
9798   SDValue RHS = Op.getOperand(1);
9799   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9800   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9801
9802   // Issue the operation on the smaller types and concatenate the result back
9803   MVT EltVT = VT.getVectorElementType();
9804   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9805   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9806                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9807                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9808 }
9809
9810 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9811   SDValue Op0 = Op.getOperand(0);
9812   SDValue Op1 = Op.getOperand(1);
9813   SDValue CC = Op.getOperand(2);
9814   MVT VT = Op.getSimpleValueType();
9815
9816   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9817          Op.getValueType().getScalarType() == MVT::i1 &&
9818          "Cannot set masked compare for this operation");
9819
9820   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9821   SDLoc dl(Op);
9822
9823   bool Unsigned = false;
9824   unsigned SSECC;
9825   switch (SetCCOpcode) {
9826   default: llvm_unreachable("Unexpected SETCC condition");
9827   case ISD::SETNE:  SSECC = 4; break;
9828   case ISD::SETEQ:  SSECC = 0; break;
9829   case ISD::SETUGT: Unsigned = true;
9830   case ISD::SETGT:  SSECC = 6; break; // NLE
9831   case ISD::SETULT: Unsigned = true;
9832   case ISD::SETLT:  SSECC = 1; break;
9833   case ISD::SETUGE: Unsigned = true;
9834   case ISD::SETGE:  SSECC = 5; break; // NLT
9835   case ISD::SETULE: Unsigned = true;
9836   case ISD::SETLE:  SSECC = 2; break;
9837   }
9838   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9839   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9840                      DAG.getConstant(SSECC, MVT::i8));
9841
9842 }
9843
9844 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9845                            SelectionDAG &DAG) {
9846   SDValue Op0 = Op.getOperand(0);
9847   SDValue Op1 = Op.getOperand(1);
9848   SDValue CC = Op.getOperand(2);
9849   MVT VT = Op.getSimpleValueType();
9850   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9851   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
9852   SDLoc dl(Op);
9853
9854   if (isFP) {
9855 #ifndef NDEBUG
9856     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
9857     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9858 #endif
9859
9860     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
9861     unsigned Opc = X86ISD::CMPP;
9862     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
9863       assert(VT.getVectorNumElements() <= 16);
9864       Opc = X86ISD::CMPM;
9865     }
9866     // In the two special cases we can't handle, emit two comparisons.
9867     if (SSECC == 8) {
9868       unsigned CC0, CC1;
9869       unsigned CombineOpc;
9870       if (SetCCOpcode == ISD::SETUEQ) {
9871         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9872       } else {
9873         assert(SetCCOpcode == ISD::SETONE);
9874         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9875       }
9876
9877       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9878                                  DAG.getConstant(CC0, MVT::i8));
9879       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9880                                  DAG.getConstant(CC1, MVT::i8));
9881       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9882     }
9883     // Handle all other FP comparisons here.
9884     return DAG.getNode(Opc, dl, VT, Op0, Op1,
9885                        DAG.getConstant(SSECC, MVT::i8));
9886   }
9887
9888   // Break 256-bit integer vector compare into smaller ones.
9889   if (VT.is256BitVector() && !Subtarget->hasInt256())
9890     return Lower256IntVSETCC(Op, DAG);
9891
9892   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9893   EVT OpVT = Op1.getValueType();
9894   if (Subtarget->hasAVX512()) {
9895     if (Op1.getValueType().is512BitVector() ||
9896         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9897       return LowerIntVSETCC_AVX512(Op, DAG);
9898
9899     // In AVX-512 architecture setcc returns mask with i1 elements,
9900     // But there is no compare instruction for i8 and i16 elements.
9901     // We are not talking about 512-bit operands in this case, these
9902     // types are illegal.
9903     if (MaskResult &&
9904         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9905          OpVT.getVectorElementType().getSizeInBits() >= 8))
9906       return DAG.getNode(ISD::TRUNCATE, dl, VT,
9907                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9908   }
9909
9910   // We are handling one of the integer comparisons here.  Since SSE only has
9911   // GT and EQ comparisons for integer, swapping operands and multiple
9912   // operations may be required for some comparisons.
9913   unsigned Opc;
9914   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9915   
9916   switch (SetCCOpcode) {
9917   default: llvm_unreachable("Unexpected SETCC condition");
9918   case ISD::SETNE:  Invert = true;
9919   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
9920   case ISD::SETLT:  Swap = true;
9921   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
9922   case ISD::SETGE:  Swap = true;
9923   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9924                     Invert = true; break;
9925   case ISD::SETULT: Swap = true;
9926   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9927                     FlipSigns = true; break;
9928   case ISD::SETUGE: Swap = true;
9929   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9930                     FlipSigns = true; Invert = true; break;
9931   }
9932   
9933   // Special case: Use min/max operations for SETULE/SETUGE
9934   MVT VET = VT.getVectorElementType();
9935   bool hasMinMax =
9936        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9937     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
9938   
9939   if (hasMinMax) {
9940     switch (SetCCOpcode) {
9941     default: break;
9942     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9943     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9944     }
9945     
9946     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9947   }
9948   
9949   if (Swap)
9950     std::swap(Op0, Op1);
9951
9952   // Check that the operation in question is available (most are plain SSE2,
9953   // but PCMPGTQ and PCMPEQQ have different requirements).
9954   if (VT == MVT::v2i64) {
9955     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9956       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9957
9958       // First cast everything to the right type.
9959       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9960       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9961
9962       // Since SSE has no unsigned integer comparisons, we need to flip the sign
9963       // bits of the inputs before performing those operations. The lower
9964       // compare is always unsigned.
9965       SDValue SB;
9966       if (FlipSigns) {
9967         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9968       } else {
9969         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9970         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9971         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9972                          Sign, Zero, Sign, Zero);
9973       }
9974       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9975       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
9976
9977       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9978       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9979       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9980
9981       // Create masks for only the low parts/high parts of the 64 bit integers.
9982       static const int MaskHi[] = { 1, 1, 3, 3 };
9983       static const int MaskLo[] = { 0, 0, 2, 2 };
9984       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9985       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9986       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9987
9988       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
9989       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
9990
9991       if (Invert)
9992         Result = DAG.getNOT(dl, Result, MVT::v4i32);
9993
9994       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9995     }
9996
9997     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9998       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
9999       // pcmpeqd + pshufd + pand.
10000       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10001
10002       // First cast everything to the right type.
10003       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10004       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10005
10006       // Do the compare.
10007       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10008
10009       // Make sure the lower and upper halves are both all-ones.
10010       static const int Mask[] = { 1, 0, 3, 2 };
10011       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10012       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10013
10014       if (Invert)
10015         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10016
10017       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10018     }
10019   }
10020
10021   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10022   // bits of the inputs before performing those operations.
10023   if (FlipSigns) {
10024     EVT EltVT = VT.getVectorElementType();
10025     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10026     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10027     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10028   }
10029
10030   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10031
10032   // If the logical-not of the result is required, perform that now.
10033   if (Invert)
10034     Result = DAG.getNOT(dl, Result, VT);
10035   
10036   if (MinMax)
10037     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10038
10039   return Result;
10040 }
10041
10042 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10043
10044   MVT VT = Op.getSimpleValueType();
10045
10046   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10047
10048   assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10049   SDValue Op0 = Op.getOperand(0);
10050   SDValue Op1 = Op.getOperand(1);
10051   SDLoc dl(Op);
10052   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10053
10054   // Optimize to BT if possible.
10055   // Lower (X & (1 << N)) == 0 to BT(X, N).
10056   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10057   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10058   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10059       Op1.getOpcode() == ISD::Constant &&
10060       cast<ConstantSDNode>(Op1)->isNullValue() &&
10061       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10062     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10063     if (NewSetCC.getNode())
10064       return NewSetCC;
10065   }
10066
10067   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10068   // these.
10069   if (Op1.getOpcode() == ISD::Constant &&
10070       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10071        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10072       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10073
10074     // If the input is a setcc, then reuse the input setcc or use a new one with
10075     // the inverted condition.
10076     if (Op0.getOpcode() == X86ISD::SETCC) {
10077       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10078       bool Invert = (CC == ISD::SETNE) ^
10079         cast<ConstantSDNode>(Op1)->isNullValue();
10080       if (!Invert) return Op0;
10081
10082       CCode = X86::GetOppositeBranchCondition(CCode);
10083       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10084                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10085     }
10086   }
10087
10088   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10089   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10090   if (X86CC == X86::COND_INVALID)
10091     return SDValue();
10092
10093   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10094   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10095   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10096                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10097 }
10098
10099 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10100 static bool isX86LogicalCmp(SDValue Op) {
10101   unsigned Opc = Op.getNode()->getOpcode();
10102   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10103       Opc == X86ISD::SAHF)
10104     return true;
10105   if (Op.getResNo() == 1 &&
10106       (Opc == X86ISD::ADD ||
10107        Opc == X86ISD::SUB ||
10108        Opc == X86ISD::ADC ||
10109        Opc == X86ISD::SBB ||
10110        Opc == X86ISD::SMUL ||
10111        Opc == X86ISD::UMUL ||
10112        Opc == X86ISD::INC ||
10113        Opc == X86ISD::DEC ||
10114        Opc == X86ISD::OR ||
10115        Opc == X86ISD::XOR ||
10116        Opc == X86ISD::AND))
10117     return true;
10118
10119   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10120     return true;
10121
10122   return false;
10123 }
10124
10125 static bool isZero(SDValue V) {
10126   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10127   return C && C->isNullValue();
10128 }
10129
10130 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10131   if (V.getOpcode() != ISD::TRUNCATE)
10132     return false;
10133
10134   SDValue VOp0 = V.getOperand(0);
10135   unsigned InBits = VOp0.getValueSizeInBits();
10136   unsigned Bits = V.getValueSizeInBits();
10137   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10138 }
10139
10140 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10141   bool addTest = true;
10142   SDValue Cond  = Op.getOperand(0);
10143   SDValue Op1 = Op.getOperand(1);
10144   SDValue Op2 = Op.getOperand(2);
10145   SDLoc DL(Op);
10146   EVT VT = Op1.getValueType();
10147   SDValue CC;
10148
10149   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10150   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10151   // sequence later on.
10152   if (Cond.getOpcode() == ISD::SETCC &&
10153       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10154        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10155       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10156     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10157     int SSECC = translateX86FSETCC(
10158         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10159
10160     if (SSECC != 8) {
10161       unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10162       SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10163                                 DAG.getConstant(SSECC, MVT::i8));
10164       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10165       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10166       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10167     }
10168   }
10169
10170   if (Cond.getOpcode() == ISD::SETCC) {
10171     SDValue NewCond = LowerSETCC(Cond, DAG);
10172     if (NewCond.getNode())
10173       Cond = NewCond;
10174   }
10175
10176   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10177   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10178   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10179   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10180   if (Cond.getOpcode() == X86ISD::SETCC &&
10181       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10182       isZero(Cond.getOperand(1).getOperand(1))) {
10183     SDValue Cmp = Cond.getOperand(1);
10184
10185     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10186
10187     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10188         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10189       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10190
10191       SDValue CmpOp0 = Cmp.getOperand(0);
10192       // Apply further optimizations for special cases
10193       // (select (x != 0), -1, 0) -> neg & sbb
10194       // (select (x == 0), 0, -1) -> neg & sbb
10195       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10196         if (YC->isNullValue() &&
10197             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10198           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10199           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10200                                     DAG.getConstant(0, CmpOp0.getValueType()),
10201                                     CmpOp0);
10202           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10203                                     DAG.getConstant(X86::COND_B, MVT::i8),
10204                                     SDValue(Neg.getNode(), 1));
10205           return Res;
10206         }
10207
10208       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10209                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10210       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10211
10212       SDValue Res =   // Res = 0 or -1.
10213         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10214                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10215
10216       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10217         Res = DAG.getNOT(DL, Res, Res.getValueType());
10218
10219       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10220       if (N2C == 0 || !N2C->isNullValue())
10221         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10222       return Res;
10223     }
10224   }
10225
10226   // Look past (and (setcc_carry (cmp ...)), 1).
10227   if (Cond.getOpcode() == ISD::AND &&
10228       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10229     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10230     if (C && C->getAPIntValue() == 1)
10231       Cond = Cond.getOperand(0);
10232   }
10233
10234   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10235   // setting operand in place of the X86ISD::SETCC.
10236   unsigned CondOpcode = Cond.getOpcode();
10237   if (CondOpcode == X86ISD::SETCC ||
10238       CondOpcode == X86ISD::SETCC_CARRY) {
10239     CC = Cond.getOperand(0);
10240
10241     SDValue Cmp = Cond.getOperand(1);
10242     unsigned Opc = Cmp.getOpcode();
10243     MVT VT = Op.getSimpleValueType();
10244
10245     bool IllegalFPCMov = false;
10246     if (VT.isFloatingPoint() && !VT.isVector() &&
10247         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10248       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10249
10250     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10251         Opc == X86ISD::BT) { // FIXME
10252       Cond = Cmp;
10253       addTest = false;
10254     }
10255   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10256              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10257              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10258               Cond.getOperand(0).getValueType() != MVT::i8)) {
10259     SDValue LHS = Cond.getOperand(0);
10260     SDValue RHS = Cond.getOperand(1);
10261     unsigned X86Opcode;
10262     unsigned X86Cond;
10263     SDVTList VTs;
10264     switch (CondOpcode) {
10265     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10266     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10267     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10268     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10269     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10270     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10271     default: llvm_unreachable("unexpected overflowing operator");
10272     }
10273     if (CondOpcode == ISD::UMULO)
10274       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10275                           MVT::i32);
10276     else
10277       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10278
10279     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10280
10281     if (CondOpcode == ISD::UMULO)
10282       Cond = X86Op.getValue(2);
10283     else
10284       Cond = X86Op.getValue(1);
10285
10286     CC = DAG.getConstant(X86Cond, MVT::i8);
10287     addTest = false;
10288   }
10289
10290   if (addTest) {
10291     // Look pass the truncate if the high bits are known zero.
10292     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10293         Cond = Cond.getOperand(0);
10294
10295     // We know the result of AND is compared against zero. Try to match
10296     // it to BT.
10297     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10298       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10299       if (NewSetCC.getNode()) {
10300         CC = NewSetCC.getOperand(0);
10301         Cond = NewSetCC.getOperand(1);
10302         addTest = false;
10303       }
10304     }
10305   }
10306
10307   if (addTest) {
10308     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10309     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10310   }
10311
10312   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10313   // a <  b ?  0 : -1 -> RES = setcc_carry
10314   // a >= b ? -1 :  0 -> RES = setcc_carry
10315   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10316   if (Cond.getOpcode() == X86ISD::SUB) {
10317     Cond = ConvertCmpIfNecessary(Cond, DAG);
10318     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10319
10320     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10321         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10322       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10323                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10324       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10325         return DAG.getNOT(DL, Res, Res.getValueType());
10326       return Res;
10327     }
10328   }
10329
10330   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10331   // widen the cmov and push the truncate through. This avoids introducing a new
10332   // branch during isel and doesn't add any extensions.
10333   if (Op.getValueType() == MVT::i8 &&
10334       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10335     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10336     if (T1.getValueType() == T2.getValueType() &&
10337         // Blacklist CopyFromReg to avoid partial register stalls.
10338         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10339       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10340       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10341       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10342     }
10343   }
10344
10345   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10346   // condition is true.
10347   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10348   SDValue Ops[] = { Op2, Op1, CC, Cond };
10349   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10350 }
10351
10352 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10353   MVT VT = Op->getSimpleValueType(0);
10354   SDValue In = Op->getOperand(0);
10355   MVT InVT = In.getSimpleValueType();
10356   SDLoc dl(Op);
10357
10358   unsigned int NumElts = VT.getVectorNumElements();
10359   if (NumElts != 8 && NumElts != 16)
10360     return SDValue();
10361
10362   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10363     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10364
10365   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10366   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10367
10368   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10369   Constant *C = ConstantInt::get(*DAG.getContext(),
10370     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10371
10372   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10373   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10374   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10375                           MachinePointerInfo::getConstantPool(),
10376                           false, false, false, Alignment);
10377   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10378   if (VT.is512BitVector())
10379     return Brcst;
10380   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10381 }
10382
10383 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10384                                 SelectionDAG &DAG) {
10385   MVT VT = Op->getSimpleValueType(0);
10386   SDValue In = Op->getOperand(0);
10387   MVT InVT = In.getSimpleValueType();
10388   SDLoc dl(Op);
10389
10390   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10391     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10392
10393   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10394       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10395       (VT != MVT::v16i16 || InVT != MVT::v16i8))
10396     return SDValue();
10397
10398   if (Subtarget->hasInt256())
10399     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10400
10401   // Optimize vectors in AVX mode
10402   // Sign extend  v8i16 to v8i32 and
10403   //              v4i32 to v4i64
10404   //
10405   // Divide input vector into two parts
10406   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10407   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10408   // concat the vectors to original VT
10409
10410   unsigned NumElems = InVT.getVectorNumElements();
10411   SDValue Undef = DAG.getUNDEF(InVT);
10412
10413   SmallVector<int,8> ShufMask1(NumElems, -1);
10414   for (unsigned i = 0; i != NumElems/2; ++i)
10415     ShufMask1[i] = i;
10416
10417   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10418
10419   SmallVector<int,8> ShufMask2(NumElems, -1);
10420   for (unsigned i = 0; i != NumElems/2; ++i)
10421     ShufMask2[i] = i + NumElems/2;
10422
10423   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10424
10425   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10426                                 VT.getVectorNumElements()/2);
10427
10428   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10429   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10430
10431   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10432 }
10433
10434 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10435 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10436 // from the AND / OR.
10437 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10438   Opc = Op.getOpcode();
10439   if (Opc != ISD::OR && Opc != ISD::AND)
10440     return false;
10441   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10442           Op.getOperand(0).hasOneUse() &&
10443           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10444           Op.getOperand(1).hasOneUse());
10445 }
10446
10447 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10448 // 1 and that the SETCC node has a single use.
10449 static bool isXor1OfSetCC(SDValue Op) {
10450   if (Op.getOpcode() != ISD::XOR)
10451     return false;
10452   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10453   if (N1C && N1C->getAPIntValue() == 1) {
10454     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10455       Op.getOperand(0).hasOneUse();
10456   }
10457   return false;
10458 }
10459
10460 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10461   bool addTest = true;
10462   SDValue Chain = Op.getOperand(0);
10463   SDValue Cond  = Op.getOperand(1);
10464   SDValue Dest  = Op.getOperand(2);
10465   SDLoc dl(Op);
10466   SDValue CC;
10467   bool Inverted = false;
10468
10469   if (Cond.getOpcode() == ISD::SETCC) {
10470     // Check for setcc([su]{add,sub,mul}o == 0).
10471     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10472         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10473         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10474         Cond.getOperand(0).getResNo() == 1 &&
10475         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10476          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10477          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10478          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10479          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10480          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10481       Inverted = true;
10482       Cond = Cond.getOperand(0);
10483     } else {
10484       SDValue NewCond = LowerSETCC(Cond, DAG);
10485       if (NewCond.getNode())
10486         Cond = NewCond;
10487     }
10488   }
10489 #if 0
10490   // FIXME: LowerXALUO doesn't handle these!!
10491   else if (Cond.getOpcode() == X86ISD::ADD  ||
10492            Cond.getOpcode() == X86ISD::SUB  ||
10493            Cond.getOpcode() == X86ISD::SMUL ||
10494            Cond.getOpcode() == X86ISD::UMUL)
10495     Cond = LowerXALUO(Cond, DAG);
10496 #endif
10497
10498   // Look pass (and (setcc_carry (cmp ...)), 1).
10499   if (Cond.getOpcode() == ISD::AND &&
10500       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10501     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10502     if (C && C->getAPIntValue() == 1)
10503       Cond = Cond.getOperand(0);
10504   }
10505
10506   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10507   // setting operand in place of the X86ISD::SETCC.
10508   unsigned CondOpcode = Cond.getOpcode();
10509   if (CondOpcode == X86ISD::SETCC ||
10510       CondOpcode == X86ISD::SETCC_CARRY) {
10511     CC = Cond.getOperand(0);
10512
10513     SDValue Cmp = Cond.getOperand(1);
10514     unsigned Opc = Cmp.getOpcode();
10515     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10516     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10517       Cond = Cmp;
10518       addTest = false;
10519     } else {
10520       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10521       default: break;
10522       case X86::COND_O:
10523       case X86::COND_B:
10524         // These can only come from an arithmetic instruction with overflow,
10525         // e.g. SADDO, UADDO.
10526         Cond = Cond.getNode()->getOperand(1);
10527         addTest = false;
10528         break;
10529       }
10530     }
10531   }
10532   CondOpcode = Cond.getOpcode();
10533   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10534       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10535       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10536        Cond.getOperand(0).getValueType() != MVT::i8)) {
10537     SDValue LHS = Cond.getOperand(0);
10538     SDValue RHS = Cond.getOperand(1);
10539     unsigned X86Opcode;
10540     unsigned X86Cond;
10541     SDVTList VTs;
10542     switch (CondOpcode) {
10543     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10544     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10545     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10546     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10547     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10548     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10549     default: llvm_unreachable("unexpected overflowing operator");
10550     }
10551     if (Inverted)
10552       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10553     if (CondOpcode == ISD::UMULO)
10554       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10555                           MVT::i32);
10556     else
10557       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10558
10559     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10560
10561     if (CondOpcode == ISD::UMULO)
10562       Cond = X86Op.getValue(2);
10563     else
10564       Cond = X86Op.getValue(1);
10565
10566     CC = DAG.getConstant(X86Cond, MVT::i8);
10567     addTest = false;
10568   } else {
10569     unsigned CondOpc;
10570     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10571       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10572       if (CondOpc == ISD::OR) {
10573         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10574         // two branches instead of an explicit OR instruction with a
10575         // separate test.
10576         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10577             isX86LogicalCmp(Cmp)) {
10578           CC = Cond.getOperand(0).getOperand(0);
10579           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10580                               Chain, Dest, CC, Cmp);
10581           CC = Cond.getOperand(1).getOperand(0);
10582           Cond = Cmp;
10583           addTest = false;
10584         }
10585       } else { // ISD::AND
10586         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10587         // two branches instead of an explicit AND instruction with a
10588         // separate test. However, we only do this if this block doesn't
10589         // have a fall-through edge, because this requires an explicit
10590         // jmp when the condition is false.
10591         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10592             isX86LogicalCmp(Cmp) &&
10593             Op.getNode()->hasOneUse()) {
10594           X86::CondCode CCode =
10595             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10596           CCode = X86::GetOppositeBranchCondition(CCode);
10597           CC = DAG.getConstant(CCode, MVT::i8);
10598           SDNode *User = *Op.getNode()->use_begin();
10599           // Look for an unconditional branch following this conditional branch.
10600           // We need this because we need to reverse the successors in order
10601           // to implement FCMP_OEQ.
10602           if (User->getOpcode() == ISD::BR) {
10603             SDValue FalseBB = User->getOperand(1);
10604             SDNode *NewBR =
10605               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10606             assert(NewBR == User);
10607             (void)NewBR;
10608             Dest = FalseBB;
10609
10610             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10611                                 Chain, Dest, CC, Cmp);
10612             X86::CondCode CCode =
10613               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10614             CCode = X86::GetOppositeBranchCondition(CCode);
10615             CC = DAG.getConstant(CCode, MVT::i8);
10616             Cond = Cmp;
10617             addTest = false;
10618           }
10619         }
10620       }
10621     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10622       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10623       // It should be transformed during dag combiner except when the condition
10624       // is set by a arithmetics with overflow node.
10625       X86::CondCode CCode =
10626         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10627       CCode = X86::GetOppositeBranchCondition(CCode);
10628       CC = DAG.getConstant(CCode, MVT::i8);
10629       Cond = Cond.getOperand(0).getOperand(1);
10630       addTest = false;
10631     } else if (Cond.getOpcode() == ISD::SETCC &&
10632                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10633       // For FCMP_OEQ, we can emit
10634       // two branches instead of an explicit AND instruction with a
10635       // separate test. However, we only do this if this block doesn't
10636       // have a fall-through edge, because this requires an explicit
10637       // jmp when the condition is false.
10638       if (Op.getNode()->hasOneUse()) {
10639         SDNode *User = *Op.getNode()->use_begin();
10640         // Look for an unconditional branch following this conditional branch.
10641         // We need this because we need to reverse the successors in order
10642         // to implement FCMP_OEQ.
10643         if (User->getOpcode() == ISD::BR) {
10644           SDValue FalseBB = User->getOperand(1);
10645           SDNode *NewBR =
10646             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10647           assert(NewBR == User);
10648           (void)NewBR;
10649           Dest = FalseBB;
10650
10651           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10652                                     Cond.getOperand(0), Cond.getOperand(1));
10653           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10654           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10655           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10656                               Chain, Dest, CC, Cmp);
10657           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10658           Cond = Cmp;
10659           addTest = false;
10660         }
10661       }
10662     } else if (Cond.getOpcode() == ISD::SETCC &&
10663                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10664       // For FCMP_UNE, we can emit
10665       // two branches instead of an explicit AND instruction with a
10666       // separate test. However, we only do this if this block doesn't
10667       // have a fall-through edge, because this requires an explicit
10668       // jmp when the condition is false.
10669       if (Op.getNode()->hasOneUse()) {
10670         SDNode *User = *Op.getNode()->use_begin();
10671         // Look for an unconditional branch following this conditional branch.
10672         // We need this because we need to reverse the successors in order
10673         // to implement FCMP_UNE.
10674         if (User->getOpcode() == ISD::BR) {
10675           SDValue FalseBB = User->getOperand(1);
10676           SDNode *NewBR =
10677             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10678           assert(NewBR == User);
10679           (void)NewBR;
10680
10681           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10682                                     Cond.getOperand(0), Cond.getOperand(1));
10683           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10684           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10685           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10686                               Chain, Dest, CC, Cmp);
10687           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10688           Cond = Cmp;
10689           addTest = false;
10690           Dest = FalseBB;
10691         }
10692       }
10693     }
10694   }
10695
10696   if (addTest) {
10697     // Look pass the truncate if the high bits are known zero.
10698     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10699         Cond = Cond.getOperand(0);
10700
10701     // We know the result of AND is compared against zero. Try to match
10702     // it to BT.
10703     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10704       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10705       if (NewSetCC.getNode()) {
10706         CC = NewSetCC.getOperand(0);
10707         Cond = NewSetCC.getOperand(1);
10708         addTest = false;
10709       }
10710     }
10711   }
10712
10713   if (addTest) {
10714     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10715     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10716   }
10717   Cond = ConvertCmpIfNecessary(Cond, DAG);
10718   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10719                      Chain, Dest, CC, Cond);
10720 }
10721
10722 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10723 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10724 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10725 // that the guard pages used by the OS virtual memory manager are allocated in
10726 // correct sequence.
10727 SDValue
10728 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10729                                            SelectionDAG &DAG) const {
10730   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10731           getTargetMachine().Options.EnableSegmentedStacks) &&
10732          "This should be used only on Windows targets or when segmented stacks "
10733          "are being used");
10734   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
10735   SDLoc dl(Op);
10736
10737   // Get the inputs.
10738   SDValue Chain = Op.getOperand(0);
10739   SDValue Size  = Op.getOperand(1);
10740   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10741   EVT VT = Op.getNode()->getValueType(0);
10742
10743   bool Is64Bit = Subtarget->is64Bit();
10744   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10745
10746   if (getTargetMachine().Options.EnableSegmentedStacks) {
10747     MachineFunction &MF = DAG.getMachineFunction();
10748     MachineRegisterInfo &MRI = MF.getRegInfo();
10749
10750     if (Is64Bit) {
10751       // The 64 bit implementation of segmented stacks needs to clobber both r10
10752       // r11. This makes it impossible to use it along with nested parameters.
10753       const Function *F = MF.getFunction();
10754
10755       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10756            I != E; ++I)
10757         if (I->hasNestAttr())
10758           report_fatal_error("Cannot use segmented stacks with functions that "
10759                              "have nested arguments.");
10760     }
10761
10762     const TargetRegisterClass *AddrRegClass =
10763       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10764     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10765     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10766     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10767                                 DAG.getRegister(Vreg, SPTy));
10768     SDValue Ops1[2] = { Value, Chain };
10769     return DAG.getMergeValues(Ops1, 2, dl);
10770   } else {
10771     SDValue Flag;
10772     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10773
10774     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10775     Flag = Chain.getValue(1);
10776     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10777
10778     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10779
10780     const X86RegisterInfo *RegInfo =
10781       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10782     unsigned SPReg = RegInfo->getStackRegister();
10783     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10784     Chain = SP.getValue(1);
10785
10786     if (Align) {
10787       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10788                        DAG.getConstant(-(uint64_t)Align, VT));
10789       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10790     }
10791
10792     SDValue Ops1[2] = { SP, Chain };
10793     return DAG.getMergeValues(Ops1, 2, dl);
10794   }
10795 }
10796
10797 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10798   MachineFunction &MF = DAG.getMachineFunction();
10799   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10800
10801   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10802   SDLoc DL(Op);
10803
10804   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10805     // vastart just stores the address of the VarArgsFrameIndex slot into the
10806     // memory location argument.
10807     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10808                                    getPointerTy());
10809     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10810                         MachinePointerInfo(SV), false, false, 0);
10811   }
10812
10813   // __va_list_tag:
10814   //   gp_offset         (0 - 6 * 8)
10815   //   fp_offset         (48 - 48 + 8 * 16)
10816   //   overflow_arg_area (point to parameters coming in memory).
10817   //   reg_save_area
10818   SmallVector<SDValue, 8> MemOps;
10819   SDValue FIN = Op.getOperand(1);
10820   // Store gp_offset
10821   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10822                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10823                                                MVT::i32),
10824                                FIN, MachinePointerInfo(SV), false, false, 0);
10825   MemOps.push_back(Store);
10826
10827   // Store fp_offset
10828   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10829                     FIN, DAG.getIntPtrConstant(4));
10830   Store = DAG.getStore(Op.getOperand(0), DL,
10831                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10832                                        MVT::i32),
10833                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10834   MemOps.push_back(Store);
10835
10836   // Store ptr to overflow_arg_area
10837   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10838                     FIN, DAG.getIntPtrConstant(4));
10839   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10840                                     getPointerTy());
10841   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10842                        MachinePointerInfo(SV, 8),
10843                        false, false, 0);
10844   MemOps.push_back(Store);
10845
10846   // Store ptr to reg_save_area.
10847   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10848                     FIN, DAG.getIntPtrConstant(8));
10849   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10850                                     getPointerTy());
10851   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10852                        MachinePointerInfo(SV, 16), false, false, 0);
10853   MemOps.push_back(Store);
10854   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
10855                      &MemOps[0], MemOps.size());
10856 }
10857
10858 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
10859   assert(Subtarget->is64Bit() &&
10860          "LowerVAARG only handles 64-bit va_arg!");
10861   assert((Subtarget->isTargetLinux() ||
10862           Subtarget->isTargetDarwin()) &&
10863           "Unhandled target in LowerVAARG");
10864   assert(Op.getNode()->getNumOperands() == 4);
10865   SDValue Chain = Op.getOperand(0);
10866   SDValue SrcPtr = Op.getOperand(1);
10867   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10868   unsigned Align = Op.getConstantOperandVal(3);
10869   SDLoc dl(Op);
10870
10871   EVT ArgVT = Op.getNode()->getValueType(0);
10872   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10873   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
10874   uint8_t ArgMode;
10875
10876   // Decide which area this value should be read from.
10877   // TODO: Implement the AMD64 ABI in its entirety. This simple
10878   // selection mechanism works only for the basic types.
10879   if (ArgVT == MVT::f80) {
10880     llvm_unreachable("va_arg for f80 not yet implemented");
10881   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10882     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
10883   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10884     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
10885   } else {
10886     llvm_unreachable("Unhandled argument type in LowerVAARG");
10887   }
10888
10889   if (ArgMode == 2) {
10890     // Sanity Check: Make sure using fp_offset makes sense.
10891     assert(!getTargetMachine().Options.UseSoftFloat &&
10892            !(DAG.getMachineFunction()
10893                 .getFunction()->getAttributes()
10894                 .hasAttribute(AttributeSet::FunctionIndex,
10895                               Attribute::NoImplicitFloat)) &&
10896            Subtarget->hasSSE1());
10897   }
10898
10899   // Insert VAARG_64 node into the DAG
10900   // VAARG_64 returns two values: Variable Argument Address, Chain
10901   SmallVector<SDValue, 11> InstOps;
10902   InstOps.push_back(Chain);
10903   InstOps.push_back(SrcPtr);
10904   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10905   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10906   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10907   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10908   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10909                                           VTs, &InstOps[0], InstOps.size(),
10910                                           MVT::i64,
10911                                           MachinePointerInfo(SV),
10912                                           /*Align=*/0,
10913                                           /*Volatile=*/false,
10914                                           /*ReadMem=*/true,
10915                                           /*WriteMem=*/true);
10916   Chain = VAARG.getValue(1);
10917
10918   // Load the next argument and return it
10919   return DAG.getLoad(ArgVT, dl,
10920                      Chain,
10921                      VAARG,
10922                      MachinePointerInfo(),
10923                      false, false, false, 0);
10924 }
10925
10926 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10927                            SelectionDAG &DAG) {
10928   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
10929   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
10930   SDValue Chain = Op.getOperand(0);
10931   SDValue DstPtr = Op.getOperand(1);
10932   SDValue SrcPtr = Op.getOperand(2);
10933   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10934   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10935   SDLoc DL(Op);
10936
10937   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
10938                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
10939                        false,
10940                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
10941 }
10942
10943 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
10944 // amount is a constant. Takes immediate version of shift as input.
10945 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, EVT VT,
10946                                           SDValue SrcOp, uint64_t ShiftAmt,
10947                                           SelectionDAG &DAG) {
10948
10949   // Check for ShiftAmt >= element width
10950   if (ShiftAmt >= VT.getVectorElementType().getSizeInBits()) {
10951     if (Opc == X86ISD::VSRAI)
10952       ShiftAmt = VT.getVectorElementType().getSizeInBits() - 1;
10953     else
10954       return DAG.getConstant(0, VT);
10955   }
10956
10957   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
10958          && "Unknown target vector shift-by-constant node");
10959
10960   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
10961 }
10962
10963 // getTargetVShiftNode - Handle vector element shifts where the shift amount
10964 // may or may not be a constant. Takes immediate version of shift as input.
10965 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
10966                                    SDValue SrcOp, SDValue ShAmt,
10967                                    SelectionDAG &DAG) {
10968   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10969
10970   // Catch shift-by-constant.
10971   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
10972     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
10973                                       CShAmt->getZExtValue(), DAG);
10974
10975   // Change opcode to non-immediate version
10976   switch (Opc) {
10977     default: llvm_unreachable("Unknown target vector shift node");
10978     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10979     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10980     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10981   }
10982
10983   // Need to build a vector containing shift amount
10984   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10985   SDValue ShOps[4];
10986   ShOps[0] = ShAmt;
10987   ShOps[1] = DAG.getConstant(0, MVT::i32);
10988   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
10989   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
10990
10991   // The return type has to be a 128-bit type with the same element
10992   // type as the input type.
10993   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10994   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10995
10996   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
10997   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10998 }
10999
11000 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11001   SDLoc dl(Op);
11002   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11003   switch (IntNo) {
11004   default: return SDValue();    // Don't custom lower most intrinsics.
11005   // Comparison intrinsics.
11006   case Intrinsic::x86_sse_comieq_ss:
11007   case Intrinsic::x86_sse_comilt_ss:
11008   case Intrinsic::x86_sse_comile_ss:
11009   case Intrinsic::x86_sse_comigt_ss:
11010   case Intrinsic::x86_sse_comige_ss:
11011   case Intrinsic::x86_sse_comineq_ss:
11012   case Intrinsic::x86_sse_ucomieq_ss:
11013   case Intrinsic::x86_sse_ucomilt_ss:
11014   case Intrinsic::x86_sse_ucomile_ss:
11015   case Intrinsic::x86_sse_ucomigt_ss:
11016   case Intrinsic::x86_sse_ucomige_ss:
11017   case Intrinsic::x86_sse_ucomineq_ss:
11018   case Intrinsic::x86_sse2_comieq_sd:
11019   case Intrinsic::x86_sse2_comilt_sd:
11020   case Intrinsic::x86_sse2_comile_sd:
11021   case Intrinsic::x86_sse2_comigt_sd:
11022   case Intrinsic::x86_sse2_comige_sd:
11023   case Intrinsic::x86_sse2_comineq_sd:
11024   case Intrinsic::x86_sse2_ucomieq_sd:
11025   case Intrinsic::x86_sse2_ucomilt_sd:
11026   case Intrinsic::x86_sse2_ucomile_sd:
11027   case Intrinsic::x86_sse2_ucomigt_sd:
11028   case Intrinsic::x86_sse2_ucomige_sd:
11029   case Intrinsic::x86_sse2_ucomineq_sd: {
11030     unsigned Opc;
11031     ISD::CondCode CC;
11032     switch (IntNo) {
11033     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11034     case Intrinsic::x86_sse_comieq_ss:
11035     case Intrinsic::x86_sse2_comieq_sd:
11036       Opc = X86ISD::COMI;
11037       CC = ISD::SETEQ;
11038       break;
11039     case Intrinsic::x86_sse_comilt_ss:
11040     case Intrinsic::x86_sse2_comilt_sd:
11041       Opc = X86ISD::COMI;
11042       CC = ISD::SETLT;
11043       break;
11044     case Intrinsic::x86_sse_comile_ss:
11045     case Intrinsic::x86_sse2_comile_sd:
11046       Opc = X86ISD::COMI;
11047       CC = ISD::SETLE;
11048       break;
11049     case Intrinsic::x86_sse_comigt_ss:
11050     case Intrinsic::x86_sse2_comigt_sd:
11051       Opc = X86ISD::COMI;
11052       CC = ISD::SETGT;
11053       break;
11054     case Intrinsic::x86_sse_comige_ss:
11055     case Intrinsic::x86_sse2_comige_sd:
11056       Opc = X86ISD::COMI;
11057       CC = ISD::SETGE;
11058       break;
11059     case Intrinsic::x86_sse_comineq_ss:
11060     case Intrinsic::x86_sse2_comineq_sd:
11061       Opc = X86ISD::COMI;
11062       CC = ISD::SETNE;
11063       break;
11064     case Intrinsic::x86_sse_ucomieq_ss:
11065     case Intrinsic::x86_sse2_ucomieq_sd:
11066       Opc = X86ISD::UCOMI;
11067       CC = ISD::SETEQ;
11068       break;
11069     case Intrinsic::x86_sse_ucomilt_ss:
11070     case Intrinsic::x86_sse2_ucomilt_sd:
11071       Opc = X86ISD::UCOMI;
11072       CC = ISD::SETLT;
11073       break;
11074     case Intrinsic::x86_sse_ucomile_ss:
11075     case Intrinsic::x86_sse2_ucomile_sd:
11076       Opc = X86ISD::UCOMI;
11077       CC = ISD::SETLE;
11078       break;
11079     case Intrinsic::x86_sse_ucomigt_ss:
11080     case Intrinsic::x86_sse2_ucomigt_sd:
11081       Opc = X86ISD::UCOMI;
11082       CC = ISD::SETGT;
11083       break;
11084     case Intrinsic::x86_sse_ucomige_ss:
11085     case Intrinsic::x86_sse2_ucomige_sd:
11086       Opc = X86ISD::UCOMI;
11087       CC = ISD::SETGE;
11088       break;
11089     case Intrinsic::x86_sse_ucomineq_ss:
11090     case Intrinsic::x86_sse2_ucomineq_sd:
11091       Opc = X86ISD::UCOMI;
11092       CC = ISD::SETNE;
11093       break;
11094     }
11095
11096     SDValue LHS = Op.getOperand(1);
11097     SDValue RHS = Op.getOperand(2);
11098     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11099     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11100     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11101     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11102                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11103     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11104   }
11105
11106   // Arithmetic intrinsics.
11107   case Intrinsic::x86_sse2_pmulu_dq:
11108   case Intrinsic::x86_avx2_pmulu_dq:
11109     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11110                        Op.getOperand(1), Op.getOperand(2));
11111
11112   // SSE2/AVX2 sub with unsigned saturation intrinsics
11113   case Intrinsic::x86_sse2_psubus_b:
11114   case Intrinsic::x86_sse2_psubus_w:
11115   case Intrinsic::x86_avx2_psubus_b:
11116   case Intrinsic::x86_avx2_psubus_w:
11117     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11118                        Op.getOperand(1), Op.getOperand(2));
11119
11120   // SSE3/AVX horizontal add/sub intrinsics
11121   case Intrinsic::x86_sse3_hadd_ps:
11122   case Intrinsic::x86_sse3_hadd_pd:
11123   case Intrinsic::x86_avx_hadd_ps_256:
11124   case Intrinsic::x86_avx_hadd_pd_256:
11125   case Intrinsic::x86_sse3_hsub_ps:
11126   case Intrinsic::x86_sse3_hsub_pd:
11127   case Intrinsic::x86_avx_hsub_ps_256:
11128   case Intrinsic::x86_avx_hsub_pd_256:
11129   case Intrinsic::x86_ssse3_phadd_w_128:
11130   case Intrinsic::x86_ssse3_phadd_d_128:
11131   case Intrinsic::x86_avx2_phadd_w:
11132   case Intrinsic::x86_avx2_phadd_d:
11133   case Intrinsic::x86_ssse3_phsub_w_128:
11134   case Intrinsic::x86_ssse3_phsub_d_128:
11135   case Intrinsic::x86_avx2_phsub_w:
11136   case Intrinsic::x86_avx2_phsub_d: {
11137     unsigned Opcode;
11138     switch (IntNo) {
11139     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11140     case Intrinsic::x86_sse3_hadd_ps:
11141     case Intrinsic::x86_sse3_hadd_pd:
11142     case Intrinsic::x86_avx_hadd_ps_256:
11143     case Intrinsic::x86_avx_hadd_pd_256:
11144       Opcode = X86ISD::FHADD;
11145       break;
11146     case Intrinsic::x86_sse3_hsub_ps:
11147     case Intrinsic::x86_sse3_hsub_pd:
11148     case Intrinsic::x86_avx_hsub_ps_256:
11149     case Intrinsic::x86_avx_hsub_pd_256:
11150       Opcode = X86ISD::FHSUB;
11151       break;
11152     case Intrinsic::x86_ssse3_phadd_w_128:
11153     case Intrinsic::x86_ssse3_phadd_d_128:
11154     case Intrinsic::x86_avx2_phadd_w:
11155     case Intrinsic::x86_avx2_phadd_d:
11156       Opcode = X86ISD::HADD;
11157       break;
11158     case Intrinsic::x86_ssse3_phsub_w_128:
11159     case Intrinsic::x86_ssse3_phsub_d_128:
11160     case Intrinsic::x86_avx2_phsub_w:
11161     case Intrinsic::x86_avx2_phsub_d:
11162       Opcode = X86ISD::HSUB;
11163       break;
11164     }
11165     return DAG.getNode(Opcode, dl, Op.getValueType(),
11166                        Op.getOperand(1), Op.getOperand(2));
11167   }
11168
11169   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11170   case Intrinsic::x86_sse2_pmaxu_b:
11171   case Intrinsic::x86_sse41_pmaxuw:
11172   case Intrinsic::x86_sse41_pmaxud:
11173   case Intrinsic::x86_avx2_pmaxu_b:
11174   case Intrinsic::x86_avx2_pmaxu_w:
11175   case Intrinsic::x86_avx2_pmaxu_d:
11176   case Intrinsic::x86_avx512_pmaxu_d:
11177   case Intrinsic::x86_avx512_pmaxu_q:
11178   case Intrinsic::x86_sse2_pminu_b:
11179   case Intrinsic::x86_sse41_pminuw:
11180   case Intrinsic::x86_sse41_pminud:
11181   case Intrinsic::x86_avx2_pminu_b:
11182   case Intrinsic::x86_avx2_pminu_w:
11183   case Intrinsic::x86_avx2_pminu_d:
11184   case Intrinsic::x86_avx512_pminu_d:
11185   case Intrinsic::x86_avx512_pminu_q:
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_avx512_pmaxs_d:
11193   case Intrinsic::x86_avx512_pmaxs_q:
11194   case Intrinsic::x86_sse41_pminsb:
11195   case Intrinsic::x86_sse2_pmins_w:
11196   case Intrinsic::x86_sse41_pminsd:
11197   case Intrinsic::x86_avx2_pmins_b:
11198   case Intrinsic::x86_avx2_pmins_w:
11199   case Intrinsic::x86_avx2_pmins_d: 
11200   case Intrinsic::x86_avx512_pmins_d:
11201   case Intrinsic::x86_avx512_pmins_q: {
11202     unsigned Opcode;
11203     switch (IntNo) {
11204     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11205     case Intrinsic::x86_sse2_pmaxu_b:
11206     case Intrinsic::x86_sse41_pmaxuw:
11207     case Intrinsic::x86_sse41_pmaxud:
11208     case Intrinsic::x86_avx2_pmaxu_b:
11209     case Intrinsic::x86_avx2_pmaxu_w:
11210     case Intrinsic::x86_avx2_pmaxu_d:
11211     case Intrinsic::x86_avx512_pmaxu_d:
11212     case Intrinsic::x86_avx512_pmaxu_q:
11213       Opcode = X86ISD::UMAX;
11214       break;
11215     case Intrinsic::x86_sse2_pminu_b:
11216     case Intrinsic::x86_sse41_pminuw:
11217     case Intrinsic::x86_sse41_pminud:
11218     case Intrinsic::x86_avx2_pminu_b:
11219     case Intrinsic::x86_avx2_pminu_w:
11220     case Intrinsic::x86_avx2_pminu_d:
11221     case Intrinsic::x86_avx512_pminu_d:
11222     case Intrinsic::x86_avx512_pminu_q:
11223       Opcode = X86ISD::UMIN;
11224       break;
11225     case Intrinsic::x86_sse41_pmaxsb:
11226     case Intrinsic::x86_sse2_pmaxs_w:
11227     case Intrinsic::x86_sse41_pmaxsd:
11228     case Intrinsic::x86_avx2_pmaxs_b:
11229     case Intrinsic::x86_avx2_pmaxs_w:
11230     case Intrinsic::x86_avx2_pmaxs_d:
11231     case Intrinsic::x86_avx512_pmaxs_d:
11232     case Intrinsic::x86_avx512_pmaxs_q:
11233       Opcode = X86ISD::SMAX;
11234       break;
11235     case Intrinsic::x86_sse41_pminsb:
11236     case Intrinsic::x86_sse2_pmins_w:
11237     case Intrinsic::x86_sse41_pminsd:
11238     case Intrinsic::x86_avx2_pmins_b:
11239     case Intrinsic::x86_avx2_pmins_w:
11240     case Intrinsic::x86_avx2_pmins_d:
11241     case Intrinsic::x86_avx512_pmins_d:
11242     case Intrinsic::x86_avx512_pmins_q:
11243       Opcode = X86ISD::SMIN;
11244       break;
11245     }
11246     return DAG.getNode(Opcode, dl, Op.getValueType(),
11247                        Op.getOperand(1), Op.getOperand(2));
11248   }
11249
11250   // SSE/SSE2/AVX floating point max/min intrinsics.
11251   case Intrinsic::x86_sse_max_ps:
11252   case Intrinsic::x86_sse2_max_pd:
11253   case Intrinsic::x86_avx_max_ps_256:
11254   case Intrinsic::x86_avx_max_pd_256:
11255   case Intrinsic::x86_avx512_max_ps_512:
11256   case Intrinsic::x86_avx512_max_pd_512:
11257   case Intrinsic::x86_sse_min_ps:
11258   case Intrinsic::x86_sse2_min_pd:
11259   case Intrinsic::x86_avx_min_ps_256:
11260   case Intrinsic::x86_avx_min_pd_256:
11261   case Intrinsic::x86_avx512_min_ps_512:
11262   case Intrinsic::x86_avx512_min_pd_512:  {
11263     unsigned Opcode;
11264     switch (IntNo) {
11265     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11266     case Intrinsic::x86_sse_max_ps:
11267     case Intrinsic::x86_sse2_max_pd:
11268     case Intrinsic::x86_avx_max_ps_256:
11269     case Intrinsic::x86_avx_max_pd_256:
11270     case Intrinsic::x86_avx512_max_ps_512:
11271     case Intrinsic::x86_avx512_max_pd_512:
11272       Opcode = X86ISD::FMAX;
11273       break;
11274     case Intrinsic::x86_sse_min_ps:
11275     case Intrinsic::x86_sse2_min_pd:
11276     case Intrinsic::x86_avx_min_ps_256:
11277     case Intrinsic::x86_avx_min_pd_256:
11278     case Intrinsic::x86_avx512_min_ps_512:
11279     case Intrinsic::x86_avx512_min_pd_512:
11280       Opcode = X86ISD::FMIN;
11281       break;
11282     }
11283     return DAG.getNode(Opcode, dl, Op.getValueType(),
11284                        Op.getOperand(1), Op.getOperand(2));
11285   }
11286
11287   // AVX2 variable shift intrinsics
11288   case Intrinsic::x86_avx2_psllv_d:
11289   case Intrinsic::x86_avx2_psllv_q:
11290   case Intrinsic::x86_avx2_psllv_d_256:
11291   case Intrinsic::x86_avx2_psllv_q_256:
11292   case Intrinsic::x86_avx2_psrlv_d:
11293   case Intrinsic::x86_avx2_psrlv_q:
11294   case Intrinsic::x86_avx2_psrlv_d_256:
11295   case Intrinsic::x86_avx2_psrlv_q_256:
11296   case Intrinsic::x86_avx2_psrav_d:
11297   case Intrinsic::x86_avx2_psrav_d_256: {
11298     unsigned Opcode;
11299     switch (IntNo) {
11300     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11301     case Intrinsic::x86_avx2_psllv_d:
11302     case Intrinsic::x86_avx2_psllv_q:
11303     case Intrinsic::x86_avx2_psllv_d_256:
11304     case Intrinsic::x86_avx2_psllv_q_256:
11305       Opcode = ISD::SHL;
11306       break;
11307     case Intrinsic::x86_avx2_psrlv_d:
11308     case Intrinsic::x86_avx2_psrlv_q:
11309     case Intrinsic::x86_avx2_psrlv_d_256:
11310     case Intrinsic::x86_avx2_psrlv_q_256:
11311       Opcode = ISD::SRL;
11312       break;
11313     case Intrinsic::x86_avx2_psrav_d:
11314     case Intrinsic::x86_avx2_psrav_d_256:
11315       Opcode = ISD::SRA;
11316       break;
11317     }
11318     return DAG.getNode(Opcode, dl, Op.getValueType(),
11319                        Op.getOperand(1), Op.getOperand(2));
11320   }
11321
11322   case Intrinsic::x86_ssse3_pshuf_b_128:
11323   case Intrinsic::x86_avx2_pshuf_b:
11324     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11325                        Op.getOperand(1), Op.getOperand(2));
11326
11327   case Intrinsic::x86_ssse3_psign_b_128:
11328   case Intrinsic::x86_ssse3_psign_w_128:
11329   case Intrinsic::x86_ssse3_psign_d_128:
11330   case Intrinsic::x86_avx2_psign_b:
11331   case Intrinsic::x86_avx2_psign_w:
11332   case Intrinsic::x86_avx2_psign_d:
11333     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11334                        Op.getOperand(1), Op.getOperand(2));
11335
11336   case Intrinsic::x86_sse41_insertps:
11337     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11338                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11339
11340   case Intrinsic::x86_avx_vperm2f128_ps_256:
11341   case Intrinsic::x86_avx_vperm2f128_pd_256:
11342   case Intrinsic::x86_avx_vperm2f128_si_256:
11343   case Intrinsic::x86_avx2_vperm2i128:
11344     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11345                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11346
11347   case Intrinsic::x86_avx2_permd:
11348   case Intrinsic::x86_avx2_permps:
11349     // Operands intentionally swapped. Mask is last operand to intrinsic,
11350     // but second operand for node/instruction.
11351     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11352                        Op.getOperand(2), Op.getOperand(1));
11353
11354   case Intrinsic::x86_sse_sqrt_ps:
11355   case Intrinsic::x86_sse2_sqrt_pd:
11356   case Intrinsic::x86_avx_sqrt_ps_256:
11357   case Intrinsic::x86_avx_sqrt_pd_256:
11358     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11359
11360   // ptest and testp intrinsics. The intrinsic these come from are designed to
11361   // return an integer value, not just an instruction so lower it to the ptest
11362   // or testp pattern and a setcc for the result.
11363   case Intrinsic::x86_sse41_ptestz:
11364   case Intrinsic::x86_sse41_ptestc:
11365   case Intrinsic::x86_sse41_ptestnzc:
11366   case Intrinsic::x86_avx_ptestz_256:
11367   case Intrinsic::x86_avx_ptestc_256:
11368   case Intrinsic::x86_avx_ptestnzc_256:
11369   case Intrinsic::x86_avx_vtestz_ps:
11370   case Intrinsic::x86_avx_vtestc_ps:
11371   case Intrinsic::x86_avx_vtestnzc_ps:
11372   case Intrinsic::x86_avx_vtestz_pd:
11373   case Intrinsic::x86_avx_vtestc_pd:
11374   case Intrinsic::x86_avx_vtestnzc_pd:
11375   case Intrinsic::x86_avx_vtestz_ps_256:
11376   case Intrinsic::x86_avx_vtestc_ps_256:
11377   case Intrinsic::x86_avx_vtestnzc_ps_256:
11378   case Intrinsic::x86_avx_vtestz_pd_256:
11379   case Intrinsic::x86_avx_vtestc_pd_256:
11380   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11381     bool IsTestPacked = false;
11382     unsigned X86CC;
11383     switch (IntNo) {
11384     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11385     case Intrinsic::x86_avx_vtestz_ps:
11386     case Intrinsic::x86_avx_vtestz_pd:
11387     case Intrinsic::x86_avx_vtestz_ps_256:
11388     case Intrinsic::x86_avx_vtestz_pd_256:
11389       IsTestPacked = true; // Fallthrough
11390     case Intrinsic::x86_sse41_ptestz:
11391     case Intrinsic::x86_avx_ptestz_256:
11392       // ZF = 1
11393       X86CC = X86::COND_E;
11394       break;
11395     case Intrinsic::x86_avx_vtestc_ps:
11396     case Intrinsic::x86_avx_vtestc_pd:
11397     case Intrinsic::x86_avx_vtestc_ps_256:
11398     case Intrinsic::x86_avx_vtestc_pd_256:
11399       IsTestPacked = true; // Fallthrough
11400     case Intrinsic::x86_sse41_ptestc:
11401     case Intrinsic::x86_avx_ptestc_256:
11402       // CF = 1
11403       X86CC = X86::COND_B;
11404       break;
11405     case Intrinsic::x86_avx_vtestnzc_ps:
11406     case Intrinsic::x86_avx_vtestnzc_pd:
11407     case Intrinsic::x86_avx_vtestnzc_ps_256:
11408     case Intrinsic::x86_avx_vtestnzc_pd_256:
11409       IsTestPacked = true; // Fallthrough
11410     case Intrinsic::x86_sse41_ptestnzc:
11411     case Intrinsic::x86_avx_ptestnzc_256:
11412       // ZF and CF = 0
11413       X86CC = X86::COND_A;
11414       break;
11415     }
11416
11417     SDValue LHS = Op.getOperand(1);
11418     SDValue RHS = Op.getOperand(2);
11419     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11420     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11421     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11422     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11423     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11424   }
11425   case Intrinsic::x86_avx512_kortestz:
11426   case Intrinsic::x86_avx512_kortestc: {
11427     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11428     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11429     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11430     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11431     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11432     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11433     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11434   }
11435
11436   // SSE/AVX shift intrinsics
11437   case Intrinsic::x86_sse2_psll_w:
11438   case Intrinsic::x86_sse2_psll_d:
11439   case Intrinsic::x86_sse2_psll_q:
11440   case Intrinsic::x86_avx2_psll_w:
11441   case Intrinsic::x86_avx2_psll_d:
11442   case Intrinsic::x86_avx2_psll_q:
11443   case Intrinsic::x86_sse2_psrl_w:
11444   case Intrinsic::x86_sse2_psrl_d:
11445   case Intrinsic::x86_sse2_psrl_q:
11446   case Intrinsic::x86_avx2_psrl_w:
11447   case Intrinsic::x86_avx2_psrl_d:
11448   case Intrinsic::x86_avx2_psrl_q:
11449   case Intrinsic::x86_sse2_psra_w:
11450   case Intrinsic::x86_sse2_psra_d:
11451   case Intrinsic::x86_avx2_psra_w:
11452   case Intrinsic::x86_avx2_psra_d: {
11453     unsigned Opcode;
11454     switch (IntNo) {
11455     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11456     case Intrinsic::x86_sse2_psll_w:
11457     case Intrinsic::x86_sse2_psll_d:
11458     case Intrinsic::x86_sse2_psll_q:
11459     case Intrinsic::x86_avx2_psll_w:
11460     case Intrinsic::x86_avx2_psll_d:
11461     case Intrinsic::x86_avx2_psll_q:
11462       Opcode = X86ISD::VSHL;
11463       break;
11464     case Intrinsic::x86_sse2_psrl_w:
11465     case Intrinsic::x86_sse2_psrl_d:
11466     case Intrinsic::x86_sse2_psrl_q:
11467     case Intrinsic::x86_avx2_psrl_w:
11468     case Intrinsic::x86_avx2_psrl_d:
11469     case Intrinsic::x86_avx2_psrl_q:
11470       Opcode = X86ISD::VSRL;
11471       break;
11472     case Intrinsic::x86_sse2_psra_w:
11473     case Intrinsic::x86_sse2_psra_d:
11474     case Intrinsic::x86_avx2_psra_w:
11475     case Intrinsic::x86_avx2_psra_d:
11476       Opcode = X86ISD::VSRA;
11477       break;
11478     }
11479     return DAG.getNode(Opcode, dl, Op.getValueType(),
11480                        Op.getOperand(1), Op.getOperand(2));
11481   }
11482
11483   // SSE/AVX immediate shift intrinsics
11484   case Intrinsic::x86_sse2_pslli_w:
11485   case Intrinsic::x86_sse2_pslli_d:
11486   case Intrinsic::x86_sse2_pslli_q:
11487   case Intrinsic::x86_avx2_pslli_w:
11488   case Intrinsic::x86_avx2_pslli_d:
11489   case Intrinsic::x86_avx2_pslli_q:
11490   case Intrinsic::x86_sse2_psrli_w:
11491   case Intrinsic::x86_sse2_psrli_d:
11492   case Intrinsic::x86_sse2_psrli_q:
11493   case Intrinsic::x86_avx2_psrli_w:
11494   case Intrinsic::x86_avx2_psrli_d:
11495   case Intrinsic::x86_avx2_psrli_q:
11496   case Intrinsic::x86_sse2_psrai_w:
11497   case Intrinsic::x86_sse2_psrai_d:
11498   case Intrinsic::x86_avx2_psrai_w:
11499   case Intrinsic::x86_avx2_psrai_d: {
11500     unsigned Opcode;
11501     switch (IntNo) {
11502     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11503     case Intrinsic::x86_sse2_pslli_w:
11504     case Intrinsic::x86_sse2_pslli_d:
11505     case Intrinsic::x86_sse2_pslli_q:
11506     case Intrinsic::x86_avx2_pslli_w:
11507     case Intrinsic::x86_avx2_pslli_d:
11508     case Intrinsic::x86_avx2_pslli_q:
11509       Opcode = X86ISD::VSHLI;
11510       break;
11511     case Intrinsic::x86_sse2_psrli_w:
11512     case Intrinsic::x86_sse2_psrli_d:
11513     case Intrinsic::x86_sse2_psrli_q:
11514     case Intrinsic::x86_avx2_psrli_w:
11515     case Intrinsic::x86_avx2_psrli_d:
11516     case Intrinsic::x86_avx2_psrli_q:
11517       Opcode = X86ISD::VSRLI;
11518       break;
11519     case Intrinsic::x86_sse2_psrai_w:
11520     case Intrinsic::x86_sse2_psrai_d:
11521     case Intrinsic::x86_avx2_psrai_w:
11522     case Intrinsic::x86_avx2_psrai_d:
11523       Opcode = X86ISD::VSRAI;
11524       break;
11525     }
11526     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
11527                                Op.getOperand(1), Op.getOperand(2), DAG);
11528   }
11529
11530   case Intrinsic::x86_sse42_pcmpistria128:
11531   case Intrinsic::x86_sse42_pcmpestria128:
11532   case Intrinsic::x86_sse42_pcmpistric128:
11533   case Intrinsic::x86_sse42_pcmpestric128:
11534   case Intrinsic::x86_sse42_pcmpistrio128:
11535   case Intrinsic::x86_sse42_pcmpestrio128:
11536   case Intrinsic::x86_sse42_pcmpistris128:
11537   case Intrinsic::x86_sse42_pcmpestris128:
11538   case Intrinsic::x86_sse42_pcmpistriz128:
11539   case Intrinsic::x86_sse42_pcmpestriz128: {
11540     unsigned Opcode;
11541     unsigned X86CC;
11542     switch (IntNo) {
11543     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11544     case Intrinsic::x86_sse42_pcmpistria128:
11545       Opcode = X86ISD::PCMPISTRI;
11546       X86CC = X86::COND_A;
11547       break;
11548     case Intrinsic::x86_sse42_pcmpestria128:
11549       Opcode = X86ISD::PCMPESTRI;
11550       X86CC = X86::COND_A;
11551       break;
11552     case Intrinsic::x86_sse42_pcmpistric128:
11553       Opcode = X86ISD::PCMPISTRI;
11554       X86CC = X86::COND_B;
11555       break;
11556     case Intrinsic::x86_sse42_pcmpestric128:
11557       Opcode = X86ISD::PCMPESTRI;
11558       X86CC = X86::COND_B;
11559       break;
11560     case Intrinsic::x86_sse42_pcmpistrio128:
11561       Opcode = X86ISD::PCMPISTRI;
11562       X86CC = X86::COND_O;
11563       break;
11564     case Intrinsic::x86_sse42_pcmpestrio128:
11565       Opcode = X86ISD::PCMPESTRI;
11566       X86CC = X86::COND_O;
11567       break;
11568     case Intrinsic::x86_sse42_pcmpistris128:
11569       Opcode = X86ISD::PCMPISTRI;
11570       X86CC = X86::COND_S;
11571       break;
11572     case Intrinsic::x86_sse42_pcmpestris128:
11573       Opcode = X86ISD::PCMPESTRI;
11574       X86CC = X86::COND_S;
11575       break;
11576     case Intrinsic::x86_sse42_pcmpistriz128:
11577       Opcode = X86ISD::PCMPISTRI;
11578       X86CC = X86::COND_E;
11579       break;
11580     case Intrinsic::x86_sse42_pcmpestriz128:
11581       Opcode = X86ISD::PCMPESTRI;
11582       X86CC = X86::COND_E;
11583       break;
11584     }
11585     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11586     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11587     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11588     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11589                                 DAG.getConstant(X86CC, MVT::i8),
11590                                 SDValue(PCMP.getNode(), 1));
11591     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11592   }
11593
11594   case Intrinsic::x86_sse42_pcmpistri128:
11595   case Intrinsic::x86_sse42_pcmpestri128: {
11596     unsigned Opcode;
11597     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11598       Opcode = X86ISD::PCMPISTRI;
11599     else
11600       Opcode = X86ISD::PCMPESTRI;
11601
11602     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11603     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11604     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11605   }
11606   case Intrinsic::x86_fma_vfmadd_ps:
11607   case Intrinsic::x86_fma_vfmadd_pd:
11608   case Intrinsic::x86_fma_vfmsub_ps:
11609   case Intrinsic::x86_fma_vfmsub_pd:
11610   case Intrinsic::x86_fma_vfnmadd_ps:
11611   case Intrinsic::x86_fma_vfnmadd_pd:
11612   case Intrinsic::x86_fma_vfnmsub_ps:
11613   case Intrinsic::x86_fma_vfnmsub_pd:
11614   case Intrinsic::x86_fma_vfmaddsub_ps:
11615   case Intrinsic::x86_fma_vfmaddsub_pd:
11616   case Intrinsic::x86_fma_vfmsubadd_ps:
11617   case Intrinsic::x86_fma_vfmsubadd_pd:
11618   case Intrinsic::x86_fma_vfmadd_ps_256:
11619   case Intrinsic::x86_fma_vfmadd_pd_256:
11620   case Intrinsic::x86_fma_vfmsub_ps_256:
11621   case Intrinsic::x86_fma_vfmsub_pd_256:
11622   case Intrinsic::x86_fma_vfnmadd_ps_256:
11623   case Intrinsic::x86_fma_vfnmadd_pd_256:
11624   case Intrinsic::x86_fma_vfnmsub_ps_256:
11625   case Intrinsic::x86_fma_vfnmsub_pd_256:
11626   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11627   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11628   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11629   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
11630     unsigned Opc;
11631     switch (IntNo) {
11632     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11633     case Intrinsic::x86_fma_vfmadd_ps:
11634     case Intrinsic::x86_fma_vfmadd_pd:
11635     case Intrinsic::x86_fma_vfmadd_ps_256:
11636     case Intrinsic::x86_fma_vfmadd_pd_256:
11637       Opc = X86ISD::FMADD;
11638       break;
11639     case Intrinsic::x86_fma_vfmsub_ps:
11640     case Intrinsic::x86_fma_vfmsub_pd:
11641     case Intrinsic::x86_fma_vfmsub_ps_256:
11642     case Intrinsic::x86_fma_vfmsub_pd_256:
11643       Opc = X86ISD::FMSUB;
11644       break;
11645     case Intrinsic::x86_fma_vfnmadd_ps:
11646     case Intrinsic::x86_fma_vfnmadd_pd:
11647     case Intrinsic::x86_fma_vfnmadd_ps_256:
11648     case Intrinsic::x86_fma_vfnmadd_pd_256:
11649       Opc = X86ISD::FNMADD;
11650       break;
11651     case Intrinsic::x86_fma_vfnmsub_ps:
11652     case Intrinsic::x86_fma_vfnmsub_pd:
11653     case Intrinsic::x86_fma_vfnmsub_ps_256:
11654     case Intrinsic::x86_fma_vfnmsub_pd_256:
11655       Opc = X86ISD::FNMSUB;
11656       break;
11657     case Intrinsic::x86_fma_vfmaddsub_ps:
11658     case Intrinsic::x86_fma_vfmaddsub_pd:
11659     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11660     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11661       Opc = X86ISD::FMADDSUB;
11662       break;
11663     case Intrinsic::x86_fma_vfmsubadd_ps:
11664     case Intrinsic::x86_fma_vfmsubadd_pd:
11665     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11666     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11667       Opc = X86ISD::FMSUBADD;
11668       break;
11669     }
11670
11671     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11672                        Op.getOperand(2), Op.getOperand(3));
11673   }
11674   }
11675 }
11676
11677 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11678                              SDValue Base, SDValue Index,
11679                              SDValue ScaleOp, SDValue Chain,
11680                              const X86Subtarget * Subtarget) {
11681   SDLoc dl(Op);
11682   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11683   assert(C && "Invalid scale type");
11684   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11685   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11686   EVT MaskVT = MVT::getVectorVT(MVT::i1, 
11687                                 Index.getValueType().getVectorNumElements());
11688   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11689   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11690   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11691   SDValue Segment = DAG.getRegister(0, MVT::i32);
11692   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11693   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11694   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11695   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11696 }
11697
11698 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11699                               SDValue Src, SDValue Mask, SDValue Base,
11700                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11701                               const X86Subtarget * Subtarget) {
11702   SDLoc dl(Op);
11703   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11704   assert(C && "Invalid scale type");
11705   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11706   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11707                                 Index.getValueType().getVectorNumElements());
11708   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11709   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11710   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11711   SDValue Segment = DAG.getRegister(0, MVT::i32);
11712   if (Src.getOpcode() == ISD::UNDEF)
11713     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11714   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11715   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11716   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11717   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11718 }
11719
11720 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11721                               SDValue Src, SDValue Base, SDValue Index,
11722                               SDValue ScaleOp, SDValue Chain) {
11723   SDLoc dl(Op);
11724   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11725   assert(C && "Invalid scale type");
11726   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11727   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11728   SDValue Segment = DAG.getRegister(0, MVT::i32);
11729   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11730                                 Index.getValueType().getVectorNumElements());
11731   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11732   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11733   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11734   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11735   return SDValue(Res, 1);
11736 }
11737
11738 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11739                                SDValue Src, SDValue Mask, SDValue Base,
11740                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11741   SDLoc dl(Op);
11742   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11743   assert(C && "Invalid scale type");
11744   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11745   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11746   SDValue Segment = DAG.getRegister(0, MVT::i32);
11747   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11748                                 Index.getValueType().getVectorNumElements());
11749   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11750   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11751   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11752   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11753   return SDValue(Res, 1);
11754 }
11755
11756 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11757                                       SelectionDAG &DAG) {
11758   SDLoc dl(Op);
11759   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11760   switch (IntNo) {
11761   default: return SDValue();    // Don't custom lower most intrinsics.
11762
11763   // RDRAND/RDSEED intrinsics.
11764   case Intrinsic::x86_rdrand_16:
11765   case Intrinsic::x86_rdrand_32:
11766   case Intrinsic::x86_rdrand_64:
11767   case Intrinsic::x86_rdseed_16:
11768   case Intrinsic::x86_rdseed_32:
11769   case Intrinsic::x86_rdseed_64: {
11770     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11771                        IntNo == Intrinsic::x86_rdseed_32 ||
11772                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11773                                                             X86ISD::RDRAND;
11774     // Emit the node with the right value type.
11775     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11776     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11777
11778     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11779     // Otherwise return the value from Rand, which is always 0, casted to i32.
11780     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11781                       DAG.getConstant(1, Op->getValueType(1)),
11782                       DAG.getConstant(X86::COND_B, MVT::i32),
11783                       SDValue(Result.getNode(), 1) };
11784     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11785                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11786                                   Ops, array_lengthof(Ops));
11787
11788     // Return { result, isValid, chain }.
11789     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
11790                        SDValue(Result.getNode(), 2));
11791   }
11792   //int_gather(index, base, scale);
11793   case Intrinsic::x86_avx512_gather_qpd_512:
11794   case Intrinsic::x86_avx512_gather_qps_512:
11795   case Intrinsic::x86_avx512_gather_dpd_512:
11796   case Intrinsic::x86_avx512_gather_qpi_512:
11797   case Intrinsic::x86_avx512_gather_qpq_512:
11798   case Intrinsic::x86_avx512_gather_dpq_512:
11799   case Intrinsic::x86_avx512_gather_dps_512:
11800   case Intrinsic::x86_avx512_gather_dpi_512: {
11801     unsigned Opc;
11802     switch (IntNo) {
11803       default: llvm_unreachable("Unexpected intrinsic!");
11804       case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11805       case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11806       case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11807       case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11808       case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11809       case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11810       case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11811       case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11812     }
11813     SDValue Chain = Op.getOperand(0);
11814     SDValue Index = Op.getOperand(2);
11815     SDValue Base  = Op.getOperand(3);
11816     SDValue Scale = Op.getOperand(4);
11817     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11818   }
11819   //int_gather_mask(v1, mask, index, base, scale);
11820   case Intrinsic::x86_avx512_gather_qps_mask_512:
11821   case Intrinsic::x86_avx512_gather_qpd_mask_512:
11822   case Intrinsic::x86_avx512_gather_dpd_mask_512:
11823   case Intrinsic::x86_avx512_gather_dps_mask_512:
11824   case Intrinsic::x86_avx512_gather_qpi_mask_512:
11825   case Intrinsic::x86_avx512_gather_qpq_mask_512:
11826   case Intrinsic::x86_avx512_gather_dpi_mask_512:
11827   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11828     unsigned Opc;
11829     switch (IntNo) {
11830       default: llvm_unreachable("Unexpected intrinsic!");
11831       case Intrinsic::x86_avx512_gather_qps_mask_512: 
11832         Opc = X86::VGATHERQPSZrm; break;
11833       case Intrinsic::x86_avx512_gather_qpd_mask_512:
11834         Opc = X86::VGATHERQPDZrm; break;
11835       case Intrinsic::x86_avx512_gather_dpd_mask_512:
11836         Opc = X86::VGATHERDPDZrm; break;
11837       case Intrinsic::x86_avx512_gather_dps_mask_512:
11838         Opc = X86::VGATHERDPSZrm; break;
11839       case Intrinsic::x86_avx512_gather_qpi_mask_512:
11840         Opc = X86::VPGATHERQDZrm; break;
11841       case Intrinsic::x86_avx512_gather_qpq_mask_512:
11842         Opc = X86::VPGATHERQQZrm; break;
11843       case Intrinsic::x86_avx512_gather_dpi_mask_512:
11844         Opc = X86::VPGATHERDDZrm; break;
11845       case Intrinsic::x86_avx512_gather_dpq_mask_512:
11846         Opc = X86::VPGATHERDQZrm; break;
11847     }
11848     SDValue Chain = Op.getOperand(0);
11849     SDValue Src   = Op.getOperand(2);
11850     SDValue Mask  = Op.getOperand(3);
11851     SDValue Index = Op.getOperand(4);
11852     SDValue Base  = Op.getOperand(5);
11853     SDValue Scale = Op.getOperand(6);
11854     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11855                           Subtarget);
11856   }
11857   //int_scatter(base, index, v1, scale);
11858   case Intrinsic::x86_avx512_scatter_qpd_512:
11859   case Intrinsic::x86_avx512_scatter_qps_512:
11860   case Intrinsic::x86_avx512_scatter_dpd_512:
11861   case Intrinsic::x86_avx512_scatter_qpi_512:
11862   case Intrinsic::x86_avx512_scatter_qpq_512:
11863   case Intrinsic::x86_avx512_scatter_dpq_512:
11864   case Intrinsic::x86_avx512_scatter_dps_512:
11865   case Intrinsic::x86_avx512_scatter_dpi_512: {
11866     unsigned Opc;
11867     switch (IntNo) {
11868       default: llvm_unreachable("Unexpected intrinsic!");
11869       case Intrinsic::x86_avx512_scatter_qpd_512: 
11870         Opc = X86::VSCATTERQPDZmr; break;
11871       case Intrinsic::x86_avx512_scatter_qps_512:
11872         Opc = X86::VSCATTERQPSZmr; break;
11873       case Intrinsic::x86_avx512_scatter_dpd_512:
11874         Opc = X86::VSCATTERDPDZmr; break;
11875       case Intrinsic::x86_avx512_scatter_dps_512:
11876         Opc = X86::VSCATTERDPSZmr; break;
11877       case Intrinsic::x86_avx512_scatter_qpi_512:
11878         Opc = X86::VPSCATTERQDZmr; break;
11879       case Intrinsic::x86_avx512_scatter_qpq_512:
11880         Opc = X86::VPSCATTERQQZmr; break;
11881       case Intrinsic::x86_avx512_scatter_dpq_512:
11882         Opc = X86::VPSCATTERDQZmr; break;
11883       case Intrinsic::x86_avx512_scatter_dpi_512:
11884         Opc = X86::VPSCATTERDDZmr; break;
11885     }
11886     SDValue Chain = Op.getOperand(0);
11887     SDValue Base  = Op.getOperand(2);
11888     SDValue Index = Op.getOperand(3);
11889     SDValue Src   = Op.getOperand(4);
11890     SDValue Scale = Op.getOperand(5);
11891     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11892   }
11893   //int_scatter_mask(base, mask, index, v1, scale);
11894   case Intrinsic::x86_avx512_scatter_qps_mask_512:
11895   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11896   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11897   case Intrinsic::x86_avx512_scatter_dps_mask_512:
11898   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11899   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11900   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11901   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11902     unsigned Opc;
11903     switch (IntNo) {
11904       default: llvm_unreachable("Unexpected intrinsic!");
11905       case Intrinsic::x86_avx512_scatter_qpd_mask_512: 
11906         Opc = X86::VSCATTERQPDZmr; break;
11907       case Intrinsic::x86_avx512_scatter_qps_mask_512:
11908         Opc = X86::VSCATTERQPSZmr; break;
11909       case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11910         Opc = X86::VSCATTERDPDZmr; break;
11911       case Intrinsic::x86_avx512_scatter_dps_mask_512:
11912         Opc = X86::VSCATTERDPSZmr; break;
11913       case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11914         Opc = X86::VPSCATTERQDZmr; break;
11915       case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11916         Opc = X86::VPSCATTERQQZmr; break;
11917       case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11918         Opc = X86::VPSCATTERDQZmr; break;
11919       case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11920         Opc = X86::VPSCATTERDDZmr; break;
11921     }
11922     SDValue Chain = Op.getOperand(0);
11923     SDValue Base  = Op.getOperand(2);
11924     SDValue Mask  = Op.getOperand(3);
11925     SDValue Index = Op.getOperand(4);
11926     SDValue Src   = Op.getOperand(5);
11927     SDValue Scale = Op.getOperand(6);
11928     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11929   }
11930   // XTEST intrinsics.
11931   case Intrinsic::x86_xtest: {
11932     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11933     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11934     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11935                                 DAG.getConstant(X86::COND_NE, MVT::i8),
11936                                 InTrans);
11937     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11938     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11939                        Ret, SDValue(InTrans.getNode(), 1));
11940   }
11941   }
11942 }
11943
11944 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11945                                            SelectionDAG &DAG) const {
11946   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11947   MFI->setReturnAddressIsTaken(true);
11948
11949   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11950   SDLoc dl(Op);
11951   EVT PtrVT = getPointerTy();
11952
11953   if (Depth > 0) {
11954     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11955     const X86RegisterInfo *RegInfo =
11956       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11957     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
11958     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11959                        DAG.getNode(ISD::ADD, dl, PtrVT,
11960                                    FrameAddr, Offset),
11961                        MachinePointerInfo(), false, false, false, 0);
11962   }
11963
11964   // Just load the return address.
11965   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
11966   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11967                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
11968 }
11969
11970 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
11971   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11972   MFI->setFrameAddressIsTaken(true);
11973
11974   EVT VT = Op.getValueType();
11975   SDLoc dl(Op);  // FIXME probably not meaningful
11976   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11977   const X86RegisterInfo *RegInfo =
11978     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11979   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11980   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
11981           (FrameReg == X86::EBP && VT == MVT::i32)) &&
11982          "Invalid Frame Register!");
11983   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
11984   while (Depth--)
11985     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11986                             MachinePointerInfo(),
11987                             false, false, false, 0);
11988   return FrameAddr;
11989 }
11990
11991 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
11992                                                      SelectionDAG &DAG) const {
11993   const X86RegisterInfo *RegInfo =
11994     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11995   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
11996 }
11997
11998 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
11999   SDValue Chain     = Op.getOperand(0);
12000   SDValue Offset    = Op.getOperand(1);
12001   SDValue Handler   = Op.getOperand(2);
12002   SDLoc dl      (Op);
12003
12004   EVT PtrVT = getPointerTy();
12005   const X86RegisterInfo *RegInfo =
12006     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12007   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12008   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12009           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12010          "Invalid Frame Register!");
12011   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12012   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12013
12014   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12015                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12016   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12017   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12018                        false, false, 0);
12019   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12020
12021   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12022                      DAG.getRegister(StoreAddrReg, PtrVT));
12023 }
12024
12025 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12026                                                SelectionDAG &DAG) const {
12027   SDLoc DL(Op);
12028   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12029                      DAG.getVTList(MVT::i32, MVT::Other),
12030                      Op.getOperand(0), Op.getOperand(1));
12031 }
12032
12033 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12034                                                 SelectionDAG &DAG) const {
12035   SDLoc DL(Op);
12036   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12037                      Op.getOperand(0), Op.getOperand(1));
12038 }
12039
12040 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12041   return Op.getOperand(0);
12042 }
12043
12044 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12045                                                 SelectionDAG &DAG) const {
12046   SDValue Root = Op.getOperand(0);
12047   SDValue Trmp = Op.getOperand(1); // trampoline
12048   SDValue FPtr = Op.getOperand(2); // nested function
12049   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12050   SDLoc dl (Op);
12051
12052   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12053   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12054
12055   if (Subtarget->is64Bit()) {
12056     SDValue OutChains[6];
12057
12058     // Large code-model.
12059     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12060     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12061
12062     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12063     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12064
12065     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12066
12067     // Load the pointer to the nested function into R11.
12068     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12069     SDValue Addr = Trmp;
12070     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12071                                 Addr, MachinePointerInfo(TrmpAddr),
12072                                 false, false, 0);
12073
12074     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12075                        DAG.getConstant(2, MVT::i64));
12076     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12077                                 MachinePointerInfo(TrmpAddr, 2),
12078                                 false, false, 2);
12079
12080     // Load the 'nest' parameter value into R10.
12081     // R10 is specified in X86CallingConv.td
12082     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12083     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12084                        DAG.getConstant(10, MVT::i64));
12085     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12086                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12087                                 false, false, 0);
12088
12089     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12090                        DAG.getConstant(12, MVT::i64));
12091     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12092                                 MachinePointerInfo(TrmpAddr, 12),
12093                                 false, false, 2);
12094
12095     // Jump to the nested function.
12096     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12097     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12098                        DAG.getConstant(20, MVT::i64));
12099     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12100                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12101                                 false, false, 0);
12102
12103     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12104     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12105                        DAG.getConstant(22, MVT::i64));
12106     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12107                                 MachinePointerInfo(TrmpAddr, 22),
12108                                 false, false, 0);
12109
12110     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12111   } else {
12112     const Function *Func =
12113       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12114     CallingConv::ID CC = Func->getCallingConv();
12115     unsigned NestReg;
12116
12117     switch (CC) {
12118     default:
12119       llvm_unreachable("Unsupported calling convention");
12120     case CallingConv::C:
12121     case CallingConv::X86_StdCall: {
12122       // Pass 'nest' parameter in ECX.
12123       // Must be kept in sync with X86CallingConv.td
12124       NestReg = X86::ECX;
12125
12126       // Check that ECX wasn't needed by an 'inreg' parameter.
12127       FunctionType *FTy = Func->getFunctionType();
12128       const AttributeSet &Attrs = Func->getAttributes();
12129
12130       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12131         unsigned InRegCount = 0;
12132         unsigned Idx = 1;
12133
12134         for (FunctionType::param_iterator I = FTy->param_begin(),
12135              E = FTy->param_end(); I != E; ++I, ++Idx)
12136           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12137             // FIXME: should only count parameters that are lowered to integers.
12138             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12139
12140         if (InRegCount > 2) {
12141           report_fatal_error("Nest register in use - reduce number of inreg"
12142                              " parameters!");
12143         }
12144       }
12145       break;
12146     }
12147     case CallingConv::X86_FastCall:
12148     case CallingConv::X86_ThisCall:
12149     case CallingConv::Fast:
12150       // Pass 'nest' parameter in EAX.
12151       // Must be kept in sync with X86CallingConv.td
12152       NestReg = X86::EAX;
12153       break;
12154     }
12155
12156     SDValue OutChains[4];
12157     SDValue Addr, Disp;
12158
12159     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12160                        DAG.getConstant(10, MVT::i32));
12161     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12162
12163     // This is storing the opcode for MOV32ri.
12164     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12165     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12166     OutChains[0] = DAG.getStore(Root, dl,
12167                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12168                                 Trmp, MachinePointerInfo(TrmpAddr),
12169                                 false, false, 0);
12170
12171     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12172                        DAG.getConstant(1, MVT::i32));
12173     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12174                                 MachinePointerInfo(TrmpAddr, 1),
12175                                 false, false, 1);
12176
12177     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12178     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12179                        DAG.getConstant(5, MVT::i32));
12180     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12181                                 MachinePointerInfo(TrmpAddr, 5),
12182                                 false, false, 1);
12183
12184     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12185                        DAG.getConstant(6, MVT::i32));
12186     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12187                                 MachinePointerInfo(TrmpAddr, 6),
12188                                 false, false, 1);
12189
12190     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12191   }
12192 }
12193
12194 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12195                                             SelectionDAG &DAG) const {
12196   /*
12197    The rounding mode is in bits 11:10 of FPSR, and has the following
12198    settings:
12199      00 Round to nearest
12200      01 Round to -inf
12201      10 Round to +inf
12202      11 Round to 0
12203
12204   FLT_ROUNDS, on the other hand, expects the following:
12205     -1 Undefined
12206      0 Round to 0
12207      1 Round to nearest
12208      2 Round to +inf
12209      3 Round to -inf
12210
12211   To perform the conversion, we do:
12212     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12213   */
12214
12215   MachineFunction &MF = DAG.getMachineFunction();
12216   const TargetMachine &TM = MF.getTarget();
12217   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12218   unsigned StackAlignment = TFI.getStackAlignment();
12219   EVT VT = Op.getValueType();
12220   SDLoc DL(Op);
12221
12222   // Save FP Control Word to stack slot
12223   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12224   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12225
12226   MachineMemOperand *MMO =
12227    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12228                            MachineMemOperand::MOStore, 2, 2);
12229
12230   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12231   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12232                                           DAG.getVTList(MVT::Other),
12233                                           Ops, array_lengthof(Ops), MVT::i16,
12234                                           MMO);
12235
12236   // Load FP Control Word from stack slot
12237   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12238                             MachinePointerInfo(), false, false, false, 0);
12239
12240   // Transform as necessary
12241   SDValue CWD1 =
12242     DAG.getNode(ISD::SRL, DL, MVT::i16,
12243                 DAG.getNode(ISD::AND, DL, MVT::i16,
12244                             CWD, DAG.getConstant(0x800, MVT::i16)),
12245                 DAG.getConstant(11, MVT::i8));
12246   SDValue CWD2 =
12247     DAG.getNode(ISD::SRL, DL, MVT::i16,
12248                 DAG.getNode(ISD::AND, DL, MVT::i16,
12249                             CWD, DAG.getConstant(0x400, MVT::i16)),
12250                 DAG.getConstant(9, MVT::i8));
12251
12252   SDValue RetVal =
12253     DAG.getNode(ISD::AND, DL, MVT::i16,
12254                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12255                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12256                             DAG.getConstant(1, MVT::i16)),
12257                 DAG.getConstant(3, MVT::i16));
12258
12259   return DAG.getNode((VT.getSizeInBits() < 16 ?
12260                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12261 }
12262
12263 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12264   EVT VT = Op.getValueType();
12265   EVT OpVT = VT;
12266   unsigned NumBits = VT.getSizeInBits();
12267   SDLoc dl(Op);
12268
12269   Op = Op.getOperand(0);
12270   if (VT == MVT::i8) {
12271     // Zero extend to i32 since there is not an i8 bsr.
12272     OpVT = MVT::i32;
12273     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12274   }
12275
12276   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12277   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12278   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12279
12280   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12281   SDValue Ops[] = {
12282     Op,
12283     DAG.getConstant(NumBits+NumBits-1, OpVT),
12284     DAG.getConstant(X86::COND_E, MVT::i8),
12285     Op.getValue(1)
12286   };
12287   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12288
12289   // Finally xor with NumBits-1.
12290   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12291
12292   if (VT == MVT::i8)
12293     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12294   return Op;
12295 }
12296
12297 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12298   EVT VT = Op.getValueType();
12299   EVT OpVT = VT;
12300   unsigned NumBits = VT.getSizeInBits();
12301   SDLoc dl(Op);
12302
12303   Op = Op.getOperand(0);
12304   if (VT == MVT::i8) {
12305     // Zero extend to i32 since there is not an i8 bsr.
12306     OpVT = MVT::i32;
12307     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12308   }
12309
12310   // Issue a bsr (scan bits in reverse).
12311   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12312   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12313
12314   // And xor with NumBits-1.
12315   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12316
12317   if (VT == MVT::i8)
12318     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12319   return Op;
12320 }
12321
12322 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12323   EVT VT = Op.getValueType();
12324   unsigned NumBits = VT.getSizeInBits();
12325   SDLoc dl(Op);
12326   Op = Op.getOperand(0);
12327
12328   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12329   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12330   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12331
12332   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12333   SDValue Ops[] = {
12334     Op,
12335     DAG.getConstant(NumBits, VT),
12336     DAG.getConstant(X86::COND_E, MVT::i8),
12337     Op.getValue(1)
12338   };
12339   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12340 }
12341
12342 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12343 // ones, and then concatenate the result back.
12344 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12345   EVT VT = Op.getValueType();
12346
12347   assert(VT.is256BitVector() && VT.isInteger() &&
12348          "Unsupported value type for operation");
12349
12350   unsigned NumElems = VT.getVectorNumElements();
12351   SDLoc dl(Op);
12352
12353   // Extract the LHS vectors
12354   SDValue LHS = Op.getOperand(0);
12355   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12356   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12357
12358   // Extract the RHS vectors
12359   SDValue RHS = Op.getOperand(1);
12360   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12361   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12362
12363   MVT EltVT = VT.getVectorElementType().getSimpleVT();
12364   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12365
12366   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12367                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12368                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12369 }
12370
12371 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12372   assert(Op.getValueType().is256BitVector() &&
12373          Op.getValueType().isInteger() &&
12374          "Only handle AVX 256-bit vector integer operation");
12375   return Lower256IntArith(Op, DAG);
12376 }
12377
12378 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12379   assert(Op.getValueType().is256BitVector() &&
12380          Op.getValueType().isInteger() &&
12381          "Only handle AVX 256-bit vector integer operation");
12382   return Lower256IntArith(Op, DAG);
12383 }
12384
12385 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12386                         SelectionDAG &DAG) {
12387   SDLoc dl(Op);
12388   EVT VT = Op.getValueType();
12389
12390   // Decompose 256-bit ops into smaller 128-bit ops.
12391   if (VT.is256BitVector() && !Subtarget->hasInt256())
12392     return Lower256IntArith(Op, DAG);
12393
12394   SDValue A = Op.getOperand(0);
12395   SDValue B = Op.getOperand(1);
12396
12397   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12398   if (VT == MVT::v4i32) {
12399     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12400            "Should not custom lower when pmuldq is available!");
12401
12402     // Extract the odd parts.
12403     static const int UnpackMask[] = { 1, -1, 3, -1 };
12404     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12405     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12406
12407     // Multiply the even parts.
12408     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12409     // Now multiply odd parts.
12410     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12411
12412     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12413     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12414
12415     // Merge the two vectors back together with a shuffle. This expands into 2
12416     // shuffles.
12417     static const int ShufMask[] = { 0, 4, 2, 6 };
12418     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12419   }
12420
12421   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12422          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12423
12424   //  Ahi = psrlqi(a, 32);
12425   //  Bhi = psrlqi(b, 32);
12426   //
12427   //  AloBlo = pmuludq(a, b);
12428   //  AloBhi = pmuludq(a, Bhi);
12429   //  AhiBlo = pmuludq(Ahi, b);
12430
12431   //  AloBhi = psllqi(AloBhi, 32);
12432   //  AhiBlo = psllqi(AhiBlo, 32);
12433   //  return AloBlo + AloBhi + AhiBlo;
12434
12435   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12436   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
12437
12438   // Bit cast to 32-bit vectors for MULUDQ
12439   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12440                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12441   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12442   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12443   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12444   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12445
12446   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12447   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12448   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12449
12450   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12451   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
12452
12453   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12454   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12455 }
12456
12457 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12458   EVT VT = Op.getValueType();
12459   EVT EltTy = VT.getVectorElementType();
12460   unsigned NumElts = VT.getVectorNumElements();
12461   SDValue N0 = Op.getOperand(0);
12462   SDLoc dl(Op);
12463
12464   // Lower sdiv X, pow2-const.
12465   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12466   if (!C)
12467     return SDValue();
12468
12469   APInt SplatValue, SplatUndef;
12470   unsigned SplatBitSize;
12471   bool HasAnyUndefs;
12472   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12473                           HasAnyUndefs) ||
12474       EltTy.getSizeInBits() < SplatBitSize)
12475     return SDValue();
12476
12477   if ((SplatValue != 0) &&
12478       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12479     unsigned Lg2 = SplatValue.countTrailingZeros();
12480     // Splat the sign bit.
12481     SmallVector<SDValue, 16> Sz(NumElts,
12482                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12483                                                 EltTy));
12484     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12485                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12486                                           NumElts));
12487     // Add (N0 < 0) ? abs2 - 1 : 0;
12488     SmallVector<SDValue, 16> Amt(NumElts,
12489                                  DAG.getConstant(EltTy.getSizeInBits() - Lg2,
12490                                                  EltTy));
12491     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12492                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12493                                           NumElts));
12494     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12495     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
12496     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12497                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12498                                           NumElts));
12499
12500     // If we're dividing by a positive value, we're done.  Otherwise, we must
12501     // negate the result.
12502     if (SplatValue.isNonNegative())
12503       return SRA;
12504
12505     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12506     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12507     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12508   }
12509   return SDValue();
12510 }
12511
12512 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12513                                          const X86Subtarget *Subtarget) {
12514   EVT VT = Op.getValueType();
12515   SDLoc dl(Op);
12516   SDValue R = Op.getOperand(0);
12517   SDValue Amt = Op.getOperand(1);
12518
12519   // Optimize shl/srl/sra with constant shift amount.
12520   if (isSplatVector(Amt.getNode())) {
12521     SDValue SclrAmt = Amt->getOperand(0);
12522     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12523       uint64_t ShiftAmt = C->getZExtValue();
12524
12525       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12526           (Subtarget->hasInt256() &&
12527            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12528           (Subtarget->hasAVX512() &&
12529            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12530         if (Op.getOpcode() == ISD::SHL)
12531           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12532                                             DAG);
12533         if (Op.getOpcode() == ISD::SRL)
12534           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12535                                             DAG);
12536         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12537           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12538                                             DAG);
12539       }
12540
12541       if (VT == MVT::v16i8) {
12542         if (Op.getOpcode() == ISD::SHL) {
12543           // Make a large shift.
12544           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12545                                                    MVT::v8i16, R, ShiftAmt,
12546                                                    DAG); 
12547           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12548           // Zero out the rightmost 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, SHL,
12553                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12554         }
12555         if (Op.getOpcode() == ISD::SRL) {
12556           // Make a large shift.
12557           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12558                                                    MVT::v8i16, R, ShiftAmt,
12559                                                    DAG);
12560           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12561           // Zero out the leftmost bits.
12562           SmallVector<SDValue, 16> V(16,
12563                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12564                                                      MVT::i8));
12565           return DAG.getNode(ISD::AND, dl, VT, SRL,
12566                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12567         }
12568         if (Op.getOpcode() == ISD::SRA) {
12569           if (ShiftAmt == 7) {
12570             // R s>> 7  ===  R s< 0
12571             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12572             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12573           }
12574
12575           // R s>> a === ((R u>> a) ^ m) - m
12576           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12577           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12578                                                          MVT::i8));
12579           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12580           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12581           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12582           return Res;
12583         }
12584         llvm_unreachable("Unknown shift opcode.");
12585       }
12586
12587       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12588         if (Op.getOpcode() == ISD::SHL) {
12589           // Make a large shift.
12590           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12591                                                    MVT::v16i16, R, ShiftAmt,
12592                                                    DAG);
12593           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12594           // Zero out the rightmost bits.
12595           SmallVector<SDValue, 32> V(32,
12596                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12597                                                      MVT::i8));
12598           return DAG.getNode(ISD::AND, dl, VT, SHL,
12599                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12600         }
12601         if (Op.getOpcode() == ISD::SRL) {
12602           // Make a large shift.
12603           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12604                                                    MVT::v16i16, R, ShiftAmt,
12605                                                    DAG);
12606           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12607           // Zero out the leftmost bits.
12608           SmallVector<SDValue, 32> V(32,
12609                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12610                                                      MVT::i8));
12611           return DAG.getNode(ISD::AND, dl, VT, SRL,
12612                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12613         }
12614         if (Op.getOpcode() == ISD::SRA) {
12615           if (ShiftAmt == 7) {
12616             // R s>> 7  ===  R s< 0
12617             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12618             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12619           }
12620
12621           // R s>> a === ((R u>> a) ^ m) - m
12622           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12623           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12624                                                          MVT::i8));
12625           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12626           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12627           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12628           return Res;
12629         }
12630         llvm_unreachable("Unknown shift opcode.");
12631       }
12632     }
12633   }
12634
12635   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12636   if (!Subtarget->is64Bit() &&
12637       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12638       Amt.getOpcode() == ISD::BITCAST &&
12639       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12640     Amt = Amt.getOperand(0);
12641     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12642                      VT.getVectorNumElements();
12643     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12644     uint64_t ShiftAmt = 0;
12645     for (unsigned i = 0; i != Ratio; ++i) {
12646       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12647       if (C == 0)
12648         return SDValue();
12649       // 6 == Log2(64)
12650       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12651     }
12652     // Check remaining shift amounts.
12653     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12654       uint64_t ShAmt = 0;
12655       for (unsigned j = 0; j != Ratio; ++j) {
12656         ConstantSDNode *C =
12657           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12658         if (C == 0)
12659           return SDValue();
12660         // 6 == Log2(64)
12661         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12662       }
12663       if (ShAmt != ShiftAmt)
12664         return SDValue();
12665     }
12666     switch (Op.getOpcode()) {
12667     default:
12668       llvm_unreachable("Unknown shift opcode!");
12669     case ISD::SHL:
12670       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12671                                         DAG);
12672     case ISD::SRL:
12673       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12674                                         DAG);
12675     case ISD::SRA:
12676       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12677                                         DAG);
12678     }
12679   }
12680
12681   return SDValue();
12682 }
12683
12684 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12685                                         const X86Subtarget* Subtarget) {
12686   EVT VT = Op.getValueType();
12687   SDLoc dl(Op);
12688   SDValue R = Op.getOperand(0);
12689   SDValue Amt = Op.getOperand(1);
12690
12691   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12692       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12693       (Subtarget->hasInt256() &&
12694        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12695         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12696        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12697     SDValue BaseShAmt;
12698     EVT EltVT = VT.getVectorElementType();
12699
12700     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12701       unsigned NumElts = VT.getVectorNumElements();
12702       unsigned i, j;
12703       for (i = 0; i != NumElts; ++i) {
12704         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12705           continue;
12706         break;
12707       }
12708       for (j = i; j != NumElts; ++j) {
12709         SDValue Arg = Amt.getOperand(j);
12710         if (Arg.getOpcode() == ISD::UNDEF) continue;
12711         if (Arg != Amt.getOperand(i))
12712           break;
12713       }
12714       if (i != NumElts && j == NumElts)
12715         BaseShAmt = Amt.getOperand(i);
12716     } else {
12717       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12718         Amt = Amt.getOperand(0);
12719       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12720                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12721         SDValue InVec = Amt.getOperand(0);
12722         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12723           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12724           unsigned i = 0;
12725           for (; i != NumElts; ++i) {
12726             SDValue Arg = InVec.getOperand(i);
12727             if (Arg.getOpcode() == ISD::UNDEF) continue;
12728             BaseShAmt = Arg;
12729             break;
12730           }
12731         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12732            if (ConstantSDNode *C =
12733                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12734              unsigned SplatIdx =
12735                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12736              if (C->getZExtValue() == SplatIdx)
12737                BaseShAmt = InVec.getOperand(1);
12738            }
12739         }
12740         if (BaseShAmt.getNode() == 0)
12741           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12742                                   DAG.getIntPtrConstant(0));
12743       }
12744     }
12745
12746     if (BaseShAmt.getNode()) {
12747       if (EltVT.bitsGT(MVT::i32))
12748         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12749       else if (EltVT.bitsLT(MVT::i32))
12750         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12751
12752       switch (Op.getOpcode()) {
12753       default:
12754         llvm_unreachable("Unknown shift opcode!");
12755       case ISD::SHL:
12756         switch (VT.getSimpleVT().SimpleTy) {
12757         default: return SDValue();
12758         case MVT::v2i64:
12759         case MVT::v4i32:
12760         case MVT::v8i16:
12761         case MVT::v4i64:
12762         case MVT::v8i32:
12763         case MVT::v16i16:
12764         case MVT::v16i32:
12765         case MVT::v8i64:
12766           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12767         }
12768       case ISD::SRA:
12769         switch (VT.getSimpleVT().SimpleTy) {
12770         default: return SDValue();
12771         case MVT::v4i32:
12772         case MVT::v8i16:
12773         case MVT::v8i32:
12774         case MVT::v16i16:
12775         case MVT::v16i32:
12776         case MVT::v8i64:
12777           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12778         }
12779       case ISD::SRL:
12780         switch (VT.getSimpleVT().SimpleTy) {
12781         default: return SDValue();
12782         case MVT::v2i64:
12783         case MVT::v4i32:
12784         case MVT::v8i16:
12785         case MVT::v4i64:
12786         case MVT::v8i32:
12787         case MVT::v16i16:
12788         case MVT::v16i32:
12789         case MVT::v8i64:
12790           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12791         }
12792       }
12793     }
12794   }
12795
12796   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12797   if (!Subtarget->is64Bit() &&
12798       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12799       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
12800       Amt.getOpcode() == ISD::BITCAST &&
12801       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12802     Amt = Amt.getOperand(0);
12803     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12804                      VT.getVectorNumElements();
12805     std::vector<SDValue> Vals(Ratio);
12806     for (unsigned i = 0; i != Ratio; ++i)
12807       Vals[i] = Amt.getOperand(i);
12808     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12809       for (unsigned j = 0; j != Ratio; ++j)
12810         if (Vals[j] != Amt.getOperand(i + j))
12811           return SDValue();
12812     }
12813     switch (Op.getOpcode()) {
12814     default:
12815       llvm_unreachable("Unknown shift opcode!");
12816     case ISD::SHL:
12817       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12818     case ISD::SRL:
12819       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12820     case ISD::SRA:
12821       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12822     }
12823   }
12824
12825   return SDValue();
12826 }
12827
12828 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12829                           SelectionDAG &DAG) {
12830
12831   EVT VT = Op.getValueType();
12832   SDLoc dl(Op);
12833   SDValue R = Op.getOperand(0);
12834   SDValue Amt = Op.getOperand(1);
12835   SDValue V;
12836
12837   if (!Subtarget->hasSSE2())
12838     return SDValue();
12839
12840   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12841   if (V.getNode())
12842     return V;
12843
12844   V = LowerScalarVariableShift(Op, DAG, Subtarget);
12845   if (V.getNode())
12846       return V;
12847
12848   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12849     return Op;
12850   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12851   if (Subtarget->hasInt256()) {
12852     if (Op.getOpcode() == ISD::SRL &&
12853         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12854          VT == MVT::v4i64 || VT == MVT::v8i32))
12855       return Op;
12856     if (Op.getOpcode() == ISD::SHL &&
12857         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12858          VT == MVT::v4i64 || VT == MVT::v8i32))
12859       return Op;
12860     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12861       return Op;
12862   }
12863
12864   // Lower SHL with variable shift amount.
12865   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
12866     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
12867
12868     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
12869     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
12870     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12871     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12872   }
12873   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
12874     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
12875
12876     // a = a << 5;
12877     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
12878     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
12879
12880     // Turn 'a' into a mask suitable for VSELECT
12881     SDValue VSelM = DAG.getConstant(0x80, VT);
12882     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12883     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12884
12885     SDValue CM1 = DAG.getConstant(0x0f, VT);
12886     SDValue CM2 = DAG.getConstant(0x3f, VT);
12887
12888     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12889     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
12890     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
12891     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12892     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12893
12894     // a += a
12895     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12896     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12897     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12898
12899     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12900     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
12901     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
12902     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12903     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12904
12905     // a += a
12906     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12907     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12908     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12909
12910     // return VSELECT(r, r+r, a);
12911     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
12912                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
12913     return R;
12914   }
12915
12916   // Decompose 256-bit shifts into smaller 128-bit shifts.
12917   if (VT.is256BitVector()) {
12918     unsigned NumElems = VT.getVectorNumElements();
12919     MVT EltVT = VT.getVectorElementType().getSimpleVT();
12920     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12921
12922     // Extract the two vectors
12923     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12924     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
12925
12926     // Recreate the shift amount vectors
12927     SDValue Amt1, Amt2;
12928     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12929       // Constant shift amount
12930       SmallVector<SDValue, 4> Amt1Csts;
12931       SmallVector<SDValue, 4> Amt2Csts;
12932       for (unsigned i = 0; i != NumElems/2; ++i)
12933         Amt1Csts.push_back(Amt->getOperand(i));
12934       for (unsigned i = NumElems/2; i != NumElems; ++i)
12935         Amt2Csts.push_back(Amt->getOperand(i));
12936
12937       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12938                                  &Amt1Csts[0], NumElems/2);
12939       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12940                                  &Amt2Csts[0], NumElems/2);
12941     } else {
12942       // Variable shift amount
12943       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12944       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
12945     }
12946
12947     // Issue new vector shifts for the smaller types
12948     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12949     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12950
12951     // Concatenate the result back
12952     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12953   }
12954
12955   return SDValue();
12956 }
12957
12958 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
12959   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12960   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
12961   // looks for this combo and may remove the "setcc" instruction if the "setcc"
12962   // has only one use.
12963   SDNode *N = Op.getNode();
12964   SDValue LHS = N->getOperand(0);
12965   SDValue RHS = N->getOperand(1);
12966   unsigned BaseOp = 0;
12967   unsigned Cond = 0;
12968   SDLoc DL(Op);
12969   switch (Op.getOpcode()) {
12970   default: llvm_unreachable("Unknown ovf instruction!");
12971   case ISD::SADDO:
12972     // A subtract of one will be selected as a INC. Note that INC doesn't
12973     // set CF, so we can't do this for UADDO.
12974     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12975       if (C->isOne()) {
12976         BaseOp = X86ISD::INC;
12977         Cond = X86::COND_O;
12978         break;
12979       }
12980     BaseOp = X86ISD::ADD;
12981     Cond = X86::COND_O;
12982     break;
12983   case ISD::UADDO:
12984     BaseOp = X86ISD::ADD;
12985     Cond = X86::COND_B;
12986     break;
12987   case ISD::SSUBO:
12988     // A subtract of one will be selected as a DEC. Note that DEC doesn't
12989     // set CF, so we can't do this for USUBO.
12990     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12991       if (C->isOne()) {
12992         BaseOp = X86ISD::DEC;
12993         Cond = X86::COND_O;
12994         break;
12995       }
12996     BaseOp = X86ISD::SUB;
12997     Cond = X86::COND_O;
12998     break;
12999   case ISD::USUBO:
13000     BaseOp = X86ISD::SUB;
13001     Cond = X86::COND_B;
13002     break;
13003   case ISD::SMULO:
13004     BaseOp = X86ISD::SMUL;
13005     Cond = X86::COND_O;
13006     break;
13007   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13008     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13009                                  MVT::i32);
13010     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
13011
13012     SDValue SetCC =
13013       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13014                   DAG.getConstant(X86::COND_O, MVT::i32),
13015                   SDValue(Sum.getNode(), 2));
13016
13017     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13018   }
13019   }
13020
13021   // Also sets EFLAGS.
13022   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13023   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13024
13025   SDValue SetCC =
13026     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13027                 DAG.getConstant(Cond, MVT::i32),
13028                 SDValue(Sum.getNode(), 1));
13029
13030   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13031 }
13032
13033 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13034                                                   SelectionDAG &DAG) const {
13035   SDLoc dl(Op);
13036   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13037   EVT VT = Op.getValueType();
13038
13039   if (!Subtarget->hasSSE2() || !VT.isVector())
13040     return SDValue();
13041
13042   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13043                       ExtraVT.getScalarType().getSizeInBits();
13044
13045   switch (VT.getSimpleVT().SimpleTy) {
13046     default: return SDValue();
13047     case MVT::v8i32:
13048     case MVT::v16i16:
13049       if (!Subtarget->hasFp256())
13050         return SDValue();
13051       if (!Subtarget->hasInt256()) {
13052         // needs to be split
13053         unsigned NumElems = VT.getVectorNumElements();
13054
13055         // Extract the LHS vectors
13056         SDValue LHS = Op.getOperand(0);
13057         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13058         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13059
13060         MVT EltVT = VT.getVectorElementType().getSimpleVT();
13061         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13062
13063         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13064         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13065         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13066                                    ExtraNumElems/2);
13067         SDValue Extra = DAG.getValueType(ExtraVT);
13068
13069         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13070         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13071
13072         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13073       }
13074       // fall through
13075     case MVT::v4i32:
13076     case MVT::v8i16: {
13077       // (sext (vzext x)) -> (vsext x)
13078       SDValue Op0 = Op.getOperand(0);
13079       SDValue Op00 = Op0.getOperand(0);
13080       SDValue Tmp1;
13081       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13082       if (Op0.getOpcode() == ISD::BITCAST &&
13083           Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
13084         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13085       if (Tmp1.getNode()) {
13086         SDValue Tmp1Op0 = Tmp1.getOperand(0);
13087         assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13088                "This optimization is invalid without a VZEXT.");
13089         return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13090       }
13091
13092       // If the above didn't work, then just use Shift-Left + Shift-Right.
13093       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13094                                         DAG);
13095       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13096                                         DAG);
13097     }
13098   }
13099 }
13100
13101 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13102                                  SelectionDAG &DAG) {
13103   SDLoc dl(Op);
13104   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13105     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13106   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13107     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13108
13109   // The only fence that needs an instruction is a sequentially-consistent
13110   // cross-thread fence.
13111   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13112     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13113     // no-sse2). There isn't any reason to disable it if the target processor
13114     // supports it.
13115     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13116       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13117
13118     SDValue Chain = Op.getOperand(0);
13119     SDValue Zero = DAG.getConstant(0, MVT::i32);
13120     SDValue Ops[] = {
13121       DAG.getRegister(X86::ESP, MVT::i32), // Base
13122       DAG.getTargetConstant(1, MVT::i8),   // Scale
13123       DAG.getRegister(0, MVT::i32),        // Index
13124       DAG.getTargetConstant(0, MVT::i32),  // Disp
13125       DAG.getRegister(0, MVT::i32),        // Segment.
13126       Zero,
13127       Chain
13128     };
13129     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13130     return SDValue(Res, 0);
13131   }
13132
13133   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13134   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13135 }
13136
13137 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13138                              SelectionDAG &DAG) {
13139   EVT T = Op.getValueType();
13140   SDLoc DL(Op);
13141   unsigned Reg = 0;
13142   unsigned size = 0;
13143   switch(T.getSimpleVT().SimpleTy) {
13144   default: llvm_unreachable("Invalid value type!");
13145   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13146   case MVT::i16: Reg = X86::AX;  size = 2; break;
13147   case MVT::i32: Reg = X86::EAX; size = 4; break;
13148   case MVT::i64:
13149     assert(Subtarget->is64Bit() && "Node not type legal!");
13150     Reg = X86::RAX; size = 8;
13151     break;
13152   }
13153   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13154                                     Op.getOperand(2), SDValue());
13155   SDValue Ops[] = { cpIn.getValue(0),
13156                     Op.getOperand(1),
13157                     Op.getOperand(3),
13158                     DAG.getTargetConstant(size, MVT::i8),
13159                     cpIn.getValue(1) };
13160   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13161   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13162   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13163                                            Ops, array_lengthof(Ops), T, MMO);
13164   SDValue cpOut =
13165     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13166   return cpOut;
13167 }
13168
13169 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13170                                      SelectionDAG &DAG) {
13171   assert(Subtarget->is64Bit() && "Result not type legalized?");
13172   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13173   SDValue TheChain = Op.getOperand(0);
13174   SDLoc dl(Op);
13175   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13176   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13177   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13178                                    rax.getValue(2));
13179   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13180                             DAG.getConstant(32, MVT::i8));
13181   SDValue Ops[] = {
13182     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13183     rdx.getValue(1)
13184   };
13185   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13186 }
13187
13188 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13189                             SelectionDAG &DAG) {
13190   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13191   MVT DstVT = Op.getSimpleValueType();
13192   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13193          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13194   assert((DstVT == MVT::i64 ||
13195           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13196          "Unexpected custom BITCAST");
13197   // i64 <=> MMX conversions are Legal.
13198   if (SrcVT==MVT::i64 && DstVT.isVector())
13199     return Op;
13200   if (DstVT==MVT::i64 && SrcVT.isVector())
13201     return Op;
13202   // MMX <=> MMX conversions are Legal.
13203   if (SrcVT.isVector() && DstVT.isVector())
13204     return Op;
13205   // All other conversions need to be expanded.
13206   return SDValue();
13207 }
13208
13209 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13210   SDNode *Node = Op.getNode();
13211   SDLoc dl(Node);
13212   EVT T = Node->getValueType(0);
13213   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13214                               DAG.getConstant(0, T), Node->getOperand(2));
13215   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13216                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13217                        Node->getOperand(0),
13218                        Node->getOperand(1), negOp,
13219                        cast<AtomicSDNode>(Node)->getSrcValue(),
13220                        cast<AtomicSDNode>(Node)->getAlignment(),
13221                        cast<AtomicSDNode>(Node)->getOrdering(),
13222                        cast<AtomicSDNode>(Node)->getSynchScope());
13223 }
13224
13225 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13226   SDNode *Node = Op.getNode();
13227   SDLoc dl(Node);
13228   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13229
13230   // Convert seq_cst store -> xchg
13231   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13232   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13233   //        (The only way to get a 16-byte store is cmpxchg16b)
13234   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13235   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13236       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13237     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13238                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13239                                  Node->getOperand(0),
13240                                  Node->getOperand(1), Node->getOperand(2),
13241                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13242                                  cast<AtomicSDNode>(Node)->getOrdering(),
13243                                  cast<AtomicSDNode>(Node)->getSynchScope());
13244     return Swap.getValue(1);
13245   }
13246   // Other atomic stores have a simple pattern.
13247   return Op;
13248 }
13249
13250 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13251   EVT VT = Op.getNode()->getValueType(0);
13252
13253   // Let legalize expand this if it isn't a legal type yet.
13254   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13255     return SDValue();
13256
13257   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13258
13259   unsigned Opc;
13260   bool ExtraOp = false;
13261   switch (Op.getOpcode()) {
13262   default: llvm_unreachable("Invalid code");
13263   case ISD::ADDC: Opc = X86ISD::ADD; break;
13264   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13265   case ISD::SUBC: Opc = X86ISD::SUB; break;
13266   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13267   }
13268
13269   if (!ExtraOp)
13270     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13271                        Op.getOperand(1));
13272   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13273                      Op.getOperand(1), Op.getOperand(2));
13274 }
13275
13276 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13277                             SelectionDAG &DAG) {
13278   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13279
13280   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13281   // which returns the values as { float, float } (in XMM0) or
13282   // { double, double } (which is returned in XMM0, XMM1).
13283   SDLoc dl(Op);
13284   SDValue Arg = Op.getOperand(0);
13285   EVT ArgVT = Arg.getValueType();
13286   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13287
13288   TargetLowering::ArgListTy Args;
13289   TargetLowering::ArgListEntry Entry;
13290
13291   Entry.Node = Arg;
13292   Entry.Ty = ArgTy;
13293   Entry.isSExt = false;
13294   Entry.isZExt = false;
13295   Args.push_back(Entry);
13296
13297   bool isF64 = ArgVT == MVT::f64;
13298   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13299   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13300   // the results are returned via SRet in memory.
13301   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13302   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13303   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13304
13305   Type *RetTy = isF64
13306     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13307     : (Type*)VectorType::get(ArgTy, 4);
13308   TargetLowering::
13309     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13310                          false, false, false, false, 0,
13311                          CallingConv::C, /*isTaillCall=*/false,
13312                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13313                          Callee, Args, DAG, dl);
13314   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13315
13316   if (isF64)
13317     // Returned in xmm0 and xmm1.
13318     return CallResult.first;
13319
13320   // Returned in bits 0:31 and 32:64 xmm0.
13321   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13322                                CallResult.first, DAG.getIntPtrConstant(0));
13323   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13324                                CallResult.first, DAG.getIntPtrConstant(1));
13325   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13326   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13327 }
13328
13329 /// LowerOperation - Provide custom lowering hooks for some operations.
13330 ///
13331 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13332   switch (Op.getOpcode()) {
13333   default: llvm_unreachable("Should not custom lower this!");
13334   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13335   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13336   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13337   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13338   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13339   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13340   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13341   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13342   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13343   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13344   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13345   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13346   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13347   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13348   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13349   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13350   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13351   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13352   case ISD::SHL_PARTS:
13353   case ISD::SRA_PARTS:
13354   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13355   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13356   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13357   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13358   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13359   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13360   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13361   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13362   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13363   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13364   case ISD::FABS:               return LowerFABS(Op, DAG);
13365   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13366   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13367   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13368   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13369   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13370   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13371   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13372   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13373   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13374   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13375   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13376   case ISD::INTRINSIC_VOID:
13377   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13378   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13379   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13380   case ISD::FRAME_TO_ARGS_OFFSET:
13381                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13382   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13383   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13384   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13385   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13386   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13387   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13388   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13389   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13390   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13391   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13392   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13393   case ISD::SRA:
13394   case ISD::SRL:
13395   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13396   case ISD::SADDO:
13397   case ISD::UADDO:
13398   case ISD::SSUBO:
13399   case ISD::USUBO:
13400   case ISD::SMULO:
13401   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13402   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13403   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13404   case ISD::ADDC:
13405   case ISD::ADDE:
13406   case ISD::SUBC:
13407   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13408   case ISD::ADD:                return LowerADD(Op, DAG);
13409   case ISD::SUB:                return LowerSUB(Op, DAG);
13410   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13411   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13412   }
13413 }
13414
13415 static void ReplaceATOMIC_LOAD(SDNode *Node,
13416                                   SmallVectorImpl<SDValue> &Results,
13417                                   SelectionDAG &DAG) {
13418   SDLoc dl(Node);
13419   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13420
13421   // Convert wide load -> cmpxchg8b/cmpxchg16b
13422   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13423   //        (The only way to get a 16-byte load is cmpxchg16b)
13424   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13425   SDValue Zero = DAG.getConstant(0, VT);
13426   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13427                                Node->getOperand(0),
13428                                Node->getOperand(1), Zero, Zero,
13429                                cast<AtomicSDNode>(Node)->getMemOperand(),
13430                                cast<AtomicSDNode>(Node)->getOrdering(),
13431                                cast<AtomicSDNode>(Node)->getSynchScope());
13432   Results.push_back(Swap.getValue(0));
13433   Results.push_back(Swap.getValue(1));
13434 }
13435
13436 static void
13437 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13438                         SelectionDAG &DAG, unsigned NewOp) {
13439   SDLoc dl(Node);
13440   assert (Node->getValueType(0) == MVT::i64 &&
13441           "Only know how to expand i64 atomics");
13442
13443   SDValue Chain = Node->getOperand(0);
13444   SDValue In1 = Node->getOperand(1);
13445   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13446                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13447   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13448                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13449   SDValue Ops[] = { Chain, In1, In2L, In2H };
13450   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13451   SDValue Result =
13452     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13453                             cast<MemSDNode>(Node)->getMemOperand());
13454   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13455   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13456   Results.push_back(Result.getValue(2));
13457 }
13458
13459 /// ReplaceNodeResults - Replace a node with an illegal result type
13460 /// with a new node built out of custom code.
13461 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13462                                            SmallVectorImpl<SDValue>&Results,
13463                                            SelectionDAG &DAG) const {
13464   SDLoc dl(N);
13465   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13466   switch (N->getOpcode()) {
13467   default:
13468     llvm_unreachable("Do not know how to custom type legalize this operation!");
13469   case ISD::SIGN_EXTEND_INREG:
13470   case ISD::ADDC:
13471   case ISD::ADDE:
13472   case ISD::SUBC:
13473   case ISD::SUBE:
13474     // We don't want to expand or promote these.
13475     return;
13476   case ISD::FP_TO_SINT:
13477   case ISD::FP_TO_UINT: {
13478     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13479
13480     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13481       return;
13482
13483     std::pair<SDValue,SDValue> Vals =
13484         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13485     SDValue FIST = Vals.first, StackSlot = Vals.second;
13486     if (FIST.getNode() != 0) {
13487       EVT VT = N->getValueType(0);
13488       // Return a load from the stack slot.
13489       if (StackSlot.getNode() != 0)
13490         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13491                                       MachinePointerInfo(),
13492                                       false, false, false, 0));
13493       else
13494         Results.push_back(FIST);
13495     }
13496     return;
13497   }
13498   case ISD::UINT_TO_FP: {
13499     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13500     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13501         N->getValueType(0) != MVT::v2f32)
13502       return;
13503     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13504                                  N->getOperand(0));
13505     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13506                                      MVT::f64);
13507     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13508     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13509                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13510     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13511     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13512     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13513     return;
13514   }
13515   case ISD::FP_ROUND: {
13516     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13517         return;
13518     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13519     Results.push_back(V);
13520     return;
13521   }
13522   case ISD::READCYCLECOUNTER: {
13523     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13524     SDValue TheChain = N->getOperand(0);
13525     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13526     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13527                                      rd.getValue(1));
13528     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13529                                      eax.getValue(2));
13530     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13531     SDValue Ops[] = { eax, edx };
13532     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13533                                   array_lengthof(Ops)));
13534     Results.push_back(edx.getValue(1));
13535     return;
13536   }
13537   case ISD::ATOMIC_CMP_SWAP: {
13538     EVT T = N->getValueType(0);
13539     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13540     bool Regs64bit = T == MVT::i128;
13541     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13542     SDValue cpInL, cpInH;
13543     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13544                         DAG.getConstant(0, HalfT));
13545     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13546                         DAG.getConstant(1, HalfT));
13547     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13548                              Regs64bit ? X86::RAX : X86::EAX,
13549                              cpInL, SDValue());
13550     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13551                              Regs64bit ? X86::RDX : X86::EDX,
13552                              cpInH, cpInL.getValue(1));
13553     SDValue swapInL, swapInH;
13554     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13555                           DAG.getConstant(0, HalfT));
13556     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13557                           DAG.getConstant(1, HalfT));
13558     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13559                                Regs64bit ? X86::RBX : X86::EBX,
13560                                swapInL, cpInH.getValue(1));
13561     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13562                                Regs64bit ? X86::RCX : X86::ECX,
13563                                swapInH, swapInL.getValue(1));
13564     SDValue Ops[] = { swapInH.getValue(0),
13565                       N->getOperand(1),
13566                       swapInH.getValue(1) };
13567     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13568     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13569     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13570                                   X86ISD::LCMPXCHG8_DAG;
13571     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13572                                              Ops, array_lengthof(Ops), T, MMO);
13573     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13574                                         Regs64bit ? X86::RAX : X86::EAX,
13575                                         HalfT, Result.getValue(1));
13576     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13577                                         Regs64bit ? X86::RDX : X86::EDX,
13578                                         HalfT, cpOutL.getValue(2));
13579     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13580     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13581     Results.push_back(cpOutH.getValue(1));
13582     return;
13583   }
13584   case ISD::ATOMIC_LOAD_ADD:
13585   case ISD::ATOMIC_LOAD_AND:
13586   case ISD::ATOMIC_LOAD_NAND:
13587   case ISD::ATOMIC_LOAD_OR:
13588   case ISD::ATOMIC_LOAD_SUB:
13589   case ISD::ATOMIC_LOAD_XOR:
13590   case ISD::ATOMIC_LOAD_MAX:
13591   case ISD::ATOMIC_LOAD_MIN:
13592   case ISD::ATOMIC_LOAD_UMAX:
13593   case ISD::ATOMIC_LOAD_UMIN:
13594   case ISD::ATOMIC_SWAP: {
13595     unsigned Opc;
13596     switch (N->getOpcode()) {
13597     default: llvm_unreachable("Unexpected opcode");
13598     case ISD::ATOMIC_LOAD_ADD:
13599       Opc = X86ISD::ATOMADD64_DAG;
13600       break;
13601     case ISD::ATOMIC_LOAD_AND:
13602       Opc = X86ISD::ATOMAND64_DAG;
13603       break;
13604     case ISD::ATOMIC_LOAD_NAND:
13605       Opc = X86ISD::ATOMNAND64_DAG;
13606       break;
13607     case ISD::ATOMIC_LOAD_OR:
13608       Opc = X86ISD::ATOMOR64_DAG;
13609       break;
13610     case ISD::ATOMIC_LOAD_SUB:
13611       Opc = X86ISD::ATOMSUB64_DAG;
13612       break;
13613     case ISD::ATOMIC_LOAD_XOR:
13614       Opc = X86ISD::ATOMXOR64_DAG;
13615       break;
13616     case ISD::ATOMIC_LOAD_MAX:
13617       Opc = X86ISD::ATOMMAX64_DAG;
13618       break;
13619     case ISD::ATOMIC_LOAD_MIN:
13620       Opc = X86ISD::ATOMMIN64_DAG;
13621       break;
13622     case ISD::ATOMIC_LOAD_UMAX:
13623       Opc = X86ISD::ATOMUMAX64_DAG;
13624       break;
13625     case ISD::ATOMIC_LOAD_UMIN:
13626       Opc = X86ISD::ATOMUMIN64_DAG;
13627       break;
13628     case ISD::ATOMIC_SWAP:
13629       Opc = X86ISD::ATOMSWAP64_DAG;
13630       break;
13631     }
13632     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13633     return;
13634   }
13635   case ISD::ATOMIC_LOAD:
13636     ReplaceATOMIC_LOAD(N, Results, DAG);
13637   }
13638 }
13639
13640 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13641   switch (Opcode) {
13642   default: return NULL;
13643   case X86ISD::BSF:                return "X86ISD::BSF";
13644   case X86ISD::BSR:                return "X86ISD::BSR";
13645   case X86ISD::SHLD:               return "X86ISD::SHLD";
13646   case X86ISD::SHRD:               return "X86ISD::SHRD";
13647   case X86ISD::FAND:               return "X86ISD::FAND";
13648   case X86ISD::FANDN:              return "X86ISD::FANDN";
13649   case X86ISD::FOR:                return "X86ISD::FOR";
13650   case X86ISD::FXOR:               return "X86ISD::FXOR";
13651   case X86ISD::FSRL:               return "X86ISD::FSRL";
13652   case X86ISD::FILD:               return "X86ISD::FILD";
13653   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13654   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13655   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13656   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13657   case X86ISD::FLD:                return "X86ISD::FLD";
13658   case X86ISD::FST:                return "X86ISD::FST";
13659   case X86ISD::CALL:               return "X86ISD::CALL";
13660   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13661   case X86ISD::BT:                 return "X86ISD::BT";
13662   case X86ISD::CMP:                return "X86ISD::CMP";
13663   case X86ISD::COMI:               return "X86ISD::COMI";
13664   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13665   case X86ISD::CMPM:               return "X86ISD::CMPM";
13666   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13667   case X86ISD::SETCC:              return "X86ISD::SETCC";
13668   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13669   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
13670   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
13671   case X86ISD::CMOV:               return "X86ISD::CMOV";
13672   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13673   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13674   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13675   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13676   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13677   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13678   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13679   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13680   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13681   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13682   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13683   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13684   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13685   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13686   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13687   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13688   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13689   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13690   case X86ISD::HADD:               return "X86ISD::HADD";
13691   case X86ISD::HSUB:               return "X86ISD::HSUB";
13692   case X86ISD::FHADD:              return "X86ISD::FHADD";
13693   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13694   case X86ISD::UMAX:               return "X86ISD::UMAX";
13695   case X86ISD::UMIN:               return "X86ISD::UMIN";
13696   case X86ISD::SMAX:               return "X86ISD::SMAX";
13697   case X86ISD::SMIN:               return "X86ISD::SMIN";
13698   case X86ISD::FMAX:               return "X86ISD::FMAX";
13699   case X86ISD::FMIN:               return "X86ISD::FMIN";
13700   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13701   case X86ISD::FMINC:              return "X86ISD::FMINC";
13702   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13703   case X86ISD::FRCP:               return "X86ISD::FRCP";
13704   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13705   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13706   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13707   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13708   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13709   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13710   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13711   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13712   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13713   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13714   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13715   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13716   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13717   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13718   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13719   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13720   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13721   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13722   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13723   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13724   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13725   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13726   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13727   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13728   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13729   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13730   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13731   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13732   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13733   case X86ISD::VSHL:               return "X86ISD::VSHL";
13734   case X86ISD::VSRL:               return "X86ISD::VSRL";
13735   case X86ISD::VSRA:               return "X86ISD::VSRA";
13736   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13737   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13738   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13739   case X86ISD::CMPP:               return "X86ISD::CMPP";
13740   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13741   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13742   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13743   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13744   case X86ISD::ADD:                return "X86ISD::ADD";
13745   case X86ISD::SUB:                return "X86ISD::SUB";
13746   case X86ISD::ADC:                return "X86ISD::ADC";
13747   case X86ISD::SBB:                return "X86ISD::SBB";
13748   case X86ISD::SMUL:               return "X86ISD::SMUL";
13749   case X86ISD::UMUL:               return "X86ISD::UMUL";
13750   case X86ISD::INC:                return "X86ISD::INC";
13751   case X86ISD::DEC:                return "X86ISD::DEC";
13752   case X86ISD::OR:                 return "X86ISD::OR";
13753   case X86ISD::XOR:                return "X86ISD::XOR";
13754   case X86ISD::AND:                return "X86ISD::AND";
13755   case X86ISD::BLSI:               return "X86ISD::BLSI";
13756   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13757   case X86ISD::BLSR:               return "X86ISD::BLSR";
13758   case X86ISD::BZHI:               return "X86ISD::BZHI";
13759   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13760   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13761   case X86ISD::PTEST:              return "X86ISD::PTEST";
13762   case X86ISD::TESTP:              return "X86ISD::TESTP";
13763   case X86ISD::TESTM:              return "X86ISD::TESTM";
13764   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13765   case X86ISD::KTEST:              return "X86ISD::KTEST";
13766   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13767   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13768   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13769   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13770   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13771   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13772   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13773   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13774   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13775   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13776   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13777   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13778   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13779   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13780   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
13781   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
13782   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
13783   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
13784   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
13785   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
13786   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
13787   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
13788   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
13789   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
13790   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
13791   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
13792   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
13793   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
13794   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
13795   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
13796   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
13797   case X86ISD::SAHF:               return "X86ISD::SAHF";
13798   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
13799   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
13800   case X86ISD::FMADD:              return "X86ISD::FMADD";
13801   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
13802   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
13803   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
13804   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
13805   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
13806   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
13807   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
13808   case X86ISD::XTEST:              return "X86ISD::XTEST";
13809   }
13810 }
13811
13812 // isLegalAddressingMode - Return true if the addressing mode represented
13813 // by AM is legal for this target, for a load/store of the specified type.
13814 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
13815                                               Type *Ty) const {
13816   // X86 supports extremely general addressing modes.
13817   CodeModel::Model M = getTargetMachine().getCodeModel();
13818   Reloc::Model R = getTargetMachine().getRelocationModel();
13819
13820   // X86 allows a sign-extended 32-bit immediate field as a displacement.
13821   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13822     return false;
13823
13824   if (AM.BaseGV) {
13825     unsigned GVFlags =
13826       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13827
13828     // If a reference to this global requires an extra load, we can't fold it.
13829     if (isGlobalStubReference(GVFlags))
13830       return false;
13831
13832     // If BaseGV requires a register for the PIC base, we cannot also have a
13833     // BaseReg specified.
13834     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13835       return false;
13836
13837     // If lower 4G is not available, then we must use rip-relative addressing.
13838     if ((M != CodeModel::Small || R != Reloc::Static) &&
13839         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13840       return false;
13841   }
13842
13843   switch (AM.Scale) {
13844   case 0:
13845   case 1:
13846   case 2:
13847   case 4:
13848   case 8:
13849     // These scales always work.
13850     break;
13851   case 3:
13852   case 5:
13853   case 9:
13854     // These scales are formed with basereg+scalereg.  Only accept if there is
13855     // no basereg yet.
13856     if (AM.HasBaseReg)
13857       return false;
13858     break;
13859   default:  // Other stuff never works.
13860     return false;
13861   }
13862
13863   return true;
13864 }
13865
13866 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13867   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13868     return false;
13869   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13870   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13871   return NumBits1 > NumBits2;
13872 }
13873
13874 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13875   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13876     return false;
13877
13878   if (!isTypeLegal(EVT::getEVT(Ty1)))
13879     return false;
13880
13881   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13882
13883   // Assuming the caller doesn't have a zeroext or signext return parameter,
13884   // truncation all the way down to i1 is valid.
13885   return true;
13886 }
13887
13888 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
13889   return isInt<32>(Imm);
13890 }
13891
13892 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
13893   // Can also use sub to handle negated immediates.
13894   return isInt<32>(Imm);
13895 }
13896
13897 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
13898   if (!VT1.isInteger() || !VT2.isInteger())
13899     return false;
13900   unsigned NumBits1 = VT1.getSizeInBits();
13901   unsigned NumBits2 = VT2.getSizeInBits();
13902   return NumBits1 > NumBits2;
13903 }
13904
13905 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13906   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13907   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
13908 }
13909
13910 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
13911   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13912   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
13913 }
13914
13915 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13916   EVT VT1 = Val.getValueType();
13917   if (isZExtFree(VT1, VT2))
13918     return true;
13919
13920   if (Val.getOpcode() != ISD::LOAD)
13921     return false;
13922
13923   if (!VT1.isSimple() || !VT1.isInteger() ||
13924       !VT2.isSimple() || !VT2.isInteger())
13925     return false;
13926
13927   switch (VT1.getSimpleVT().SimpleTy) {
13928   default: break;
13929   case MVT::i8:
13930   case MVT::i16:
13931   case MVT::i32:
13932     // X86 has 8, 16, and 32-bit zero-extending loads.
13933     return true;
13934   }
13935
13936   return false;
13937 }
13938
13939 bool
13940 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13941   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13942     return false;
13943
13944   VT = VT.getScalarType();
13945
13946   if (!VT.isSimple())
13947     return false;
13948
13949   switch (VT.getSimpleVT().SimpleTy) {
13950   case MVT::f32:
13951   case MVT::f64:
13952     return true;
13953   default:
13954     break;
13955   }
13956
13957   return false;
13958 }
13959
13960 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
13961   // i16 instructions are longer (0x66 prefix) and potentially slower.
13962   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
13963 }
13964
13965 /// isShuffleMaskLegal - Targets can use this to indicate that they only
13966 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13967 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13968 /// are assumed to be legal.
13969 bool
13970 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
13971                                       EVT VT) const {
13972   if (!VT.isSimple())
13973     return false;
13974
13975   MVT SVT = VT.getSimpleVT();
13976
13977   // Very little shuffling can be done for 64-bit vectors right now.
13978   if (VT.getSizeInBits() == 64)
13979     return false;
13980
13981   // FIXME: pshufb, blends, shifts.
13982   return (SVT.getVectorNumElements() == 2 ||
13983           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13984           isMOVLMask(M, SVT) ||
13985           isSHUFPMask(M, SVT) ||
13986           isPSHUFDMask(M, SVT) ||
13987           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13988           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13989           isPALIGNRMask(M, SVT, Subtarget) ||
13990           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13991           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13992           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13993           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
13994 }
13995
13996 bool
13997 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
13998                                           EVT VT) const {
13999   if (!VT.isSimple())
14000     return false;
14001
14002   MVT SVT = VT.getSimpleVT();
14003   unsigned NumElts = SVT.getVectorNumElements();
14004   // FIXME: This collection of masks seems suspect.
14005   if (NumElts == 2)
14006     return true;
14007   if (NumElts == 4 && SVT.is128BitVector()) {
14008     return (isMOVLMask(Mask, SVT)  ||
14009             isCommutedMOVLMask(Mask, SVT, true) ||
14010             isSHUFPMask(Mask, SVT) ||
14011             isSHUFPMask(Mask, SVT, /* Commuted */ true));
14012   }
14013   return false;
14014 }
14015
14016 //===----------------------------------------------------------------------===//
14017 //                           X86 Scheduler Hooks
14018 //===----------------------------------------------------------------------===//
14019
14020 /// Utility function to emit xbegin specifying the start of an RTM region.
14021 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14022                                      const TargetInstrInfo *TII) {
14023   DebugLoc DL = MI->getDebugLoc();
14024
14025   const BasicBlock *BB = MBB->getBasicBlock();
14026   MachineFunction::iterator I = MBB;
14027   ++I;
14028
14029   // For the v = xbegin(), we generate
14030   //
14031   // thisMBB:
14032   //  xbegin sinkMBB
14033   //
14034   // mainMBB:
14035   //  eax = -1
14036   //
14037   // sinkMBB:
14038   //  v = eax
14039
14040   MachineBasicBlock *thisMBB = MBB;
14041   MachineFunction *MF = MBB->getParent();
14042   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14043   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14044   MF->insert(I, mainMBB);
14045   MF->insert(I, sinkMBB);
14046
14047   // Transfer the remainder of BB and its successor edges to sinkMBB.
14048   sinkMBB->splice(sinkMBB->begin(), MBB,
14049                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14050   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14051
14052   // thisMBB:
14053   //  xbegin sinkMBB
14054   //  # fallthrough to mainMBB
14055   //  # abortion to sinkMBB
14056   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14057   thisMBB->addSuccessor(mainMBB);
14058   thisMBB->addSuccessor(sinkMBB);
14059
14060   // mainMBB:
14061   //  EAX = -1
14062   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14063   mainMBB->addSuccessor(sinkMBB);
14064
14065   // sinkMBB:
14066   // EAX is live into the sinkMBB
14067   sinkMBB->addLiveIn(X86::EAX);
14068   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14069           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14070     .addReg(X86::EAX);
14071
14072   MI->eraseFromParent();
14073   return sinkMBB;
14074 }
14075
14076 // Get CMPXCHG opcode for the specified data type.
14077 static unsigned getCmpXChgOpcode(EVT VT) {
14078   switch (VT.getSimpleVT().SimpleTy) {
14079   case MVT::i8:  return X86::LCMPXCHG8;
14080   case MVT::i16: return X86::LCMPXCHG16;
14081   case MVT::i32: return X86::LCMPXCHG32;
14082   case MVT::i64: return X86::LCMPXCHG64;
14083   default:
14084     break;
14085   }
14086   llvm_unreachable("Invalid operand size!");
14087 }
14088
14089 // Get LOAD opcode for the specified data type.
14090 static unsigned getLoadOpcode(EVT VT) {
14091   switch (VT.getSimpleVT().SimpleTy) {
14092   case MVT::i8:  return X86::MOV8rm;
14093   case MVT::i16: return X86::MOV16rm;
14094   case MVT::i32: return X86::MOV32rm;
14095   case MVT::i64: return X86::MOV64rm;
14096   default:
14097     break;
14098   }
14099   llvm_unreachable("Invalid operand size!");
14100 }
14101
14102 // Get opcode of the non-atomic one from the specified atomic instruction.
14103 static unsigned getNonAtomicOpcode(unsigned Opc) {
14104   switch (Opc) {
14105   case X86::ATOMAND8:  return X86::AND8rr;
14106   case X86::ATOMAND16: return X86::AND16rr;
14107   case X86::ATOMAND32: return X86::AND32rr;
14108   case X86::ATOMAND64: return X86::AND64rr;
14109   case X86::ATOMOR8:   return X86::OR8rr;
14110   case X86::ATOMOR16:  return X86::OR16rr;
14111   case X86::ATOMOR32:  return X86::OR32rr;
14112   case X86::ATOMOR64:  return X86::OR64rr;
14113   case X86::ATOMXOR8:  return X86::XOR8rr;
14114   case X86::ATOMXOR16: return X86::XOR16rr;
14115   case X86::ATOMXOR32: return X86::XOR32rr;
14116   case X86::ATOMXOR64: return X86::XOR64rr;
14117   }
14118   llvm_unreachable("Unhandled atomic-load-op opcode!");
14119 }
14120
14121 // Get opcode of the non-atomic one from the specified atomic instruction with
14122 // extra opcode.
14123 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14124                                                unsigned &ExtraOpc) {
14125   switch (Opc) {
14126   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14127   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14128   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14129   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14130   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14131   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14132   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14133   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14134   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14135   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14136   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14137   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14138   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14139   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14140   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14141   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14142   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14143   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14144   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14145   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14146   }
14147   llvm_unreachable("Unhandled atomic-load-op opcode!");
14148 }
14149
14150 // Get opcode of the non-atomic one from the specified atomic instruction for
14151 // 64-bit data type on 32-bit target.
14152 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14153   switch (Opc) {
14154   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14155   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14156   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14157   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14158   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14159   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14160   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14161   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14162   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14163   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14164   }
14165   llvm_unreachable("Unhandled atomic-load-op opcode!");
14166 }
14167
14168 // Get opcode of the non-atomic one from the specified atomic instruction for
14169 // 64-bit data type on 32-bit target with extra opcode.
14170 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14171                                                    unsigned &HiOpc,
14172                                                    unsigned &ExtraOpc) {
14173   switch (Opc) {
14174   case X86::ATOMNAND6432:
14175     ExtraOpc = X86::NOT32r;
14176     HiOpc = X86::AND32rr;
14177     return X86::AND32rr;
14178   }
14179   llvm_unreachable("Unhandled atomic-load-op opcode!");
14180 }
14181
14182 // Get pseudo CMOV opcode from the specified data type.
14183 static unsigned getPseudoCMOVOpc(EVT VT) {
14184   switch (VT.getSimpleVT().SimpleTy) {
14185   case MVT::i8:  return X86::CMOV_GR8;
14186   case MVT::i16: return X86::CMOV_GR16;
14187   case MVT::i32: return X86::CMOV_GR32;
14188   default:
14189     break;
14190   }
14191   llvm_unreachable("Unknown CMOV opcode!");
14192 }
14193
14194 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14195 // They will be translated into a spin-loop or compare-exchange loop from
14196 //
14197 //    ...
14198 //    dst = atomic-fetch-op MI.addr, MI.val
14199 //    ...
14200 //
14201 // to
14202 //
14203 //    ...
14204 //    t1 = LOAD MI.addr
14205 // loop:
14206 //    t4 = phi(t1, t3 / loop)
14207 //    t2 = OP MI.val, t4
14208 //    EAX = t4
14209 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14210 //    t3 = EAX
14211 //    JNE loop
14212 // sink:
14213 //    dst = t3
14214 //    ...
14215 MachineBasicBlock *
14216 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14217                                        MachineBasicBlock *MBB) const {
14218   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14219   DebugLoc DL = MI->getDebugLoc();
14220
14221   MachineFunction *MF = MBB->getParent();
14222   MachineRegisterInfo &MRI = MF->getRegInfo();
14223
14224   const BasicBlock *BB = MBB->getBasicBlock();
14225   MachineFunction::iterator I = MBB;
14226   ++I;
14227
14228   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14229          "Unexpected number of operands");
14230
14231   assert(MI->hasOneMemOperand() &&
14232          "Expected atomic-load-op to have one memoperand");
14233
14234   // Memory Reference
14235   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14236   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14237
14238   unsigned DstReg, SrcReg;
14239   unsigned MemOpndSlot;
14240
14241   unsigned CurOp = 0;
14242
14243   DstReg = MI->getOperand(CurOp++).getReg();
14244   MemOpndSlot = CurOp;
14245   CurOp += X86::AddrNumOperands;
14246   SrcReg = MI->getOperand(CurOp++).getReg();
14247
14248   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14249   MVT::SimpleValueType VT = *RC->vt_begin();
14250   unsigned t1 = MRI.createVirtualRegister(RC);
14251   unsigned t2 = MRI.createVirtualRegister(RC);
14252   unsigned t3 = MRI.createVirtualRegister(RC);
14253   unsigned t4 = MRI.createVirtualRegister(RC);
14254   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14255
14256   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14257   unsigned LOADOpc = getLoadOpcode(VT);
14258
14259   // For the atomic load-arith operator, we generate
14260   //
14261   //  thisMBB:
14262   //    t1 = LOAD [MI.addr]
14263   //  mainMBB:
14264   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14265   //    t1 = OP MI.val, EAX
14266   //    EAX = t4
14267   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14268   //    t3 = EAX
14269   //    JNE mainMBB
14270   //  sinkMBB:
14271   //    dst = t3
14272
14273   MachineBasicBlock *thisMBB = MBB;
14274   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14275   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14276   MF->insert(I, mainMBB);
14277   MF->insert(I, sinkMBB);
14278
14279   MachineInstrBuilder MIB;
14280
14281   // Transfer the remainder of BB and its successor edges to sinkMBB.
14282   sinkMBB->splice(sinkMBB->begin(), MBB,
14283                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14284   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14285
14286   // thisMBB:
14287   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14288   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14289     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14290     if (NewMO.isReg())
14291       NewMO.setIsKill(false);
14292     MIB.addOperand(NewMO);
14293   }
14294   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14295     unsigned flags = (*MMOI)->getFlags();
14296     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14297     MachineMemOperand *MMO =
14298       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14299                                (*MMOI)->getSize(),
14300                                (*MMOI)->getBaseAlignment(),
14301                                (*MMOI)->getTBAAInfo(),
14302                                (*MMOI)->getRanges());
14303     MIB.addMemOperand(MMO);
14304   }
14305
14306   thisMBB->addSuccessor(mainMBB);
14307
14308   // mainMBB:
14309   MachineBasicBlock *origMainMBB = mainMBB;
14310
14311   // Add a PHI.
14312   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14313                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14314
14315   unsigned Opc = MI->getOpcode();
14316   switch (Opc) {
14317   default:
14318     llvm_unreachable("Unhandled atomic-load-op opcode!");
14319   case X86::ATOMAND8:
14320   case X86::ATOMAND16:
14321   case X86::ATOMAND32:
14322   case X86::ATOMAND64:
14323   case X86::ATOMOR8:
14324   case X86::ATOMOR16:
14325   case X86::ATOMOR32:
14326   case X86::ATOMOR64:
14327   case X86::ATOMXOR8:
14328   case X86::ATOMXOR16:
14329   case X86::ATOMXOR32:
14330   case X86::ATOMXOR64: {
14331     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14332     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14333       .addReg(t4);
14334     break;
14335   }
14336   case X86::ATOMNAND8:
14337   case X86::ATOMNAND16:
14338   case X86::ATOMNAND32:
14339   case X86::ATOMNAND64: {
14340     unsigned Tmp = MRI.createVirtualRegister(RC);
14341     unsigned NOTOpc;
14342     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14343     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14344       .addReg(t4);
14345     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14346     break;
14347   }
14348   case X86::ATOMMAX8:
14349   case X86::ATOMMAX16:
14350   case X86::ATOMMAX32:
14351   case X86::ATOMMAX64:
14352   case X86::ATOMMIN8:
14353   case X86::ATOMMIN16:
14354   case X86::ATOMMIN32:
14355   case X86::ATOMMIN64:
14356   case X86::ATOMUMAX8:
14357   case X86::ATOMUMAX16:
14358   case X86::ATOMUMAX32:
14359   case X86::ATOMUMAX64:
14360   case X86::ATOMUMIN8:
14361   case X86::ATOMUMIN16:
14362   case X86::ATOMUMIN32:
14363   case X86::ATOMUMIN64: {
14364     unsigned CMPOpc;
14365     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14366
14367     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14368       .addReg(SrcReg)
14369       .addReg(t4);
14370
14371     if (Subtarget->hasCMov()) {
14372       if (VT != MVT::i8) {
14373         // Native support
14374         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14375           .addReg(SrcReg)
14376           .addReg(t4);
14377       } else {
14378         // Promote i8 to i32 to use CMOV32
14379         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14380         const TargetRegisterClass *RC32 =
14381           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14382         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14383         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14384         unsigned Tmp = MRI.createVirtualRegister(RC32);
14385
14386         unsigned Undef = MRI.createVirtualRegister(RC32);
14387         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14388
14389         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14390           .addReg(Undef)
14391           .addReg(SrcReg)
14392           .addImm(X86::sub_8bit);
14393         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14394           .addReg(Undef)
14395           .addReg(t4)
14396           .addImm(X86::sub_8bit);
14397
14398         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14399           .addReg(SrcReg32)
14400           .addReg(AccReg32);
14401
14402         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14403           .addReg(Tmp, 0, X86::sub_8bit);
14404       }
14405     } else {
14406       // Use pseudo select and lower them.
14407       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14408              "Invalid atomic-load-op transformation!");
14409       unsigned SelOpc = getPseudoCMOVOpc(VT);
14410       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14411       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14412       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14413               .addReg(SrcReg).addReg(t4)
14414               .addImm(CC);
14415       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14416       // Replace the original PHI node as mainMBB is changed after CMOV
14417       // lowering.
14418       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14419         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14420       Phi->eraseFromParent();
14421     }
14422     break;
14423   }
14424   }
14425
14426   // Copy PhyReg back from virtual register.
14427   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14428     .addReg(t4);
14429
14430   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14431   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14432     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14433     if (NewMO.isReg())
14434       NewMO.setIsKill(false);
14435     MIB.addOperand(NewMO);
14436   }
14437   MIB.addReg(t2);
14438   MIB.setMemRefs(MMOBegin, MMOEnd);
14439
14440   // Copy PhyReg back to virtual register.
14441   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14442     .addReg(PhyReg);
14443
14444   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14445
14446   mainMBB->addSuccessor(origMainMBB);
14447   mainMBB->addSuccessor(sinkMBB);
14448
14449   // sinkMBB:
14450   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14451           TII->get(TargetOpcode::COPY), DstReg)
14452     .addReg(t3);
14453
14454   MI->eraseFromParent();
14455   return sinkMBB;
14456 }
14457
14458 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14459 // instructions. They will be translated into a spin-loop or compare-exchange
14460 // loop from
14461 //
14462 //    ...
14463 //    dst = atomic-fetch-op MI.addr, MI.val
14464 //    ...
14465 //
14466 // to
14467 //
14468 //    ...
14469 //    t1L = LOAD [MI.addr + 0]
14470 //    t1H = LOAD [MI.addr + 4]
14471 // loop:
14472 //    t4L = phi(t1L, t3L / loop)
14473 //    t4H = phi(t1H, t3H / loop)
14474 //    t2L = OP MI.val.lo, t4L
14475 //    t2H = OP MI.val.hi, t4H
14476 //    EAX = t4L
14477 //    EDX = t4H
14478 //    EBX = t2L
14479 //    ECX = t2H
14480 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14481 //    t3L = EAX
14482 //    t3H = EDX
14483 //    JNE loop
14484 // sink:
14485 //    dstL = t3L
14486 //    dstH = t3H
14487 //    ...
14488 MachineBasicBlock *
14489 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14490                                            MachineBasicBlock *MBB) const {
14491   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14492   DebugLoc DL = MI->getDebugLoc();
14493
14494   MachineFunction *MF = MBB->getParent();
14495   MachineRegisterInfo &MRI = MF->getRegInfo();
14496
14497   const BasicBlock *BB = MBB->getBasicBlock();
14498   MachineFunction::iterator I = MBB;
14499   ++I;
14500
14501   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14502          "Unexpected number of operands");
14503
14504   assert(MI->hasOneMemOperand() &&
14505          "Expected atomic-load-op32 to have one memoperand");
14506
14507   // Memory Reference
14508   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14509   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14510
14511   unsigned DstLoReg, DstHiReg;
14512   unsigned SrcLoReg, SrcHiReg;
14513   unsigned MemOpndSlot;
14514
14515   unsigned CurOp = 0;
14516
14517   DstLoReg = MI->getOperand(CurOp++).getReg();
14518   DstHiReg = MI->getOperand(CurOp++).getReg();
14519   MemOpndSlot = CurOp;
14520   CurOp += X86::AddrNumOperands;
14521   SrcLoReg = MI->getOperand(CurOp++).getReg();
14522   SrcHiReg = MI->getOperand(CurOp++).getReg();
14523
14524   const TargetRegisterClass *RC = &X86::GR32RegClass;
14525   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14526
14527   unsigned t1L = MRI.createVirtualRegister(RC);
14528   unsigned t1H = MRI.createVirtualRegister(RC);
14529   unsigned t2L = MRI.createVirtualRegister(RC);
14530   unsigned t2H = MRI.createVirtualRegister(RC);
14531   unsigned t3L = MRI.createVirtualRegister(RC);
14532   unsigned t3H = MRI.createVirtualRegister(RC);
14533   unsigned t4L = MRI.createVirtualRegister(RC);
14534   unsigned t4H = MRI.createVirtualRegister(RC);
14535
14536   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14537   unsigned LOADOpc = X86::MOV32rm;
14538
14539   // For the atomic load-arith operator, we generate
14540   //
14541   //  thisMBB:
14542   //    t1L = LOAD [MI.addr + 0]
14543   //    t1H = LOAD [MI.addr + 4]
14544   //  mainMBB:
14545   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14546   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14547   //    t2L = OP MI.val.lo, t4L
14548   //    t2H = OP MI.val.hi, t4H
14549   //    EBX = t2L
14550   //    ECX = t2H
14551   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14552   //    t3L = EAX
14553   //    t3H = EDX
14554   //    JNE loop
14555   //  sinkMBB:
14556   //    dstL = t3L
14557   //    dstH = t3H
14558
14559   MachineBasicBlock *thisMBB = MBB;
14560   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14561   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14562   MF->insert(I, mainMBB);
14563   MF->insert(I, sinkMBB);
14564
14565   MachineInstrBuilder MIB;
14566
14567   // Transfer the remainder of BB and its successor edges to sinkMBB.
14568   sinkMBB->splice(sinkMBB->begin(), MBB,
14569                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14570   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14571
14572   // thisMBB:
14573   // Lo
14574   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14575   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14576     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14577     if (NewMO.isReg())
14578       NewMO.setIsKill(false);
14579     MIB.addOperand(NewMO);
14580   }
14581   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14582     unsigned flags = (*MMOI)->getFlags();
14583     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14584     MachineMemOperand *MMO =
14585       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14586                                (*MMOI)->getSize(),
14587                                (*MMOI)->getBaseAlignment(),
14588                                (*MMOI)->getTBAAInfo(),
14589                                (*MMOI)->getRanges());
14590     MIB.addMemOperand(MMO);
14591   };
14592   MachineInstr *LowMI = MIB;
14593
14594   // Hi
14595   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14596   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14597     if (i == X86::AddrDisp) {
14598       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14599     } else {
14600       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14601       if (NewMO.isReg())
14602         NewMO.setIsKill(false);
14603       MIB.addOperand(NewMO);
14604     }
14605   }
14606   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14607
14608   thisMBB->addSuccessor(mainMBB);
14609
14610   // mainMBB:
14611   MachineBasicBlock *origMainMBB = mainMBB;
14612
14613   // Add PHIs.
14614   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14615                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14616   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14617                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14618
14619   unsigned Opc = MI->getOpcode();
14620   switch (Opc) {
14621   default:
14622     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14623   case X86::ATOMAND6432:
14624   case X86::ATOMOR6432:
14625   case X86::ATOMXOR6432:
14626   case X86::ATOMADD6432:
14627   case X86::ATOMSUB6432: {
14628     unsigned HiOpc;
14629     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14630     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14631       .addReg(SrcLoReg);
14632     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14633       .addReg(SrcHiReg);
14634     break;
14635   }
14636   case X86::ATOMNAND6432: {
14637     unsigned HiOpc, NOTOpc;
14638     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14639     unsigned TmpL = MRI.createVirtualRegister(RC);
14640     unsigned TmpH = MRI.createVirtualRegister(RC);
14641     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14642       .addReg(t4L);
14643     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14644       .addReg(t4H);
14645     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14646     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14647     break;
14648   }
14649   case X86::ATOMMAX6432:
14650   case X86::ATOMMIN6432:
14651   case X86::ATOMUMAX6432:
14652   case X86::ATOMUMIN6432: {
14653     unsigned HiOpc;
14654     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14655     unsigned cL = MRI.createVirtualRegister(RC8);
14656     unsigned cH = MRI.createVirtualRegister(RC8);
14657     unsigned cL32 = MRI.createVirtualRegister(RC);
14658     unsigned cH32 = MRI.createVirtualRegister(RC);
14659     unsigned cc = MRI.createVirtualRegister(RC);
14660     // cl := cmp src_lo, lo
14661     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14662       .addReg(SrcLoReg).addReg(t4L);
14663     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14664     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14665     // ch := cmp src_hi, hi
14666     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14667       .addReg(SrcHiReg).addReg(t4H);
14668     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14669     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14670     // cc := if (src_hi == hi) ? cl : ch;
14671     if (Subtarget->hasCMov()) {
14672       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14673         .addReg(cH32).addReg(cL32);
14674     } else {
14675       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14676               .addReg(cH32).addReg(cL32)
14677               .addImm(X86::COND_E);
14678       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14679     }
14680     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14681     if (Subtarget->hasCMov()) {
14682       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14683         .addReg(SrcLoReg).addReg(t4L);
14684       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14685         .addReg(SrcHiReg).addReg(t4H);
14686     } else {
14687       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14688               .addReg(SrcLoReg).addReg(t4L)
14689               .addImm(X86::COND_NE);
14690       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14691       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14692       // 2nd CMOV lowering.
14693       mainMBB->addLiveIn(X86::EFLAGS);
14694       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14695               .addReg(SrcHiReg).addReg(t4H)
14696               .addImm(X86::COND_NE);
14697       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14698       // Replace the original PHI node as mainMBB is changed after CMOV
14699       // lowering.
14700       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14701         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14702       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14703         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14704       PhiL->eraseFromParent();
14705       PhiH->eraseFromParent();
14706     }
14707     break;
14708   }
14709   case X86::ATOMSWAP6432: {
14710     unsigned HiOpc;
14711     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14712     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14713     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14714     break;
14715   }
14716   }
14717
14718   // Copy EDX:EAX back from HiReg:LoReg
14719   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14720   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14721   // Copy ECX:EBX from t1H:t1L
14722   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14723   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14724
14725   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14726   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14727     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14728     if (NewMO.isReg())
14729       NewMO.setIsKill(false);
14730     MIB.addOperand(NewMO);
14731   }
14732   MIB.setMemRefs(MMOBegin, MMOEnd);
14733
14734   // Copy EDX:EAX back to t3H:t3L
14735   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14736   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14737
14738   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14739
14740   mainMBB->addSuccessor(origMainMBB);
14741   mainMBB->addSuccessor(sinkMBB);
14742
14743   // sinkMBB:
14744   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14745           TII->get(TargetOpcode::COPY), DstLoReg)
14746     .addReg(t3L);
14747   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14748           TII->get(TargetOpcode::COPY), DstHiReg)
14749     .addReg(t3H);
14750
14751   MI->eraseFromParent();
14752   return sinkMBB;
14753 }
14754
14755 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14756 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14757 // in the .td file.
14758 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14759                                        const TargetInstrInfo *TII) {
14760   unsigned Opc;
14761   switch (MI->getOpcode()) {
14762   default: llvm_unreachable("illegal opcode!");
14763   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14764   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14765   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14766   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14767   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14768   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14769   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14770   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14771   }
14772
14773   DebugLoc dl = MI->getDebugLoc();
14774   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14775
14776   unsigned NumArgs = MI->getNumOperands();
14777   for (unsigned i = 1; i < NumArgs; ++i) {
14778     MachineOperand &Op = MI->getOperand(i);
14779     if (!(Op.isReg() && Op.isImplicit()))
14780       MIB.addOperand(Op);
14781   }
14782   if (MI->hasOneMemOperand())
14783     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14784
14785   BuildMI(*BB, MI, dl,
14786     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14787     .addReg(X86::XMM0);
14788
14789   MI->eraseFromParent();
14790   return BB;
14791 }
14792
14793 // FIXME: Custom handling because TableGen doesn't support multiple implicit
14794 // defs in an instruction pattern
14795 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14796                                        const TargetInstrInfo *TII) {
14797   unsigned Opc;
14798   switch (MI->getOpcode()) {
14799   default: llvm_unreachable("illegal opcode!");
14800   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
14801   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14802   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
14803   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14804   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
14805   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14806   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
14807   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
14808   }
14809
14810   DebugLoc dl = MI->getDebugLoc();
14811   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14812
14813   unsigned NumArgs = MI->getNumOperands(); // remove the results
14814   for (unsigned i = 1; i < NumArgs; ++i) {
14815     MachineOperand &Op = MI->getOperand(i);
14816     if (!(Op.isReg() && Op.isImplicit()))
14817       MIB.addOperand(Op);
14818   }
14819   if (MI->hasOneMemOperand())
14820     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14821
14822   BuildMI(*BB, MI, dl,
14823     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14824     .addReg(X86::ECX);
14825
14826   MI->eraseFromParent();
14827   return BB;
14828 }
14829
14830 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14831                                        const TargetInstrInfo *TII,
14832                                        const X86Subtarget* Subtarget) {
14833   DebugLoc dl = MI->getDebugLoc();
14834
14835   // Address into RAX/EAX, other two args into ECX, EDX.
14836   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14837   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14838   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14839   for (int i = 0; i < X86::AddrNumOperands; ++i)
14840     MIB.addOperand(MI->getOperand(i));
14841
14842   unsigned ValOps = X86::AddrNumOperands;
14843   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14844     .addReg(MI->getOperand(ValOps).getReg());
14845   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14846     .addReg(MI->getOperand(ValOps+1).getReg());
14847
14848   // The instruction doesn't actually take any operands though.
14849   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
14850
14851   MI->eraseFromParent(); // The pseudo is gone now.
14852   return BB;
14853 }
14854
14855 MachineBasicBlock *
14856 X86TargetLowering::EmitVAARG64WithCustomInserter(
14857                    MachineInstr *MI,
14858                    MachineBasicBlock *MBB) const {
14859   // Emit va_arg instruction on X86-64.
14860
14861   // Operands to this pseudo-instruction:
14862   // 0  ) Output        : destination address (reg)
14863   // 1-5) Input         : va_list address (addr, i64mem)
14864   // 6  ) ArgSize       : Size (in bytes) of vararg type
14865   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14866   // 8  ) Align         : Alignment of type
14867   // 9  ) EFLAGS (implicit-def)
14868
14869   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14870   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14871
14872   unsigned DestReg = MI->getOperand(0).getReg();
14873   MachineOperand &Base = MI->getOperand(1);
14874   MachineOperand &Scale = MI->getOperand(2);
14875   MachineOperand &Index = MI->getOperand(3);
14876   MachineOperand &Disp = MI->getOperand(4);
14877   MachineOperand &Segment = MI->getOperand(5);
14878   unsigned ArgSize = MI->getOperand(6).getImm();
14879   unsigned ArgMode = MI->getOperand(7).getImm();
14880   unsigned Align = MI->getOperand(8).getImm();
14881
14882   // Memory Reference
14883   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14884   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14885   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14886
14887   // Machine Information
14888   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14889   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14890   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14891   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14892   DebugLoc DL = MI->getDebugLoc();
14893
14894   // struct va_list {
14895   //   i32   gp_offset
14896   //   i32   fp_offset
14897   //   i64   overflow_area (address)
14898   //   i64   reg_save_area (address)
14899   // }
14900   // sizeof(va_list) = 24
14901   // alignment(va_list) = 8
14902
14903   unsigned TotalNumIntRegs = 6;
14904   unsigned TotalNumXMMRegs = 8;
14905   bool UseGPOffset = (ArgMode == 1);
14906   bool UseFPOffset = (ArgMode == 2);
14907   unsigned MaxOffset = TotalNumIntRegs * 8 +
14908                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14909
14910   /* Align ArgSize to a multiple of 8 */
14911   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14912   bool NeedsAlign = (Align > 8);
14913
14914   MachineBasicBlock *thisMBB = MBB;
14915   MachineBasicBlock *overflowMBB;
14916   MachineBasicBlock *offsetMBB;
14917   MachineBasicBlock *endMBB;
14918
14919   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
14920   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
14921   unsigned OffsetReg = 0;
14922
14923   if (!UseGPOffset && !UseFPOffset) {
14924     // If we only pull from the overflow region, we don't create a branch.
14925     // We don't need to alter control flow.
14926     OffsetDestReg = 0; // unused
14927     OverflowDestReg = DestReg;
14928
14929     offsetMBB = NULL;
14930     overflowMBB = thisMBB;
14931     endMBB = thisMBB;
14932   } else {
14933     // First emit code to check if gp_offset (or fp_offset) is below the bound.
14934     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14935     // If not, pull from overflow_area. (branch to overflowMBB)
14936     //
14937     //       thisMBB
14938     //         |     .
14939     //         |        .
14940     //     offsetMBB   overflowMBB
14941     //         |        .
14942     //         |     .
14943     //        endMBB
14944
14945     // Registers for the PHI in endMBB
14946     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14947     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14948
14949     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14950     MachineFunction *MF = MBB->getParent();
14951     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14952     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14953     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14954
14955     MachineFunction::iterator MBBIter = MBB;
14956     ++MBBIter;
14957
14958     // Insert the new basic blocks
14959     MF->insert(MBBIter, offsetMBB);
14960     MF->insert(MBBIter, overflowMBB);
14961     MF->insert(MBBIter, endMBB);
14962
14963     // Transfer the remainder of MBB and its successor edges to endMBB.
14964     endMBB->splice(endMBB->begin(), thisMBB,
14965                     llvm::next(MachineBasicBlock::iterator(MI)),
14966                     thisMBB->end());
14967     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14968
14969     // Make offsetMBB and overflowMBB successors of thisMBB
14970     thisMBB->addSuccessor(offsetMBB);
14971     thisMBB->addSuccessor(overflowMBB);
14972
14973     // endMBB is a successor of both offsetMBB and overflowMBB
14974     offsetMBB->addSuccessor(endMBB);
14975     overflowMBB->addSuccessor(endMBB);
14976
14977     // Load the offset value into a register
14978     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14979     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14980       .addOperand(Base)
14981       .addOperand(Scale)
14982       .addOperand(Index)
14983       .addDisp(Disp, UseFPOffset ? 4 : 0)
14984       .addOperand(Segment)
14985       .setMemRefs(MMOBegin, MMOEnd);
14986
14987     // Check if there is enough room left to pull this argument.
14988     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14989       .addReg(OffsetReg)
14990       .addImm(MaxOffset + 8 - ArgSizeA8);
14991
14992     // Branch to "overflowMBB" if offset >= max
14993     // Fall through to "offsetMBB" otherwise
14994     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14995       .addMBB(overflowMBB);
14996   }
14997
14998   // In offsetMBB, emit code to use the reg_save_area.
14999   if (offsetMBB) {
15000     assert(OffsetReg != 0);
15001
15002     // Read the reg_save_area address.
15003     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15004     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15005       .addOperand(Base)
15006       .addOperand(Scale)
15007       .addOperand(Index)
15008       .addDisp(Disp, 16)
15009       .addOperand(Segment)
15010       .setMemRefs(MMOBegin, MMOEnd);
15011
15012     // Zero-extend the offset
15013     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15014       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15015         .addImm(0)
15016         .addReg(OffsetReg)
15017         .addImm(X86::sub_32bit);
15018
15019     // Add the offset to the reg_save_area to get the final address.
15020     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15021       .addReg(OffsetReg64)
15022       .addReg(RegSaveReg);
15023
15024     // Compute the offset for the next argument
15025     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15026     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15027       .addReg(OffsetReg)
15028       .addImm(UseFPOffset ? 16 : 8);
15029
15030     // Store it back into the va_list.
15031     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15032       .addOperand(Base)
15033       .addOperand(Scale)
15034       .addOperand(Index)
15035       .addDisp(Disp, UseFPOffset ? 4 : 0)
15036       .addOperand(Segment)
15037       .addReg(NextOffsetReg)
15038       .setMemRefs(MMOBegin, MMOEnd);
15039
15040     // Jump to endMBB
15041     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15042       .addMBB(endMBB);
15043   }
15044
15045   //
15046   // Emit code to use overflow area
15047   //
15048
15049   // Load the overflow_area address into a register.
15050   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15051   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15052     .addOperand(Base)
15053     .addOperand(Scale)
15054     .addOperand(Index)
15055     .addDisp(Disp, 8)
15056     .addOperand(Segment)
15057     .setMemRefs(MMOBegin, MMOEnd);
15058
15059   // If we need to align it, do so. Otherwise, just copy the address
15060   // to OverflowDestReg.
15061   if (NeedsAlign) {
15062     // Align the overflow address
15063     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15064     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15065
15066     // aligned_addr = (addr + (align-1)) & ~(align-1)
15067     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15068       .addReg(OverflowAddrReg)
15069       .addImm(Align-1);
15070
15071     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15072       .addReg(TmpReg)
15073       .addImm(~(uint64_t)(Align-1));
15074   } else {
15075     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15076       .addReg(OverflowAddrReg);
15077   }
15078
15079   // Compute the next overflow address after this argument.
15080   // (the overflow address should be kept 8-byte aligned)
15081   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15082   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15083     .addReg(OverflowDestReg)
15084     .addImm(ArgSizeA8);
15085
15086   // Store the new overflow address.
15087   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15088     .addOperand(Base)
15089     .addOperand(Scale)
15090     .addOperand(Index)
15091     .addDisp(Disp, 8)
15092     .addOperand(Segment)
15093     .addReg(NextAddrReg)
15094     .setMemRefs(MMOBegin, MMOEnd);
15095
15096   // If we branched, emit the PHI to the front of endMBB.
15097   if (offsetMBB) {
15098     BuildMI(*endMBB, endMBB->begin(), DL,
15099             TII->get(X86::PHI), DestReg)
15100       .addReg(OffsetDestReg).addMBB(offsetMBB)
15101       .addReg(OverflowDestReg).addMBB(overflowMBB);
15102   }
15103
15104   // Erase the pseudo instruction
15105   MI->eraseFromParent();
15106
15107   return endMBB;
15108 }
15109
15110 MachineBasicBlock *
15111 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15112                                                  MachineInstr *MI,
15113                                                  MachineBasicBlock *MBB) const {
15114   // Emit code to save XMM registers to the stack. The ABI says that the
15115   // number of registers to save is given in %al, so it's theoretically
15116   // possible to do an indirect jump trick to avoid saving all of them,
15117   // however this code takes a simpler approach and just executes all
15118   // of the stores if %al is non-zero. It's less code, and it's probably
15119   // easier on the hardware branch predictor, and stores aren't all that
15120   // expensive anyway.
15121
15122   // Create the new basic blocks. One block contains all the XMM stores,
15123   // and one block is the final destination regardless of whether any
15124   // stores were performed.
15125   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15126   MachineFunction *F = MBB->getParent();
15127   MachineFunction::iterator MBBIter = MBB;
15128   ++MBBIter;
15129   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15130   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15131   F->insert(MBBIter, XMMSaveMBB);
15132   F->insert(MBBIter, EndMBB);
15133
15134   // Transfer the remainder of MBB and its successor edges to EndMBB.
15135   EndMBB->splice(EndMBB->begin(), MBB,
15136                  llvm::next(MachineBasicBlock::iterator(MI)),
15137                  MBB->end());
15138   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15139
15140   // The original block will now fall through to the XMM save block.
15141   MBB->addSuccessor(XMMSaveMBB);
15142   // The XMMSaveMBB will fall through to the end block.
15143   XMMSaveMBB->addSuccessor(EndMBB);
15144
15145   // Now add the instructions.
15146   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15147   DebugLoc DL = MI->getDebugLoc();
15148
15149   unsigned CountReg = MI->getOperand(0).getReg();
15150   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15151   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15152
15153   if (!Subtarget->isTargetWin64()) {
15154     // If %al is 0, branch around the XMM save block.
15155     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15156     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15157     MBB->addSuccessor(EndMBB);
15158   }
15159
15160   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15161   // In the XMM save block, save all the XMM argument registers.
15162   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15163     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15164     MachineMemOperand *MMO =
15165       F->getMachineMemOperand(
15166           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15167         MachineMemOperand::MOStore,
15168         /*Size=*/16, /*Align=*/16);
15169     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15170       .addFrameIndex(RegSaveFrameIndex)
15171       .addImm(/*Scale=*/1)
15172       .addReg(/*IndexReg=*/0)
15173       .addImm(/*Disp=*/Offset)
15174       .addReg(/*Segment=*/0)
15175       .addReg(MI->getOperand(i).getReg())
15176       .addMemOperand(MMO);
15177   }
15178
15179   MI->eraseFromParent();   // The pseudo instruction is gone now.
15180
15181   return EndMBB;
15182 }
15183
15184 // The EFLAGS operand of SelectItr might be missing a kill marker
15185 // because there were multiple uses of EFLAGS, and ISel didn't know
15186 // which to mark. Figure out whether SelectItr should have had a
15187 // kill marker, and set it if it should. Returns the correct kill
15188 // marker value.
15189 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15190                                      MachineBasicBlock* BB,
15191                                      const TargetRegisterInfo* TRI) {
15192   // Scan forward through BB for a use/def of EFLAGS.
15193   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15194   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15195     const MachineInstr& mi = *miI;
15196     if (mi.readsRegister(X86::EFLAGS))
15197       return false;
15198     if (mi.definesRegister(X86::EFLAGS))
15199       break; // Should have kill-flag - update below.
15200   }
15201
15202   // If we hit the end of the block, check whether EFLAGS is live into a
15203   // successor.
15204   if (miI == BB->end()) {
15205     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15206                                           sEnd = BB->succ_end();
15207          sItr != sEnd; ++sItr) {
15208       MachineBasicBlock* succ = *sItr;
15209       if (succ->isLiveIn(X86::EFLAGS))
15210         return false;
15211     }
15212   }
15213
15214   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15215   // out. SelectMI should have a kill flag on EFLAGS.
15216   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15217   return true;
15218 }
15219
15220 MachineBasicBlock *
15221 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15222                                      MachineBasicBlock *BB) const {
15223   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15224   DebugLoc DL = MI->getDebugLoc();
15225
15226   // To "insert" a SELECT_CC instruction, we actually have to insert the
15227   // diamond control-flow pattern.  The incoming instruction knows the
15228   // destination vreg to set, the condition code register to branch on, the
15229   // true/false values to select between, and a branch opcode to use.
15230   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15231   MachineFunction::iterator It = BB;
15232   ++It;
15233
15234   //  thisMBB:
15235   //  ...
15236   //   TrueVal = ...
15237   //   cmpTY ccX, r1, r2
15238   //   bCC copy1MBB
15239   //   fallthrough --> copy0MBB
15240   MachineBasicBlock *thisMBB = BB;
15241   MachineFunction *F = BB->getParent();
15242   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15243   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15244   F->insert(It, copy0MBB);
15245   F->insert(It, sinkMBB);
15246
15247   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15248   // live into the sink and copy blocks.
15249   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15250   if (!MI->killsRegister(X86::EFLAGS) &&
15251       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15252     copy0MBB->addLiveIn(X86::EFLAGS);
15253     sinkMBB->addLiveIn(X86::EFLAGS);
15254   }
15255
15256   // Transfer the remainder of BB and its successor edges to sinkMBB.
15257   sinkMBB->splice(sinkMBB->begin(), BB,
15258                   llvm::next(MachineBasicBlock::iterator(MI)),
15259                   BB->end());
15260   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15261
15262   // Add the true and fallthrough blocks as its successors.
15263   BB->addSuccessor(copy0MBB);
15264   BB->addSuccessor(sinkMBB);
15265
15266   // Create the conditional branch instruction.
15267   unsigned Opc =
15268     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15269   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15270
15271   //  copy0MBB:
15272   //   %FalseValue = ...
15273   //   # fallthrough to sinkMBB
15274   copy0MBB->addSuccessor(sinkMBB);
15275
15276   //  sinkMBB:
15277   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15278   //  ...
15279   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15280           TII->get(X86::PHI), MI->getOperand(0).getReg())
15281     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15282     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15283
15284   MI->eraseFromParent();   // The pseudo instruction is gone now.
15285   return sinkMBB;
15286 }
15287
15288 MachineBasicBlock *
15289 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15290                                         bool Is64Bit) const {
15291   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15292   DebugLoc DL = MI->getDebugLoc();
15293   MachineFunction *MF = BB->getParent();
15294   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15295
15296   assert(getTargetMachine().Options.EnableSegmentedStacks);
15297
15298   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15299   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15300
15301   // BB:
15302   //  ... [Till the alloca]
15303   // If stacklet is not large enough, jump to mallocMBB
15304   //
15305   // bumpMBB:
15306   //  Allocate by subtracting from RSP
15307   //  Jump to continueMBB
15308   //
15309   // mallocMBB:
15310   //  Allocate by call to runtime
15311   //
15312   // continueMBB:
15313   //  ...
15314   //  [rest of original BB]
15315   //
15316
15317   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15318   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15319   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15320
15321   MachineRegisterInfo &MRI = MF->getRegInfo();
15322   const TargetRegisterClass *AddrRegClass =
15323     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15324
15325   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15326     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15327     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15328     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15329     sizeVReg = MI->getOperand(1).getReg(),
15330     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15331
15332   MachineFunction::iterator MBBIter = BB;
15333   ++MBBIter;
15334
15335   MF->insert(MBBIter, bumpMBB);
15336   MF->insert(MBBIter, mallocMBB);
15337   MF->insert(MBBIter, continueMBB);
15338
15339   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15340                       (MachineBasicBlock::iterator(MI)), BB->end());
15341   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15342
15343   // Add code to the main basic block to check if the stack limit has been hit,
15344   // and if so, jump to mallocMBB otherwise to bumpMBB.
15345   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15346   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15347     .addReg(tmpSPVReg).addReg(sizeVReg);
15348   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15349     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15350     .addReg(SPLimitVReg);
15351   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15352
15353   // bumpMBB simply decreases the stack pointer, since we know the current
15354   // stacklet has enough space.
15355   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15356     .addReg(SPLimitVReg);
15357   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15358     .addReg(SPLimitVReg);
15359   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15360
15361   // Calls into a routine in libgcc to allocate more space from the heap.
15362   const uint32_t *RegMask =
15363     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15364   if (Is64Bit) {
15365     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15366       .addReg(sizeVReg);
15367     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15368       .addExternalSymbol("__morestack_allocate_stack_space")
15369       .addRegMask(RegMask)
15370       .addReg(X86::RDI, RegState::Implicit)
15371       .addReg(X86::RAX, RegState::ImplicitDefine);
15372   } else {
15373     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15374       .addImm(12);
15375     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15376     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15377       .addExternalSymbol("__morestack_allocate_stack_space")
15378       .addRegMask(RegMask)
15379       .addReg(X86::EAX, RegState::ImplicitDefine);
15380   }
15381
15382   if (!Is64Bit)
15383     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15384       .addImm(16);
15385
15386   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15387     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15388   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15389
15390   // Set up the CFG correctly.
15391   BB->addSuccessor(bumpMBB);
15392   BB->addSuccessor(mallocMBB);
15393   mallocMBB->addSuccessor(continueMBB);
15394   bumpMBB->addSuccessor(continueMBB);
15395
15396   // Take care of the PHI nodes.
15397   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15398           MI->getOperand(0).getReg())
15399     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15400     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15401
15402   // Delete the original pseudo instruction.
15403   MI->eraseFromParent();
15404
15405   // And we're done.
15406   return continueMBB;
15407 }
15408
15409 MachineBasicBlock *
15410 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15411                                           MachineBasicBlock *BB) const {
15412   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15413   DebugLoc DL = MI->getDebugLoc();
15414
15415   assert(!Subtarget->isTargetEnvMacho());
15416
15417   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15418   // non-trivial part is impdef of ESP.
15419
15420   if (Subtarget->isTargetWin64()) {
15421     if (Subtarget->isTargetCygMing()) {
15422       // ___chkstk(Mingw64):
15423       // Clobbers R10, R11, RAX and EFLAGS.
15424       // Updates RSP.
15425       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15426         .addExternalSymbol("___chkstk")
15427         .addReg(X86::RAX, RegState::Implicit)
15428         .addReg(X86::RSP, RegState::Implicit)
15429         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15430         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15431         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15432     } else {
15433       // __chkstk(MSVCRT): does not update stack pointer.
15434       // Clobbers R10, R11 and EFLAGS.
15435       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15436         .addExternalSymbol("__chkstk")
15437         .addReg(X86::RAX, RegState::Implicit)
15438         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15439       // RAX has the offset to be subtracted from RSP.
15440       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15441         .addReg(X86::RSP)
15442         .addReg(X86::RAX);
15443     }
15444   } else {
15445     const char *StackProbeSymbol =
15446       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15447
15448     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15449       .addExternalSymbol(StackProbeSymbol)
15450       .addReg(X86::EAX, RegState::Implicit)
15451       .addReg(X86::ESP, RegState::Implicit)
15452       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15453       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15454       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15455   }
15456
15457   MI->eraseFromParent();   // The pseudo instruction is gone now.
15458   return BB;
15459 }
15460
15461 MachineBasicBlock *
15462 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15463                                       MachineBasicBlock *BB) const {
15464   // This is pretty easy.  We're taking the value that we received from
15465   // our load from the relocation, sticking it in either RDI (x86-64)
15466   // or EAX and doing an indirect call.  The return value will then
15467   // be in the normal return register.
15468   const X86InstrInfo *TII
15469     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15470   DebugLoc DL = MI->getDebugLoc();
15471   MachineFunction *F = BB->getParent();
15472
15473   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15474   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15475
15476   // Get a register mask for the lowered call.
15477   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15478   // proper register mask.
15479   const uint32_t *RegMask =
15480     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15481   if (Subtarget->is64Bit()) {
15482     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15483                                       TII->get(X86::MOV64rm), X86::RDI)
15484     .addReg(X86::RIP)
15485     .addImm(0).addReg(0)
15486     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15487                       MI->getOperand(3).getTargetFlags())
15488     .addReg(0);
15489     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15490     addDirectMem(MIB, X86::RDI);
15491     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15492   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15493     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15494                                       TII->get(X86::MOV32rm), X86::EAX)
15495     .addReg(0)
15496     .addImm(0).addReg(0)
15497     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15498                       MI->getOperand(3).getTargetFlags())
15499     .addReg(0);
15500     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15501     addDirectMem(MIB, X86::EAX);
15502     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15503   } else {
15504     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15505                                       TII->get(X86::MOV32rm), X86::EAX)
15506     .addReg(TII->getGlobalBaseReg(F))
15507     .addImm(0).addReg(0)
15508     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15509                       MI->getOperand(3).getTargetFlags())
15510     .addReg(0);
15511     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15512     addDirectMem(MIB, X86::EAX);
15513     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15514   }
15515
15516   MI->eraseFromParent(); // The pseudo instruction is gone now.
15517   return BB;
15518 }
15519
15520 MachineBasicBlock *
15521 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15522                                     MachineBasicBlock *MBB) const {
15523   DebugLoc DL = MI->getDebugLoc();
15524   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15525
15526   MachineFunction *MF = MBB->getParent();
15527   MachineRegisterInfo &MRI = MF->getRegInfo();
15528
15529   const BasicBlock *BB = MBB->getBasicBlock();
15530   MachineFunction::iterator I = MBB;
15531   ++I;
15532
15533   // Memory Reference
15534   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15535   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15536
15537   unsigned DstReg;
15538   unsigned MemOpndSlot = 0;
15539
15540   unsigned CurOp = 0;
15541
15542   DstReg = MI->getOperand(CurOp++).getReg();
15543   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15544   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15545   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15546   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15547
15548   MemOpndSlot = CurOp;
15549
15550   MVT PVT = getPointerTy();
15551   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15552          "Invalid Pointer Size!");
15553
15554   // For v = setjmp(buf), we generate
15555   //
15556   // thisMBB:
15557   //  buf[LabelOffset] = restoreMBB
15558   //  SjLjSetup restoreMBB
15559   //
15560   // mainMBB:
15561   //  v_main = 0
15562   //
15563   // sinkMBB:
15564   //  v = phi(main, restore)
15565   //
15566   // restoreMBB:
15567   //  v_restore = 1
15568
15569   MachineBasicBlock *thisMBB = MBB;
15570   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15571   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15572   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15573   MF->insert(I, mainMBB);
15574   MF->insert(I, sinkMBB);
15575   MF->push_back(restoreMBB);
15576
15577   MachineInstrBuilder MIB;
15578
15579   // Transfer the remainder of BB and its successor edges to sinkMBB.
15580   sinkMBB->splice(sinkMBB->begin(), MBB,
15581                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15582   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15583
15584   // thisMBB:
15585   unsigned PtrStoreOpc = 0;
15586   unsigned LabelReg = 0;
15587   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15588   Reloc::Model RM = getTargetMachine().getRelocationModel();
15589   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15590                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15591
15592   // Prepare IP either in reg or imm.
15593   if (!UseImmLabel) {
15594     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15595     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15596     LabelReg = MRI.createVirtualRegister(PtrRC);
15597     if (Subtarget->is64Bit()) {
15598       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15599               .addReg(X86::RIP)
15600               .addImm(0)
15601               .addReg(0)
15602               .addMBB(restoreMBB)
15603               .addReg(0);
15604     } else {
15605       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15606       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15607               .addReg(XII->getGlobalBaseReg(MF))
15608               .addImm(0)
15609               .addReg(0)
15610               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15611               .addReg(0);
15612     }
15613   } else
15614     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15615   // Store IP
15616   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15617   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15618     if (i == X86::AddrDisp)
15619       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15620     else
15621       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15622   }
15623   if (!UseImmLabel)
15624     MIB.addReg(LabelReg);
15625   else
15626     MIB.addMBB(restoreMBB);
15627   MIB.setMemRefs(MMOBegin, MMOEnd);
15628   // Setup
15629   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15630           .addMBB(restoreMBB);
15631
15632   const X86RegisterInfo *RegInfo =
15633     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15634   MIB.addRegMask(RegInfo->getNoPreservedMask());
15635   thisMBB->addSuccessor(mainMBB);
15636   thisMBB->addSuccessor(restoreMBB);
15637
15638   // mainMBB:
15639   //  EAX = 0
15640   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15641   mainMBB->addSuccessor(sinkMBB);
15642
15643   // sinkMBB:
15644   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15645           TII->get(X86::PHI), DstReg)
15646     .addReg(mainDstReg).addMBB(mainMBB)
15647     .addReg(restoreDstReg).addMBB(restoreMBB);
15648
15649   // restoreMBB:
15650   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15651   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15652   restoreMBB->addSuccessor(sinkMBB);
15653
15654   MI->eraseFromParent();
15655   return sinkMBB;
15656 }
15657
15658 MachineBasicBlock *
15659 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15660                                      MachineBasicBlock *MBB) const {
15661   DebugLoc DL = MI->getDebugLoc();
15662   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15663
15664   MachineFunction *MF = MBB->getParent();
15665   MachineRegisterInfo &MRI = MF->getRegInfo();
15666
15667   // Memory Reference
15668   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15669   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15670
15671   MVT PVT = getPointerTy();
15672   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15673          "Invalid Pointer Size!");
15674
15675   const TargetRegisterClass *RC =
15676     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15677   unsigned Tmp = MRI.createVirtualRegister(RC);
15678   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15679   const X86RegisterInfo *RegInfo =
15680     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15681   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15682   unsigned SP = RegInfo->getStackRegister();
15683
15684   MachineInstrBuilder MIB;
15685
15686   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15687   const int64_t SPOffset = 2 * PVT.getStoreSize();
15688
15689   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15690   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15691
15692   // Reload FP
15693   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15694   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15695     MIB.addOperand(MI->getOperand(i));
15696   MIB.setMemRefs(MMOBegin, MMOEnd);
15697   // Reload IP
15698   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15699   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15700     if (i == X86::AddrDisp)
15701       MIB.addDisp(MI->getOperand(i), LabelOffset);
15702     else
15703       MIB.addOperand(MI->getOperand(i));
15704   }
15705   MIB.setMemRefs(MMOBegin, MMOEnd);
15706   // Reload SP
15707   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15708   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15709     if (i == X86::AddrDisp)
15710       MIB.addDisp(MI->getOperand(i), SPOffset);
15711     else
15712       MIB.addOperand(MI->getOperand(i));
15713   }
15714   MIB.setMemRefs(MMOBegin, MMOEnd);
15715   // Jump
15716   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15717
15718   MI->eraseFromParent();
15719   return MBB;
15720 }
15721
15722 MachineBasicBlock *
15723 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15724                                                MachineBasicBlock *BB) const {
15725   switch (MI->getOpcode()) {
15726   default: llvm_unreachable("Unexpected instr type to insert");
15727   case X86::TAILJMPd64:
15728   case X86::TAILJMPr64:
15729   case X86::TAILJMPm64:
15730     llvm_unreachable("TAILJMP64 would not be touched here.");
15731   case X86::TCRETURNdi64:
15732   case X86::TCRETURNri64:
15733   case X86::TCRETURNmi64:
15734     return BB;
15735   case X86::WIN_ALLOCA:
15736     return EmitLoweredWinAlloca(MI, BB);
15737   case X86::SEG_ALLOCA_32:
15738     return EmitLoweredSegAlloca(MI, BB, false);
15739   case X86::SEG_ALLOCA_64:
15740     return EmitLoweredSegAlloca(MI, BB, true);
15741   case X86::TLSCall_32:
15742   case X86::TLSCall_64:
15743     return EmitLoweredTLSCall(MI, BB);
15744   case X86::CMOV_GR8:
15745   case X86::CMOV_FR32:
15746   case X86::CMOV_FR64:
15747   case X86::CMOV_V4F32:
15748   case X86::CMOV_V2F64:
15749   case X86::CMOV_V2I64:
15750   case X86::CMOV_V8F32:
15751   case X86::CMOV_V4F64:
15752   case X86::CMOV_V4I64:
15753   case X86::CMOV_V16F32:
15754   case X86::CMOV_V8F64:
15755   case X86::CMOV_V8I64:
15756   case X86::CMOV_GR16:
15757   case X86::CMOV_GR32:
15758   case X86::CMOV_RFP32:
15759   case X86::CMOV_RFP64:
15760   case X86::CMOV_RFP80:
15761     return EmitLoweredSelect(MI, BB);
15762
15763   case X86::FP32_TO_INT16_IN_MEM:
15764   case X86::FP32_TO_INT32_IN_MEM:
15765   case X86::FP32_TO_INT64_IN_MEM:
15766   case X86::FP64_TO_INT16_IN_MEM:
15767   case X86::FP64_TO_INT32_IN_MEM:
15768   case X86::FP64_TO_INT64_IN_MEM:
15769   case X86::FP80_TO_INT16_IN_MEM:
15770   case X86::FP80_TO_INT32_IN_MEM:
15771   case X86::FP80_TO_INT64_IN_MEM: {
15772     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15773     DebugLoc DL = MI->getDebugLoc();
15774
15775     // Change the floating point control register to use "round towards zero"
15776     // mode when truncating to an integer value.
15777     MachineFunction *F = BB->getParent();
15778     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
15779     addFrameReference(BuildMI(*BB, MI, DL,
15780                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
15781
15782     // Load the old value of the high byte of the control word...
15783     unsigned OldCW =
15784       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
15785     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
15786                       CWFrameIdx);
15787
15788     // Set the high part to be round to zero...
15789     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
15790       .addImm(0xC7F);
15791
15792     // Reload the modified control word now...
15793     addFrameReference(BuildMI(*BB, MI, DL,
15794                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15795
15796     // Restore the memory image of control word to original value
15797     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
15798       .addReg(OldCW);
15799
15800     // Get the X86 opcode to use.
15801     unsigned Opc;
15802     switch (MI->getOpcode()) {
15803     default: llvm_unreachable("illegal opcode!");
15804     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15805     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15806     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15807     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15808     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15809     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
15810     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15811     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15812     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
15813     }
15814
15815     X86AddressMode AM;
15816     MachineOperand &Op = MI->getOperand(0);
15817     if (Op.isReg()) {
15818       AM.BaseType = X86AddressMode::RegBase;
15819       AM.Base.Reg = Op.getReg();
15820     } else {
15821       AM.BaseType = X86AddressMode::FrameIndexBase;
15822       AM.Base.FrameIndex = Op.getIndex();
15823     }
15824     Op = MI->getOperand(1);
15825     if (Op.isImm())
15826       AM.Scale = Op.getImm();
15827     Op = MI->getOperand(2);
15828     if (Op.isImm())
15829       AM.IndexReg = Op.getImm();
15830     Op = MI->getOperand(3);
15831     if (Op.isGlobal()) {
15832       AM.GV = Op.getGlobal();
15833     } else {
15834       AM.Disp = Op.getImm();
15835     }
15836     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
15837                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
15838
15839     // Reload the original control word now.
15840     addFrameReference(BuildMI(*BB, MI, DL,
15841                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15842
15843     MI->eraseFromParent();   // The pseudo instruction is gone now.
15844     return BB;
15845   }
15846     // String/text processing lowering.
15847   case X86::PCMPISTRM128REG:
15848   case X86::VPCMPISTRM128REG:
15849   case X86::PCMPISTRM128MEM:
15850   case X86::VPCMPISTRM128MEM:
15851   case X86::PCMPESTRM128REG:
15852   case X86::VPCMPESTRM128REG:
15853   case X86::PCMPESTRM128MEM:
15854   case X86::VPCMPESTRM128MEM:
15855     assert(Subtarget->hasSSE42() &&
15856            "Target must have SSE4.2 or AVX features enabled");
15857     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
15858
15859   // String/text processing lowering.
15860   case X86::PCMPISTRIREG:
15861   case X86::VPCMPISTRIREG:
15862   case X86::PCMPISTRIMEM:
15863   case X86::VPCMPISTRIMEM:
15864   case X86::PCMPESTRIREG:
15865   case X86::VPCMPESTRIREG:
15866   case X86::PCMPESTRIMEM:
15867   case X86::VPCMPESTRIMEM:
15868     assert(Subtarget->hasSSE42() &&
15869            "Target must have SSE4.2 or AVX features enabled");
15870     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
15871
15872   // Thread synchronization.
15873   case X86::MONITOR:
15874     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
15875
15876   // xbegin
15877   case X86::XBEGIN:
15878     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
15879
15880   // Atomic Lowering.
15881   case X86::ATOMAND8:
15882   case X86::ATOMAND16:
15883   case X86::ATOMAND32:
15884   case X86::ATOMAND64:
15885     // Fall through
15886   case X86::ATOMOR8:
15887   case X86::ATOMOR16:
15888   case X86::ATOMOR32:
15889   case X86::ATOMOR64:
15890     // Fall through
15891   case X86::ATOMXOR16:
15892   case X86::ATOMXOR8:
15893   case X86::ATOMXOR32:
15894   case X86::ATOMXOR64:
15895     // Fall through
15896   case X86::ATOMNAND8:
15897   case X86::ATOMNAND16:
15898   case X86::ATOMNAND32:
15899   case X86::ATOMNAND64:
15900     // Fall through
15901   case X86::ATOMMAX8:
15902   case X86::ATOMMAX16:
15903   case X86::ATOMMAX32:
15904   case X86::ATOMMAX64:
15905     // Fall through
15906   case X86::ATOMMIN8:
15907   case X86::ATOMMIN16:
15908   case X86::ATOMMIN32:
15909   case X86::ATOMMIN64:
15910     // Fall through
15911   case X86::ATOMUMAX8:
15912   case X86::ATOMUMAX16:
15913   case X86::ATOMUMAX32:
15914   case X86::ATOMUMAX64:
15915     // Fall through
15916   case X86::ATOMUMIN8:
15917   case X86::ATOMUMIN16:
15918   case X86::ATOMUMIN32:
15919   case X86::ATOMUMIN64:
15920     return EmitAtomicLoadArith(MI, BB);
15921
15922   // This group does 64-bit operations on a 32-bit host.
15923   case X86::ATOMAND6432:
15924   case X86::ATOMOR6432:
15925   case X86::ATOMXOR6432:
15926   case X86::ATOMNAND6432:
15927   case X86::ATOMADD6432:
15928   case X86::ATOMSUB6432:
15929   case X86::ATOMMAX6432:
15930   case X86::ATOMMIN6432:
15931   case X86::ATOMUMAX6432:
15932   case X86::ATOMUMIN6432:
15933   case X86::ATOMSWAP6432:
15934     return EmitAtomicLoadArith6432(MI, BB);
15935
15936   case X86::VASTART_SAVE_XMM_REGS:
15937     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
15938
15939   case X86::VAARG_64:
15940     return EmitVAARG64WithCustomInserter(MI, BB);
15941
15942   case X86::EH_SjLj_SetJmp32:
15943   case X86::EH_SjLj_SetJmp64:
15944     return emitEHSjLjSetJmp(MI, BB);
15945
15946   case X86::EH_SjLj_LongJmp32:
15947   case X86::EH_SjLj_LongJmp64:
15948     return emitEHSjLjLongJmp(MI, BB);
15949   }
15950 }
15951
15952 //===----------------------------------------------------------------------===//
15953 //                           X86 Optimization Hooks
15954 //===----------------------------------------------------------------------===//
15955
15956 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
15957                                                        APInt &KnownZero,
15958                                                        APInt &KnownOne,
15959                                                        const SelectionDAG &DAG,
15960                                                        unsigned Depth) const {
15961   unsigned BitWidth = KnownZero.getBitWidth();
15962   unsigned Opc = Op.getOpcode();
15963   assert((Opc >= ISD::BUILTIN_OP_END ||
15964           Opc == ISD::INTRINSIC_WO_CHAIN ||
15965           Opc == ISD::INTRINSIC_W_CHAIN ||
15966           Opc == ISD::INTRINSIC_VOID) &&
15967          "Should use MaskedValueIsZero if you don't know whether Op"
15968          " is a target node!");
15969
15970   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
15971   switch (Opc) {
15972   default: break;
15973   case X86ISD::ADD:
15974   case X86ISD::SUB:
15975   case X86ISD::ADC:
15976   case X86ISD::SBB:
15977   case X86ISD::SMUL:
15978   case X86ISD::UMUL:
15979   case X86ISD::INC:
15980   case X86ISD::DEC:
15981   case X86ISD::OR:
15982   case X86ISD::XOR:
15983   case X86ISD::AND:
15984     // These nodes' second result is a boolean.
15985     if (Op.getResNo() == 0)
15986       break;
15987     // Fallthrough
15988   case X86ISD::SETCC:
15989     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
15990     break;
15991   case ISD::INTRINSIC_WO_CHAIN: {
15992     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15993     unsigned NumLoBits = 0;
15994     switch (IntId) {
15995     default: break;
15996     case Intrinsic::x86_sse_movmsk_ps:
15997     case Intrinsic::x86_avx_movmsk_ps_256:
15998     case Intrinsic::x86_sse2_movmsk_pd:
15999     case Intrinsic::x86_avx_movmsk_pd_256:
16000     case Intrinsic::x86_mmx_pmovmskb:
16001     case Intrinsic::x86_sse2_pmovmskb_128:
16002     case Intrinsic::x86_avx2_pmovmskb: {
16003       // High bits of movmskp{s|d}, pmovmskb are known zero.
16004       switch (IntId) {
16005         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16006         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
16007         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
16008         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
16009         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
16010         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
16011         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
16012         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
16013       }
16014       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
16015       break;
16016     }
16017     }
16018     break;
16019   }
16020   }
16021 }
16022
16023 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16024                                                          unsigned Depth) const {
16025   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16026   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16027     return Op.getValueType().getScalarType().getSizeInBits();
16028
16029   // Fallback case.
16030   return 1;
16031 }
16032
16033 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16034 /// node is a GlobalAddress + offset.
16035 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16036                                        const GlobalValue* &GA,
16037                                        int64_t &Offset) const {
16038   if (N->getOpcode() == X86ISD::Wrapper) {
16039     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16040       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16041       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16042       return true;
16043     }
16044   }
16045   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16046 }
16047
16048 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16049 /// same as extracting the high 128-bit part of 256-bit vector and then
16050 /// inserting the result into the low part of a new 256-bit vector
16051 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16052   EVT VT = SVOp->getValueType(0);
16053   unsigned NumElems = VT.getVectorNumElements();
16054
16055   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16056   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16057     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16058         SVOp->getMaskElt(j) >= 0)
16059       return false;
16060
16061   return true;
16062 }
16063
16064 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16065 /// same as extracting the low 128-bit part of 256-bit vector and then
16066 /// inserting the result into the high part of a new 256-bit vector
16067 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16068   EVT VT = SVOp->getValueType(0);
16069   unsigned NumElems = VT.getVectorNumElements();
16070
16071   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16072   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16073     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16074         SVOp->getMaskElt(j) >= 0)
16075       return false;
16076
16077   return true;
16078 }
16079
16080 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16081 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16082                                         TargetLowering::DAGCombinerInfo &DCI,
16083                                         const X86Subtarget* Subtarget) {
16084   SDLoc dl(N);
16085   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16086   SDValue V1 = SVOp->getOperand(0);
16087   SDValue V2 = SVOp->getOperand(1);
16088   EVT VT = SVOp->getValueType(0);
16089   unsigned NumElems = VT.getVectorNumElements();
16090
16091   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16092       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16093     //
16094     //                   0,0,0,...
16095     //                      |
16096     //    V      UNDEF    BUILD_VECTOR    UNDEF
16097     //     \      /           \           /
16098     //  CONCAT_VECTOR         CONCAT_VECTOR
16099     //         \                  /
16100     //          \                /
16101     //          RESULT: V + zero extended
16102     //
16103     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16104         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16105         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16106       return SDValue();
16107
16108     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16109       return SDValue();
16110
16111     // To match the shuffle mask, the first half of the mask should
16112     // be exactly the first vector, and all the rest a splat with the
16113     // first element of the second one.
16114     for (unsigned i = 0; i != NumElems/2; ++i)
16115       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16116           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16117         return SDValue();
16118
16119     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16120     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16121       if (Ld->hasNUsesOfValue(1, 0)) {
16122         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16123         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16124         SDValue ResNode =
16125           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16126                                   array_lengthof(Ops),
16127                                   Ld->getMemoryVT(),
16128                                   Ld->getPointerInfo(),
16129                                   Ld->getAlignment(),
16130                                   false/*isVolatile*/, true/*ReadMem*/,
16131                                   false/*WriteMem*/);
16132
16133         // Make sure the newly-created LOAD is in the same position as Ld in
16134         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16135         // and update uses of Ld's output chain to use the TokenFactor.
16136         if (Ld->hasAnyUseOfValue(1)) {
16137           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16138                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16139           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16140           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16141                                  SDValue(ResNode.getNode(), 1));
16142         }
16143
16144         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16145       }
16146     }
16147
16148     // Emit a zeroed vector and insert the desired subvector on its
16149     // first half.
16150     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16151     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16152     return DCI.CombineTo(N, InsV);
16153   }
16154
16155   //===--------------------------------------------------------------------===//
16156   // Combine some shuffles into subvector extracts and inserts:
16157   //
16158
16159   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16160   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16161     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16162     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16163     return DCI.CombineTo(N, InsV);
16164   }
16165
16166   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16167   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16168     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16169     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16170     return DCI.CombineTo(N, InsV);
16171   }
16172
16173   return SDValue();
16174 }
16175
16176 /// PerformShuffleCombine - Performs several different shuffle combines.
16177 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16178                                      TargetLowering::DAGCombinerInfo &DCI,
16179                                      const X86Subtarget *Subtarget) {
16180   SDLoc dl(N);
16181   EVT VT = N->getValueType(0);
16182
16183   // Don't create instructions with illegal types after legalize types has run.
16184   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16185   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16186     return SDValue();
16187
16188   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16189   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16190       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16191     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16192
16193   // Only handle 128 wide vector from here on.
16194   if (!VT.is128BitVector())
16195     return SDValue();
16196
16197   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16198   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16199   // consecutive, non-overlapping, and in the right order.
16200   SmallVector<SDValue, 16> Elts;
16201   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16202     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16203
16204   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
16205 }
16206
16207 /// PerformTruncateCombine - Converts truncate operation to
16208 /// a sequence of vector shuffle operations.
16209 /// It is possible when we truncate 256-bit vector to 128-bit vector
16210 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16211                                       TargetLowering::DAGCombinerInfo &DCI,
16212                                       const X86Subtarget *Subtarget)  {
16213   return SDValue();
16214 }
16215
16216 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16217 /// specific shuffle of a load can be folded into a single element load.
16218 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16219 /// shuffles have been customed lowered so we need to handle those here.
16220 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16221                                          TargetLowering::DAGCombinerInfo &DCI) {
16222   if (DCI.isBeforeLegalizeOps())
16223     return SDValue();
16224
16225   SDValue InVec = N->getOperand(0);
16226   SDValue EltNo = N->getOperand(1);
16227
16228   if (!isa<ConstantSDNode>(EltNo))
16229     return SDValue();
16230
16231   EVT VT = InVec.getValueType();
16232
16233   bool HasShuffleIntoBitcast = false;
16234   if (InVec.getOpcode() == ISD::BITCAST) {
16235     // Don't duplicate a load with other uses.
16236     if (!InVec.hasOneUse())
16237       return SDValue();
16238     EVT BCVT = InVec.getOperand(0).getValueType();
16239     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16240       return SDValue();
16241     InVec = InVec.getOperand(0);
16242     HasShuffleIntoBitcast = true;
16243   }
16244
16245   if (!isTargetShuffle(InVec.getOpcode()))
16246     return SDValue();
16247
16248   // Don't duplicate a load with other uses.
16249   if (!InVec.hasOneUse())
16250     return SDValue();
16251
16252   SmallVector<int, 16> ShuffleMask;
16253   bool UnaryShuffle;
16254   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16255                             UnaryShuffle))
16256     return SDValue();
16257
16258   // Select the input vector, guarding against out of range extract vector.
16259   unsigned NumElems = VT.getVectorNumElements();
16260   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16261   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16262   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16263                                          : InVec.getOperand(1);
16264
16265   // If inputs to shuffle are the same for both ops, then allow 2 uses
16266   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16267
16268   if (LdNode.getOpcode() == ISD::BITCAST) {
16269     // Don't duplicate a load with other uses.
16270     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16271       return SDValue();
16272
16273     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16274     LdNode = LdNode.getOperand(0);
16275   }
16276
16277   if (!ISD::isNormalLoad(LdNode.getNode()))
16278     return SDValue();
16279
16280   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16281
16282   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16283     return SDValue();
16284
16285   if (HasShuffleIntoBitcast) {
16286     // If there's a bitcast before the shuffle, check if the load type and
16287     // alignment is valid.
16288     unsigned Align = LN0->getAlignment();
16289     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16290     unsigned NewAlign = TLI.getDataLayout()->
16291       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16292
16293     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16294       return SDValue();
16295   }
16296
16297   // All checks match so transform back to vector_shuffle so that DAG combiner
16298   // can finish the job
16299   SDLoc dl(N);
16300
16301   // Create shuffle node taking into account the case that its a unary shuffle
16302   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16303   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16304                                  InVec.getOperand(0), Shuffle,
16305                                  &ShuffleMask[0]);
16306   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16307   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16308                      EltNo);
16309 }
16310
16311 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16312 /// generation and convert it from being a bunch of shuffles and extracts
16313 /// to a simple store and scalar loads to extract the elements.
16314 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16315                                          TargetLowering::DAGCombinerInfo &DCI) {
16316   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16317   if (NewOp.getNode())
16318     return NewOp;
16319
16320   SDValue InputVector = N->getOperand(0);
16321   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16322   // from mmx to v2i32 has a single usage.
16323   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16324       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16325       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16326     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16327                        N->getValueType(0),
16328                        InputVector.getNode()->getOperand(0));
16329
16330   // Only operate on vectors of 4 elements, where the alternative shuffling
16331   // gets to be more expensive.
16332   if (InputVector.getValueType() != MVT::v4i32)
16333     return SDValue();
16334
16335   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16336   // single use which is a sign-extend or zero-extend, and all elements are
16337   // used.
16338   SmallVector<SDNode *, 4> Uses;
16339   unsigned ExtractedElements = 0;
16340   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16341        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16342     if (UI.getUse().getResNo() != InputVector.getResNo())
16343       return SDValue();
16344
16345     SDNode *Extract = *UI;
16346     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16347       return SDValue();
16348
16349     if (Extract->getValueType(0) != MVT::i32)
16350       return SDValue();
16351     if (!Extract->hasOneUse())
16352       return SDValue();
16353     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16354         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16355       return SDValue();
16356     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16357       return SDValue();
16358
16359     // Record which element was extracted.
16360     ExtractedElements |=
16361       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16362
16363     Uses.push_back(Extract);
16364   }
16365
16366   // If not all the elements were used, this may not be worthwhile.
16367   if (ExtractedElements != 15)
16368     return SDValue();
16369
16370   // Ok, we've now decided to do the transformation.
16371   SDLoc dl(InputVector);
16372
16373   // Store the value to a temporary stack slot.
16374   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16375   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16376                             MachinePointerInfo(), false, false, 0);
16377
16378   // Replace each use (extract) with a load of the appropriate element.
16379   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16380        UE = Uses.end(); UI != UE; ++UI) {
16381     SDNode *Extract = *UI;
16382
16383     // cOMpute the element's address.
16384     SDValue Idx = Extract->getOperand(1);
16385     unsigned EltSize =
16386         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16387     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16388     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16389     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16390
16391     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16392                                      StackPtr, OffsetVal);
16393
16394     // Load the scalar.
16395     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16396                                      ScalarAddr, MachinePointerInfo(),
16397                                      false, false, false, 0);
16398
16399     // Replace the exact with the load.
16400     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16401   }
16402
16403   // The replacement was made in place; don't return anything.
16404   return SDValue();
16405 }
16406
16407 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16408 static std::pair<unsigned, bool>
16409 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16410                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16411   if (!VT.isVector())
16412     return std::make_pair(0, false);
16413
16414   bool NeedSplit = false;
16415   switch (VT.getSimpleVT().SimpleTy) {
16416   default: return std::make_pair(0, false);
16417   case MVT::v32i8:
16418   case MVT::v16i16:
16419   case MVT::v8i32:
16420     if (!Subtarget->hasAVX2())
16421       NeedSplit = true;
16422     if (!Subtarget->hasAVX())
16423       return std::make_pair(0, false);
16424     break;
16425   case MVT::v16i8:
16426   case MVT::v8i16:
16427   case MVT::v4i32:
16428     if (!Subtarget->hasSSE2())
16429       return std::make_pair(0, false);
16430   }
16431
16432   // SSE2 has only a small subset of the operations.
16433   bool hasUnsigned = Subtarget->hasSSE41() ||
16434                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16435   bool hasSigned = Subtarget->hasSSE41() ||
16436                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16437
16438   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16439
16440   unsigned Opc = 0;
16441   // Check for x CC y ? x : y.
16442   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16443       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16444     switch (CC) {
16445     default: break;
16446     case ISD::SETULT:
16447     case ISD::SETULE:
16448       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16449     case ISD::SETUGT:
16450     case ISD::SETUGE:
16451       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16452     case ISD::SETLT:
16453     case ISD::SETLE:
16454       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16455     case ISD::SETGT:
16456     case ISD::SETGE:
16457       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16458     }
16459   // Check for x CC y ? y : x -- a min/max with reversed arms.
16460   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16461              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16462     switch (CC) {
16463     default: break;
16464     case ISD::SETULT:
16465     case ISD::SETULE:
16466       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16467     case ISD::SETUGT:
16468     case ISD::SETUGE:
16469       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16470     case ISD::SETLT:
16471     case ISD::SETLE:
16472       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16473     case ISD::SETGT:
16474     case ISD::SETGE:
16475       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16476     }
16477   }
16478
16479   return std::make_pair(Opc, NeedSplit);
16480 }
16481
16482 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16483 /// nodes.
16484 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16485                                     TargetLowering::DAGCombinerInfo &DCI,
16486                                     const X86Subtarget *Subtarget) {
16487   SDLoc DL(N);
16488   SDValue Cond = N->getOperand(0);
16489   // Get the LHS/RHS of the select.
16490   SDValue LHS = N->getOperand(1);
16491   SDValue RHS = N->getOperand(2);
16492   EVT VT = LHS.getValueType();
16493   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16494
16495   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16496   // instructions match the semantics of the common C idiom x<y?x:y but not
16497   // x<=y?x:y, because of how they handle negative zero (which can be
16498   // ignored in unsafe-math mode).
16499   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16500       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16501       (Subtarget->hasSSE2() ||
16502        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16503     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16504
16505     unsigned Opcode = 0;
16506     // Check for x CC y ? x : y.
16507     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16508         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16509       switch (CC) {
16510       default: break;
16511       case ISD::SETULT:
16512         // Converting this to a min would handle NaNs incorrectly, and swapping
16513         // the operands would cause it to handle comparisons between positive
16514         // and negative zero incorrectly.
16515         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16516           if (!DAG.getTarget().Options.UnsafeFPMath &&
16517               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16518             break;
16519           std::swap(LHS, RHS);
16520         }
16521         Opcode = X86ISD::FMIN;
16522         break;
16523       case ISD::SETOLE:
16524         // Converting this to a min would handle comparisons between positive
16525         // and negative zero incorrectly.
16526         if (!DAG.getTarget().Options.UnsafeFPMath &&
16527             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16528           break;
16529         Opcode = X86ISD::FMIN;
16530         break;
16531       case ISD::SETULE:
16532         // Converting this to a min would handle both negative zeros and NaNs
16533         // incorrectly, but we can swap the operands to fix both.
16534         std::swap(LHS, RHS);
16535       case ISD::SETOLT:
16536       case ISD::SETLT:
16537       case ISD::SETLE:
16538         Opcode = X86ISD::FMIN;
16539         break;
16540
16541       case ISD::SETOGE:
16542         // Converting this to a max would handle comparisons between positive
16543         // and negative zero incorrectly.
16544         if (!DAG.getTarget().Options.UnsafeFPMath &&
16545             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16546           break;
16547         Opcode = X86ISD::FMAX;
16548         break;
16549       case ISD::SETUGT:
16550         // Converting this to a max would handle NaNs incorrectly, and swapping
16551         // the operands would cause it to handle comparisons between positive
16552         // and negative zero incorrectly.
16553         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16554           if (!DAG.getTarget().Options.UnsafeFPMath &&
16555               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16556             break;
16557           std::swap(LHS, RHS);
16558         }
16559         Opcode = X86ISD::FMAX;
16560         break;
16561       case ISD::SETUGE:
16562         // Converting this to a max would handle both negative zeros and NaNs
16563         // incorrectly, but we can swap the operands to fix both.
16564         std::swap(LHS, RHS);
16565       case ISD::SETOGT:
16566       case ISD::SETGT:
16567       case ISD::SETGE:
16568         Opcode = X86ISD::FMAX;
16569         break;
16570       }
16571     // Check for x CC y ? y : x -- a min/max with reversed arms.
16572     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16573                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16574       switch (CC) {
16575       default: break;
16576       case ISD::SETOGE:
16577         // Converting this to a min would handle comparisons between positive
16578         // and negative zero incorrectly, and swapping the operands would
16579         // cause it to handle NaNs incorrectly.
16580         if (!DAG.getTarget().Options.UnsafeFPMath &&
16581             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16582           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16583             break;
16584           std::swap(LHS, RHS);
16585         }
16586         Opcode = X86ISD::FMIN;
16587         break;
16588       case ISD::SETUGT:
16589         // Converting this to a min would handle NaNs incorrectly.
16590         if (!DAG.getTarget().Options.UnsafeFPMath &&
16591             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16592           break;
16593         Opcode = X86ISD::FMIN;
16594         break;
16595       case ISD::SETUGE:
16596         // Converting this to a min would handle both negative zeros and NaNs
16597         // incorrectly, but we can swap the operands to fix both.
16598         std::swap(LHS, RHS);
16599       case ISD::SETOGT:
16600       case ISD::SETGT:
16601       case ISD::SETGE:
16602         Opcode = X86ISD::FMIN;
16603         break;
16604
16605       case ISD::SETULT:
16606         // Converting this to a max would handle NaNs incorrectly.
16607         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16608           break;
16609         Opcode = X86ISD::FMAX;
16610         break;
16611       case ISD::SETOLE:
16612         // Converting this to a max would handle comparisons between positive
16613         // and negative zero incorrectly, and swapping the operands would
16614         // cause it to handle NaNs incorrectly.
16615         if (!DAG.getTarget().Options.UnsafeFPMath &&
16616             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16617           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16618             break;
16619           std::swap(LHS, RHS);
16620         }
16621         Opcode = X86ISD::FMAX;
16622         break;
16623       case ISD::SETULE:
16624         // Converting this to a max would handle both negative zeros and NaNs
16625         // incorrectly, but we can swap the operands to fix both.
16626         std::swap(LHS, RHS);
16627       case ISD::SETOLT:
16628       case ISD::SETLT:
16629       case ISD::SETLE:
16630         Opcode = X86ISD::FMAX;
16631         break;
16632       }
16633     }
16634
16635     if (Opcode)
16636       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16637   }
16638
16639   EVT CondVT = Cond.getValueType();
16640   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
16641       CondVT.getVectorElementType() == MVT::i1) {
16642     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16643     // lowering on AVX-512. In this case we convert it to
16644     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16645     // The same situation for all 128 and 256-bit vectors of i8 and i16
16646     EVT OpVT = LHS.getValueType();
16647     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16648         (OpVT.getVectorElementType() == MVT::i8 ||
16649          OpVT.getVectorElementType() == MVT::i16)) {
16650       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16651       DCI.AddToWorklist(Cond.getNode());
16652       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16653     }
16654   }
16655   // If this is a select between two integer constants, try to do some
16656   // optimizations.
16657   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16658     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16659       // Don't do this for crazy integer types.
16660       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16661         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16662         // so that TrueC (the true value) is larger than FalseC.
16663         bool NeedsCondInvert = false;
16664
16665         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16666             // Efficiently invertible.
16667             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16668              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16669               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16670           NeedsCondInvert = true;
16671           std::swap(TrueC, FalseC);
16672         }
16673
16674         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16675         if (FalseC->getAPIntValue() == 0 &&
16676             TrueC->getAPIntValue().isPowerOf2()) {
16677           if (NeedsCondInvert) // Invert the condition if needed.
16678             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16679                                DAG.getConstant(1, Cond.getValueType()));
16680
16681           // Zero extend the condition if needed.
16682           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16683
16684           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16685           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16686                              DAG.getConstant(ShAmt, MVT::i8));
16687         }
16688
16689         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16690         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16691           if (NeedsCondInvert) // Invert the condition if needed.
16692             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16693                                DAG.getConstant(1, Cond.getValueType()));
16694
16695           // Zero extend the condition if needed.
16696           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16697                              FalseC->getValueType(0), Cond);
16698           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16699                              SDValue(FalseC, 0));
16700         }
16701
16702         // Optimize cases that will turn into an LEA instruction.  This requires
16703         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16704         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16705           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16706           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16707
16708           bool isFastMultiplier = false;
16709           if (Diff < 10) {
16710             switch ((unsigned char)Diff) {
16711               default: break;
16712               case 1:  // result = add base, cond
16713               case 2:  // result = lea base(    , cond*2)
16714               case 3:  // result = lea base(cond, cond*2)
16715               case 4:  // result = lea base(    , cond*4)
16716               case 5:  // result = lea base(cond, cond*4)
16717               case 8:  // result = lea base(    , cond*8)
16718               case 9:  // result = lea base(cond, cond*8)
16719                 isFastMultiplier = true;
16720                 break;
16721             }
16722           }
16723
16724           if (isFastMultiplier) {
16725             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16726             if (NeedsCondInvert) // Invert the condition if needed.
16727               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16728                                  DAG.getConstant(1, Cond.getValueType()));
16729
16730             // Zero extend the condition if needed.
16731             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16732                                Cond);
16733             // Scale the condition by the difference.
16734             if (Diff != 1)
16735               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16736                                  DAG.getConstant(Diff, Cond.getValueType()));
16737
16738             // Add the base if non-zero.
16739             if (FalseC->getAPIntValue() != 0)
16740               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16741                                  SDValue(FalseC, 0));
16742             return Cond;
16743           }
16744         }
16745       }
16746   }
16747
16748   // Canonicalize max and min:
16749   // (x > y) ? x : y -> (x >= y) ? x : y
16750   // (x < y) ? x : y -> (x <= y) ? x : y
16751   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16752   // the need for an extra compare
16753   // against zero. e.g.
16754   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16755   // subl   %esi, %edi
16756   // testl  %edi, %edi
16757   // movl   $0, %eax
16758   // cmovgl %edi, %eax
16759   // =>
16760   // xorl   %eax, %eax
16761   // subl   %esi, $edi
16762   // cmovsl %eax, %edi
16763   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16764       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16765       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16766     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16767     switch (CC) {
16768     default: break;
16769     case ISD::SETLT:
16770     case ISD::SETGT: {
16771       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
16772       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
16773                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
16774       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16775     }
16776     }
16777   }
16778
16779   // Early exit check
16780   if (!TLI.isTypeLegal(VT))
16781     return SDValue();
16782
16783   // Match VSELECTs into subs with unsigned saturation.
16784   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16785       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16786       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16787        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16788     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16789
16790     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16791     // left side invert the predicate to simplify logic below.
16792     SDValue Other;
16793     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16794       Other = RHS;
16795       CC = ISD::getSetCCInverse(CC, true);
16796     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16797       Other = LHS;
16798     }
16799
16800     if (Other.getNode() && Other->getNumOperands() == 2 &&
16801         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16802       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16803       SDValue CondRHS = Cond->getOperand(1);
16804
16805       // Look for a general sub with unsigned saturation first.
16806       // x >= y ? x-y : 0 --> subus x, y
16807       // x >  y ? x-y : 0 --> subus x, y
16808       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16809           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16810         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16811
16812       // If the RHS is a constant we have to reverse the const canonicalization.
16813       // x > C-1 ? x+-C : 0 --> subus x, C
16814       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16815           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16816         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16817         if (CondRHS.getConstantOperandVal(0) == -A-1)
16818           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
16819                              DAG.getConstant(-A, VT));
16820       }
16821
16822       // Another special case: If C was a sign bit, the sub has been
16823       // canonicalized into a xor.
16824       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16825       //        it's safe to decanonicalize the xor?
16826       // x s< 0 ? x^C : 0 --> subus x, C
16827       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16828           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16829           isSplatVector(OpRHS.getNode())) {
16830         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16831         if (A.isSignBit())
16832           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16833       }
16834     }
16835   }
16836
16837   // Try to match a min/max vector operation.
16838   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
16839     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16840     unsigned Opc = ret.first;
16841     bool NeedSplit = ret.second;
16842
16843     if (Opc && NeedSplit) {
16844       unsigned NumElems = VT.getVectorNumElements();
16845       // Extract the LHS vectors
16846       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16847       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16848
16849       // Extract the RHS vectors
16850       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16851       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16852
16853       // Create min/max for each subvector
16854       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16855       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16856
16857       // Merge the result
16858       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16859     } else if (Opc)
16860       return DAG.getNode(Opc, DL, VT, LHS, RHS);
16861   }
16862
16863   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16864   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16865       // Check if SETCC has already been promoted
16866       TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
16867
16868     assert(Cond.getValueType().isVector() &&
16869            "vector select expects a vector selector!");
16870
16871     EVT IntVT = Cond.getValueType();
16872     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16873     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16874
16875     if (!TValIsAllOnes && !FValIsAllZeros) {
16876       // Try invert the condition if true value is not all 1s and false value
16877       // is not all 0s.
16878       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16879       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16880
16881       if (TValIsAllZeros || FValIsAllOnes) {
16882         SDValue CC = Cond.getOperand(2);
16883         ISD::CondCode NewCC =
16884           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16885                                Cond.getOperand(0).getValueType().isInteger());
16886         Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16887         std::swap(LHS, RHS);
16888         TValIsAllOnes = FValIsAllOnes;
16889         FValIsAllZeros = TValIsAllZeros;
16890       }
16891     }
16892
16893     if (TValIsAllOnes || FValIsAllZeros) {
16894       SDValue Ret;
16895
16896       if (TValIsAllOnes && FValIsAllZeros)
16897         Ret = Cond;
16898       else if (TValIsAllOnes)
16899         Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16900                           DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16901       else if (FValIsAllZeros)
16902         Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16903                           DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16904
16905       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16906     }
16907   }
16908
16909   // If we know that this node is legal then we know that it is going to be
16910   // matched by one of the SSE/AVX BLEND instructions. These instructions only
16911   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16912   // to simplify previous instructions.
16913   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
16914       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
16915     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
16916
16917     // Don't optimize vector selects that map to mask-registers.
16918     if (BitWidth == 1)
16919       return SDValue();
16920
16921     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16922     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16923
16924     APInt KnownZero, KnownOne;
16925     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16926                                           DCI.isBeforeLegalizeOps());
16927     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16928         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16929       DCI.CommitTargetLoweringOpt(TLO);
16930   }
16931
16932   return SDValue();
16933 }
16934
16935 // Check whether a boolean test is testing a boolean value generated by
16936 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16937 // code.
16938 //
16939 // Simplify the following patterns:
16940 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16941 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16942 // to (Op EFLAGS Cond)
16943 //
16944 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16945 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16946 // to (Op EFLAGS !Cond)
16947 //
16948 // where Op could be BRCOND or CMOV.
16949 //
16950 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
16951   // Quit if not CMP and SUB with its value result used.
16952   if (Cmp.getOpcode() != X86ISD::CMP &&
16953       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16954       return SDValue();
16955
16956   // Quit if not used as a boolean value.
16957   if (CC != X86::COND_E && CC != X86::COND_NE)
16958     return SDValue();
16959
16960   // Check CMP operands. One of them should be 0 or 1 and the other should be
16961   // an SetCC or extended from it.
16962   SDValue Op1 = Cmp.getOperand(0);
16963   SDValue Op2 = Cmp.getOperand(1);
16964
16965   SDValue SetCC;
16966   const ConstantSDNode* C = 0;
16967   bool needOppositeCond = (CC == X86::COND_E);
16968   bool checkAgainstTrue = false; // Is it a comparison against 1?
16969
16970   if ((C = dyn_cast<ConstantSDNode>(Op1)))
16971     SetCC = Op2;
16972   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16973     SetCC = Op1;
16974   else // Quit if all operands are not constants.
16975     return SDValue();
16976
16977   if (C->getZExtValue() == 1) {
16978     needOppositeCond = !needOppositeCond;
16979     checkAgainstTrue = true;
16980   } else if (C->getZExtValue() != 0)
16981     // Quit if the constant is neither 0 or 1.
16982     return SDValue();
16983
16984   bool truncatedToBoolWithAnd = false;
16985   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16986   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16987          SetCC.getOpcode() == ISD::TRUNCATE ||
16988          SetCC.getOpcode() == ISD::AND) {
16989     if (SetCC.getOpcode() == ISD::AND) {
16990       int OpIdx = -1;
16991       ConstantSDNode *CS;
16992       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16993           CS->getZExtValue() == 1)
16994         OpIdx = 1;
16995       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16996           CS->getZExtValue() == 1)
16997         OpIdx = 0;
16998       if (OpIdx == -1)
16999         break;
17000       SetCC = SetCC.getOperand(OpIdx);
17001       truncatedToBoolWithAnd = true;
17002     } else
17003       SetCC = SetCC.getOperand(0);
17004   }
17005
17006   switch (SetCC.getOpcode()) {
17007   case X86ISD::SETCC_CARRY:
17008     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17009     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17010     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17011     // truncated to i1 using 'and'.
17012     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17013       break;
17014     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17015            "Invalid use of SETCC_CARRY!");
17016     // FALL THROUGH
17017   case X86ISD::SETCC:
17018     // Set the condition code or opposite one if necessary.
17019     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17020     if (needOppositeCond)
17021       CC = X86::GetOppositeBranchCondition(CC);
17022     return SetCC.getOperand(1);
17023   case X86ISD::CMOV: {
17024     // Check whether false/true value has canonical one, i.e. 0 or 1.
17025     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17026     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17027     // Quit if true value is not a constant.
17028     if (!TVal)
17029       return SDValue();
17030     // Quit if false value is not a constant.
17031     if (!FVal) {
17032       SDValue Op = SetCC.getOperand(0);
17033       // Skip 'zext' or 'trunc' node.
17034       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17035           Op.getOpcode() == ISD::TRUNCATE)
17036         Op = Op.getOperand(0);
17037       // A special case for rdrand/rdseed, where 0 is set if false cond is
17038       // found.
17039       if ((Op.getOpcode() != X86ISD::RDRAND &&
17040            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17041         return SDValue();
17042     }
17043     // Quit if false value is not the constant 0 or 1.
17044     bool FValIsFalse = true;
17045     if (FVal && FVal->getZExtValue() != 0) {
17046       if (FVal->getZExtValue() != 1)
17047         return SDValue();
17048       // If FVal is 1, opposite cond is needed.
17049       needOppositeCond = !needOppositeCond;
17050       FValIsFalse = false;
17051     }
17052     // Quit if TVal is not the constant opposite of FVal.
17053     if (FValIsFalse && TVal->getZExtValue() != 1)
17054       return SDValue();
17055     if (!FValIsFalse && TVal->getZExtValue() != 0)
17056       return SDValue();
17057     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17058     if (needOppositeCond)
17059       CC = X86::GetOppositeBranchCondition(CC);
17060     return SetCC.getOperand(3);
17061   }
17062   }
17063
17064   return SDValue();
17065 }
17066
17067 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17068 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17069                                   TargetLowering::DAGCombinerInfo &DCI,
17070                                   const X86Subtarget *Subtarget) {
17071   SDLoc DL(N);
17072
17073   // If the flag operand isn't dead, don't touch this CMOV.
17074   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17075     return SDValue();
17076
17077   SDValue FalseOp = N->getOperand(0);
17078   SDValue TrueOp = N->getOperand(1);
17079   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17080   SDValue Cond = N->getOperand(3);
17081
17082   if (CC == X86::COND_E || CC == X86::COND_NE) {
17083     switch (Cond.getOpcode()) {
17084     default: break;
17085     case X86ISD::BSR:
17086     case X86ISD::BSF:
17087       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17088       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17089         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17090     }
17091   }
17092
17093   SDValue Flags;
17094
17095   Flags = checkBoolTestSetCCCombine(Cond, CC);
17096   if (Flags.getNode() &&
17097       // Extra check as FCMOV only supports a subset of X86 cond.
17098       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17099     SDValue Ops[] = { FalseOp, TrueOp,
17100                       DAG.getConstant(CC, MVT::i8), Flags };
17101     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17102                        Ops, array_lengthof(Ops));
17103   }
17104
17105   // If this is a select between two integer constants, try to do some
17106   // optimizations.  Note that the operands are ordered the opposite of SELECT
17107   // operands.
17108   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17109     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17110       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17111       // larger than FalseC (the false value).
17112       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17113         CC = X86::GetOppositeBranchCondition(CC);
17114         std::swap(TrueC, FalseC);
17115         std::swap(TrueOp, FalseOp);
17116       }
17117
17118       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17119       // This is efficient for any integer data type (including i8/i16) and
17120       // shift amount.
17121       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17122         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17123                            DAG.getConstant(CC, MVT::i8), Cond);
17124
17125         // Zero extend the condition if needed.
17126         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17127
17128         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17129         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17130                            DAG.getConstant(ShAmt, MVT::i8));
17131         if (N->getNumValues() == 2)  // Dead flag value?
17132           return DCI.CombineTo(N, Cond, SDValue());
17133         return Cond;
17134       }
17135
17136       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17137       // for any integer data type, including i8/i16.
17138       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17139         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17140                            DAG.getConstant(CC, MVT::i8), Cond);
17141
17142         // Zero extend the condition if needed.
17143         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17144                            FalseC->getValueType(0), Cond);
17145         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17146                            SDValue(FalseC, 0));
17147
17148         if (N->getNumValues() == 2)  // Dead flag value?
17149           return DCI.CombineTo(N, Cond, SDValue());
17150         return Cond;
17151       }
17152
17153       // Optimize cases that will turn into an LEA instruction.  This requires
17154       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17155       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17156         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17157         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17158
17159         bool isFastMultiplier = false;
17160         if (Diff < 10) {
17161           switch ((unsigned char)Diff) {
17162           default: break;
17163           case 1:  // result = add base, cond
17164           case 2:  // result = lea base(    , cond*2)
17165           case 3:  // result = lea base(cond, cond*2)
17166           case 4:  // result = lea base(    , cond*4)
17167           case 5:  // result = lea base(cond, cond*4)
17168           case 8:  // result = lea base(    , cond*8)
17169           case 9:  // result = lea base(cond, cond*8)
17170             isFastMultiplier = true;
17171             break;
17172           }
17173         }
17174
17175         if (isFastMultiplier) {
17176           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17177           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17178                              DAG.getConstant(CC, MVT::i8), Cond);
17179           // Zero extend the condition if needed.
17180           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17181                              Cond);
17182           // Scale the condition by the difference.
17183           if (Diff != 1)
17184             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17185                                DAG.getConstant(Diff, Cond.getValueType()));
17186
17187           // Add the base if non-zero.
17188           if (FalseC->getAPIntValue() != 0)
17189             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17190                                SDValue(FalseC, 0));
17191           if (N->getNumValues() == 2)  // Dead flag value?
17192             return DCI.CombineTo(N, Cond, SDValue());
17193           return Cond;
17194         }
17195       }
17196     }
17197   }
17198
17199   // Handle these cases:
17200   //   (select (x != c), e, c) -> select (x != c), e, x),
17201   //   (select (x == c), c, e) -> select (x == c), x, e)
17202   // where the c is an integer constant, and the "select" is the combination
17203   // of CMOV and CMP.
17204   //
17205   // The rationale for this change is that the conditional-move from a constant
17206   // needs two instructions, however, conditional-move from a register needs
17207   // only one instruction.
17208   //
17209   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17210   //  some instruction-combining opportunities. This opt needs to be
17211   //  postponed as late as possible.
17212   //
17213   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17214     // the DCI.xxxx conditions are provided to postpone the optimization as
17215     // late as possible.
17216
17217     ConstantSDNode *CmpAgainst = 0;
17218     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17219         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17220         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17221
17222       if (CC == X86::COND_NE &&
17223           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17224         CC = X86::GetOppositeBranchCondition(CC);
17225         std::swap(TrueOp, FalseOp);
17226       }
17227
17228       if (CC == X86::COND_E &&
17229           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17230         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17231                           DAG.getConstant(CC, MVT::i8), Cond };
17232         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17233                            array_lengthof(Ops));
17234       }
17235     }
17236   }
17237
17238   return SDValue();
17239 }
17240
17241 /// PerformMulCombine - Optimize a single multiply with constant into two
17242 /// in order to implement it with two cheaper instructions, e.g.
17243 /// LEA + SHL, LEA + LEA.
17244 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17245                                  TargetLowering::DAGCombinerInfo &DCI) {
17246   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17247     return SDValue();
17248
17249   EVT VT = N->getValueType(0);
17250   if (VT != MVT::i64)
17251     return SDValue();
17252
17253   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17254   if (!C)
17255     return SDValue();
17256   uint64_t MulAmt = C->getZExtValue();
17257   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17258     return SDValue();
17259
17260   uint64_t MulAmt1 = 0;
17261   uint64_t MulAmt2 = 0;
17262   if ((MulAmt % 9) == 0) {
17263     MulAmt1 = 9;
17264     MulAmt2 = MulAmt / 9;
17265   } else if ((MulAmt % 5) == 0) {
17266     MulAmt1 = 5;
17267     MulAmt2 = MulAmt / 5;
17268   } else if ((MulAmt % 3) == 0) {
17269     MulAmt1 = 3;
17270     MulAmt2 = MulAmt / 3;
17271   }
17272   if (MulAmt2 &&
17273       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17274     SDLoc DL(N);
17275
17276     if (isPowerOf2_64(MulAmt2) &&
17277         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17278       // If second multiplifer is pow2, issue it first. We want the multiply by
17279       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17280       // is an add.
17281       std::swap(MulAmt1, MulAmt2);
17282
17283     SDValue NewMul;
17284     if (isPowerOf2_64(MulAmt1))
17285       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17286                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17287     else
17288       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17289                            DAG.getConstant(MulAmt1, VT));
17290
17291     if (isPowerOf2_64(MulAmt2))
17292       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17293                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17294     else
17295       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17296                            DAG.getConstant(MulAmt2, VT));
17297
17298     // Do not add new nodes to DAG combiner worklist.
17299     DCI.CombineTo(N, NewMul, false);
17300   }
17301   return SDValue();
17302 }
17303
17304 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17305   SDValue N0 = N->getOperand(0);
17306   SDValue N1 = N->getOperand(1);
17307   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17308   EVT VT = N0.getValueType();
17309
17310   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17311   // since the result of setcc_c is all zero's or all ones.
17312   if (VT.isInteger() && !VT.isVector() &&
17313       N1C && N0.getOpcode() == ISD::AND &&
17314       N0.getOperand(1).getOpcode() == ISD::Constant) {
17315     SDValue N00 = N0.getOperand(0);
17316     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17317         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17318           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17319          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17320       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17321       APInt ShAmt = N1C->getAPIntValue();
17322       Mask = Mask.shl(ShAmt);
17323       if (Mask != 0)
17324         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17325                            N00, DAG.getConstant(Mask, VT));
17326     }
17327   }
17328
17329   // Hardware support for vector shifts is sparse which makes us scalarize the
17330   // vector operations in many cases. Also, on sandybridge ADD is faster than
17331   // shl.
17332   // (shl V, 1) -> add V,V
17333   if (isSplatVector(N1.getNode())) {
17334     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17335     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17336     // We shift all of the values by one. In many cases we do not have
17337     // hardware support for this operation. This is better expressed as an ADD
17338     // of two values.
17339     if (N1C && (1 == N1C->getZExtValue())) {
17340       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17341     }
17342   }
17343
17344   return SDValue();
17345 }
17346
17347 /// \brief Returns a vector of 0s if the node in input is a vector logical
17348 /// shift by a constant amount which is known to be bigger than or equal 
17349 /// to the vector element size in bits.
17350 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17351                                       const X86Subtarget *Subtarget) {
17352   EVT VT = N->getValueType(0);
17353
17354   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17355       (!Subtarget->hasInt256() ||
17356        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17357     return SDValue();
17358
17359   SDValue Amt = N->getOperand(1);
17360   SDLoc DL(N);
17361   if (isSplatVector(Amt.getNode())) {
17362     SDValue SclrAmt = Amt->getOperand(0);
17363     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17364       APInt ShiftAmt = C->getAPIntValue();
17365       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17366
17367       // SSE2/AVX2 logical shifts always return a vector of 0s
17368       // if the shift amount is bigger than or equal to 
17369       // the element size. The constant shift amount will be
17370       // encoded as a 8-bit immediate.
17371       if (ShiftAmt.trunc(8).uge(MaxAmount))
17372         return getZeroVector(VT, Subtarget, DAG, DL);
17373     }
17374   }
17375
17376   return SDValue();
17377 }
17378
17379 /// PerformShiftCombine - Combine shifts.
17380 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17381                                    TargetLowering::DAGCombinerInfo &DCI,
17382                                    const X86Subtarget *Subtarget) {
17383   if (N->getOpcode() == ISD::SHL) {
17384     SDValue V = PerformSHLCombine(N, DAG);
17385     if (V.getNode()) return V;
17386   }
17387
17388   if (N->getOpcode() != ISD::SRA) {
17389     // Try to fold this logical shift into a zero vector.
17390     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17391     if (V.getNode()) return V;
17392   }
17393
17394   return SDValue();
17395 }
17396
17397 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17398 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17399 // and friends.  Likewise for OR -> CMPNEQSS.
17400 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17401                             TargetLowering::DAGCombinerInfo &DCI,
17402                             const X86Subtarget *Subtarget) {
17403   unsigned opcode;
17404
17405   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17406   // we're requiring SSE2 for both.
17407   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17408     SDValue N0 = N->getOperand(0);
17409     SDValue N1 = N->getOperand(1);
17410     SDValue CMP0 = N0->getOperand(1);
17411     SDValue CMP1 = N1->getOperand(1);
17412     SDLoc DL(N);
17413
17414     // The SETCCs should both refer to the same CMP.
17415     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17416       return SDValue();
17417
17418     SDValue CMP00 = CMP0->getOperand(0);
17419     SDValue CMP01 = CMP0->getOperand(1);
17420     EVT     VT    = CMP00.getValueType();
17421
17422     if (VT == MVT::f32 || VT == MVT::f64) {
17423       bool ExpectingFlags = false;
17424       // Check for any users that want flags:
17425       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17426            !ExpectingFlags && UI != UE; ++UI)
17427         switch (UI->getOpcode()) {
17428         default:
17429         case ISD::BR_CC:
17430         case ISD::BRCOND:
17431         case ISD::SELECT:
17432           ExpectingFlags = true;
17433           break;
17434         case ISD::CopyToReg:
17435         case ISD::SIGN_EXTEND:
17436         case ISD::ZERO_EXTEND:
17437         case ISD::ANY_EXTEND:
17438           break;
17439         }
17440
17441       if (!ExpectingFlags) {
17442         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17443         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17444
17445         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17446           X86::CondCode tmp = cc0;
17447           cc0 = cc1;
17448           cc1 = tmp;
17449         }
17450
17451         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17452             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17453           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17454           X86ISD::NodeType NTOperator = is64BitFP ?
17455             X86ISD::FSETCCsd : X86ISD::FSETCCss;
17456           // FIXME: need symbolic constants for these magic numbers.
17457           // See X86ATTInstPrinter.cpp:printSSECC().
17458           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17459           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17460                                               DAG.getConstant(x86cc, MVT::i8));
17461           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17462                                               OnesOrZeroesF);
17463           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17464                                       DAG.getConstant(1, MVT::i32));
17465           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17466           return OneBitOfTruth;
17467         }
17468       }
17469     }
17470   }
17471   return SDValue();
17472 }
17473
17474 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17475 /// so it can be folded inside ANDNP.
17476 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17477   EVT VT = N->getValueType(0);
17478
17479   // Match direct AllOnes for 128 and 256-bit vectors
17480   if (ISD::isBuildVectorAllOnes(N))
17481     return true;
17482
17483   // Look through a bit convert.
17484   if (N->getOpcode() == ISD::BITCAST)
17485     N = N->getOperand(0).getNode();
17486
17487   // Sometimes the operand may come from a insert_subvector building a 256-bit
17488   // allones vector
17489   if (VT.is256BitVector() &&
17490       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17491     SDValue V1 = N->getOperand(0);
17492     SDValue V2 = N->getOperand(1);
17493
17494     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17495         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17496         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17497         ISD::isBuildVectorAllOnes(V2.getNode()))
17498       return true;
17499   }
17500
17501   return false;
17502 }
17503
17504 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17505 // register. In most cases we actually compare or select YMM-sized registers
17506 // and mixing the two types creates horrible code. This method optimizes
17507 // some of the transition sequences.
17508 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17509                                  TargetLowering::DAGCombinerInfo &DCI,
17510                                  const X86Subtarget *Subtarget) {
17511   EVT VT = N->getValueType(0);
17512   if (!VT.is256BitVector())
17513     return SDValue();
17514
17515   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17516           N->getOpcode() == ISD::ZERO_EXTEND ||
17517           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17518
17519   SDValue Narrow = N->getOperand(0);
17520   EVT NarrowVT = Narrow->getValueType(0);
17521   if (!NarrowVT.is128BitVector())
17522     return SDValue();
17523
17524   if (Narrow->getOpcode() != ISD::XOR &&
17525       Narrow->getOpcode() != ISD::AND &&
17526       Narrow->getOpcode() != ISD::OR)
17527     return SDValue();
17528
17529   SDValue N0  = Narrow->getOperand(0);
17530   SDValue N1  = Narrow->getOperand(1);
17531   SDLoc DL(Narrow);
17532
17533   // The Left side has to be a trunc.
17534   if (N0.getOpcode() != ISD::TRUNCATE)
17535     return SDValue();
17536
17537   // The type of the truncated inputs.
17538   EVT WideVT = N0->getOperand(0)->getValueType(0);
17539   if (WideVT != VT)
17540     return SDValue();
17541
17542   // The right side has to be a 'trunc' or a constant vector.
17543   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17544   bool RHSConst = (isSplatVector(N1.getNode()) &&
17545                    isa<ConstantSDNode>(N1->getOperand(0)));
17546   if (!RHSTrunc && !RHSConst)
17547     return SDValue();
17548
17549   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17550
17551   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17552     return SDValue();
17553
17554   // Set N0 and N1 to hold the inputs to the new wide operation.
17555   N0 = N0->getOperand(0);
17556   if (RHSConst) {
17557     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17558                      N1->getOperand(0));
17559     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17560     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17561   } else if (RHSTrunc) {
17562     N1 = N1->getOperand(0);
17563   }
17564
17565   // Generate the wide operation.
17566   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17567   unsigned Opcode = N->getOpcode();
17568   switch (Opcode) {
17569   case ISD::ANY_EXTEND:
17570     return Op;
17571   case ISD::ZERO_EXTEND: {
17572     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17573     APInt Mask = APInt::getAllOnesValue(InBits);
17574     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17575     return DAG.getNode(ISD::AND, DL, VT,
17576                        Op, DAG.getConstant(Mask, VT));
17577   }
17578   case ISD::SIGN_EXTEND:
17579     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17580                        Op, DAG.getValueType(NarrowVT));
17581   default:
17582     llvm_unreachable("Unexpected opcode");
17583   }
17584 }
17585
17586 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17587                                  TargetLowering::DAGCombinerInfo &DCI,
17588                                  const X86Subtarget *Subtarget) {
17589   EVT VT = N->getValueType(0);
17590   if (DCI.isBeforeLegalizeOps())
17591     return SDValue();
17592
17593   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17594   if (R.getNode())
17595     return R;
17596
17597   // Create BLSI, BLSR, and BZHI instructions
17598   // BLSI is X & (-X)
17599   // BLSR is X & (X-1)
17600   // BZHI is X & ((1 << Y) - 1)
17601   // BEXTR is ((X >> imm) & (2**size-1))
17602   if (VT == MVT::i32 || VT == MVT::i64) {
17603     SDValue N0 = N->getOperand(0);
17604     SDValue N1 = N->getOperand(1);
17605     SDLoc DL(N);
17606
17607     if (Subtarget->hasBMI()) {
17608       // Check LHS for neg
17609       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17610           isZero(N0.getOperand(0)))
17611         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17612
17613       // Check RHS for neg
17614       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17615           isZero(N1.getOperand(0)))
17616         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17617
17618       // Check LHS for X-1
17619       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17620           isAllOnes(N0.getOperand(1)))
17621         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17622
17623       // Check RHS for X-1
17624       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17625           isAllOnes(N1.getOperand(1)))
17626         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17627     }
17628
17629     if (Subtarget->hasBMI2()) {
17630       // Check for (and (add (shl 1, Y), -1), X)
17631       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17632         SDValue N00 = N0.getOperand(0);
17633         if (N00.getOpcode() == ISD::SHL) {
17634           SDValue N001 = N00.getOperand(1);
17635           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17636           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17637           if (C && C->getZExtValue() == 1)
17638             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17639         }
17640       }
17641
17642       // Check for (and X, (add (shl 1, Y), -1))
17643       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17644         SDValue N10 = N1.getOperand(0);
17645         if (N10.getOpcode() == ISD::SHL) {
17646           SDValue N101 = N10.getOperand(1);
17647           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17648           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17649           if (C && C->getZExtValue() == 1)
17650             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17651         }
17652       }
17653     }
17654
17655     // Check for BEXTR.
17656     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17657         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17658       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17659       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17660       if (MaskNode && ShiftNode) {
17661         uint64_t Mask = MaskNode->getZExtValue();
17662         uint64_t Shift = ShiftNode->getZExtValue();
17663         if (isMask_64(Mask)) {
17664           uint64_t MaskSize = CountPopulation_64(Mask);
17665           if (Shift + MaskSize <= VT.getSizeInBits())
17666             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17667                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17668         }
17669       }
17670     } // BEXTR
17671
17672     return SDValue();
17673   }
17674
17675   // Want to form ANDNP nodes:
17676   // 1) In the hopes of then easily combining them with OR and AND nodes
17677   //    to form PBLEND/PSIGN.
17678   // 2) To match ANDN packed intrinsics
17679   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17680     return SDValue();
17681
17682   SDValue N0 = N->getOperand(0);
17683   SDValue N1 = N->getOperand(1);
17684   SDLoc DL(N);
17685
17686   // Check LHS for vnot
17687   if (N0.getOpcode() == ISD::XOR &&
17688       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17689       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17690     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17691
17692   // Check RHS for vnot
17693   if (N1.getOpcode() == ISD::XOR &&
17694       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17695       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17696     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17697
17698   return SDValue();
17699 }
17700
17701 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17702                                 TargetLowering::DAGCombinerInfo &DCI,
17703                                 const X86Subtarget *Subtarget) {
17704   EVT VT = N->getValueType(0);
17705   if (DCI.isBeforeLegalizeOps())
17706     return SDValue();
17707
17708   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17709   if (R.getNode())
17710     return R;
17711
17712   SDValue N0 = N->getOperand(0);
17713   SDValue N1 = N->getOperand(1);
17714
17715   // look for psign/blend
17716   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17717     if (!Subtarget->hasSSSE3() ||
17718         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17719       return SDValue();
17720
17721     // Canonicalize pandn to RHS
17722     if (N0.getOpcode() == X86ISD::ANDNP)
17723       std::swap(N0, N1);
17724     // or (and (m, y), (pandn m, x))
17725     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17726       SDValue Mask = N1.getOperand(0);
17727       SDValue X    = N1.getOperand(1);
17728       SDValue Y;
17729       if (N0.getOperand(0) == Mask)
17730         Y = N0.getOperand(1);
17731       if (N0.getOperand(1) == Mask)
17732         Y = N0.getOperand(0);
17733
17734       // Check to see if the mask appeared in both the AND and ANDNP and
17735       if (!Y.getNode())
17736         return SDValue();
17737
17738       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17739       // Look through mask bitcast.
17740       if (Mask.getOpcode() == ISD::BITCAST)
17741         Mask = Mask.getOperand(0);
17742       if (X.getOpcode() == ISD::BITCAST)
17743         X = X.getOperand(0);
17744       if (Y.getOpcode() == ISD::BITCAST)
17745         Y = Y.getOperand(0);
17746
17747       EVT MaskVT = Mask.getValueType();
17748
17749       // Validate that the Mask operand is a vector sra node.
17750       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17751       // there is no psrai.b
17752       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17753       unsigned SraAmt = ~0;
17754       if (Mask.getOpcode() == ISD::SRA) {
17755         SDValue Amt = Mask.getOperand(1);
17756         if (isSplatVector(Amt.getNode())) {
17757           SDValue SclrAmt = Amt->getOperand(0);
17758           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17759             SraAmt = C->getZExtValue();
17760         }
17761       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17762         SDValue SraC = Mask.getOperand(1);
17763         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
17764       }
17765       if ((SraAmt + 1) != EltBits)
17766         return SDValue();
17767
17768       SDLoc DL(N);
17769
17770       // Now we know we at least have a plendvb with the mask val.  See if
17771       // we can form a psignb/w/d.
17772       // psign = x.type == y.type == mask.type && y = sub(0, x);
17773       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17774           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
17775           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17776         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17777                "Unsupported VT for PSIGN");
17778         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
17779         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17780       }
17781       // PBLENDVB only available on SSE 4.1
17782       if (!Subtarget->hasSSE41())
17783         return SDValue();
17784
17785       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17786
17787       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17788       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17789       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
17790       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
17791       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17792     }
17793   }
17794
17795   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17796     return SDValue();
17797
17798   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
17799   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17800     std::swap(N0, N1);
17801   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17802     return SDValue();
17803   if (!N0.hasOneUse() || !N1.hasOneUse())
17804     return SDValue();
17805
17806   SDValue ShAmt0 = N0.getOperand(1);
17807   if (ShAmt0.getValueType() != MVT::i8)
17808     return SDValue();
17809   SDValue ShAmt1 = N1.getOperand(1);
17810   if (ShAmt1.getValueType() != MVT::i8)
17811     return SDValue();
17812   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17813     ShAmt0 = ShAmt0.getOperand(0);
17814   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17815     ShAmt1 = ShAmt1.getOperand(0);
17816
17817   SDLoc DL(N);
17818   unsigned Opc = X86ISD::SHLD;
17819   SDValue Op0 = N0.getOperand(0);
17820   SDValue Op1 = N1.getOperand(0);
17821   if (ShAmt0.getOpcode() == ISD::SUB) {
17822     Opc = X86ISD::SHRD;
17823     std::swap(Op0, Op1);
17824     std::swap(ShAmt0, ShAmt1);
17825   }
17826
17827   unsigned Bits = VT.getSizeInBits();
17828   if (ShAmt1.getOpcode() == ISD::SUB) {
17829     SDValue Sum = ShAmt1.getOperand(0);
17830     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
17831       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17832       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17833         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17834       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
17835         return DAG.getNode(Opc, DL, VT,
17836                            Op0, Op1,
17837                            DAG.getNode(ISD::TRUNCATE, DL,
17838                                        MVT::i8, ShAmt0));
17839     }
17840   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17841     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17842     if (ShAmt0C &&
17843         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
17844       return DAG.getNode(Opc, DL, VT,
17845                          N0.getOperand(0), N1.getOperand(0),
17846                          DAG.getNode(ISD::TRUNCATE, DL,
17847                                        MVT::i8, ShAmt0));
17848   }
17849
17850   return SDValue();
17851 }
17852
17853 // Generate NEG and CMOV for integer abs.
17854 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17855   EVT VT = N->getValueType(0);
17856
17857   // Since X86 does not have CMOV for 8-bit integer, we don't convert
17858   // 8-bit integer abs to NEG and CMOV.
17859   if (VT.isInteger() && VT.getSizeInBits() == 8)
17860     return SDValue();
17861
17862   SDValue N0 = N->getOperand(0);
17863   SDValue N1 = N->getOperand(1);
17864   SDLoc DL(N);
17865
17866   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17867   // and change it to SUB and CMOV.
17868   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17869       N0.getOpcode() == ISD::ADD &&
17870       N0.getOperand(1) == N1 &&
17871       N1.getOpcode() == ISD::SRA &&
17872       N1.getOperand(0) == N0.getOperand(0))
17873     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17874       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17875         // Generate SUB & CMOV.
17876         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17877                                   DAG.getConstant(0, VT), N0.getOperand(0));
17878
17879         SDValue Ops[] = { N0.getOperand(0), Neg,
17880                           DAG.getConstant(X86::COND_GE, MVT::i8),
17881                           SDValue(Neg.getNode(), 1) };
17882         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17883                            Ops, array_lengthof(Ops));
17884       }
17885   return SDValue();
17886 }
17887
17888 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
17889 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17890                                  TargetLowering::DAGCombinerInfo &DCI,
17891                                  const X86Subtarget *Subtarget) {
17892   EVT VT = N->getValueType(0);
17893   if (DCI.isBeforeLegalizeOps())
17894     return SDValue();
17895
17896   if (Subtarget->hasCMov()) {
17897     SDValue RV = performIntegerAbsCombine(N, DAG);
17898     if (RV.getNode())
17899       return RV;
17900   }
17901
17902   // Try forming BMI if it is available.
17903   if (!Subtarget->hasBMI())
17904     return SDValue();
17905
17906   if (VT != MVT::i32 && VT != MVT::i64)
17907     return SDValue();
17908
17909   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17910
17911   // Create BLSMSK instructions by finding X ^ (X-1)
17912   SDValue N0 = N->getOperand(0);
17913   SDValue N1 = N->getOperand(1);
17914   SDLoc DL(N);
17915
17916   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17917       isAllOnes(N0.getOperand(1)))
17918     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17919
17920   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17921       isAllOnes(N1.getOperand(1)))
17922     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17923
17924   return SDValue();
17925 }
17926
17927 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17928 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
17929                                   TargetLowering::DAGCombinerInfo &DCI,
17930                                   const X86Subtarget *Subtarget) {
17931   LoadSDNode *Ld = cast<LoadSDNode>(N);
17932   EVT RegVT = Ld->getValueType(0);
17933   EVT MemVT = Ld->getMemoryVT();
17934   SDLoc dl(Ld);
17935   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17936   unsigned RegSz = RegVT.getSizeInBits();
17937
17938   // On Sandybridge unaligned 256bit loads are inefficient.
17939   ISD::LoadExtType Ext = Ld->getExtensionType();
17940   unsigned Alignment = Ld->getAlignment();
17941   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
17942   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
17943       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
17944     unsigned NumElems = RegVT.getVectorNumElements();
17945     if (NumElems < 2)
17946       return SDValue();
17947
17948     SDValue Ptr = Ld->getBasePtr();
17949     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17950
17951     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17952                                   NumElems/2);
17953     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17954                                 Ld->getPointerInfo(), Ld->isVolatile(),
17955                                 Ld->isNonTemporal(), Ld->isInvariant(),
17956                                 Alignment);
17957     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17958     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17959                                 Ld->getPointerInfo(), Ld->isVolatile(),
17960                                 Ld->isNonTemporal(), Ld->isInvariant(),
17961                                 std::min(16U, Alignment));
17962     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17963                              Load1.getValue(1),
17964                              Load2.getValue(1));
17965
17966     SDValue NewVec = DAG.getUNDEF(RegVT);
17967     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17968     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17969     return DCI.CombineTo(N, NewVec, TF, true);
17970   }
17971
17972   // If this is a vector EXT Load then attempt to optimize it using a
17973   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17974   // expansion is still better than scalar code.
17975   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17976   // emit a shuffle and a arithmetic shift.
17977   // TODO: It is possible to support ZExt by zeroing the undef values
17978   // during the shuffle phase or after the shuffle.
17979   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17980       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
17981     assert(MemVT != RegVT && "Cannot extend to the same type");
17982     assert(MemVT.isVector() && "Must load a vector from memory");
17983
17984     unsigned NumElems = RegVT.getVectorNumElements();
17985     unsigned MemSz = MemVT.getSizeInBits();
17986     assert(RegSz > MemSz && "Register size must be greater than the mem size");
17987
17988     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17989       return SDValue();
17990
17991     // All sizes must be a power of two.
17992     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17993       return SDValue();
17994
17995     // Attempt to load the original value using scalar loads.
17996     // Find the largest scalar type that divides the total loaded size.
17997     MVT SclrLoadTy = MVT::i8;
17998     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17999          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18000       MVT Tp = (MVT::SimpleValueType)tp;
18001       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18002         SclrLoadTy = Tp;
18003       }
18004     }
18005
18006     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18007     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18008         (64 <= MemSz))
18009       SclrLoadTy = MVT::f64;
18010
18011     // Calculate the number of scalar loads that we need to perform
18012     // in order to load our vector from memory.
18013     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18014     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18015       return SDValue();
18016
18017     unsigned loadRegZize = RegSz;
18018     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18019       loadRegZize /= 2;
18020
18021     // Represent our vector as a sequence of elements which are the
18022     // largest scalar that we can load.
18023     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18024       loadRegZize/SclrLoadTy.getSizeInBits());
18025
18026     // Represent the data using the same element type that is stored in
18027     // memory. In practice, we ''widen'' MemVT.
18028     EVT WideVecVT =
18029           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18030                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18031
18032     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18033       "Invalid vector type");
18034
18035     // We can't shuffle using an illegal type.
18036     if (!TLI.isTypeLegal(WideVecVT))
18037       return SDValue();
18038
18039     SmallVector<SDValue, 8> Chains;
18040     SDValue Ptr = Ld->getBasePtr();
18041     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18042                                         TLI.getPointerTy());
18043     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18044
18045     for (unsigned i = 0; i < NumLoads; ++i) {
18046       // Perform a single load.
18047       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18048                                        Ptr, Ld->getPointerInfo(),
18049                                        Ld->isVolatile(), Ld->isNonTemporal(),
18050                                        Ld->isInvariant(), Ld->getAlignment());
18051       Chains.push_back(ScalarLoad.getValue(1));
18052       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18053       // another round of DAGCombining.
18054       if (i == 0)
18055         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18056       else
18057         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18058                           ScalarLoad, DAG.getIntPtrConstant(i));
18059
18060       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18061     }
18062
18063     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18064                                Chains.size());
18065
18066     // Bitcast the loaded value to a vector of the original element type, in
18067     // the size of the target vector type.
18068     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18069     unsigned SizeRatio = RegSz/MemSz;
18070
18071     if (Ext == ISD::SEXTLOAD) {
18072       // If we have SSE4.1 we can directly emit a VSEXT node.
18073       if (Subtarget->hasSSE41()) {
18074         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18075         return DCI.CombineTo(N, Sext, TF, true);
18076       }
18077
18078       // Otherwise we'll shuffle the small elements in the high bits of the
18079       // larger type and perform an arithmetic shift. If the shift is not legal
18080       // it's better to scalarize.
18081       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18082         return SDValue();
18083
18084       // Redistribute the loaded elements into the different locations.
18085       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18086       for (unsigned i = 0; i != NumElems; ++i)
18087         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18088
18089       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18090                                            DAG.getUNDEF(WideVecVT),
18091                                            &ShuffleVec[0]);
18092
18093       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18094
18095       // Build the arithmetic shift.
18096       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18097                      MemVT.getVectorElementType().getSizeInBits();
18098       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18099                           DAG.getConstant(Amt, RegVT));
18100
18101       return DCI.CombineTo(N, Shuff, TF, true);
18102     }
18103
18104     // Redistribute the loaded elements into the different locations.
18105     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18106     for (unsigned i = 0; i != NumElems; ++i)
18107       ShuffleVec[i*SizeRatio] = i;
18108
18109     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18110                                          DAG.getUNDEF(WideVecVT),
18111                                          &ShuffleVec[0]);
18112
18113     // Bitcast to the requested type.
18114     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18115     // Replace the original load with the new sequence
18116     // and return the new chain.
18117     return DCI.CombineTo(N, Shuff, TF, true);
18118   }
18119
18120   return SDValue();
18121 }
18122
18123 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18124 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18125                                    const X86Subtarget *Subtarget) {
18126   StoreSDNode *St = cast<StoreSDNode>(N);
18127   EVT VT = St->getValue().getValueType();
18128   EVT StVT = St->getMemoryVT();
18129   SDLoc dl(St);
18130   SDValue StoredVal = St->getOperand(1);
18131   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18132
18133   // If we are saving a concatenation of two XMM registers, perform two stores.
18134   // On Sandy Bridge, 256-bit memory operations are executed by two
18135   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18136   // memory  operation.
18137   unsigned Alignment = St->getAlignment();
18138   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18139   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18140       StVT == VT && !IsAligned) {
18141     unsigned NumElems = VT.getVectorNumElements();
18142     if (NumElems < 2)
18143       return SDValue();
18144
18145     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18146     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18147
18148     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18149     SDValue Ptr0 = St->getBasePtr();
18150     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18151
18152     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18153                                 St->getPointerInfo(), St->isVolatile(),
18154                                 St->isNonTemporal(), Alignment);
18155     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18156                                 St->getPointerInfo(), St->isVolatile(),
18157                                 St->isNonTemporal(),
18158                                 std::min(16U, Alignment));
18159     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18160   }
18161
18162   // Optimize trunc store (of multiple scalars) to shuffle and store.
18163   // First, pack all of the elements in one place. Next, store to memory
18164   // in fewer chunks.
18165   if (St->isTruncatingStore() && VT.isVector()) {
18166     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18167     unsigned NumElems = VT.getVectorNumElements();
18168     assert(StVT != VT && "Cannot truncate to the same type");
18169     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18170     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18171
18172     // From, To sizes and ElemCount must be pow of two
18173     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18174     // We are going to use the original vector elt for storing.
18175     // Accumulated smaller vector elements must be a multiple of the store size.
18176     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18177
18178     unsigned SizeRatio  = FromSz / ToSz;
18179
18180     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18181
18182     // Create a type on which we perform the shuffle
18183     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18184             StVT.getScalarType(), NumElems*SizeRatio);
18185
18186     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18187
18188     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18189     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18190     for (unsigned i = 0; i != NumElems; ++i)
18191       ShuffleVec[i] = i * SizeRatio;
18192
18193     // Can't shuffle using an illegal type.
18194     if (!TLI.isTypeLegal(WideVecVT))
18195       return SDValue();
18196
18197     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18198                                          DAG.getUNDEF(WideVecVT),
18199                                          &ShuffleVec[0]);
18200     // At this point all of the data is stored at the bottom of the
18201     // register. We now need to save it to mem.
18202
18203     // Find the largest store unit
18204     MVT StoreType = MVT::i8;
18205     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18206          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18207       MVT Tp = (MVT::SimpleValueType)tp;
18208       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18209         StoreType = Tp;
18210     }
18211
18212     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18213     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18214         (64 <= NumElems * ToSz))
18215       StoreType = MVT::f64;
18216
18217     // Bitcast the original vector into a vector of store-size units
18218     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18219             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18220     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18221     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18222     SmallVector<SDValue, 8> Chains;
18223     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18224                                         TLI.getPointerTy());
18225     SDValue Ptr = St->getBasePtr();
18226
18227     // Perform one or more big stores into memory.
18228     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18229       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18230                                    StoreType, ShuffWide,
18231                                    DAG.getIntPtrConstant(i));
18232       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18233                                 St->getPointerInfo(), St->isVolatile(),
18234                                 St->isNonTemporal(), St->getAlignment());
18235       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18236       Chains.push_back(Ch);
18237     }
18238
18239     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18240                                Chains.size());
18241   }
18242
18243   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18244   // the FP state in cases where an emms may be missing.
18245   // A preferable solution to the general problem is to figure out the right
18246   // places to insert EMMS.  This qualifies as a quick hack.
18247
18248   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18249   if (VT.getSizeInBits() != 64)
18250     return SDValue();
18251
18252   const Function *F = DAG.getMachineFunction().getFunction();
18253   bool NoImplicitFloatOps = F->getAttributes().
18254     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18255   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18256                      && Subtarget->hasSSE2();
18257   if ((VT.isVector() ||
18258        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18259       isa<LoadSDNode>(St->getValue()) &&
18260       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18261       St->getChain().hasOneUse() && !St->isVolatile()) {
18262     SDNode* LdVal = St->getValue().getNode();
18263     LoadSDNode *Ld = 0;
18264     int TokenFactorIndex = -1;
18265     SmallVector<SDValue, 8> Ops;
18266     SDNode* ChainVal = St->getChain().getNode();
18267     // Must be a store of a load.  We currently handle two cases:  the load
18268     // is a direct child, and it's under an intervening TokenFactor.  It is
18269     // possible to dig deeper under nested TokenFactors.
18270     if (ChainVal == LdVal)
18271       Ld = cast<LoadSDNode>(St->getChain());
18272     else if (St->getValue().hasOneUse() &&
18273              ChainVal->getOpcode() == ISD::TokenFactor) {
18274       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18275         if (ChainVal->getOperand(i).getNode() == LdVal) {
18276           TokenFactorIndex = i;
18277           Ld = cast<LoadSDNode>(St->getValue());
18278         } else
18279           Ops.push_back(ChainVal->getOperand(i));
18280       }
18281     }
18282
18283     if (!Ld || !ISD::isNormalLoad(Ld))
18284       return SDValue();
18285
18286     // If this is not the MMX case, i.e. we are just turning i64 load/store
18287     // into f64 load/store, avoid the transformation if there are multiple
18288     // uses of the loaded value.
18289     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18290       return SDValue();
18291
18292     SDLoc LdDL(Ld);
18293     SDLoc StDL(N);
18294     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18295     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18296     // pair instead.
18297     if (Subtarget->is64Bit() || F64IsLegal) {
18298       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18299       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18300                                   Ld->getPointerInfo(), Ld->isVolatile(),
18301                                   Ld->isNonTemporal(), Ld->isInvariant(),
18302                                   Ld->getAlignment());
18303       SDValue NewChain = NewLd.getValue(1);
18304       if (TokenFactorIndex != -1) {
18305         Ops.push_back(NewChain);
18306         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18307                                Ops.size());
18308       }
18309       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18310                           St->getPointerInfo(),
18311                           St->isVolatile(), St->isNonTemporal(),
18312                           St->getAlignment());
18313     }
18314
18315     // Otherwise, lower to two pairs of 32-bit loads / stores.
18316     SDValue LoAddr = Ld->getBasePtr();
18317     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18318                                  DAG.getConstant(4, MVT::i32));
18319
18320     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18321                                Ld->getPointerInfo(),
18322                                Ld->isVolatile(), Ld->isNonTemporal(),
18323                                Ld->isInvariant(), Ld->getAlignment());
18324     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18325                                Ld->getPointerInfo().getWithOffset(4),
18326                                Ld->isVolatile(), Ld->isNonTemporal(),
18327                                Ld->isInvariant(),
18328                                MinAlign(Ld->getAlignment(), 4));
18329
18330     SDValue NewChain = LoLd.getValue(1);
18331     if (TokenFactorIndex != -1) {
18332       Ops.push_back(LoLd);
18333       Ops.push_back(HiLd);
18334       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18335                              Ops.size());
18336     }
18337
18338     LoAddr = St->getBasePtr();
18339     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18340                          DAG.getConstant(4, MVT::i32));
18341
18342     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18343                                 St->getPointerInfo(),
18344                                 St->isVolatile(), St->isNonTemporal(),
18345                                 St->getAlignment());
18346     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18347                                 St->getPointerInfo().getWithOffset(4),
18348                                 St->isVolatile(),
18349                                 St->isNonTemporal(),
18350                                 MinAlign(St->getAlignment(), 4));
18351     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18352   }
18353   return SDValue();
18354 }
18355
18356 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18357 /// and return the operands for the horizontal operation in LHS and RHS.  A
18358 /// horizontal operation performs the binary operation on successive elements
18359 /// of its first operand, then on successive elements of its second operand,
18360 /// returning the resulting values in a vector.  For example, if
18361 ///   A = < float a0, float a1, float a2, float a3 >
18362 /// and
18363 ///   B = < float b0, float b1, float b2, float b3 >
18364 /// then the result of doing a horizontal operation on A and B is
18365 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18366 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18367 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18368 /// set to A, RHS to B, and the routine returns 'true'.
18369 /// Note that the binary operation should have the property that if one of the
18370 /// operands is UNDEF then the result is UNDEF.
18371 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18372   // Look for the following pattern: if
18373   //   A = < float a0, float a1, float a2, float a3 >
18374   //   B = < float b0, float b1, float b2, float b3 >
18375   // and
18376   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18377   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18378   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18379   // which is A horizontal-op B.
18380
18381   // At least one of the operands should be a vector shuffle.
18382   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18383       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18384     return false;
18385
18386   MVT VT = LHS.getSimpleValueType();
18387
18388   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18389          "Unsupported vector type for horizontal add/sub");
18390
18391   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18392   // operate independently on 128-bit lanes.
18393   unsigned NumElts = VT.getVectorNumElements();
18394   unsigned NumLanes = VT.getSizeInBits()/128;
18395   unsigned NumLaneElts = NumElts / NumLanes;
18396   assert((NumLaneElts % 2 == 0) &&
18397          "Vector type should have an even number of elements in each lane");
18398   unsigned HalfLaneElts = NumLaneElts/2;
18399
18400   // View LHS in the form
18401   //   LHS = VECTOR_SHUFFLE A, B, LMask
18402   // If LHS is not a shuffle then pretend it is the shuffle
18403   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18404   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18405   // type VT.
18406   SDValue A, B;
18407   SmallVector<int, 16> LMask(NumElts);
18408   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18409     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18410       A = LHS.getOperand(0);
18411     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18412       B = LHS.getOperand(1);
18413     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18414     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18415   } else {
18416     if (LHS.getOpcode() != ISD::UNDEF)
18417       A = LHS;
18418     for (unsigned i = 0; i != NumElts; ++i)
18419       LMask[i] = i;
18420   }
18421
18422   // Likewise, view RHS in the form
18423   //   RHS = VECTOR_SHUFFLE C, D, RMask
18424   SDValue C, D;
18425   SmallVector<int, 16> RMask(NumElts);
18426   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18427     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18428       C = RHS.getOperand(0);
18429     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18430       D = RHS.getOperand(1);
18431     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18432     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18433   } else {
18434     if (RHS.getOpcode() != ISD::UNDEF)
18435       C = RHS;
18436     for (unsigned i = 0; i != NumElts; ++i)
18437       RMask[i] = i;
18438   }
18439
18440   // Check that the shuffles are both shuffling the same vectors.
18441   if (!(A == C && B == D) && !(A == D && B == C))
18442     return false;
18443
18444   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18445   if (!A.getNode() && !B.getNode())
18446     return false;
18447
18448   // If A and B occur in reverse order in RHS, then "swap" them (which means
18449   // rewriting the mask).
18450   if (A != C)
18451     CommuteVectorShuffleMask(RMask, NumElts);
18452
18453   // At this point LHS and RHS are equivalent to
18454   //   LHS = VECTOR_SHUFFLE A, B, LMask
18455   //   RHS = VECTOR_SHUFFLE A, B, RMask
18456   // Check that the masks correspond to performing a horizontal operation.
18457   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18458     for (unsigned i = 0; i != NumLaneElts; ++i) {
18459       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18460
18461       // Ignore any UNDEF components.
18462       if (LIdx < 0 || RIdx < 0 ||
18463           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18464           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18465         continue;
18466
18467       // Check that successive elements are being operated on.  If not, this is
18468       // not a horizontal operation.
18469       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18470       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18471       if (!(LIdx == Index && RIdx == Index + 1) &&
18472           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18473         return false;
18474     }
18475   }
18476
18477   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18478   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18479   return true;
18480 }
18481
18482 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18483 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18484                                   const X86Subtarget *Subtarget) {
18485   EVT VT = N->getValueType(0);
18486   SDValue LHS = N->getOperand(0);
18487   SDValue RHS = N->getOperand(1);
18488
18489   // Try to synthesize horizontal adds from adds of shuffles.
18490   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18491        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18492       isHorizontalBinOp(LHS, RHS, true))
18493     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18494   return SDValue();
18495 }
18496
18497 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18498 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18499                                   const X86Subtarget *Subtarget) {
18500   EVT VT = N->getValueType(0);
18501   SDValue LHS = N->getOperand(0);
18502   SDValue RHS = N->getOperand(1);
18503
18504   // Try to synthesize horizontal subs from subs of shuffles.
18505   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18506        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18507       isHorizontalBinOp(LHS, RHS, false))
18508     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18509   return SDValue();
18510 }
18511
18512 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18513 /// X86ISD::FXOR nodes.
18514 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18515   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18516   // F[X]OR(0.0, x) -> x
18517   // F[X]OR(x, 0.0) -> x
18518   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18519     if (C->getValueAPF().isPosZero())
18520       return N->getOperand(1);
18521   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18522     if (C->getValueAPF().isPosZero())
18523       return N->getOperand(0);
18524   return SDValue();
18525 }
18526
18527 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18528 /// X86ISD::FMAX nodes.
18529 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18530   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18531
18532   // Only perform optimizations if UnsafeMath is used.
18533   if (!DAG.getTarget().Options.UnsafeFPMath)
18534     return SDValue();
18535
18536   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18537   // into FMINC and FMAXC, which are Commutative operations.
18538   unsigned NewOp = 0;
18539   switch (N->getOpcode()) {
18540     default: llvm_unreachable("unknown opcode");
18541     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18542     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18543   }
18544
18545   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18546                      N->getOperand(0), N->getOperand(1));
18547 }
18548
18549 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18550 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18551   // FAND(0.0, x) -> 0.0
18552   // FAND(x, 0.0) -> 0.0
18553   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18554     if (C->getValueAPF().isPosZero())
18555       return N->getOperand(0);
18556   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18557     if (C->getValueAPF().isPosZero())
18558       return N->getOperand(1);
18559   return SDValue();
18560 }
18561
18562 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18563 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18564   // FANDN(x, 0.0) -> 0.0
18565   // FANDN(0.0, x) -> x
18566   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18567     if (C->getValueAPF().isPosZero())
18568       return N->getOperand(1);
18569   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18570     if (C->getValueAPF().isPosZero())
18571       return N->getOperand(1);
18572   return SDValue();
18573 }
18574
18575 static SDValue PerformBTCombine(SDNode *N,
18576                                 SelectionDAG &DAG,
18577                                 TargetLowering::DAGCombinerInfo &DCI) {
18578   // BT ignores high bits in the bit index operand.
18579   SDValue Op1 = N->getOperand(1);
18580   if (Op1.hasOneUse()) {
18581     unsigned BitWidth = Op1.getValueSizeInBits();
18582     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18583     APInt KnownZero, KnownOne;
18584     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18585                                           !DCI.isBeforeLegalizeOps());
18586     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18587     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18588         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18589       DCI.CommitTargetLoweringOpt(TLO);
18590   }
18591   return SDValue();
18592 }
18593
18594 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18595   SDValue Op = N->getOperand(0);
18596   if (Op.getOpcode() == ISD::BITCAST)
18597     Op = Op.getOperand(0);
18598   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18599   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18600       VT.getVectorElementType().getSizeInBits() ==
18601       OpVT.getVectorElementType().getSizeInBits()) {
18602     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18603   }
18604   return SDValue();
18605 }
18606
18607 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18608                                                const X86Subtarget *Subtarget) {
18609   EVT VT = N->getValueType(0);
18610   if (!VT.isVector())
18611     return SDValue();
18612
18613   SDValue N0 = N->getOperand(0);
18614   SDValue N1 = N->getOperand(1);
18615   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18616   SDLoc dl(N);
18617
18618   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18619   // both SSE and AVX2 since there is no sign-extended shift right
18620   // operation on a vector with 64-bit elements.
18621   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18622   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18623   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18624       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18625     SDValue N00 = N0.getOperand(0);
18626
18627     // EXTLOAD has a better solution on AVX2,
18628     // it may be replaced with X86ISD::VSEXT node.
18629     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18630       if (!ISD::isNormalLoad(N00.getNode()))
18631         return SDValue();
18632
18633     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18634         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18635                                   N00, N1);
18636       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18637     }
18638   }
18639   return SDValue();
18640 }
18641
18642 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18643                                   TargetLowering::DAGCombinerInfo &DCI,
18644                                   const X86Subtarget *Subtarget) {
18645   if (!DCI.isBeforeLegalizeOps())
18646     return SDValue();
18647
18648   if (!Subtarget->hasFp256())
18649     return SDValue();
18650
18651   EVT VT = N->getValueType(0);
18652   if (VT.isVector() && VT.getSizeInBits() == 256) {
18653     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18654     if (R.getNode())
18655       return R;
18656   }
18657
18658   return SDValue();
18659 }
18660
18661 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18662                                  const X86Subtarget* Subtarget) {
18663   SDLoc dl(N);
18664   EVT VT = N->getValueType(0);
18665
18666   // Let legalize expand this if it isn't a legal type yet.
18667   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18668     return SDValue();
18669
18670   EVT ScalarVT = VT.getScalarType();
18671   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18672       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18673     return SDValue();
18674
18675   SDValue A = N->getOperand(0);
18676   SDValue B = N->getOperand(1);
18677   SDValue C = N->getOperand(2);
18678
18679   bool NegA = (A.getOpcode() == ISD::FNEG);
18680   bool NegB = (B.getOpcode() == ISD::FNEG);
18681   bool NegC = (C.getOpcode() == ISD::FNEG);
18682
18683   // Negative multiplication when NegA xor NegB
18684   bool NegMul = (NegA != NegB);
18685   if (NegA)
18686     A = A.getOperand(0);
18687   if (NegB)
18688     B = B.getOperand(0);
18689   if (NegC)
18690     C = C.getOperand(0);
18691
18692   unsigned Opcode;
18693   if (!NegMul)
18694     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18695   else
18696     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18697
18698   return DAG.getNode(Opcode, dl, VT, A, B, C);
18699 }
18700
18701 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18702                                   TargetLowering::DAGCombinerInfo &DCI,
18703                                   const X86Subtarget *Subtarget) {
18704   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18705   //           (and (i32 x86isd::setcc_carry), 1)
18706   // This eliminates the zext. This transformation is necessary because
18707   // ISD::SETCC is always legalized to i8.
18708   SDLoc dl(N);
18709   SDValue N0 = N->getOperand(0);
18710   EVT VT = N->getValueType(0);
18711
18712   if (N0.getOpcode() == ISD::AND &&
18713       N0.hasOneUse() &&
18714       N0.getOperand(0).hasOneUse()) {
18715     SDValue N00 = N0.getOperand(0);
18716     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18717       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18718       if (!C || C->getZExtValue() != 1)
18719         return SDValue();
18720       return DAG.getNode(ISD::AND, dl, VT,
18721                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18722                                      N00.getOperand(0), N00.getOperand(1)),
18723                          DAG.getConstant(1, VT));
18724     }
18725   }
18726
18727   if (VT.is256BitVector()) {
18728     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18729     if (R.getNode())
18730       return R;
18731   }
18732
18733   return SDValue();
18734 }
18735
18736 // Optimize x == -y --> x+y == 0
18737 //          x != -y --> x+y != 0
18738 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18739   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18740   SDValue LHS = N->getOperand(0);
18741   SDValue RHS = N->getOperand(1);
18742
18743   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18744     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18745       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
18746         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18747                                    LHS.getValueType(), RHS, LHS.getOperand(1));
18748         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18749                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18750       }
18751   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18752     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18753       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
18754         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18755                                    RHS.getValueType(), LHS, RHS.getOperand(1));
18756         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18757                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18758       }
18759   return SDValue();
18760 }
18761
18762 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18763 // as "sbb reg,reg", since it can be extended without zext and produces
18764 // an all-ones bit which is more useful than 0/1 in some cases.
18765 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
18766   return DAG.getNode(ISD::AND, DL, MVT::i8,
18767                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18768                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18769                      DAG.getConstant(1, MVT::i8));
18770 }
18771
18772 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
18773 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18774                                    TargetLowering::DAGCombinerInfo &DCI,
18775                                    const X86Subtarget *Subtarget) {
18776   SDLoc DL(N);
18777   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18778   SDValue EFLAGS = N->getOperand(1);
18779
18780   if (CC == X86::COND_A) {
18781     // Try to convert COND_A into COND_B in an attempt to facilitate
18782     // materializing "setb reg".
18783     //
18784     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18785     // cannot take an immediate as its first operand.
18786     //
18787     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
18788         EFLAGS.getValueType().isInteger() &&
18789         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
18790       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
18791                                    EFLAGS.getNode()->getVTList(),
18792                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18793       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18794       return MaterializeSETB(DL, NewEFLAGS, DAG);
18795     }
18796   }
18797
18798   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18799   // a zext and produces an all-ones bit which is more useful than 0/1 in some
18800   // cases.
18801   if (CC == X86::COND_B)
18802     return MaterializeSETB(DL, EFLAGS, DAG);
18803
18804   SDValue Flags;
18805
18806   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18807   if (Flags.getNode()) {
18808     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18809     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18810   }
18811
18812   return SDValue();
18813 }
18814
18815 // Optimize branch condition evaluation.
18816 //
18817 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18818                                     TargetLowering::DAGCombinerInfo &DCI,
18819                                     const X86Subtarget *Subtarget) {
18820   SDLoc DL(N);
18821   SDValue Chain = N->getOperand(0);
18822   SDValue Dest = N->getOperand(1);
18823   SDValue EFLAGS = N->getOperand(3);
18824   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18825
18826   SDValue Flags;
18827
18828   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18829   if (Flags.getNode()) {
18830     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18831     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18832                        Flags);
18833   }
18834
18835   return SDValue();
18836 }
18837
18838 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18839                                         const X86TargetLowering *XTLI) {
18840   SDValue Op0 = N->getOperand(0);
18841   EVT InVT = Op0->getValueType(0);
18842
18843   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
18844   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
18845     SDLoc dl(N);
18846     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
18847     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18848     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18849   }
18850
18851   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18852   // a 32-bit target where SSE doesn't support i64->FP operations.
18853   if (Op0.getOpcode() == ISD::LOAD) {
18854     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18855     EVT VT = Ld->getValueType(0);
18856     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18857         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18858         !XTLI->getSubtarget()->is64Bit() &&
18859         VT == MVT::i64) {
18860       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18861                                           Ld->getChain(), Op0, DAG);
18862       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18863       return FILDChain;
18864     }
18865   }
18866   return SDValue();
18867 }
18868
18869 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18870 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18871                                  X86TargetLowering::DAGCombinerInfo &DCI) {
18872   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18873   // the result is either zero or one (depending on the input carry bit).
18874   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18875   if (X86::isZeroNode(N->getOperand(0)) &&
18876       X86::isZeroNode(N->getOperand(1)) &&
18877       // We don't have a good way to replace an EFLAGS use, so only do this when
18878       // dead right now.
18879       SDValue(N, 1).use_empty()) {
18880     SDLoc DL(N);
18881     EVT VT = N->getValueType(0);
18882     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18883     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18884                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18885                                            DAG.getConstant(X86::COND_B,MVT::i8),
18886                                            N->getOperand(2)),
18887                                DAG.getConstant(1, VT));
18888     return DCI.CombineTo(N, Res1, CarryOut);
18889   }
18890
18891   return SDValue();
18892 }
18893
18894 // fold (add Y, (sete  X, 0)) -> adc  0, Y
18895 //      (add Y, (setne X, 0)) -> sbb -1, Y
18896 //      (sub (sete  X, 0), Y) -> sbb  0, Y
18897 //      (sub (setne X, 0), Y) -> adc -1, Y
18898 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
18899   SDLoc DL(N);
18900
18901   // Look through ZExts.
18902   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18903   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18904     return SDValue();
18905
18906   SDValue SetCC = Ext.getOperand(0);
18907   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18908     return SDValue();
18909
18910   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18911   if (CC != X86::COND_E && CC != X86::COND_NE)
18912     return SDValue();
18913
18914   SDValue Cmp = SetCC.getOperand(1);
18915   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
18916       !X86::isZeroNode(Cmp.getOperand(1)) ||
18917       !Cmp.getOperand(0).getValueType().isInteger())
18918     return SDValue();
18919
18920   SDValue CmpOp0 = Cmp.getOperand(0);
18921   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18922                                DAG.getConstant(1, CmpOp0.getValueType()));
18923
18924   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18925   if (CC == X86::COND_NE)
18926     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18927                        DL, OtherVal.getValueType(), OtherVal,
18928                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18929   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18930                      DL, OtherVal.getValueType(), OtherVal,
18931                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18932 }
18933
18934 /// PerformADDCombine - Do target-specific dag combines on integer adds.
18935 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18936                                  const X86Subtarget *Subtarget) {
18937   EVT VT = N->getValueType(0);
18938   SDValue Op0 = N->getOperand(0);
18939   SDValue Op1 = N->getOperand(1);
18940
18941   // Try to synthesize horizontal adds from adds of shuffles.
18942   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18943        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18944       isHorizontalBinOp(Op0, Op1, true))
18945     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
18946
18947   return OptimizeConditionalInDecrement(N, DAG);
18948 }
18949
18950 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18951                                  const X86Subtarget *Subtarget) {
18952   SDValue Op0 = N->getOperand(0);
18953   SDValue Op1 = N->getOperand(1);
18954
18955   // X86 can't encode an immediate LHS of a sub. See if we can push the
18956   // negation into a preceding instruction.
18957   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
18958     // If the RHS of the sub is a XOR with one use and a constant, invert the
18959     // immediate. Then add one to the LHS of the sub so we can turn
18960     // X-Y -> X+~Y+1, saving one register.
18961     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18962         isa<ConstantSDNode>(Op1.getOperand(1))) {
18963       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
18964       EVT VT = Op0.getValueType();
18965       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
18966                                    Op1.getOperand(0),
18967                                    DAG.getConstant(~XorC, VT));
18968       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
18969                          DAG.getConstant(C->getAPIntValue()+1, VT));
18970     }
18971   }
18972
18973   // Try to synthesize horizontal adds from adds of shuffles.
18974   EVT VT = N->getValueType(0);
18975   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18976        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18977       isHorizontalBinOp(Op0, Op1, true))
18978     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
18979
18980   return OptimizeConditionalInDecrement(N, DAG);
18981 }
18982
18983 /// performVZEXTCombine - Performs build vector combines
18984 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18985                                         TargetLowering::DAGCombinerInfo &DCI,
18986                                         const X86Subtarget *Subtarget) {
18987   // (vzext (bitcast (vzext (x)) -> (vzext x)
18988   SDValue In = N->getOperand(0);
18989   while (In.getOpcode() == ISD::BITCAST)
18990     In = In.getOperand(0);
18991
18992   if (In.getOpcode() != X86ISD::VZEXT)
18993     return SDValue();
18994
18995   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
18996                      In.getOperand(0));
18997 }
18998
18999 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19000                                              DAGCombinerInfo &DCI) const {
19001   SelectionDAG &DAG = DCI.DAG;
19002   switch (N->getOpcode()) {
19003   default: break;
19004   case ISD::EXTRACT_VECTOR_ELT:
19005     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19006   case ISD::VSELECT:
19007   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19008   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19009   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19010   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19011   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19012   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19013   case ISD::SHL:
19014   case ISD::SRA:
19015   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19016   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19017   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19018   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19019   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19020   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19021   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19022   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19023   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19024   case X86ISD::FXOR:
19025   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19026   case X86ISD::FMIN:
19027   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19028   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19029   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19030   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19031   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19032   case ISD::ANY_EXTEND:
19033   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19034   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19035   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19036   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19037   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19038   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19039   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19040   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19041   case X86ISD::SHUFP:       // Handle all target specific shuffles
19042   case X86ISD::PALIGNR:
19043   case X86ISD::UNPCKH:
19044   case X86ISD::UNPCKL:
19045   case X86ISD::MOVHLPS:
19046   case X86ISD::MOVLHPS:
19047   case X86ISD::PSHUFD:
19048   case X86ISD::PSHUFHW:
19049   case X86ISD::PSHUFLW:
19050   case X86ISD::MOVSS:
19051   case X86ISD::MOVSD:
19052   case X86ISD::VPERMILP:
19053   case X86ISD::VPERM2X128:
19054   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19055   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19056   }
19057
19058   return SDValue();
19059 }
19060
19061 /// isTypeDesirableForOp - Return true if the target has native support for
19062 /// the specified value type and it is 'desirable' to use the type for the
19063 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19064 /// instruction encodings are longer and some i16 instructions are slow.
19065 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19066   if (!isTypeLegal(VT))
19067     return false;
19068   if (VT != MVT::i16)
19069     return true;
19070
19071   switch (Opc) {
19072   default:
19073     return true;
19074   case ISD::LOAD:
19075   case ISD::SIGN_EXTEND:
19076   case ISD::ZERO_EXTEND:
19077   case ISD::ANY_EXTEND:
19078   case ISD::SHL:
19079   case ISD::SRL:
19080   case ISD::SUB:
19081   case ISD::ADD:
19082   case ISD::MUL:
19083   case ISD::AND:
19084   case ISD::OR:
19085   case ISD::XOR:
19086     return false;
19087   }
19088 }
19089
19090 /// IsDesirableToPromoteOp - This method query the target whether it is
19091 /// beneficial for dag combiner to promote the specified node. If true, it
19092 /// should return the desired promotion type by reference.
19093 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19094   EVT VT = Op.getValueType();
19095   if (VT != MVT::i16)
19096     return false;
19097
19098   bool Promote = false;
19099   bool Commute = false;
19100   switch (Op.getOpcode()) {
19101   default: break;
19102   case ISD::LOAD: {
19103     LoadSDNode *LD = cast<LoadSDNode>(Op);
19104     // If the non-extending load has a single use and it's not live out, then it
19105     // might be folded.
19106     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19107                                                      Op.hasOneUse()*/) {
19108       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19109              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19110         // The only case where we'd want to promote LOAD (rather then it being
19111         // promoted as an operand is when it's only use is liveout.
19112         if (UI->getOpcode() != ISD::CopyToReg)
19113           return false;
19114       }
19115     }
19116     Promote = true;
19117     break;
19118   }
19119   case ISD::SIGN_EXTEND:
19120   case ISD::ZERO_EXTEND:
19121   case ISD::ANY_EXTEND:
19122     Promote = true;
19123     break;
19124   case ISD::SHL:
19125   case ISD::SRL: {
19126     SDValue N0 = Op.getOperand(0);
19127     // Look out for (store (shl (load), x)).
19128     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19129       return false;
19130     Promote = true;
19131     break;
19132   }
19133   case ISD::ADD:
19134   case ISD::MUL:
19135   case ISD::AND:
19136   case ISD::OR:
19137   case ISD::XOR:
19138     Commute = true;
19139     // fallthrough
19140   case ISD::SUB: {
19141     SDValue N0 = Op.getOperand(0);
19142     SDValue N1 = Op.getOperand(1);
19143     if (!Commute && MayFoldLoad(N1))
19144       return false;
19145     // Avoid disabling potential load folding opportunities.
19146     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19147       return false;
19148     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19149       return false;
19150     Promote = true;
19151   }
19152   }
19153
19154   PVT = MVT::i32;
19155   return Promote;
19156 }
19157
19158 //===----------------------------------------------------------------------===//
19159 //                           X86 Inline Assembly Support
19160 //===----------------------------------------------------------------------===//
19161
19162 namespace {
19163   // Helper to match a string separated by whitespace.
19164   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19165     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19166
19167     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19168       StringRef piece(*args[i]);
19169       if (!s.startswith(piece)) // Check if the piece matches.
19170         return false;
19171
19172       s = s.substr(piece.size());
19173       StringRef::size_type pos = s.find_first_not_of(" \t");
19174       if (pos == 0) // We matched a prefix.
19175         return false;
19176
19177       s = s.substr(pos);
19178     }
19179
19180     return s.empty();
19181   }
19182   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19183 }
19184
19185 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19186   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19187
19188   std::string AsmStr = IA->getAsmString();
19189
19190   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19191   if (!Ty || Ty->getBitWidth() % 16 != 0)
19192     return false;
19193
19194   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19195   SmallVector<StringRef, 4> AsmPieces;
19196   SplitString(AsmStr, AsmPieces, ";\n");
19197
19198   switch (AsmPieces.size()) {
19199   default: return false;
19200   case 1:
19201     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19202     // we will turn this bswap into something that will be lowered to logical
19203     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19204     // lower so don't worry about this.
19205     // bswap $0
19206     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19207         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19208         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19209         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19210         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19211         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19212       // No need to check constraints, nothing other than the equivalent of
19213       // "=r,0" would be valid here.
19214       return IntrinsicLowering::LowerToByteSwap(CI);
19215     }
19216
19217     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19218     if (CI->getType()->isIntegerTy(16) &&
19219         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19220         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19221          matchAsm(AsmPieces[0], "rolw", "$$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     break;
19234   case 3:
19235     if (CI->getType()->isIntegerTy(32) &&
19236         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19237         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19238         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19239         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19240       AsmPieces.clear();
19241       const std::string &ConstraintsStr = IA->getConstraintString();
19242       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19243       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19244       if (AsmPieces.size() == 4 &&
19245           AsmPieces[0] == "~{cc}" &&
19246           AsmPieces[1] == "~{dirflag}" &&
19247           AsmPieces[2] == "~{flags}" &&
19248           AsmPieces[3] == "~{fpsr}")
19249         return IntrinsicLowering::LowerToByteSwap(CI);
19250     }
19251
19252     if (CI->getType()->isIntegerTy(64)) {
19253       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19254       if (Constraints.size() >= 2 &&
19255           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19256           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19257         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19258         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19259             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19260             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19261           return IntrinsicLowering::LowerToByteSwap(CI);
19262       }
19263     }
19264     break;
19265   }
19266   return false;
19267 }
19268
19269 /// getConstraintType - Given a constraint letter, return the type of
19270 /// constraint it is for this target.
19271 X86TargetLowering::ConstraintType
19272 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19273   if (Constraint.size() == 1) {
19274     switch (Constraint[0]) {
19275     case 'R':
19276     case 'q':
19277     case 'Q':
19278     case 'f':
19279     case 't':
19280     case 'u':
19281     case 'y':
19282     case 'x':
19283     case 'Y':
19284     case 'l':
19285       return C_RegisterClass;
19286     case 'a':
19287     case 'b':
19288     case 'c':
19289     case 'd':
19290     case 'S':
19291     case 'D':
19292     case 'A':
19293       return C_Register;
19294     case 'I':
19295     case 'J':
19296     case 'K':
19297     case 'L':
19298     case 'M':
19299     case 'N':
19300     case 'G':
19301     case 'C':
19302     case 'e':
19303     case 'Z':
19304       return C_Other;
19305     default:
19306       break;
19307     }
19308   }
19309   return TargetLowering::getConstraintType(Constraint);
19310 }
19311
19312 /// Examine constraint type and operand type and determine a weight value.
19313 /// This object must already have been set up with the operand type
19314 /// and the current alternative constraint selected.
19315 TargetLowering::ConstraintWeight
19316   X86TargetLowering::getSingleConstraintMatchWeight(
19317     AsmOperandInfo &info, const char *constraint) const {
19318   ConstraintWeight weight = CW_Invalid;
19319   Value *CallOperandVal = info.CallOperandVal;
19320     // If we don't have a value, we can't do a match,
19321     // but allow it at the lowest weight.
19322   if (CallOperandVal == NULL)
19323     return CW_Default;
19324   Type *type = CallOperandVal->getType();
19325   // Look at the constraint type.
19326   switch (*constraint) {
19327   default:
19328     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19329   case 'R':
19330   case 'q':
19331   case 'Q':
19332   case 'a':
19333   case 'b':
19334   case 'c':
19335   case 'd':
19336   case 'S':
19337   case 'D':
19338   case 'A':
19339     if (CallOperandVal->getType()->isIntegerTy())
19340       weight = CW_SpecificReg;
19341     break;
19342   case 'f':
19343   case 't':
19344   case 'u':
19345     if (type->isFloatingPointTy())
19346       weight = CW_SpecificReg;
19347     break;
19348   case 'y':
19349     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19350       weight = CW_SpecificReg;
19351     break;
19352   case 'x':
19353   case 'Y':
19354     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19355         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19356       weight = CW_Register;
19357     break;
19358   case 'I':
19359     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19360       if (C->getZExtValue() <= 31)
19361         weight = CW_Constant;
19362     }
19363     break;
19364   case 'J':
19365     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19366       if (C->getZExtValue() <= 63)
19367         weight = CW_Constant;
19368     }
19369     break;
19370   case 'K':
19371     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19372       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19373         weight = CW_Constant;
19374     }
19375     break;
19376   case 'L':
19377     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19378       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19379         weight = CW_Constant;
19380     }
19381     break;
19382   case 'M':
19383     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19384       if (C->getZExtValue() <= 3)
19385         weight = CW_Constant;
19386     }
19387     break;
19388   case 'N':
19389     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19390       if (C->getZExtValue() <= 0xff)
19391         weight = CW_Constant;
19392     }
19393     break;
19394   case 'G':
19395   case 'C':
19396     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19397       weight = CW_Constant;
19398     }
19399     break;
19400   case 'e':
19401     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19402       if ((C->getSExtValue() >= -0x80000000LL) &&
19403           (C->getSExtValue() <= 0x7fffffffLL))
19404         weight = CW_Constant;
19405     }
19406     break;
19407   case 'Z':
19408     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19409       if (C->getZExtValue() <= 0xffffffff)
19410         weight = CW_Constant;
19411     }
19412     break;
19413   }
19414   return weight;
19415 }
19416
19417 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19418 /// with another that has more specific requirements based on the type of the
19419 /// corresponding operand.
19420 const char *X86TargetLowering::
19421 LowerXConstraint(EVT ConstraintVT) const {
19422   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19423   // 'f' like normal targets.
19424   if (ConstraintVT.isFloatingPoint()) {
19425     if (Subtarget->hasSSE2())
19426       return "Y";
19427     if (Subtarget->hasSSE1())
19428       return "x";
19429   }
19430
19431   return TargetLowering::LowerXConstraint(ConstraintVT);
19432 }
19433
19434 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19435 /// vector.  If it is invalid, don't add anything to Ops.
19436 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19437                                                      std::string &Constraint,
19438                                                      std::vector<SDValue>&Ops,
19439                                                      SelectionDAG &DAG) const {
19440   SDValue Result(0, 0);
19441
19442   // Only support length 1 constraints for now.
19443   if (Constraint.length() > 1) return;
19444
19445   char ConstraintLetter = Constraint[0];
19446   switch (ConstraintLetter) {
19447   default: break;
19448   case 'I':
19449     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19450       if (C->getZExtValue() <= 31) {
19451         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19452         break;
19453       }
19454     }
19455     return;
19456   case 'J':
19457     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19458       if (C->getZExtValue() <= 63) {
19459         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19460         break;
19461       }
19462     }
19463     return;
19464   case 'K':
19465     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19466       if (isInt<8>(C->getSExtValue())) {
19467         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19468         break;
19469       }
19470     }
19471     return;
19472   case 'N':
19473     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19474       if (C->getZExtValue() <= 255) {
19475         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19476         break;
19477       }
19478     }
19479     return;
19480   case 'e': {
19481     // 32-bit signed value
19482     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19483       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19484                                            C->getSExtValue())) {
19485         // Widen to 64 bits here to get it sign extended.
19486         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19487         break;
19488       }
19489     // FIXME gcc accepts some relocatable values here too, but only in certain
19490     // memory models; it's complicated.
19491     }
19492     return;
19493   }
19494   case 'Z': {
19495     // 32-bit unsigned value
19496     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19497       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19498                                            C->getZExtValue())) {
19499         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19500         break;
19501       }
19502     }
19503     // FIXME gcc accepts some relocatable values here too, but only in certain
19504     // memory models; it's complicated.
19505     return;
19506   }
19507   case 'i': {
19508     // Literal immediates are always ok.
19509     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19510       // Widen to 64 bits here to get it sign extended.
19511       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19512       break;
19513     }
19514
19515     // In any sort of PIC mode addresses need to be computed at runtime by
19516     // adding in a register or some sort of table lookup.  These can't
19517     // be used as immediates.
19518     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19519       return;
19520
19521     // If we are in non-pic codegen mode, we allow the address of a global (with
19522     // an optional displacement) to be used with 'i'.
19523     GlobalAddressSDNode *GA = 0;
19524     int64_t Offset = 0;
19525
19526     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19527     while (1) {
19528       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19529         Offset += GA->getOffset();
19530         break;
19531       } else if (Op.getOpcode() == ISD::ADD) {
19532         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19533           Offset += C->getZExtValue();
19534           Op = Op.getOperand(0);
19535           continue;
19536         }
19537       } else if (Op.getOpcode() == ISD::SUB) {
19538         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19539           Offset += -C->getZExtValue();
19540           Op = Op.getOperand(0);
19541           continue;
19542         }
19543       }
19544
19545       // Otherwise, this isn't something we can handle, reject it.
19546       return;
19547     }
19548
19549     const GlobalValue *GV = GA->getGlobal();
19550     // If we require an extra load to get this address, as in PIC mode, we
19551     // can't accept it.
19552     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19553                                                         getTargetMachine())))
19554       return;
19555
19556     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19557                                         GA->getValueType(0), Offset);
19558     break;
19559   }
19560   }
19561
19562   if (Result.getNode()) {
19563     Ops.push_back(Result);
19564     return;
19565   }
19566   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19567 }
19568
19569 std::pair<unsigned, const TargetRegisterClass*>
19570 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19571                                                 MVT VT) const {
19572   // First, see if this is a constraint that directly corresponds to an LLVM
19573   // register class.
19574   if (Constraint.size() == 1) {
19575     // GCC Constraint Letters
19576     switch (Constraint[0]) {
19577     default: break;
19578       // TODO: Slight differences here in allocation order and leaving
19579       // RIP in the class. Do they matter any more here than they do
19580       // in the normal allocation?
19581     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19582       if (Subtarget->is64Bit()) {
19583         if (VT == MVT::i32 || VT == MVT::f32)
19584           return std::make_pair(0U, &X86::GR32RegClass);
19585         if (VT == MVT::i16)
19586           return std::make_pair(0U, &X86::GR16RegClass);
19587         if (VT == MVT::i8 || VT == MVT::i1)
19588           return std::make_pair(0U, &X86::GR8RegClass);
19589         if (VT == MVT::i64 || VT == MVT::f64)
19590           return std::make_pair(0U, &X86::GR64RegClass);
19591         break;
19592       }
19593       // 32-bit fallthrough
19594     case 'Q':   // Q_REGS
19595       if (VT == MVT::i32 || VT == MVT::f32)
19596         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19597       if (VT == MVT::i16)
19598         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19599       if (VT == MVT::i8 || VT == MVT::i1)
19600         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19601       if (VT == MVT::i64)
19602         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19603       break;
19604     case 'r':   // GENERAL_REGS
19605     case 'l':   // INDEX_REGS
19606       if (VT == MVT::i8 || VT == MVT::i1)
19607         return std::make_pair(0U, &X86::GR8RegClass);
19608       if (VT == MVT::i16)
19609         return std::make_pair(0U, &X86::GR16RegClass);
19610       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19611         return std::make_pair(0U, &X86::GR32RegClass);
19612       return std::make_pair(0U, &X86::GR64RegClass);
19613     case 'R':   // LEGACY_REGS
19614       if (VT == MVT::i8 || VT == MVT::i1)
19615         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19616       if (VT == MVT::i16)
19617         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19618       if (VT == MVT::i32 || !Subtarget->is64Bit())
19619         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19620       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19621     case 'f':  // FP Stack registers.
19622       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19623       // value to the correct fpstack register class.
19624       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19625         return std::make_pair(0U, &X86::RFP32RegClass);
19626       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19627         return std::make_pair(0U, &X86::RFP64RegClass);
19628       return std::make_pair(0U, &X86::RFP80RegClass);
19629     case 'y':   // MMX_REGS if MMX allowed.
19630       if (!Subtarget->hasMMX()) break;
19631       return std::make_pair(0U, &X86::VR64RegClass);
19632     case 'Y':   // SSE_REGS if SSE2 allowed
19633       if (!Subtarget->hasSSE2()) break;
19634       // FALL THROUGH.
19635     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19636       if (!Subtarget->hasSSE1()) break;
19637
19638       switch (VT.SimpleTy) {
19639       default: break;
19640       // Scalar SSE types.
19641       case MVT::f32:
19642       case MVT::i32:
19643         return std::make_pair(0U, &X86::FR32RegClass);
19644       case MVT::f64:
19645       case MVT::i64:
19646         return std::make_pair(0U, &X86::FR64RegClass);
19647       // Vector types.
19648       case MVT::v16i8:
19649       case MVT::v8i16:
19650       case MVT::v4i32:
19651       case MVT::v2i64:
19652       case MVT::v4f32:
19653       case MVT::v2f64:
19654         return std::make_pair(0U, &X86::VR128RegClass);
19655       // AVX types.
19656       case MVT::v32i8:
19657       case MVT::v16i16:
19658       case MVT::v8i32:
19659       case MVT::v4i64:
19660       case MVT::v8f32:
19661       case MVT::v4f64:
19662         return std::make_pair(0U, &X86::VR256RegClass);
19663       case MVT::v8f64:
19664       case MVT::v16f32:
19665       case MVT::v16i32:
19666       case MVT::v8i64:
19667         return std::make_pair(0U, &X86::VR512RegClass);
19668       }
19669       break;
19670     }
19671   }
19672
19673   // Use the default implementation in TargetLowering to convert the register
19674   // constraint into a member of a register class.
19675   std::pair<unsigned, const TargetRegisterClass*> Res;
19676   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19677
19678   // Not found as a standard register?
19679   if (Res.second == 0) {
19680     // Map st(0) -> st(7) -> ST0
19681     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19682         tolower(Constraint[1]) == 's' &&
19683         tolower(Constraint[2]) == 't' &&
19684         Constraint[3] == '(' &&
19685         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19686         Constraint[5] == ')' &&
19687         Constraint[6] == '}') {
19688
19689       Res.first = X86::ST0+Constraint[4]-'0';
19690       Res.second = &X86::RFP80RegClass;
19691       return Res;
19692     }
19693
19694     // GCC allows "st(0)" to be called just plain "st".
19695     if (StringRef("{st}").equals_lower(Constraint)) {
19696       Res.first = X86::ST0;
19697       Res.second = &X86::RFP80RegClass;
19698       return Res;
19699     }
19700
19701     // flags -> EFLAGS
19702     if (StringRef("{flags}").equals_lower(Constraint)) {
19703       Res.first = X86::EFLAGS;
19704       Res.second = &X86::CCRRegClass;
19705       return Res;
19706     }
19707
19708     // 'A' means EAX + EDX.
19709     if (Constraint == "A") {
19710       Res.first = X86::EAX;
19711       Res.second = &X86::GR32_ADRegClass;
19712       return Res;
19713     }
19714     return Res;
19715   }
19716
19717   // Otherwise, check to see if this is a register class of the wrong value
19718   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19719   // turn into {ax},{dx}.
19720   if (Res.second->hasType(VT))
19721     return Res;   // Correct type already, nothing to do.
19722
19723   // All of the single-register GCC register classes map their values onto
19724   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
19725   // really want an 8-bit or 32-bit register, map to the appropriate register
19726   // class and return the appropriate register.
19727   if (Res.second == &X86::GR16RegClass) {
19728     if (VT == MVT::i8 || VT == MVT::i1) {
19729       unsigned DestReg = 0;
19730       switch (Res.first) {
19731       default: break;
19732       case X86::AX: DestReg = X86::AL; break;
19733       case X86::DX: DestReg = X86::DL; break;
19734       case X86::CX: DestReg = X86::CL; break;
19735       case X86::BX: DestReg = X86::BL; break;
19736       }
19737       if (DestReg) {
19738         Res.first = DestReg;
19739         Res.second = &X86::GR8RegClass;
19740       }
19741     } else if (VT == MVT::i32 || VT == MVT::f32) {
19742       unsigned DestReg = 0;
19743       switch (Res.first) {
19744       default: break;
19745       case X86::AX: DestReg = X86::EAX; break;
19746       case X86::DX: DestReg = X86::EDX; break;
19747       case X86::CX: DestReg = X86::ECX; break;
19748       case X86::BX: DestReg = X86::EBX; break;
19749       case X86::SI: DestReg = X86::ESI; break;
19750       case X86::DI: DestReg = X86::EDI; break;
19751       case X86::BP: DestReg = X86::EBP; break;
19752       case X86::SP: DestReg = X86::ESP; break;
19753       }
19754       if (DestReg) {
19755         Res.first = DestReg;
19756         Res.second = &X86::GR32RegClass;
19757       }
19758     } else if (VT == MVT::i64 || VT == MVT::f64) {
19759       unsigned DestReg = 0;
19760       switch (Res.first) {
19761       default: break;
19762       case X86::AX: DestReg = X86::RAX; break;
19763       case X86::DX: DestReg = X86::RDX; break;
19764       case X86::CX: DestReg = X86::RCX; break;
19765       case X86::BX: DestReg = X86::RBX; break;
19766       case X86::SI: DestReg = X86::RSI; break;
19767       case X86::DI: DestReg = X86::RDI; break;
19768       case X86::BP: DestReg = X86::RBP; break;
19769       case X86::SP: DestReg = X86::RSP; break;
19770       }
19771       if (DestReg) {
19772         Res.first = DestReg;
19773         Res.second = &X86::GR64RegClass;
19774       }
19775     }
19776   } else if (Res.second == &X86::FR32RegClass ||
19777              Res.second == &X86::FR64RegClass ||
19778              Res.second == &X86::VR128RegClass ||
19779              Res.second == &X86::VR256RegClass ||
19780              Res.second == &X86::FR32XRegClass ||
19781              Res.second == &X86::FR64XRegClass ||
19782              Res.second == &X86::VR128XRegClass ||
19783              Res.second == &X86::VR256XRegClass ||
19784              Res.second == &X86::VR512RegClass) {
19785     // Handle references to XMM physical registers that got mapped into the
19786     // wrong class.  This can happen with constraints like {xmm0} where the
19787     // target independent register mapper will just pick the first match it can
19788     // find, ignoring the required type.
19789
19790     if (VT == MVT::f32 || VT == MVT::i32)
19791       Res.second = &X86::FR32RegClass;
19792     else if (VT == MVT::f64 || VT == MVT::i64)
19793       Res.second = &X86::FR64RegClass;
19794     else if (X86::VR128RegClass.hasType(VT))
19795       Res.second = &X86::VR128RegClass;
19796     else if (X86::VR256RegClass.hasType(VT))
19797       Res.second = &X86::VR256RegClass;
19798     else if (X86::VR512RegClass.hasType(VT))
19799       Res.second = &X86::VR512RegClass;
19800   }
19801
19802   return Res;
19803 }