739c1448cdfc95877be9eb54b314c6dbf4857750
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86ISelLowering.h"
17 #include "Utils/X86ShuffleDecode.h"
18 #include "X86.h"
19 #include "X86InstrBuilder.h"
20 #include "X86TargetMachine.h"
21 #include "X86TargetObjectFile.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/ADT/StringExtras.h"
25 #include "llvm/ADT/VariadicFunction.h"
26 #include "llvm/CodeGen/IntrinsicLowering.h"
27 #include "llvm/CodeGen/MachineFrameInfo.h"
28 #include "llvm/CodeGen/MachineFunction.h"
29 #include "llvm/CodeGen/MachineInstrBuilder.h"
30 #include "llvm/CodeGen/MachineJumpTableInfo.h"
31 #include "llvm/CodeGen/MachineModuleInfo.h"
32 #include "llvm/CodeGen/MachineRegisterInfo.h"
33 #include "llvm/IR/CallingConv.h"
34 #include "llvm/IR/Constants.h"
35 #include "llvm/IR/DerivedTypes.h"
36 #include "llvm/IR/Function.h"
37 #include "llvm/IR/GlobalAlias.h"
38 #include "llvm/IR/GlobalVariable.h"
39 #include "llvm/IR/Instructions.h"
40 #include "llvm/IR/Intrinsics.h"
41 #include "llvm/IR/LLVMContext.h"
42 #include "llvm/MC/MCAsmInfo.h"
43 #include "llvm/MC/MCContext.h"
44 #include "llvm/MC/MCExpr.h"
45 #include "llvm/MC/MCSymbol.h"
46 #include "llvm/Support/CallSite.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/MathExtras.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include <bitset>
52 #include <cctype>
53 using namespace llvm;
54
55 STATISTIC(NumTailCalls, "Number of tail calls");
56
57 // Forward declarations.
58 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
59                        SDValue V2);
60
61 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62                                 SelectionDAG &DAG, SDLoc dl,
63                                 unsigned vectorWidth) {
64   assert((vectorWidth == 128 || vectorWidth == 256) &&
65          "Unsupported vector width");
66   EVT VT = Vec.getValueType();
67   EVT ElVT = VT.getVectorElementType();
68   unsigned Factor = VT.getSizeInBits()/vectorWidth;
69   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70                                   VT.getVectorNumElements()/Factor);
71
72   // Extract from UNDEF is UNDEF.
73   if (Vec.getOpcode() == ISD::UNDEF)
74     return DAG.getUNDEF(ResultVT);
75
76   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
77   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
78
79   // This is the index of the first element of the vectorWidth-bit chunk
80   // we want.
81   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
82                                * ElemsPerChunk);
83
84   // If the input is a buildvector just emit a smaller one.
85   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87                        Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
89   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
90   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91                                VecIdx);
92
93   return Result;
94   
95 }
96 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
97 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99 /// instructions or a simple subregister reference. Idx is an index in the
100 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
101 /// lowering EXTRACT_VECTOR_ELT operations easier.
102 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103                                    SelectionDAG &DAG, SDLoc dl) {
104   assert((Vec.getValueType().is256BitVector() ||
105           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
106   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
107 }
108
109 /// Generate a DAG to grab 256-bits from a 512-bit vector.
110 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111                                    SelectionDAG &DAG, SDLoc dl) {
112   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114 }
115
116 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117                                unsigned IdxVal, SelectionDAG &DAG,
118                                SDLoc dl, unsigned vectorWidth) {
119   assert((vectorWidth == 128 || vectorWidth == 256) &&
120          "Unsupported vector width");
121   // Inserting UNDEF is Result
122   if (Vec.getOpcode() == ISD::UNDEF)
123     return Result;
124   EVT VT = Vec.getValueType();
125   EVT ElVT = VT.getVectorElementType();
126   EVT ResultVT = Result.getValueType();
127
128   // Insert the relevant vectorWidth bits.
129   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131   // This is the index of the first element of the vectorWidth-bit chunk
132   // we want.
133   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134                                * ElemsPerChunk);
135
136   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138                      VecIdx);
139 }
140 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
141 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
143 /// simple superregister reference.  Idx is an index in the 128 bits
144 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
145 /// lowering INSERT_VECTOR_ELT operations easier.
146 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147                                   unsigned IdxVal, SelectionDAG &DAG,
148                                   SDLoc dl) {
149   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151 }
152
153 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154                                   unsigned IdxVal, SelectionDAG &DAG,
155                                   SDLoc dl) {
156   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
158 }
159
160 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161 /// instructions. This is used because creating CONCAT_VECTOR nodes of
162 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163 /// large BUILD_VECTORS.
164 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165                                    unsigned NumElems, SelectionDAG &DAG,
166                                    SDLoc dl) {
167   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
169 }
170
171 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172                                    unsigned NumElems, SelectionDAG &DAG,
173                                    SDLoc dl) {
174   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176 }
177
178 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
179   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180   bool is64Bit = Subtarget->is64Bit();
181
182   if (Subtarget->isTargetEnvMacho()) {
183     if (is64Bit)
184       return new X86_64MachoTargetObjectFile();
185     return new TargetLoweringObjectFileMachO();
186   }
187
188   if (Subtarget->isTargetLinux())
189     return new X86LinuxTargetObjectFile();
190   if (Subtarget->isTargetELF())
191     return new TargetLoweringObjectFileELF();
192   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
193     return new TargetLoweringObjectFileCOFF();
194   llvm_unreachable("unknown subtarget type");
195 }
196
197 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
198   : TargetLowering(TM, createTLOF(TM)) {
199   Subtarget = &TM.getSubtarget<X86Subtarget>();
200   X86ScalarSSEf64 = Subtarget->hasSSE2();
201   X86ScalarSSEf32 = Subtarget->hasSSE1();
202   TD = getDataLayout();
203
204   resetOperationActions();
205 }
206
207 void X86TargetLowering::resetOperationActions() {
208   const TargetMachine &TM = getTargetMachine();
209   static bool FirstTimeThrough = true;
210
211   // If none of the target options have changed, then we don't need to reset the
212   // operation actions.
213   if (!FirstTimeThrough && TO == TM.Options) return;
214
215   if (!FirstTimeThrough) {
216     // Reinitialize the actions.
217     initActions();
218     FirstTimeThrough = false;
219   }
220
221   TO = TM.Options;
222
223   // Set up the TargetLowering object.
224   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
225
226   // X86 is weird, it always uses i8 for shift amounts and setcc results.
227   setBooleanContents(ZeroOrOneBooleanContent);
228   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
229   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
230
231   // For 64-bit since we have so many registers use the ILP scheduler, for
232   // 32-bit code use the register pressure specific scheduling.
233   // For Atom, always use ILP scheduling.
234   if (Subtarget->isAtom())
235     setSchedulingPreference(Sched::ILP);
236   else if (Subtarget->is64Bit())
237     setSchedulingPreference(Sched::ILP);
238   else
239     setSchedulingPreference(Sched::RegPressure);
240   const X86RegisterInfo *RegInfo =
241     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
242   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
243
244   // Bypass expensive divides on Atom when compiling with O2
245   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
246     addBypassSlowDiv(32, 8);
247     if (Subtarget->is64Bit())
248       addBypassSlowDiv(64, 16);
249   }
250
251   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
252     // Setup Windows compiler runtime calls.
253     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
254     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
255     setLibcallName(RTLIB::SREM_I64, "_allrem");
256     setLibcallName(RTLIB::UREM_I64, "_aullrem");
257     setLibcallName(RTLIB::MUL_I64, "_allmul");
258     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
259     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
260     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
263
264     // The _ftol2 runtime function has an unusual calling conv, which
265     // is modeled by a special pseudo-instruction.
266     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
267     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
268     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
269     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
270   }
271
272   if (Subtarget->isTargetDarwin()) {
273     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
274     setUseUnderscoreSetJmp(false);
275     setUseUnderscoreLongJmp(false);
276   } else if (Subtarget->isTargetMingw()) {
277     // MS runtime is weird: it exports _setjmp, but longjmp!
278     setUseUnderscoreSetJmp(true);
279     setUseUnderscoreLongJmp(false);
280   } else {
281     setUseUnderscoreSetJmp(true);
282     setUseUnderscoreLongJmp(true);
283   }
284
285   // Set up the register classes.
286   addRegisterClass(MVT::i8, &X86::GR8RegClass);
287   addRegisterClass(MVT::i16, &X86::GR16RegClass);
288   addRegisterClass(MVT::i32, &X86::GR32RegClass);
289   if (Subtarget->is64Bit())
290     addRegisterClass(MVT::i64, &X86::GR64RegClass);
291
292   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
293
294   // We don't accept any truncstore of integer registers.
295   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
296   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
297   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
298   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
299   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
300   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
301
302   // SETOEQ and SETUNE require checking two conditions.
303   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
304   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
305   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
306   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
307   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
309
310   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
311   // operation.
312   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
313   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
315
316   if (Subtarget->is64Bit()) {
317     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
318     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
319   } else if (!TM.Options.UseSoftFloat) {
320     // We have an algorithm for SSE2->double, and we turn this into a
321     // 64-bit FILD followed by conditional FADD for other targets.
322     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
323     // We have an algorithm for SSE2, and we turn this into a 64-bit
324     // FILD for other targets.
325     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
326   }
327
328   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
329   // this operation.
330   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
331   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
332
333   if (!TM.Options.UseSoftFloat) {
334     // SSE has no i16 to fp conversion, only i32
335     if (X86ScalarSSEf32) {
336       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
337       // f32 and f64 cases are Legal, f80 case is not
338       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
339     } else {
340       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
341       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
342     }
343   } else {
344     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
345     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
346   }
347
348   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
349   // are Legal, f80 is custom lowered.
350   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
351   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
352
353   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
354   // this operation.
355   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
356   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
357
358   if (X86ScalarSSEf32) {
359     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
360     // f32 and f64 cases are Legal, f80 case is not
361     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
362   } else {
363     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
364     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
365   }
366
367   // Handle FP_TO_UINT by promoting the destination to a larger signed
368   // conversion.
369   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
370   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
372
373   if (Subtarget->is64Bit()) {
374     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
375     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
376   } else if (!TM.Options.UseSoftFloat) {
377     // Since AVX is a superset of SSE3, only check for SSE here.
378     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
379       // Expand FP_TO_UINT into a select.
380       // FIXME: We would like to use a Custom expander here eventually to do
381       // the optimal thing for SSE vs. the default expansion in the legalizer.
382       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
383     else
384       // With SSE3 we can use fisttpll to convert to a signed i64; without
385       // SSE, we're stuck with a fistpll.
386       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
387   }
388
389   if (isTargetFTOL()) {
390     // Use the _ftol2 runtime function, which has a pseudo-instruction
391     // to handle its weird calling convention.
392     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
393   }
394
395   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
396   if (!X86ScalarSSEf64) {
397     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
398     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
399     if (Subtarget->is64Bit()) {
400       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
401       // Without SSE, i64->f64 goes through memory.
402       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
403     }
404   }
405
406   // Scalar integer divide and remainder are lowered to use operations that
407   // produce two results, to match the available instructions. This exposes
408   // the two-result form to trivial CSE, which is able to combine x/y and x%y
409   // into a single instruction.
410   //
411   // Scalar integer multiply-high is also lowered to use two-result
412   // operations, to match the available instructions. However, plain multiply
413   // (low) operations are left as Legal, as there are single-result
414   // instructions for this in x86. Using the two-result multiply instructions
415   // when both high and low results are needed must be arranged by dagcombine.
416   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
417     MVT VT = IntVTs[i];
418     setOperationAction(ISD::MULHS, VT, Expand);
419     setOperationAction(ISD::MULHU, VT, Expand);
420     setOperationAction(ISD::SDIV, VT, Expand);
421     setOperationAction(ISD::UDIV, VT, Expand);
422     setOperationAction(ISD::SREM, VT, Expand);
423     setOperationAction(ISD::UREM, VT, Expand);
424
425     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
426     setOperationAction(ISD::ADDC, VT, Custom);
427     setOperationAction(ISD::ADDE, VT, Custom);
428     setOperationAction(ISD::SUBC, VT, Custom);
429     setOperationAction(ISD::SUBE, VT, Custom);
430   }
431
432   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
433   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
434   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
435   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
436   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
438   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
441   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
442   if (Subtarget->is64Bit())
443     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
445   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
447   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
448   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
449   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
451   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
452
453   // Promote the i8 variants and force them on up to i32 which has a shorter
454   // encoding.
455   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
456   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
457   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
458   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
459   if (Subtarget->hasBMI()) {
460     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
461     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
462     if (Subtarget->is64Bit())
463       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
464   } else {
465     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
466     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
467     if (Subtarget->is64Bit())
468       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
469   }
470
471   if (Subtarget->hasLZCNT()) {
472     // When promoting the i8 variants, force them to i32 for a shorter
473     // encoding.
474     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
475     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
476     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
477     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
478     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
479     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
480     if (Subtarget->is64Bit())
481       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
482   } else {
483     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
484     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
485     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
486     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
487     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
489     if (Subtarget->is64Bit()) {
490       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
491       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
492     }
493   }
494
495   if (Subtarget->hasPOPCNT()) {
496     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
497   } else {
498     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
499     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
500     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
501     if (Subtarget->is64Bit())
502       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
503   }
504
505   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
506   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
507
508   // These should be promoted to a larger select which is supported.
509   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
510   // X86 wants to expand cmov itself.
511   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
512   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
513   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
514   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
517   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
518   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
520   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
523   if (Subtarget->is64Bit()) {
524     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
525     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
526   }
527   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
528   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
529   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
530   // support continuation, user-level threading, and etc.. As a result, no
531   // other SjLj exception interfaces are implemented and please don't build
532   // your own exception handling based on them.
533   // LLVM/Clang supports zero-cost DWARF exception handling.
534   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
535   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
536
537   // Darwin ABI issue.
538   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
539   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
540   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
541   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
542   if (Subtarget->is64Bit())
543     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
544   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
545   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
546   if (Subtarget->is64Bit()) {
547     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
548     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
549     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
550     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
551     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
552   }
553   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
554   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
555   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
556   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
557   if (Subtarget->is64Bit()) {
558     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
559     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
560     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
561   }
562
563   if (Subtarget->hasSSE1())
564     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
565
566   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
567
568   // Expand certain atomics
569   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
570     MVT VT = IntVTs[i];
571     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
572     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
573     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
574   }
575
576   if (!Subtarget->is64Bit()) {
577     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
578     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
579     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
589   }
590
591   if (Subtarget->hasCmpxchg16b()) {
592     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
593   }
594
595   // FIXME - use subtarget debug flags
596   if (!Subtarget->isTargetDarwin() &&
597       !Subtarget->isTargetELF() &&
598       !Subtarget->isTargetCygMing()) {
599     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
600   }
601
602   if (Subtarget->is64Bit()) {
603     setExceptionPointerRegister(X86::RAX);
604     setExceptionSelectorRegister(X86::RDX);
605   } else {
606     setExceptionPointerRegister(X86::EAX);
607     setExceptionSelectorRegister(X86::EDX);
608   }
609   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
610   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
611
612   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
613   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
614
615   setOperationAction(ISD::TRAP, MVT::Other, Legal);
616   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
617
618   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
619   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
620   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
621   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
622     // TargetInfo::X86_64ABIBuiltinVaList
623     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
624     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
625   } else {
626     // TargetInfo::CharPtrBuiltinVaList
627     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
628     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
629   }
630
631   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
632   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
633
634   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
635     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636                        MVT::i64 : MVT::i32, Custom);
637   else if (TM.Options.EnableSegmentedStacks)
638     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639                        MVT::i64 : MVT::i32, Custom);
640   else
641     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642                        MVT::i64 : MVT::i32, Expand);
643
644   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
645     // f32 and f64 use SSE.
646     // Set up the FP register classes.
647     addRegisterClass(MVT::f32, &X86::FR32RegClass);
648     addRegisterClass(MVT::f64, &X86::FR64RegClass);
649
650     // Use ANDPD to simulate FABS.
651     setOperationAction(ISD::FABS , MVT::f64, Custom);
652     setOperationAction(ISD::FABS , MVT::f32, Custom);
653
654     // Use XORP to simulate FNEG.
655     setOperationAction(ISD::FNEG , MVT::f64, Custom);
656     setOperationAction(ISD::FNEG , MVT::f32, Custom);
657
658     // Use ANDPD and ORPD to simulate FCOPYSIGN.
659     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
661
662     // Lower this to FGETSIGNx86 plus an AND.
663     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
666     // We don't support sin/cos/fmod
667     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
668     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
669     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
671     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
672     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
673
674     // Expand FP immediates into loads from the stack, except for the special
675     // cases we handle.
676     addLegalFPImmediate(APFloat(+0.0)); // xorpd
677     addLegalFPImmediate(APFloat(+0.0f)); // xorps
678   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
679     // Use SSE for f32, x87 for f64.
680     // Set up the FP register classes.
681     addRegisterClass(MVT::f32, &X86::FR32RegClass);
682     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
683
684     // Use ANDPS to simulate FABS.
685     setOperationAction(ISD::FABS , MVT::f32, Custom);
686
687     // Use XORP to simulate FNEG.
688     setOperationAction(ISD::FNEG , MVT::f32, Custom);
689
690     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
691
692     // Use ANDPS and ORPS to simulate FCOPYSIGN.
693     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
695
696     // We don't support sin/cos/fmod
697     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
698     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
699     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
700
701     // Special cases we handle for FP constants.
702     addLegalFPImmediate(APFloat(+0.0f)); // xorps
703     addLegalFPImmediate(APFloat(+0.0)); // FLD0
704     addLegalFPImmediate(APFloat(+1.0)); // FLD1
705     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
708     if (!TM.Options.UnsafeFPMath) {
709       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
710       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
711       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
712     }
713   } else if (!TM.Options.UseSoftFloat) {
714     // f32 and f64 in x87.
715     // Set up the FP register classes.
716     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
718
719     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
720     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
721     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
723
724     if (!TM.Options.UnsafeFPMath) {
725       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
726       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
727       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
728       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
729       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
731     }
732     addLegalFPImmediate(APFloat(+0.0)); // FLD0
733     addLegalFPImmediate(APFloat(+1.0)); // FLD1
734     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
736     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
740   }
741
742   // We don't support FMA.
743   setOperationAction(ISD::FMA, MVT::f64, Expand);
744   setOperationAction(ISD::FMA, MVT::f32, Expand);
745
746   // Long double always uses X87.
747   if (!TM.Options.UseSoftFloat) {
748     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
749     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
750     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
751     {
752       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
753       addLegalFPImmediate(TmpFlt);  // FLD0
754       TmpFlt.changeSign();
755       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
756
757       bool ignored;
758       APFloat TmpFlt2(+1.0);
759       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760                       &ignored);
761       addLegalFPImmediate(TmpFlt2);  // FLD1
762       TmpFlt2.changeSign();
763       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
764     }
765
766     if (!TM.Options.UnsafeFPMath) {
767       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
768       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
769       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
770     }
771
772     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
774     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
776     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
777     setOperationAction(ISD::FMA, MVT::f80, Expand);
778   }
779
780   // Always use a library call for pow.
781   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
782   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
783   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
784
785   setOperationAction(ISD::FLOG, MVT::f80, Expand);
786   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788   setOperationAction(ISD::FEXP, MVT::f80, Expand);
789   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
790
791   // First set operation action for all vector types to either promote
792   // (for widening) or expand (for scalarization). Then we will selectively
793   // turn on ones that can be effectively codegen'd.
794   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
796     MVT VT = (MVT::SimpleValueType)i;
797     setOperationAction(ISD::ADD , VT, Expand);
798     setOperationAction(ISD::SUB , VT, Expand);
799     setOperationAction(ISD::FADD, VT, Expand);
800     setOperationAction(ISD::FNEG, VT, Expand);
801     setOperationAction(ISD::FSUB, VT, Expand);
802     setOperationAction(ISD::MUL , VT, Expand);
803     setOperationAction(ISD::FMUL, VT, Expand);
804     setOperationAction(ISD::SDIV, VT, Expand);
805     setOperationAction(ISD::UDIV, VT, Expand);
806     setOperationAction(ISD::FDIV, VT, Expand);
807     setOperationAction(ISD::SREM, VT, Expand);
808     setOperationAction(ISD::UREM, VT, Expand);
809     setOperationAction(ISD::LOAD, VT, Expand);
810     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815     setOperationAction(ISD::FABS, VT, Expand);
816     setOperationAction(ISD::FSIN, VT, Expand);
817     setOperationAction(ISD::FSINCOS, VT, Expand);
818     setOperationAction(ISD::FCOS, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FREM, VT, Expand);
821     setOperationAction(ISD::FMA,  VT, Expand);
822     setOperationAction(ISD::FPOWI, VT, Expand);
823     setOperationAction(ISD::FSQRT, VT, Expand);
824     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825     setOperationAction(ISD::FFLOOR, VT, Expand);
826     setOperationAction(ISD::FCEIL, VT, Expand);
827     setOperationAction(ISD::FTRUNC, VT, Expand);
828     setOperationAction(ISD::FRINT, VT, Expand);
829     setOperationAction(ISD::FNEARBYINT, VT, Expand);
830     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832     setOperationAction(ISD::SDIVREM, VT, Expand);
833     setOperationAction(ISD::UDIVREM, VT, Expand);
834     setOperationAction(ISD::FPOW, VT, Expand);
835     setOperationAction(ISD::CTPOP, VT, Expand);
836     setOperationAction(ISD::CTTZ, VT, Expand);
837     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838     setOperationAction(ISD::CTLZ, VT, Expand);
839     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840     setOperationAction(ISD::SHL, VT, Expand);
841     setOperationAction(ISD::SRA, VT, Expand);
842     setOperationAction(ISD::SRL, VT, Expand);
843     setOperationAction(ISD::ROTL, VT, Expand);
844     setOperationAction(ISD::ROTR, VT, Expand);
845     setOperationAction(ISD::BSWAP, VT, Expand);
846     setOperationAction(ISD::SETCC, VT, Expand);
847     setOperationAction(ISD::FLOG, VT, Expand);
848     setOperationAction(ISD::FLOG2, VT, Expand);
849     setOperationAction(ISD::FLOG10, VT, Expand);
850     setOperationAction(ISD::FEXP, VT, Expand);
851     setOperationAction(ISD::FEXP2, VT, Expand);
852     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857     setOperationAction(ISD::TRUNCATE, VT, Expand);
858     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861     setOperationAction(ISD::VSELECT, VT, Expand);
862     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
864       setTruncStoreAction(VT,
865                           (MVT::SimpleValueType)InnerVT, Expand);
866     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
869   }
870
871   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872   // with -msoft-float, disable use of MMX as well.
873   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
874     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
875     // No operations on x86mmx supported, everything uses intrinsics.
876   }
877
878   // MMX-sized vectors (other than x86mmx) are expected to be expanded
879   // into smaller operations.
880   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
881   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
882   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
883   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
884   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
885   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
886   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
887   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
888   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
889   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
890   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
891   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
892   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
893   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
894   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
895   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
896   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
897   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
900   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
901   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
902   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
903   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
904   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
905   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
906   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
909
910   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
911     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
912
913     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
914     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
915     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
918     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
919     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
920     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
921     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
922     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
923     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
925   }
926
927   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
928     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
929
930     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931     // registers cannot be used even for integer operations.
932     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
936
937     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
938     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
939     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
940     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
941     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
942     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
943     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
944     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
945     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
946     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
947     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
948     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
949     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
950     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
953     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
954     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
955
956     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
957     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
958     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
960
961     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
962     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
963     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
964     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
966
967     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
968     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
969       MVT VT = (MVT::SimpleValueType)i;
970       // Do not attempt to custom lower non-power-of-2 vectors
971       if (!isPowerOf2_32(VT.getVectorNumElements()))
972         continue;
973       // Do not attempt to custom lower non-128-bit vectors
974       if (!VT.is128BitVector())
975         continue;
976       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
977       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
978       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
979     }
980
981     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
982     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
983     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
984     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
985     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
986     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
987
988     if (Subtarget->is64Bit()) {
989       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
990       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
991     }
992
993     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
994     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
995       MVT VT = (MVT::SimpleValueType)i;
996
997       // Do not attempt to promote non-128-bit vectors
998       if (!VT.is128BitVector())
999         continue;
1000
1001       setOperationAction(ISD::AND,    VT, Promote);
1002       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1003       setOperationAction(ISD::OR,     VT, Promote);
1004       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1005       setOperationAction(ISD::XOR,    VT, Promote);
1006       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1007       setOperationAction(ISD::LOAD,   VT, Promote);
1008       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1009       setOperationAction(ISD::SELECT, VT, Promote);
1010       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1011     }
1012
1013     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1014
1015     // Custom lower v2i64 and v2f64 selects.
1016     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1017     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1018     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1019     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1020
1021     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1022     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1023
1024     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1025     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1026     // As there is no 64-bit GPR available, we need build a special custom
1027     // sequence to convert from v2i32 to v2f32.
1028     if (!Subtarget->is64Bit())
1029       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1030
1031     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1032     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1033
1034     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1035   }
1036
1037   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1038     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1039     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1040     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1041     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1042     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1043     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1044     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1045     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1046     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1047     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1048
1049     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1050     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1051     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1052     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1053     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1054     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1055     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1056     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1057     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1058     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1059
1060     // FIXME: Do we need to handle scalar-to-vector here?
1061     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1062
1063     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1064     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1065     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1068
1069     // i8 and i16 vectors are custom , because the source register and source
1070     // source memory operand types are not the same width.  f32 vectors are
1071     // custom since the immediate controlling the insert encodes additional
1072     // information.
1073     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1074     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1077
1078     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1082
1083     // FIXME: these should be Legal but thats only for the case where
1084     // the index is constant.  For now custom expand to deal with that.
1085     if (Subtarget->is64Bit()) {
1086       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1087       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1088     }
1089   }
1090
1091   if (Subtarget->hasSSE2()) {
1092     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1093     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1094
1095     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1096     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1097
1098     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1099     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1100
1101     // In the customized shift lowering, the legal cases in AVX2 will be
1102     // recognized.
1103     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1104     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1105
1106     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1107     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1108
1109     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1110
1111     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1112     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1113   }
1114
1115   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1116     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1117     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1119     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1120     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1122
1123     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1124     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1125     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1126
1127     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1128     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1129     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1132     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1133     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1134     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1135     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1136     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1137     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1138     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1139
1140     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1141     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1142     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1145     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1146     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1147     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1148     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1149     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1150     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1151     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1152
1153     setOperationAction(ISD::TRUNCATE,           MVT::v8i16, Custom);
1154     setOperationAction(ISD::TRUNCATE,           MVT::v4i32, Custom);
1155
1156     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1157
1158     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1159     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1160     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1161     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1162
1163     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i32, Custom);
1164     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1165     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1166
1167     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1168
1169     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1170     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1171
1172     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1173     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1174
1175     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1176     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1177
1178     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1179
1180     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1181     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1182     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1183     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1184
1185     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1186     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1187     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1188
1189     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1190     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1191     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1192     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1193
1194     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1195     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1196     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1197     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1199     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1200
1201     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1202       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1203       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1204       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1205       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1206       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1208     }
1209
1210     if (Subtarget->hasInt256()) {
1211       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1212       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1213       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1214       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1215
1216       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1217       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1218       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1219       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1220
1221       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1222       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1223       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1224       // Don't lower v32i8 because there is no 128-bit byte mul
1225
1226       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1227
1228       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1229     } else {
1230       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1231       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1232       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1233       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1234
1235       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1236       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1237       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1238       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1239
1240       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1241       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1242       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1243       // Don't lower v32i8 because there is no 128-bit byte mul
1244     }
1245
1246     // In the customized shift lowering, the legal cases in AVX2 will be
1247     // recognized.
1248     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1249     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1250
1251     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1252     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1253
1254     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1255
1256     // Custom lower several nodes for 256-bit types.
1257     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1258              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1259       MVT VT = (MVT::SimpleValueType)i;
1260
1261       // Extract subvector is special because the value type
1262       // (result) is 128-bit but the source is 256-bit wide.
1263       if (VT.is128BitVector())
1264         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1265
1266       // Do not attempt to custom lower other non-256-bit vectors
1267       if (!VT.is256BitVector())
1268         continue;
1269
1270       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1271       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1272       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1273       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1274       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1275       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1276       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1277     }
1278
1279     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1280     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1281       MVT VT = (MVT::SimpleValueType)i;
1282
1283       // Do not attempt to promote non-256-bit vectors
1284       if (!VT.is256BitVector())
1285         continue;
1286
1287       setOperationAction(ISD::AND,    VT, Promote);
1288       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1289       setOperationAction(ISD::OR,     VT, Promote);
1290       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1291       setOperationAction(ISD::XOR,    VT, Promote);
1292       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1293       setOperationAction(ISD::LOAD,   VT, Promote);
1294       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1295       setOperationAction(ISD::SELECT, VT, Promote);
1296       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1297     }
1298   }
1299
1300   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1301     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1302     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1303     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1304     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1305
1306     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1307     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1308
1309     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1310     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1311     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1312     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1313     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1314     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1315
1316     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1317     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1318     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1319     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1320     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1321     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1322
1323     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1324     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1325     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1326     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1327     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1328     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1329     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1330     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1331     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1332
1333
1334     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1335     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1336     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1337     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1338     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1339     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1340     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1341     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1342
1343     setOperationAction(ISD::TRUNCATE,           MVT::i1, Legal);
1344     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1345     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1346     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1347     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1348     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1349     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1350     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1351     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1352     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1353     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1354     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1355
1356     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1357     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1358     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1359     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1360     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1361
1362     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1363     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1364
1365     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1366
1367     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1368     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1369     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1370     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1371     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1372
1373     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1374     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1375
1376     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1377     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1378
1379     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1380
1381     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1382     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1383
1384     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1385     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1386
1387     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1388     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1389
1390     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1391     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1392     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1393     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1394     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1395     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1396
1397     // Custom lower several nodes.
1398     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1399              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1400       MVT VT = (MVT::SimpleValueType)i;
1401
1402       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1403       // Extract subvector is special because the value type
1404       // (result) is 256/128-bit but the source is 512-bit wide.
1405       if (VT.is128BitVector() || VT.is256BitVector())
1406         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1407
1408       if (VT.getVectorElementType() == MVT::i1)
1409         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1410
1411       // Do not attempt to custom lower other non-512-bit vectors
1412       if (!VT.is512BitVector())
1413         continue;
1414
1415       if ( EltSize >= 32) {
1416         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1417         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1418         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1419         setOperationAction(ISD::VSELECT,             VT, Legal);
1420         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1421         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1422         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1423       }
1424     }
1425     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1426       MVT VT = (MVT::SimpleValueType)i;
1427
1428       // Do not attempt to promote non-256-bit vectors
1429       if (!VT.is512BitVector())
1430         continue;
1431
1432       setOperationAction(ISD::SELECT, VT, Promote);
1433       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1434     }
1435   }// has  AVX-512
1436
1437   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1438   // of this type with custom code.
1439   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1440            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1441     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1442                        Custom);
1443   }
1444
1445   // We want to custom lower some of our intrinsics.
1446   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1447   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1448   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1449
1450   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1451   // handle type legalization for these operations here.
1452   //
1453   // FIXME: We really should do custom legalization for addition and
1454   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1455   // than generic legalization for 64-bit multiplication-with-overflow, though.
1456   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1457     // Add/Sub/Mul with overflow operations are custom lowered.
1458     MVT VT = IntVTs[i];
1459     setOperationAction(ISD::SADDO, VT, Custom);
1460     setOperationAction(ISD::UADDO, VT, Custom);
1461     setOperationAction(ISD::SSUBO, VT, Custom);
1462     setOperationAction(ISD::USUBO, VT, Custom);
1463     setOperationAction(ISD::SMULO, VT, Custom);
1464     setOperationAction(ISD::UMULO, VT, Custom);
1465   }
1466
1467   // There are no 8-bit 3-address imul/mul instructions
1468   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1469   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1470
1471   if (!Subtarget->is64Bit()) {
1472     // These libcalls are not available in 32-bit.
1473     setLibcallName(RTLIB::SHL_I128, 0);
1474     setLibcallName(RTLIB::SRL_I128, 0);
1475     setLibcallName(RTLIB::SRA_I128, 0);
1476   }
1477
1478   // Combine sin / cos into one node or libcall if possible.
1479   if (Subtarget->hasSinCos()) {
1480     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1481     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1482     if (Subtarget->isTargetDarwin()) {
1483       // For MacOSX, we don't want to the normal expansion of a libcall to
1484       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1485       // traffic.
1486       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1487       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1488     }
1489   }
1490
1491   // We have target-specific dag combine patterns for the following nodes:
1492   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1493   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1494   setTargetDAGCombine(ISD::VSELECT);
1495   setTargetDAGCombine(ISD::SELECT);
1496   setTargetDAGCombine(ISD::SHL);
1497   setTargetDAGCombine(ISD::SRA);
1498   setTargetDAGCombine(ISD::SRL);
1499   setTargetDAGCombine(ISD::OR);
1500   setTargetDAGCombine(ISD::AND);
1501   setTargetDAGCombine(ISD::ADD);
1502   setTargetDAGCombine(ISD::FADD);
1503   setTargetDAGCombine(ISD::FSUB);
1504   setTargetDAGCombine(ISD::FMA);
1505   setTargetDAGCombine(ISD::SUB);
1506   setTargetDAGCombine(ISD::LOAD);
1507   setTargetDAGCombine(ISD::STORE);
1508   setTargetDAGCombine(ISD::ZERO_EXTEND);
1509   setTargetDAGCombine(ISD::ANY_EXTEND);
1510   setTargetDAGCombine(ISD::SIGN_EXTEND);
1511   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1512   setTargetDAGCombine(ISD::TRUNCATE);
1513   setTargetDAGCombine(ISD::SINT_TO_FP);
1514   setTargetDAGCombine(ISD::SETCC);
1515   if (Subtarget->is64Bit())
1516     setTargetDAGCombine(ISD::MUL);
1517   setTargetDAGCombine(ISD::XOR);
1518
1519   computeRegisterProperties();
1520
1521   // On Darwin, -Os means optimize for size without hurting performance,
1522   // do not reduce the limit.
1523   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1524   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1525   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1526   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1527   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1528   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1529   setPrefLoopAlignment(4); // 2^4 bytes.
1530
1531   // Predictable cmov don't hurt on atom because it's in-order.
1532   PredictableSelectIsExpensive = !Subtarget->isAtom();
1533
1534   setPrefFunctionAlignment(4); // 2^4 bytes.
1535 }
1536
1537 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1538   if (!VT.isVector()) return MVT::i8;
1539   return VT.changeVectorElementTypeToInteger();
1540 }
1541
1542 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1543 /// the desired ByVal argument alignment.
1544 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1545   if (MaxAlign == 16)
1546     return;
1547   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1548     if (VTy->getBitWidth() == 128)
1549       MaxAlign = 16;
1550   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1551     unsigned EltAlign = 0;
1552     getMaxByValAlign(ATy->getElementType(), EltAlign);
1553     if (EltAlign > MaxAlign)
1554       MaxAlign = EltAlign;
1555   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1556     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1557       unsigned EltAlign = 0;
1558       getMaxByValAlign(STy->getElementType(i), EltAlign);
1559       if (EltAlign > MaxAlign)
1560         MaxAlign = EltAlign;
1561       if (MaxAlign == 16)
1562         break;
1563     }
1564   }
1565 }
1566
1567 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1568 /// function arguments in the caller parameter area. For X86, aggregates
1569 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1570 /// are at 4-byte boundaries.
1571 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1572   if (Subtarget->is64Bit()) {
1573     // Max of 8 and alignment of type.
1574     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1575     if (TyAlign > 8)
1576       return TyAlign;
1577     return 8;
1578   }
1579
1580   unsigned Align = 4;
1581   if (Subtarget->hasSSE1())
1582     getMaxByValAlign(Ty, Align);
1583   return Align;
1584 }
1585
1586 /// getOptimalMemOpType - Returns the target specific optimal type for load
1587 /// and store operations as a result of memset, memcpy, and memmove
1588 /// lowering. If DstAlign is zero that means it's safe to destination
1589 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1590 /// means there isn't a need to check it against alignment requirement,
1591 /// probably because the source does not need to be loaded. If 'IsMemset' is
1592 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1593 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1594 /// source is constant so it does not need to be loaded.
1595 /// It returns EVT::Other if the type should be determined using generic
1596 /// target-independent logic.
1597 EVT
1598 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1599                                        unsigned DstAlign, unsigned SrcAlign,
1600                                        bool IsMemset, bool ZeroMemset,
1601                                        bool MemcpyStrSrc,
1602                                        MachineFunction &MF) const {
1603   const Function *F = MF.getFunction();
1604   if ((!IsMemset || ZeroMemset) &&
1605       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1606                                        Attribute::NoImplicitFloat)) {
1607     if (Size >= 16 &&
1608         (Subtarget->isUnalignedMemAccessFast() ||
1609          ((DstAlign == 0 || DstAlign >= 16) &&
1610           (SrcAlign == 0 || SrcAlign >= 16)))) {
1611       if (Size >= 32) {
1612         if (Subtarget->hasInt256())
1613           return MVT::v8i32;
1614         if (Subtarget->hasFp256())
1615           return MVT::v8f32;
1616       }
1617       if (Subtarget->hasSSE2())
1618         return MVT::v4i32;
1619       if (Subtarget->hasSSE1())
1620         return MVT::v4f32;
1621     } else if (!MemcpyStrSrc && Size >= 8 &&
1622                !Subtarget->is64Bit() &&
1623                Subtarget->hasSSE2()) {
1624       // Do not use f64 to lower memcpy if source is string constant. It's
1625       // better to use i32 to avoid the loads.
1626       return MVT::f64;
1627     }
1628   }
1629   if (Subtarget->is64Bit() && Size >= 8)
1630     return MVT::i64;
1631   return MVT::i32;
1632 }
1633
1634 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1635   if (VT == MVT::f32)
1636     return X86ScalarSSEf32;
1637   else if (VT == MVT::f64)
1638     return X86ScalarSSEf64;
1639   return true;
1640 }
1641
1642 bool
1643 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1644   if (Fast)
1645     *Fast = Subtarget->isUnalignedMemAccessFast();
1646   return true;
1647 }
1648
1649 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1650 /// current function.  The returned value is a member of the
1651 /// MachineJumpTableInfo::JTEntryKind enum.
1652 unsigned X86TargetLowering::getJumpTableEncoding() const {
1653   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1654   // symbol.
1655   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1656       Subtarget->isPICStyleGOT())
1657     return MachineJumpTableInfo::EK_Custom32;
1658
1659   // Otherwise, use the normal jump table encoding heuristics.
1660   return TargetLowering::getJumpTableEncoding();
1661 }
1662
1663 const MCExpr *
1664 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1665                                              const MachineBasicBlock *MBB,
1666                                              unsigned uid,MCContext &Ctx) const{
1667   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1668          Subtarget->isPICStyleGOT());
1669   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1670   // entries.
1671   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1672                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1673 }
1674
1675 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1676 /// jumptable.
1677 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1678                                                     SelectionDAG &DAG) const {
1679   if (!Subtarget->is64Bit())
1680     // This doesn't have SDLoc associated with it, but is not really the
1681     // same as a Register.
1682     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1683   return Table;
1684 }
1685
1686 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1687 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1688 /// MCExpr.
1689 const MCExpr *X86TargetLowering::
1690 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1691                              MCContext &Ctx) const {
1692   // X86-64 uses RIP relative addressing based on the jump table label.
1693   if (Subtarget->isPICStyleRIPRel())
1694     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1695
1696   // Otherwise, the reference is relative to the PIC base.
1697   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1698 }
1699
1700 // FIXME: Why this routine is here? Move to RegInfo!
1701 std::pair<const TargetRegisterClass*, uint8_t>
1702 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1703   const TargetRegisterClass *RRC = 0;
1704   uint8_t Cost = 1;
1705   switch (VT.SimpleTy) {
1706   default:
1707     return TargetLowering::findRepresentativeClass(VT);
1708   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1709     RRC = Subtarget->is64Bit() ?
1710       (const TargetRegisterClass*)&X86::GR64RegClass :
1711       (const TargetRegisterClass*)&X86::GR32RegClass;
1712     break;
1713   case MVT::x86mmx:
1714     RRC = &X86::VR64RegClass;
1715     break;
1716   case MVT::f32: case MVT::f64:
1717   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1718   case MVT::v4f32: case MVT::v2f64:
1719   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1720   case MVT::v4f64:
1721     RRC = &X86::VR128RegClass;
1722     break;
1723   }
1724   return std::make_pair(RRC, Cost);
1725 }
1726
1727 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1728                                                unsigned &Offset) const {
1729   if (!Subtarget->isTargetLinux())
1730     return false;
1731
1732   if (Subtarget->is64Bit()) {
1733     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1734     Offset = 0x28;
1735     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1736       AddressSpace = 256;
1737     else
1738       AddressSpace = 257;
1739   } else {
1740     // %gs:0x14 on i386
1741     Offset = 0x14;
1742     AddressSpace = 256;
1743   }
1744   return true;
1745 }
1746
1747 //===----------------------------------------------------------------------===//
1748 //               Return Value Calling Convention Implementation
1749 //===----------------------------------------------------------------------===//
1750
1751 #include "X86GenCallingConv.inc"
1752
1753 bool
1754 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1755                                   MachineFunction &MF, bool isVarArg,
1756                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1757                         LLVMContext &Context) const {
1758   SmallVector<CCValAssign, 16> RVLocs;
1759   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1760                  RVLocs, Context);
1761   return CCInfo.CheckReturn(Outs, RetCC_X86);
1762 }
1763
1764 SDValue
1765 X86TargetLowering::LowerReturn(SDValue Chain,
1766                                CallingConv::ID CallConv, bool isVarArg,
1767                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1768                                const SmallVectorImpl<SDValue> &OutVals,
1769                                SDLoc dl, SelectionDAG &DAG) const {
1770   MachineFunction &MF = DAG.getMachineFunction();
1771   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1772
1773   SmallVector<CCValAssign, 16> RVLocs;
1774   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1775                  RVLocs, *DAG.getContext());
1776   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1777
1778   SDValue Flag;
1779   SmallVector<SDValue, 6> RetOps;
1780   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1781   // Operand #1 = Bytes To Pop
1782   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1783                    MVT::i16));
1784
1785   // Copy the result values into the output registers.
1786   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1787     CCValAssign &VA = RVLocs[i];
1788     assert(VA.isRegLoc() && "Can only return in registers!");
1789     SDValue ValToCopy = OutVals[i];
1790     EVT ValVT = ValToCopy.getValueType();
1791
1792     // Promote values to the appropriate types
1793     if (VA.getLocInfo() == CCValAssign::SExt)
1794       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1795     else if (VA.getLocInfo() == CCValAssign::ZExt)
1796       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1797     else if (VA.getLocInfo() == CCValAssign::AExt)
1798       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1799     else if (VA.getLocInfo() == CCValAssign::BCvt)
1800       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1801
1802     // If this is x86-64, and we disabled SSE, we can't return FP values,
1803     // or SSE or MMX vectors.
1804     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1805          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1806           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1807       report_fatal_error("SSE register return with SSE disabled");
1808     }
1809     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1810     // llvm-gcc has never done it right and no one has noticed, so this
1811     // should be OK for now.
1812     if (ValVT == MVT::f64 &&
1813         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1814       report_fatal_error("SSE2 register return with SSE2 disabled");
1815
1816     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1817     // the RET instruction and handled by the FP Stackifier.
1818     if (VA.getLocReg() == X86::ST0 ||
1819         VA.getLocReg() == X86::ST1) {
1820       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1821       // change the value to the FP stack register class.
1822       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1823         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1824       RetOps.push_back(ValToCopy);
1825       // Don't emit a copytoreg.
1826       continue;
1827     }
1828
1829     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1830     // which is returned in RAX / RDX.
1831     if (Subtarget->is64Bit()) {
1832       if (ValVT == MVT::x86mmx) {
1833         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1834           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1835           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1836                                   ValToCopy);
1837           // If we don't have SSE2 available, convert to v4f32 so the generated
1838           // register is legal.
1839           if (!Subtarget->hasSSE2())
1840             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1841         }
1842       }
1843     }
1844
1845     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1846     Flag = Chain.getValue(1);
1847     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1848   }
1849
1850   // The x86-64 ABIs require that for returning structs by value we copy
1851   // the sret argument into %rax/%eax (depending on ABI) for the return.
1852   // Win32 requires us to put the sret argument to %eax as well.
1853   // We saved the argument into a virtual register in the entry block,
1854   // so now we copy the value out and into %rax/%eax.
1855   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1856       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1857     MachineFunction &MF = DAG.getMachineFunction();
1858     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1859     unsigned Reg = FuncInfo->getSRetReturnReg();
1860     assert(Reg &&
1861            "SRetReturnReg should have been set in LowerFormalArguments().");
1862     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1863
1864     unsigned RetValReg
1865         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1866           X86::RAX : X86::EAX;
1867     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1868     Flag = Chain.getValue(1);
1869
1870     // RAX/EAX now acts like a return value.
1871     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1872   }
1873
1874   RetOps[0] = Chain;  // Update chain.
1875
1876   // Add the flag if we have it.
1877   if (Flag.getNode())
1878     RetOps.push_back(Flag);
1879
1880   return DAG.getNode(X86ISD::RET_FLAG, dl,
1881                      MVT::Other, &RetOps[0], RetOps.size());
1882 }
1883
1884 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1885   if (N->getNumValues() != 1)
1886     return false;
1887   if (!N->hasNUsesOfValue(1, 0))
1888     return false;
1889
1890   SDValue TCChain = Chain;
1891   SDNode *Copy = *N->use_begin();
1892   if (Copy->getOpcode() == ISD::CopyToReg) {
1893     // If the copy has a glue operand, we conservatively assume it isn't safe to
1894     // perform a tail call.
1895     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1896       return false;
1897     TCChain = Copy->getOperand(0);
1898   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1899     return false;
1900
1901   bool HasRet = false;
1902   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1903        UI != UE; ++UI) {
1904     if (UI->getOpcode() != X86ISD::RET_FLAG)
1905       return false;
1906     HasRet = true;
1907   }
1908
1909   if (!HasRet)
1910     return false;
1911
1912   Chain = TCChain;
1913   return true;
1914 }
1915
1916 MVT
1917 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1918                                             ISD::NodeType ExtendKind) const {
1919   MVT ReturnMVT;
1920   // TODO: Is this also valid on 32-bit?
1921   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1922     ReturnMVT = MVT::i8;
1923   else
1924     ReturnMVT = MVT::i32;
1925
1926   MVT MinVT = getRegisterType(ReturnMVT);
1927   return VT.bitsLT(MinVT) ? MinVT : VT;
1928 }
1929
1930 /// LowerCallResult - Lower the result values of a call into the
1931 /// appropriate copies out of appropriate physical registers.
1932 ///
1933 SDValue
1934 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1935                                    CallingConv::ID CallConv, bool isVarArg,
1936                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1937                                    SDLoc dl, SelectionDAG &DAG,
1938                                    SmallVectorImpl<SDValue> &InVals) const {
1939
1940   // Assign locations to each value returned by this call.
1941   SmallVector<CCValAssign, 16> RVLocs;
1942   bool Is64Bit = Subtarget->is64Bit();
1943   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1944                  getTargetMachine(), RVLocs, *DAG.getContext());
1945   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1946
1947   // Copy all of the result registers out of their specified physreg.
1948   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1949     CCValAssign &VA = RVLocs[i];
1950     EVT CopyVT = VA.getValVT();
1951
1952     // If this is x86-64, and we disabled SSE, we can't return FP values
1953     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1954         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1955       report_fatal_error("SSE register return with SSE disabled");
1956     }
1957
1958     SDValue Val;
1959
1960     // If this is a call to a function that returns an fp value on the floating
1961     // point stack, we must guarantee the value is popped from the stack, so
1962     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1963     // if the return value is not used. We use the FpPOP_RETVAL instruction
1964     // instead.
1965     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1966       // If we prefer to use the value in xmm registers, copy it out as f80 and
1967       // use a truncate to move it from fp stack reg to xmm reg.
1968       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1969       SDValue Ops[] = { Chain, InFlag };
1970       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1971                                          MVT::Other, MVT::Glue, Ops), 1);
1972       Val = Chain.getValue(0);
1973
1974       // Round the f80 to the right size, which also moves it to the appropriate
1975       // xmm register.
1976       if (CopyVT != VA.getValVT())
1977         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1978                           // This truncation won't change the value.
1979                           DAG.getIntPtrConstant(1));
1980     } else {
1981       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1982                                  CopyVT, InFlag).getValue(1);
1983       Val = Chain.getValue(0);
1984     }
1985     InFlag = Chain.getValue(2);
1986     InVals.push_back(Val);
1987   }
1988
1989   return Chain;
1990 }
1991
1992 //===----------------------------------------------------------------------===//
1993 //                C & StdCall & Fast Calling Convention implementation
1994 //===----------------------------------------------------------------------===//
1995 //  StdCall calling convention seems to be standard for many Windows' API
1996 //  routines and around. It differs from C calling convention just a little:
1997 //  callee should clean up the stack, not caller. Symbols should be also
1998 //  decorated in some fancy way :) It doesn't support any vector arguments.
1999 //  For info on fast calling convention see Fast Calling Convention (tail call)
2000 //  implementation LowerX86_32FastCCCallTo.
2001
2002 /// CallIsStructReturn - Determines whether a call uses struct return
2003 /// semantics.
2004 enum StructReturnType {
2005   NotStructReturn,
2006   RegStructReturn,
2007   StackStructReturn
2008 };
2009 static StructReturnType
2010 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2011   if (Outs.empty())
2012     return NotStructReturn;
2013
2014   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2015   if (!Flags.isSRet())
2016     return NotStructReturn;
2017   if (Flags.isInReg())
2018     return RegStructReturn;
2019   return StackStructReturn;
2020 }
2021
2022 /// ArgsAreStructReturn - Determines whether a function uses struct
2023 /// return semantics.
2024 static StructReturnType
2025 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2026   if (Ins.empty())
2027     return NotStructReturn;
2028
2029   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2030   if (!Flags.isSRet())
2031     return NotStructReturn;
2032   if (Flags.isInReg())
2033     return RegStructReturn;
2034   return StackStructReturn;
2035 }
2036
2037 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2038 /// by "Src" to address "Dst" with size and alignment information specified by
2039 /// the specific parameter attribute. The copy will be passed as a byval
2040 /// function parameter.
2041 static SDValue
2042 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2043                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2044                           SDLoc dl) {
2045   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2046
2047   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2048                        /*isVolatile*/false, /*AlwaysInline=*/true,
2049                        MachinePointerInfo(), MachinePointerInfo());
2050 }
2051
2052 /// IsTailCallConvention - Return true if the calling convention is one that
2053 /// supports tail call optimization.
2054 static bool IsTailCallConvention(CallingConv::ID CC) {
2055   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2056           CC == CallingConv::HiPE);
2057 }
2058
2059 /// \brief Return true if the calling convention is a C calling convention.
2060 static bool IsCCallConvention(CallingConv::ID CC) {
2061   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2062           CC == CallingConv::X86_64_SysV);
2063 }
2064
2065 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2066   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2067     return false;
2068
2069   CallSite CS(CI);
2070   CallingConv::ID CalleeCC = CS.getCallingConv();
2071   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2072     return false;
2073
2074   return true;
2075 }
2076
2077 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2078 /// a tailcall target by changing its ABI.
2079 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2080                                    bool GuaranteedTailCallOpt) {
2081   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2082 }
2083
2084 SDValue
2085 X86TargetLowering::LowerMemArgument(SDValue Chain,
2086                                     CallingConv::ID CallConv,
2087                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2088                                     SDLoc dl, SelectionDAG &DAG,
2089                                     const CCValAssign &VA,
2090                                     MachineFrameInfo *MFI,
2091                                     unsigned i) const {
2092   // Create the nodes corresponding to a load from this parameter slot.
2093   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2094   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2095                               getTargetMachine().Options.GuaranteedTailCallOpt);
2096   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2097   EVT ValVT;
2098
2099   // If value is passed by pointer we have address passed instead of the value
2100   // itself.
2101   if (VA.getLocInfo() == CCValAssign::Indirect)
2102     ValVT = VA.getLocVT();
2103   else
2104     ValVT = VA.getValVT();
2105
2106   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2107   // changed with more analysis.
2108   // In case of tail call optimization mark all arguments mutable. Since they
2109   // could be overwritten by lowering of arguments in case of a tail call.
2110   if (Flags.isByVal()) {
2111     unsigned Bytes = Flags.getByValSize();
2112     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2113     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2114     return DAG.getFrameIndex(FI, getPointerTy());
2115   } else {
2116     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2117                                     VA.getLocMemOffset(), isImmutable);
2118     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2119     return DAG.getLoad(ValVT, dl, Chain, FIN,
2120                        MachinePointerInfo::getFixedStack(FI),
2121                        false, false, false, 0);
2122   }
2123 }
2124
2125 SDValue
2126 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2127                                         CallingConv::ID CallConv,
2128                                         bool isVarArg,
2129                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2130                                         SDLoc dl,
2131                                         SelectionDAG &DAG,
2132                                         SmallVectorImpl<SDValue> &InVals)
2133                                           const {
2134   MachineFunction &MF = DAG.getMachineFunction();
2135   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2136
2137   const Function* Fn = MF.getFunction();
2138   if (Fn->hasExternalLinkage() &&
2139       Subtarget->isTargetCygMing() &&
2140       Fn->getName() == "main")
2141     FuncInfo->setForceFramePointer(true);
2142
2143   MachineFrameInfo *MFI = MF.getFrameInfo();
2144   bool Is64Bit = Subtarget->is64Bit();
2145   bool IsWindows = Subtarget->isTargetWindows();
2146   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2147
2148   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2149          "Var args not supported with calling convention fastcc, ghc or hipe");
2150
2151   // Assign locations to all of the incoming arguments.
2152   SmallVector<CCValAssign, 16> ArgLocs;
2153   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2154                  ArgLocs, *DAG.getContext());
2155
2156   // Allocate shadow area for Win64
2157   if (IsWin64)
2158     CCInfo.AllocateStack(32, 8);
2159
2160   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2161
2162   unsigned LastVal = ~0U;
2163   SDValue ArgValue;
2164   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2165     CCValAssign &VA = ArgLocs[i];
2166     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2167     // places.
2168     assert(VA.getValNo() != LastVal &&
2169            "Don't support value assigned to multiple locs yet");
2170     (void)LastVal;
2171     LastVal = VA.getValNo();
2172
2173     if (VA.isRegLoc()) {
2174       EVT RegVT = VA.getLocVT();
2175       const TargetRegisterClass *RC;
2176       if (RegVT == MVT::i32)
2177         RC = &X86::GR32RegClass;
2178       else if (Is64Bit && RegVT == MVT::i64)
2179         RC = &X86::GR64RegClass;
2180       else if (RegVT == MVT::f32)
2181         RC = &X86::FR32RegClass;
2182       else if (RegVT == MVT::f64)
2183         RC = &X86::FR64RegClass;
2184       else if (RegVT.is512BitVector())
2185         RC = &X86::VR512RegClass;
2186       else if (RegVT.is256BitVector())
2187         RC = &X86::VR256RegClass;
2188       else if (RegVT.is128BitVector())
2189         RC = &X86::VR128RegClass;
2190       else if (RegVT == MVT::x86mmx)
2191         RC = &X86::VR64RegClass;
2192       else if (RegVT == MVT::v8i1)
2193         RC = &X86::VK8RegClass;
2194       else if (RegVT == MVT::v16i1)
2195         RC = &X86::VK16RegClass;
2196       else
2197         llvm_unreachable("Unknown argument type!");
2198
2199       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2200       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2201
2202       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2203       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2204       // right size.
2205       if (VA.getLocInfo() == CCValAssign::SExt)
2206         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2207                                DAG.getValueType(VA.getValVT()));
2208       else if (VA.getLocInfo() == CCValAssign::ZExt)
2209         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2210                                DAG.getValueType(VA.getValVT()));
2211       else if (VA.getLocInfo() == CCValAssign::BCvt)
2212         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2213
2214       if (VA.isExtInLoc()) {
2215         // Handle MMX values passed in XMM regs.
2216         if (RegVT.isVector())
2217           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2218         else
2219           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2220       }
2221     } else {
2222       assert(VA.isMemLoc());
2223       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2224     }
2225
2226     // If value is passed via pointer - do a load.
2227     if (VA.getLocInfo() == CCValAssign::Indirect)
2228       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2229                              MachinePointerInfo(), false, false, false, 0);
2230
2231     InVals.push_back(ArgValue);
2232   }
2233
2234   // The x86-64 ABIs require that for returning structs by value we copy
2235   // the sret argument into %rax/%eax (depending on ABI) for the return.
2236   // Win32 requires us to put the sret argument to %eax as well.
2237   // Save the argument into a virtual register so that we can access it
2238   // from the return points.
2239   if (MF.getFunction()->hasStructRetAttr() &&
2240       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2241     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2242     unsigned Reg = FuncInfo->getSRetReturnReg();
2243     if (!Reg) {
2244       MVT PtrTy = getPointerTy();
2245       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2246       FuncInfo->setSRetReturnReg(Reg);
2247     }
2248     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2249     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2250   }
2251
2252   unsigned StackSize = CCInfo.getNextStackOffset();
2253   // Align stack specially for tail calls.
2254   if (FuncIsMadeTailCallSafe(CallConv,
2255                              MF.getTarget().Options.GuaranteedTailCallOpt))
2256     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2257
2258   // If the function takes variable number of arguments, make a frame index for
2259   // the start of the first vararg value... for expansion of llvm.va_start.
2260   if (isVarArg) {
2261     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2262                     CallConv != CallingConv::X86_ThisCall)) {
2263       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2264     }
2265     if (Is64Bit) {
2266       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2267
2268       // FIXME: We should really autogenerate these arrays
2269       static const uint16_t GPR64ArgRegsWin64[] = {
2270         X86::RCX, X86::RDX, X86::R8,  X86::R9
2271       };
2272       static const uint16_t GPR64ArgRegs64Bit[] = {
2273         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2274       };
2275       static const uint16_t XMMArgRegs64Bit[] = {
2276         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2277         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2278       };
2279       const uint16_t *GPR64ArgRegs;
2280       unsigned NumXMMRegs = 0;
2281
2282       if (IsWin64) {
2283         // The XMM registers which might contain var arg parameters are shadowed
2284         // in their paired GPR.  So we only need to save the GPR to their home
2285         // slots.
2286         TotalNumIntRegs = 4;
2287         GPR64ArgRegs = GPR64ArgRegsWin64;
2288       } else {
2289         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2290         GPR64ArgRegs = GPR64ArgRegs64Bit;
2291
2292         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2293                                                 TotalNumXMMRegs);
2294       }
2295       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2296                                                        TotalNumIntRegs);
2297
2298       bool NoImplicitFloatOps = Fn->getAttributes().
2299         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2300       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2301              "SSE register cannot be used when SSE is disabled!");
2302       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2303                NoImplicitFloatOps) &&
2304              "SSE register cannot be used when SSE is disabled!");
2305       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2306           !Subtarget->hasSSE1())
2307         // Kernel mode asks for SSE to be disabled, so don't push them
2308         // on the stack.
2309         TotalNumXMMRegs = 0;
2310
2311       if (IsWin64) {
2312         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2313         // Get to the caller-allocated home save location.  Add 8 to account
2314         // for the return address.
2315         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2316         FuncInfo->setRegSaveFrameIndex(
2317           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2318         // Fixup to set vararg frame on shadow area (4 x i64).
2319         if (NumIntRegs < 4)
2320           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2321       } else {
2322         // For X86-64, if there are vararg parameters that are passed via
2323         // registers, then we must store them to their spots on the stack so
2324         // they may be loaded by deferencing the result of va_next.
2325         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2326         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2327         FuncInfo->setRegSaveFrameIndex(
2328           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2329                                false));
2330       }
2331
2332       // Store the integer parameter registers.
2333       SmallVector<SDValue, 8> MemOps;
2334       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2335                                         getPointerTy());
2336       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2337       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2338         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2339                                   DAG.getIntPtrConstant(Offset));
2340         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2341                                      &X86::GR64RegClass);
2342         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2343         SDValue Store =
2344           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2345                        MachinePointerInfo::getFixedStack(
2346                          FuncInfo->getRegSaveFrameIndex(), Offset),
2347                        false, false, 0);
2348         MemOps.push_back(Store);
2349         Offset += 8;
2350       }
2351
2352       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2353         // Now store the XMM (fp + vector) parameter registers.
2354         SmallVector<SDValue, 11> SaveXMMOps;
2355         SaveXMMOps.push_back(Chain);
2356
2357         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2358         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2359         SaveXMMOps.push_back(ALVal);
2360
2361         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2362                                FuncInfo->getRegSaveFrameIndex()));
2363         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2364                                FuncInfo->getVarArgsFPOffset()));
2365
2366         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2367           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2368                                        &X86::VR128RegClass);
2369           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2370           SaveXMMOps.push_back(Val);
2371         }
2372         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2373                                      MVT::Other,
2374                                      &SaveXMMOps[0], SaveXMMOps.size()));
2375       }
2376
2377       if (!MemOps.empty())
2378         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2379                             &MemOps[0], MemOps.size());
2380     }
2381   }
2382
2383   // Some CCs need callee pop.
2384   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2385                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2386     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2387   } else {
2388     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2389     // If this is an sret function, the return should pop the hidden pointer.
2390     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2391         argsAreStructReturn(Ins) == StackStructReturn)
2392       FuncInfo->setBytesToPopOnReturn(4);
2393   }
2394
2395   if (!Is64Bit) {
2396     // RegSaveFrameIndex is X86-64 only.
2397     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2398     if (CallConv == CallingConv::X86_FastCall ||
2399         CallConv == CallingConv::X86_ThisCall)
2400       // fastcc functions can't have varargs.
2401       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2402   }
2403
2404   FuncInfo->setArgumentStackSize(StackSize);
2405
2406   return Chain;
2407 }
2408
2409 SDValue
2410 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2411                                     SDValue StackPtr, SDValue Arg,
2412                                     SDLoc dl, SelectionDAG &DAG,
2413                                     const CCValAssign &VA,
2414                                     ISD::ArgFlagsTy Flags) const {
2415   unsigned LocMemOffset = VA.getLocMemOffset();
2416   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2417   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2418   if (Flags.isByVal())
2419     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2420
2421   return DAG.getStore(Chain, dl, Arg, PtrOff,
2422                       MachinePointerInfo::getStack(LocMemOffset),
2423                       false, false, 0);
2424 }
2425
2426 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2427 /// optimization is performed and it is required.
2428 SDValue
2429 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2430                                            SDValue &OutRetAddr, SDValue Chain,
2431                                            bool IsTailCall, bool Is64Bit,
2432                                            int FPDiff, SDLoc dl) const {
2433   // Adjust the Return address stack slot.
2434   EVT VT = getPointerTy();
2435   OutRetAddr = getReturnAddressFrameIndex(DAG);
2436
2437   // Load the "old" Return address.
2438   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2439                            false, false, false, 0);
2440   return SDValue(OutRetAddr.getNode(), 1);
2441 }
2442
2443 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2444 /// optimization is performed and it is required (FPDiff!=0).
2445 static SDValue
2446 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2447                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2448                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2449   // Store the return address to the appropriate stack slot.
2450   if (!FPDiff) return Chain;
2451   // Calculate the new stack slot for the return address.
2452   int NewReturnAddrFI =
2453     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2454                                          false);
2455   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2456   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2457                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2458                        false, false, 0);
2459   return Chain;
2460 }
2461
2462 SDValue
2463 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2464                              SmallVectorImpl<SDValue> &InVals) const {
2465   SelectionDAG &DAG                     = CLI.DAG;
2466   SDLoc &dl                             = CLI.DL;
2467   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2468   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2469   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2470   SDValue Chain                         = CLI.Chain;
2471   SDValue Callee                        = CLI.Callee;
2472   CallingConv::ID CallConv              = CLI.CallConv;
2473   bool &isTailCall                      = CLI.IsTailCall;
2474   bool isVarArg                         = CLI.IsVarArg;
2475
2476   MachineFunction &MF = DAG.getMachineFunction();
2477   bool Is64Bit        = Subtarget->is64Bit();
2478   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2479   bool IsWindows      = Subtarget->isTargetWindows();
2480   StructReturnType SR = callIsStructReturn(Outs);
2481   bool IsSibcall      = false;
2482
2483   if (MF.getTarget().Options.DisableTailCalls)
2484     isTailCall = false;
2485
2486   if (isTailCall) {
2487     // Check if it's really possible to do a tail call.
2488     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2489                     isVarArg, SR != NotStructReturn,
2490                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2491                     Outs, OutVals, Ins, DAG);
2492
2493     // Sibcalls are automatically detected tailcalls which do not require
2494     // ABI changes.
2495     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2496       IsSibcall = true;
2497
2498     if (isTailCall)
2499       ++NumTailCalls;
2500   }
2501
2502   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2503          "Var args not supported with calling convention fastcc, ghc or hipe");
2504
2505   // Analyze operands of the call, assigning locations to each operand.
2506   SmallVector<CCValAssign, 16> ArgLocs;
2507   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2508                  ArgLocs, *DAG.getContext());
2509
2510   // Allocate shadow area for Win64
2511   if (IsWin64)
2512     CCInfo.AllocateStack(32, 8);
2513
2514   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2515
2516   // Get a count of how many bytes are to be pushed on the stack.
2517   unsigned NumBytes = CCInfo.getNextStackOffset();
2518   if (IsSibcall)
2519     // This is a sibcall. The memory operands are available in caller's
2520     // own caller's stack.
2521     NumBytes = 0;
2522   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2523            IsTailCallConvention(CallConv))
2524     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2525
2526   int FPDiff = 0;
2527   if (isTailCall && !IsSibcall) {
2528     // Lower arguments at fp - stackoffset + fpdiff.
2529     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2530     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2531
2532     FPDiff = NumBytesCallerPushed - NumBytes;
2533
2534     // Set the delta of movement of the returnaddr stackslot.
2535     // But only set if delta is greater than previous delta.
2536     if (FPDiff < X86Info->getTCReturnAddrDelta())
2537       X86Info->setTCReturnAddrDelta(FPDiff);
2538   }
2539
2540   if (!IsSibcall)
2541     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2542                                  dl);
2543
2544   SDValue RetAddrFrIdx;
2545   // Load return address for tail calls.
2546   if (isTailCall && FPDiff)
2547     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2548                                     Is64Bit, FPDiff, dl);
2549
2550   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2551   SmallVector<SDValue, 8> MemOpChains;
2552   SDValue StackPtr;
2553
2554   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2555   // of tail call optimization arguments are handle later.
2556   const X86RegisterInfo *RegInfo =
2557     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2558   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2559     CCValAssign &VA = ArgLocs[i];
2560     EVT RegVT = VA.getLocVT();
2561     SDValue Arg = OutVals[i];
2562     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2563     bool isByVal = Flags.isByVal();
2564
2565     // Promote the value if needed.
2566     switch (VA.getLocInfo()) {
2567     default: llvm_unreachable("Unknown loc info!");
2568     case CCValAssign::Full: break;
2569     case CCValAssign::SExt:
2570       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2571       break;
2572     case CCValAssign::ZExt:
2573       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2574       break;
2575     case CCValAssign::AExt:
2576       if (RegVT.is128BitVector()) {
2577         // Special case: passing MMX values in XMM registers.
2578         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2579         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2580         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2581       } else
2582         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2583       break;
2584     case CCValAssign::BCvt:
2585       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2586       break;
2587     case CCValAssign::Indirect: {
2588       // Store the argument.
2589       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2590       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2591       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2592                            MachinePointerInfo::getFixedStack(FI),
2593                            false, false, 0);
2594       Arg = SpillSlot;
2595       break;
2596     }
2597     }
2598
2599     if (VA.isRegLoc()) {
2600       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2601       if (isVarArg && IsWin64) {
2602         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2603         // shadow reg if callee is a varargs function.
2604         unsigned ShadowReg = 0;
2605         switch (VA.getLocReg()) {
2606         case X86::XMM0: ShadowReg = X86::RCX; break;
2607         case X86::XMM1: ShadowReg = X86::RDX; break;
2608         case X86::XMM2: ShadowReg = X86::R8; break;
2609         case X86::XMM3: ShadowReg = X86::R9; break;
2610         }
2611         if (ShadowReg)
2612           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2613       }
2614     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2615       assert(VA.isMemLoc());
2616       if (StackPtr.getNode() == 0)
2617         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2618                                       getPointerTy());
2619       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2620                                              dl, DAG, VA, Flags));
2621     }
2622   }
2623
2624   if (!MemOpChains.empty())
2625     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2626                         &MemOpChains[0], MemOpChains.size());
2627
2628   if (Subtarget->isPICStyleGOT()) {
2629     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2630     // GOT pointer.
2631     if (!isTailCall) {
2632       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2633                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2634     } else {
2635       // If we are tail calling and generating PIC/GOT style code load the
2636       // address of the callee into ECX. The value in ecx is used as target of
2637       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2638       // for tail calls on PIC/GOT architectures. Normally we would just put the
2639       // address of GOT into ebx and then call target@PLT. But for tail calls
2640       // ebx would be restored (since ebx is callee saved) before jumping to the
2641       // target@PLT.
2642
2643       // Note: The actual moving to ECX is done further down.
2644       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2645       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2646           !G->getGlobal()->hasProtectedVisibility())
2647         Callee = LowerGlobalAddress(Callee, DAG);
2648       else if (isa<ExternalSymbolSDNode>(Callee))
2649         Callee = LowerExternalSymbol(Callee, DAG);
2650     }
2651   }
2652
2653   if (Is64Bit && isVarArg && !IsWin64) {
2654     // From AMD64 ABI document:
2655     // For calls that may call functions that use varargs or stdargs
2656     // (prototype-less calls or calls to functions containing ellipsis (...) in
2657     // the declaration) %al is used as hidden argument to specify the number
2658     // of SSE registers used. The contents of %al do not need to match exactly
2659     // the number of registers, but must be an ubound on the number of SSE
2660     // registers used and is in the range 0 - 8 inclusive.
2661
2662     // Count the number of XMM registers allocated.
2663     static const uint16_t XMMArgRegs[] = {
2664       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2665       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2666     };
2667     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2668     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2669            && "SSE registers cannot be used when SSE is disabled");
2670
2671     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2672                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2673   }
2674
2675   // For tail calls lower the arguments to the 'real' stack slot.
2676   if (isTailCall) {
2677     // Force all the incoming stack arguments to be loaded from the stack
2678     // before any new outgoing arguments are stored to the stack, because the
2679     // outgoing stack slots may alias the incoming argument stack slots, and
2680     // the alias isn't otherwise explicit. This is slightly more conservative
2681     // than necessary, because it means that each store effectively depends
2682     // on every argument instead of just those arguments it would clobber.
2683     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2684
2685     SmallVector<SDValue, 8> MemOpChains2;
2686     SDValue FIN;
2687     int FI = 0;
2688     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2689       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2690         CCValAssign &VA = ArgLocs[i];
2691         if (VA.isRegLoc())
2692           continue;
2693         assert(VA.isMemLoc());
2694         SDValue Arg = OutVals[i];
2695         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2696         // Create frame index.
2697         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2698         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2699         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2700         FIN = DAG.getFrameIndex(FI, getPointerTy());
2701
2702         if (Flags.isByVal()) {
2703           // Copy relative to framepointer.
2704           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2705           if (StackPtr.getNode() == 0)
2706             StackPtr = DAG.getCopyFromReg(Chain, dl,
2707                                           RegInfo->getStackRegister(),
2708                                           getPointerTy());
2709           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2710
2711           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2712                                                            ArgChain,
2713                                                            Flags, DAG, dl));
2714         } else {
2715           // Store relative to framepointer.
2716           MemOpChains2.push_back(
2717             DAG.getStore(ArgChain, dl, Arg, FIN,
2718                          MachinePointerInfo::getFixedStack(FI),
2719                          false, false, 0));
2720         }
2721       }
2722     }
2723
2724     if (!MemOpChains2.empty())
2725       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2726                           &MemOpChains2[0], MemOpChains2.size());
2727
2728     // Store the return address to the appropriate stack slot.
2729     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2730                                      getPointerTy(), RegInfo->getSlotSize(),
2731                                      FPDiff, dl);
2732   }
2733
2734   // Build a sequence of copy-to-reg nodes chained together with token chain
2735   // and flag operands which copy the outgoing args into registers.
2736   SDValue InFlag;
2737   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2738     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2739                              RegsToPass[i].second, InFlag);
2740     InFlag = Chain.getValue(1);
2741   }
2742
2743   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2744     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2745     // In the 64-bit large code model, we have to make all calls
2746     // through a register, since the call instruction's 32-bit
2747     // pc-relative offset may not be large enough to hold the whole
2748     // address.
2749   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2750     // If the callee is a GlobalAddress node (quite common, every direct call
2751     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2752     // it.
2753
2754     // We should use extra load for direct calls to dllimported functions in
2755     // non-JIT mode.
2756     const GlobalValue *GV = G->getGlobal();
2757     if (!GV->hasDLLImportLinkage()) {
2758       unsigned char OpFlags = 0;
2759       bool ExtraLoad = false;
2760       unsigned WrapperKind = ISD::DELETED_NODE;
2761
2762       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2763       // external symbols most go through the PLT in PIC mode.  If the symbol
2764       // has hidden or protected visibility, or if it is static or local, then
2765       // we don't need to use the PLT - we can directly call it.
2766       if (Subtarget->isTargetELF() &&
2767           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2768           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2769         OpFlags = X86II::MO_PLT;
2770       } else if (Subtarget->isPICStyleStubAny() &&
2771                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2772                  (!Subtarget->getTargetTriple().isMacOSX() ||
2773                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2774         // PC-relative references to external symbols should go through $stub,
2775         // unless we're building with the leopard linker or later, which
2776         // automatically synthesizes these stubs.
2777         OpFlags = X86II::MO_DARWIN_STUB;
2778       } else if (Subtarget->isPICStyleRIPRel() &&
2779                  isa<Function>(GV) &&
2780                  cast<Function>(GV)->getAttributes().
2781                    hasAttribute(AttributeSet::FunctionIndex,
2782                                 Attribute::NonLazyBind)) {
2783         // If the function is marked as non-lazy, generate an indirect call
2784         // which loads from the GOT directly. This avoids runtime overhead
2785         // at the cost of eager binding (and one extra byte of encoding).
2786         OpFlags = X86II::MO_GOTPCREL;
2787         WrapperKind = X86ISD::WrapperRIP;
2788         ExtraLoad = true;
2789       }
2790
2791       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2792                                           G->getOffset(), OpFlags);
2793
2794       // Add a wrapper if needed.
2795       if (WrapperKind != ISD::DELETED_NODE)
2796         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2797       // Add extra indirection if needed.
2798       if (ExtraLoad)
2799         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2800                              MachinePointerInfo::getGOT(),
2801                              false, false, false, 0);
2802     }
2803   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2804     unsigned char OpFlags = 0;
2805
2806     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2807     // external symbols should go through the PLT.
2808     if (Subtarget->isTargetELF() &&
2809         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2810       OpFlags = X86II::MO_PLT;
2811     } else if (Subtarget->isPICStyleStubAny() &&
2812                (!Subtarget->getTargetTriple().isMacOSX() ||
2813                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2814       // PC-relative references to external symbols should go through $stub,
2815       // unless we're building with the leopard linker or later, which
2816       // automatically synthesizes these stubs.
2817       OpFlags = X86II::MO_DARWIN_STUB;
2818     }
2819
2820     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2821                                          OpFlags);
2822   }
2823
2824   // Returns a chain & a flag for retval copy to use.
2825   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2826   SmallVector<SDValue, 8> Ops;
2827
2828   if (!IsSibcall && isTailCall) {
2829     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2830                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2831     InFlag = Chain.getValue(1);
2832   }
2833
2834   Ops.push_back(Chain);
2835   Ops.push_back(Callee);
2836
2837   if (isTailCall)
2838     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2839
2840   // Add argument registers to the end of the list so that they are known live
2841   // into the call.
2842   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2843     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2844                                   RegsToPass[i].second.getValueType()));
2845
2846   // Add a register mask operand representing the call-preserved registers.
2847   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2848   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2849   assert(Mask && "Missing call preserved mask for calling convention");
2850   Ops.push_back(DAG.getRegisterMask(Mask));
2851
2852   if (InFlag.getNode())
2853     Ops.push_back(InFlag);
2854
2855   if (isTailCall) {
2856     // We used to do:
2857     //// If this is the first return lowered for this function, add the regs
2858     //// to the liveout set for the function.
2859     // This isn't right, although it's probably harmless on x86; liveouts
2860     // should be computed from returns not tail calls.  Consider a void
2861     // function making a tail call to a function returning int.
2862     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2863   }
2864
2865   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2866   InFlag = Chain.getValue(1);
2867
2868   // Create the CALLSEQ_END node.
2869   unsigned NumBytesForCalleeToPush;
2870   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2871                        getTargetMachine().Options.GuaranteedTailCallOpt))
2872     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2873   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2874            SR == StackStructReturn)
2875     // If this is a call to a struct-return function, the callee
2876     // pops the hidden struct pointer, so we have to push it back.
2877     // This is common for Darwin/X86, Linux & Mingw32 targets.
2878     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2879     NumBytesForCalleeToPush = 4;
2880   else
2881     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2882
2883   // Returns a flag for retval copy to use.
2884   if (!IsSibcall) {
2885     Chain = DAG.getCALLSEQ_END(Chain,
2886                                DAG.getIntPtrConstant(NumBytes, true),
2887                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2888                                                      true),
2889                                InFlag, dl);
2890     InFlag = Chain.getValue(1);
2891   }
2892
2893   // Handle result values, copying them out of physregs into vregs that we
2894   // return.
2895   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2896                          Ins, dl, DAG, InVals);
2897 }
2898
2899 //===----------------------------------------------------------------------===//
2900 //                Fast Calling Convention (tail call) implementation
2901 //===----------------------------------------------------------------------===//
2902
2903 //  Like std call, callee cleans arguments, convention except that ECX is
2904 //  reserved for storing the tail called function address. Only 2 registers are
2905 //  free for argument passing (inreg). Tail call optimization is performed
2906 //  provided:
2907 //                * tailcallopt is enabled
2908 //                * caller/callee are fastcc
2909 //  On X86_64 architecture with GOT-style position independent code only local
2910 //  (within module) calls are supported at the moment.
2911 //  To keep the stack aligned according to platform abi the function
2912 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2913 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2914 //  If a tail called function callee has more arguments than the caller the
2915 //  caller needs to make sure that there is room to move the RETADDR to. This is
2916 //  achieved by reserving an area the size of the argument delta right after the
2917 //  original REtADDR, but before the saved framepointer or the spilled registers
2918 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2919 //  stack layout:
2920 //    arg1
2921 //    arg2
2922 //    RETADDR
2923 //    [ new RETADDR
2924 //      move area ]
2925 //    (possible EBP)
2926 //    ESI
2927 //    EDI
2928 //    local1 ..
2929
2930 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2931 /// for a 16 byte align requirement.
2932 unsigned
2933 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2934                                                SelectionDAG& DAG) const {
2935   MachineFunction &MF = DAG.getMachineFunction();
2936   const TargetMachine &TM = MF.getTarget();
2937   const X86RegisterInfo *RegInfo =
2938     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2939   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2940   unsigned StackAlignment = TFI.getStackAlignment();
2941   uint64_t AlignMask = StackAlignment - 1;
2942   int64_t Offset = StackSize;
2943   unsigned SlotSize = RegInfo->getSlotSize();
2944   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2945     // Number smaller than 12 so just add the difference.
2946     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2947   } else {
2948     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2949     Offset = ((~AlignMask) & Offset) + StackAlignment +
2950       (StackAlignment-SlotSize);
2951   }
2952   return Offset;
2953 }
2954
2955 /// MatchingStackOffset - Return true if the given stack call argument is
2956 /// already available in the same position (relatively) of the caller's
2957 /// incoming argument stack.
2958 static
2959 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2960                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2961                          const X86InstrInfo *TII) {
2962   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2963   int FI = INT_MAX;
2964   if (Arg.getOpcode() == ISD::CopyFromReg) {
2965     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2966     if (!TargetRegisterInfo::isVirtualRegister(VR))
2967       return false;
2968     MachineInstr *Def = MRI->getVRegDef(VR);
2969     if (!Def)
2970       return false;
2971     if (!Flags.isByVal()) {
2972       if (!TII->isLoadFromStackSlot(Def, FI))
2973         return false;
2974     } else {
2975       unsigned Opcode = Def->getOpcode();
2976       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2977           Def->getOperand(1).isFI()) {
2978         FI = Def->getOperand(1).getIndex();
2979         Bytes = Flags.getByValSize();
2980       } else
2981         return false;
2982     }
2983   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2984     if (Flags.isByVal())
2985       // ByVal argument is passed in as a pointer but it's now being
2986       // dereferenced. e.g.
2987       // define @foo(%struct.X* %A) {
2988       //   tail call @bar(%struct.X* byval %A)
2989       // }
2990       return false;
2991     SDValue Ptr = Ld->getBasePtr();
2992     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2993     if (!FINode)
2994       return false;
2995     FI = FINode->getIndex();
2996   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
2997     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
2998     FI = FINode->getIndex();
2999     Bytes = Flags.getByValSize();
3000   } else
3001     return false;
3002
3003   assert(FI != INT_MAX);
3004   if (!MFI->isFixedObjectIndex(FI))
3005     return false;
3006   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3007 }
3008
3009 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3010 /// for tail call optimization. Targets which want to do tail call
3011 /// optimization should implement this function.
3012 bool
3013 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3014                                                      CallingConv::ID CalleeCC,
3015                                                      bool isVarArg,
3016                                                      bool isCalleeStructRet,
3017                                                      bool isCallerStructRet,
3018                                                      Type *RetTy,
3019                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3020                                     const SmallVectorImpl<SDValue> &OutVals,
3021                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3022                                                      SelectionDAG &DAG) const {
3023   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3024     return false;
3025
3026   // If -tailcallopt is specified, make fastcc functions tail-callable.
3027   const MachineFunction &MF = DAG.getMachineFunction();
3028   const Function *CallerF = MF.getFunction();
3029
3030   // If the function return type is x86_fp80 and the callee return type is not,
3031   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3032   // perform a tailcall optimization here.
3033   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3034     return false;
3035
3036   CallingConv::ID CallerCC = CallerF->getCallingConv();
3037   bool CCMatch = CallerCC == CalleeCC;
3038   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3039   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3040
3041   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3042     if (IsTailCallConvention(CalleeCC) && CCMatch)
3043       return true;
3044     return false;
3045   }
3046
3047   // Look for obvious safe cases to perform tail call optimization that do not
3048   // require ABI changes. This is what gcc calls sibcall.
3049
3050   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3051   // emit a special epilogue.
3052   const X86RegisterInfo *RegInfo =
3053     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3054   if (RegInfo->needsStackRealignment(MF))
3055     return false;
3056
3057   // Also avoid sibcall optimization if either caller or callee uses struct
3058   // return semantics.
3059   if (isCalleeStructRet || isCallerStructRet)
3060     return false;
3061
3062   // An stdcall caller is expected to clean up its arguments; the callee
3063   // isn't going to do that.
3064   if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
3065     return false;
3066
3067   // Do not sibcall optimize vararg calls unless all arguments are passed via
3068   // registers.
3069   if (isVarArg && !Outs.empty()) {
3070
3071     // Optimizing for varargs on Win64 is unlikely to be safe without
3072     // additional testing.
3073     if (IsCalleeWin64 || IsCallerWin64)
3074       return false;
3075
3076     SmallVector<CCValAssign, 16> ArgLocs;
3077     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3078                    getTargetMachine(), ArgLocs, *DAG.getContext());
3079
3080     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3081     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3082       if (!ArgLocs[i].isRegLoc())
3083         return false;
3084   }
3085
3086   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3087   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3088   // this into a sibcall.
3089   bool Unused = false;
3090   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3091     if (!Ins[i].Used) {
3092       Unused = true;
3093       break;
3094     }
3095   }
3096   if (Unused) {
3097     SmallVector<CCValAssign, 16> RVLocs;
3098     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3099                    getTargetMachine(), RVLocs, *DAG.getContext());
3100     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3101     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3102       CCValAssign &VA = RVLocs[i];
3103       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3104         return false;
3105     }
3106   }
3107
3108   // If the calling conventions do not match, then we'd better make sure the
3109   // results are returned in the same way as what the caller expects.
3110   if (!CCMatch) {
3111     SmallVector<CCValAssign, 16> RVLocs1;
3112     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3113                     getTargetMachine(), RVLocs1, *DAG.getContext());
3114     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3115
3116     SmallVector<CCValAssign, 16> RVLocs2;
3117     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3118                     getTargetMachine(), RVLocs2, *DAG.getContext());
3119     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3120
3121     if (RVLocs1.size() != RVLocs2.size())
3122       return false;
3123     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3124       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3125         return false;
3126       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3127         return false;
3128       if (RVLocs1[i].isRegLoc()) {
3129         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3130           return false;
3131       } else {
3132         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3133           return false;
3134       }
3135     }
3136   }
3137
3138   // If the callee takes no arguments then go on to check the results of the
3139   // call.
3140   if (!Outs.empty()) {
3141     // Check if stack adjustment is needed. For now, do not do this if any
3142     // argument is passed on the stack.
3143     SmallVector<CCValAssign, 16> ArgLocs;
3144     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3145                    getTargetMachine(), ArgLocs, *DAG.getContext());
3146
3147     // Allocate shadow area for Win64
3148     if (IsCalleeWin64)
3149       CCInfo.AllocateStack(32, 8);
3150
3151     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3152     if (CCInfo.getNextStackOffset()) {
3153       MachineFunction &MF = DAG.getMachineFunction();
3154       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3155         return false;
3156
3157       // Check if the arguments are already laid out in the right way as
3158       // the caller's fixed stack objects.
3159       MachineFrameInfo *MFI = MF.getFrameInfo();
3160       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3161       const X86InstrInfo *TII =
3162         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3163       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3164         CCValAssign &VA = ArgLocs[i];
3165         SDValue Arg = OutVals[i];
3166         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3167         if (VA.getLocInfo() == CCValAssign::Indirect)
3168           return false;
3169         if (!VA.isRegLoc()) {
3170           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3171                                    MFI, MRI, TII))
3172             return false;
3173         }
3174       }
3175     }
3176
3177     // If the tailcall address may be in a register, then make sure it's
3178     // possible to register allocate for it. In 32-bit, the call address can
3179     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3180     // callee-saved registers are restored. These happen to be the same
3181     // registers used to pass 'inreg' arguments so watch out for those.
3182     if (!Subtarget->is64Bit() &&
3183         ((!isa<GlobalAddressSDNode>(Callee) &&
3184           !isa<ExternalSymbolSDNode>(Callee)) ||
3185          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3186       unsigned NumInRegs = 0;
3187       // In PIC we need an extra register to formulate the address computation
3188       // for the callee.
3189       unsigned MaxInRegs =
3190           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3191
3192       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3193         CCValAssign &VA = ArgLocs[i];
3194         if (!VA.isRegLoc())
3195           continue;
3196         unsigned Reg = VA.getLocReg();
3197         switch (Reg) {
3198         default: break;
3199         case X86::EAX: case X86::EDX: case X86::ECX:
3200           if (++NumInRegs == MaxInRegs)
3201             return false;
3202           break;
3203         }
3204       }
3205     }
3206   }
3207
3208   return true;
3209 }
3210
3211 FastISel *
3212 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3213                                   const TargetLibraryInfo *libInfo) const {
3214   return X86::createFastISel(funcInfo, libInfo);
3215 }
3216
3217 //===----------------------------------------------------------------------===//
3218 //                           Other Lowering Hooks
3219 //===----------------------------------------------------------------------===//
3220
3221 static bool MayFoldLoad(SDValue Op) {
3222   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3223 }
3224
3225 static bool MayFoldIntoStore(SDValue Op) {
3226   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3227 }
3228
3229 static bool isTargetShuffle(unsigned Opcode) {
3230   switch(Opcode) {
3231   default: return false;
3232   case X86ISD::PSHUFD:
3233   case X86ISD::PSHUFHW:
3234   case X86ISD::PSHUFLW:
3235   case X86ISD::SHUFP:
3236   case X86ISD::PALIGNR:
3237   case X86ISD::MOVLHPS:
3238   case X86ISD::MOVLHPD:
3239   case X86ISD::MOVHLPS:
3240   case X86ISD::MOVLPS:
3241   case X86ISD::MOVLPD:
3242   case X86ISD::MOVSHDUP:
3243   case X86ISD::MOVSLDUP:
3244   case X86ISD::MOVDDUP:
3245   case X86ISD::MOVSS:
3246   case X86ISD::MOVSD:
3247   case X86ISD::UNPCKL:
3248   case X86ISD::UNPCKH:
3249   case X86ISD::VPERMILP:
3250   case X86ISD::VPERM2X128:
3251   case X86ISD::VPERMI:
3252     return true;
3253   }
3254 }
3255
3256 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3257                                     SDValue V1, SelectionDAG &DAG) {
3258   switch(Opc) {
3259   default: llvm_unreachable("Unknown x86 shuffle node");
3260   case X86ISD::MOVSHDUP:
3261   case X86ISD::MOVSLDUP:
3262   case X86ISD::MOVDDUP:
3263     return DAG.getNode(Opc, dl, VT, V1);
3264   }
3265 }
3266
3267 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3268                                     SDValue V1, unsigned TargetMask,
3269                                     SelectionDAG &DAG) {
3270   switch(Opc) {
3271   default: llvm_unreachable("Unknown x86 shuffle node");
3272   case X86ISD::PSHUFD:
3273   case X86ISD::PSHUFHW:
3274   case X86ISD::PSHUFLW:
3275   case X86ISD::VPERMILP:
3276   case X86ISD::VPERMI:
3277     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3278   }
3279 }
3280
3281 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3282                                     SDValue V1, SDValue V2, unsigned TargetMask,
3283                                     SelectionDAG &DAG) {
3284   switch(Opc) {
3285   default: llvm_unreachable("Unknown x86 shuffle node");
3286   case X86ISD::PALIGNR:
3287   case X86ISD::SHUFP:
3288   case X86ISD::VPERM2X128:
3289     return DAG.getNode(Opc, dl, VT, V1, V2,
3290                        DAG.getConstant(TargetMask, MVT::i8));
3291   }
3292 }
3293
3294 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3295                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3296   switch(Opc) {
3297   default: llvm_unreachable("Unknown x86 shuffle node");
3298   case X86ISD::MOVLHPS:
3299   case X86ISD::MOVLHPD:
3300   case X86ISD::MOVHLPS:
3301   case X86ISD::MOVLPS:
3302   case X86ISD::MOVLPD:
3303   case X86ISD::MOVSS:
3304   case X86ISD::MOVSD:
3305   case X86ISD::UNPCKL:
3306   case X86ISD::UNPCKH:
3307     return DAG.getNode(Opc, dl, VT, V1, V2);
3308   }
3309 }
3310
3311 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3312   MachineFunction &MF = DAG.getMachineFunction();
3313   const X86RegisterInfo *RegInfo =
3314     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3315   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3316   int ReturnAddrIndex = FuncInfo->getRAIndex();
3317
3318   if (ReturnAddrIndex == 0) {
3319     // Set up a frame object for the return address.
3320     unsigned SlotSize = RegInfo->getSlotSize();
3321     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3322                                                            -(int64_t)SlotSize,
3323                                                            false);
3324     FuncInfo->setRAIndex(ReturnAddrIndex);
3325   }
3326
3327   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3328 }
3329
3330 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3331                                        bool hasSymbolicDisplacement) {
3332   // Offset should fit into 32 bit immediate field.
3333   if (!isInt<32>(Offset))
3334     return false;
3335
3336   // If we don't have a symbolic displacement - we don't have any extra
3337   // restrictions.
3338   if (!hasSymbolicDisplacement)
3339     return true;
3340
3341   // FIXME: Some tweaks might be needed for medium code model.
3342   if (M != CodeModel::Small && M != CodeModel::Kernel)
3343     return false;
3344
3345   // For small code model we assume that latest object is 16MB before end of 31
3346   // bits boundary. We may also accept pretty large negative constants knowing
3347   // that all objects are in the positive half of address space.
3348   if (M == CodeModel::Small && Offset < 16*1024*1024)
3349     return true;
3350
3351   // For kernel code model we know that all object resist in the negative half
3352   // of 32bits address space. We may not accept negative offsets, since they may
3353   // be just off and we may accept pretty large positive ones.
3354   if (M == CodeModel::Kernel && Offset > 0)
3355     return true;
3356
3357   return false;
3358 }
3359
3360 /// isCalleePop - Determines whether the callee is required to pop its
3361 /// own arguments. Callee pop is necessary to support tail calls.
3362 bool X86::isCalleePop(CallingConv::ID CallingConv,
3363                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3364   if (IsVarArg)
3365     return false;
3366
3367   switch (CallingConv) {
3368   default:
3369     return false;
3370   case CallingConv::X86_StdCall:
3371     return !is64Bit;
3372   case CallingConv::X86_FastCall:
3373     return !is64Bit;
3374   case CallingConv::X86_ThisCall:
3375     return !is64Bit;
3376   case CallingConv::Fast:
3377     return TailCallOpt;
3378   case CallingConv::GHC:
3379     return TailCallOpt;
3380   case CallingConv::HiPE:
3381     return TailCallOpt;
3382   }
3383 }
3384
3385 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3386 /// specific condition code, returning the condition code and the LHS/RHS of the
3387 /// comparison to make.
3388 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3389                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3390   if (!isFP) {
3391     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3392       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3393         // X > -1   -> X == 0, jump !sign.
3394         RHS = DAG.getConstant(0, RHS.getValueType());
3395         return X86::COND_NS;
3396       }
3397       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3398         // X < 0   -> X == 0, jump on sign.
3399         return X86::COND_S;
3400       }
3401       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3402         // X < 1   -> X <= 0
3403         RHS = DAG.getConstant(0, RHS.getValueType());
3404         return X86::COND_LE;
3405       }
3406     }
3407
3408     switch (SetCCOpcode) {
3409     default: llvm_unreachable("Invalid integer condition!");
3410     case ISD::SETEQ:  return X86::COND_E;
3411     case ISD::SETGT:  return X86::COND_G;
3412     case ISD::SETGE:  return X86::COND_GE;
3413     case ISD::SETLT:  return X86::COND_L;
3414     case ISD::SETLE:  return X86::COND_LE;
3415     case ISD::SETNE:  return X86::COND_NE;
3416     case ISD::SETULT: return X86::COND_B;
3417     case ISD::SETUGT: return X86::COND_A;
3418     case ISD::SETULE: return X86::COND_BE;
3419     case ISD::SETUGE: return X86::COND_AE;
3420     }
3421   }
3422
3423   // First determine if it is required or is profitable to flip the operands.
3424
3425   // If LHS is a foldable load, but RHS is not, flip the condition.
3426   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3427       !ISD::isNON_EXTLoad(RHS.getNode())) {
3428     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3429     std::swap(LHS, RHS);
3430   }
3431
3432   switch (SetCCOpcode) {
3433   default: break;
3434   case ISD::SETOLT:
3435   case ISD::SETOLE:
3436   case ISD::SETUGT:
3437   case ISD::SETUGE:
3438     std::swap(LHS, RHS);
3439     break;
3440   }
3441
3442   // On a floating point condition, the flags are set as follows:
3443   // ZF  PF  CF   op
3444   //  0 | 0 | 0 | X > Y
3445   //  0 | 0 | 1 | X < Y
3446   //  1 | 0 | 0 | X == Y
3447   //  1 | 1 | 1 | unordered
3448   switch (SetCCOpcode) {
3449   default: llvm_unreachable("Condcode should be pre-legalized away");
3450   case ISD::SETUEQ:
3451   case ISD::SETEQ:   return X86::COND_E;
3452   case ISD::SETOLT:              // flipped
3453   case ISD::SETOGT:
3454   case ISD::SETGT:   return X86::COND_A;
3455   case ISD::SETOLE:              // flipped
3456   case ISD::SETOGE:
3457   case ISD::SETGE:   return X86::COND_AE;
3458   case ISD::SETUGT:              // flipped
3459   case ISD::SETULT:
3460   case ISD::SETLT:   return X86::COND_B;
3461   case ISD::SETUGE:              // flipped
3462   case ISD::SETULE:
3463   case ISD::SETLE:   return X86::COND_BE;
3464   case ISD::SETONE:
3465   case ISD::SETNE:   return X86::COND_NE;
3466   case ISD::SETUO:   return X86::COND_P;
3467   case ISD::SETO:    return X86::COND_NP;
3468   case ISD::SETOEQ:
3469   case ISD::SETUNE:  return X86::COND_INVALID;
3470   }
3471 }
3472
3473 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3474 /// code. Current x86 isa includes the following FP cmov instructions:
3475 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3476 static bool hasFPCMov(unsigned X86CC) {
3477   switch (X86CC) {
3478   default:
3479     return false;
3480   case X86::COND_B:
3481   case X86::COND_BE:
3482   case X86::COND_E:
3483   case X86::COND_P:
3484   case X86::COND_A:
3485   case X86::COND_AE:
3486   case X86::COND_NE:
3487   case X86::COND_NP:
3488     return true;
3489   }
3490 }
3491
3492 /// isFPImmLegal - Returns true if the target can instruction select the
3493 /// specified FP immediate natively. If false, the legalizer will
3494 /// materialize the FP immediate as a load from a constant pool.
3495 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3496   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3497     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3498       return true;
3499   }
3500   return false;
3501 }
3502
3503 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3504 /// the specified range (L, H].
3505 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3506   return (Val < 0) || (Val >= Low && Val < Hi);
3507 }
3508
3509 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3510 /// specified value.
3511 static bool isUndefOrEqual(int Val, int CmpVal) {
3512   return (Val < 0 || Val == CmpVal);
3513 }
3514
3515 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3516 /// from position Pos and ending in Pos+Size, falls within the specified
3517 /// sequential range (L, L+Pos]. or is undef.
3518 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3519                                        unsigned Pos, unsigned Size, int Low) {
3520   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3521     if (!isUndefOrEqual(Mask[i], Low))
3522       return false;
3523   return true;
3524 }
3525
3526 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3527 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3528 /// the second operand.
3529 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3530   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3531     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3532   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3533     return (Mask[0] < 2 && Mask[1] < 2);
3534   return false;
3535 }
3536
3537 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3538 /// is suitable for input to PSHUFHW.
3539 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3540   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3541     return false;
3542
3543   // Lower quadword copied in order or undef.
3544   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3545     return false;
3546
3547   // Upper quadword shuffled.
3548   for (unsigned i = 4; i != 8; ++i)
3549     if (!isUndefOrInRange(Mask[i], 4, 8))
3550       return false;
3551
3552   if (VT == MVT::v16i16) {
3553     // Lower quadword copied in order or undef.
3554     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3555       return false;
3556
3557     // Upper quadword shuffled.
3558     for (unsigned i = 12; i != 16; ++i)
3559       if (!isUndefOrInRange(Mask[i], 12, 16))
3560         return false;
3561   }
3562
3563   return true;
3564 }
3565
3566 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3567 /// is suitable for input to PSHUFLW.
3568 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3569   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3570     return false;
3571
3572   // Upper quadword copied in order.
3573   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3574     return false;
3575
3576   // Lower quadword shuffled.
3577   for (unsigned i = 0; i != 4; ++i)
3578     if (!isUndefOrInRange(Mask[i], 0, 4))
3579       return false;
3580
3581   if (VT == MVT::v16i16) {
3582     // Upper quadword copied in order.
3583     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3584       return false;
3585
3586     // Lower quadword shuffled.
3587     for (unsigned i = 8; i != 12; ++i)
3588       if (!isUndefOrInRange(Mask[i], 8, 12))
3589         return false;
3590   }
3591
3592   return true;
3593 }
3594
3595 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3596 /// is suitable for input to PALIGNR.
3597 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3598                           const X86Subtarget *Subtarget) {
3599   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3600       (VT.is256BitVector() && !Subtarget->hasInt256()))
3601     return false;
3602
3603   unsigned NumElts = VT.getVectorNumElements();
3604   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3605   unsigned NumLaneElts = NumElts/NumLanes;
3606
3607   // Do not handle 64-bit element shuffles with palignr.
3608   if (NumLaneElts == 2)
3609     return false;
3610
3611   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3612     unsigned i;
3613     for (i = 0; i != NumLaneElts; ++i) {
3614       if (Mask[i+l] >= 0)
3615         break;
3616     }
3617
3618     // Lane is all undef, go to next lane
3619     if (i == NumLaneElts)
3620       continue;
3621
3622     int Start = Mask[i+l];
3623
3624     // Make sure its in this lane in one of the sources
3625     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3626         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3627       return false;
3628
3629     // If not lane 0, then we must match lane 0
3630     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3631       return false;
3632
3633     // Correct second source to be contiguous with first source
3634     if (Start >= (int)NumElts)
3635       Start -= NumElts - NumLaneElts;
3636
3637     // Make sure we're shifting in the right direction.
3638     if (Start <= (int)(i+l))
3639       return false;
3640
3641     Start -= i;
3642
3643     // Check the rest of the elements to see if they are consecutive.
3644     for (++i; i != NumLaneElts; ++i) {
3645       int Idx = Mask[i+l];
3646
3647       // Make sure its in this lane
3648       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3649           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3650         return false;
3651
3652       // If not lane 0, then we must match lane 0
3653       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3654         return false;
3655
3656       if (Idx >= (int)NumElts)
3657         Idx -= NumElts - NumLaneElts;
3658
3659       if (!isUndefOrEqual(Idx, Start+i))
3660         return false;
3661
3662     }
3663   }
3664
3665   return true;
3666 }
3667
3668 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3669 /// the two vector operands have swapped position.
3670 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3671                                      unsigned NumElems) {
3672   for (unsigned i = 0; i != NumElems; ++i) {
3673     int idx = Mask[i];
3674     if (idx < 0)
3675       continue;
3676     else if (idx < (int)NumElems)
3677       Mask[i] = idx + NumElems;
3678     else
3679       Mask[i] = idx - NumElems;
3680   }
3681 }
3682
3683 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3684 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3685 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3686 /// reverse of what x86 shuffles want.
3687 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3688
3689   unsigned NumElems = VT.getVectorNumElements();
3690   unsigned NumLanes = VT.getSizeInBits()/128;
3691   unsigned NumLaneElems = NumElems/NumLanes;
3692
3693   if (NumLaneElems != 2 && NumLaneElems != 4)
3694     return false;
3695
3696   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3697   bool symetricMaskRequired =
3698     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3699
3700   // VSHUFPSY divides the resulting vector into 4 chunks.
3701   // The sources are also splitted into 4 chunks, and each destination
3702   // chunk must come from a different source chunk.
3703   //
3704   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3705   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3706   //
3707   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3708   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3709   //
3710   // VSHUFPDY divides the resulting vector into 4 chunks.
3711   // The sources are also splitted into 4 chunks, and each destination
3712   // chunk must come from a different source chunk.
3713   //
3714   //  SRC1 =>      X3       X2       X1       X0
3715   //  SRC2 =>      Y3       Y2       Y1       Y0
3716   //
3717   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3718   //
3719   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3720   unsigned HalfLaneElems = NumLaneElems/2;
3721   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3722     for (unsigned i = 0; i != NumLaneElems; ++i) {
3723       int Idx = Mask[i+l];
3724       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3725       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3726         return false;
3727       // For VSHUFPSY, the mask of the second half must be the same as the
3728       // first but with the appropriate offsets. This works in the same way as
3729       // VPERMILPS works with masks.
3730       if (!symetricMaskRequired || Idx < 0)
3731         continue;
3732       if (MaskVal[i] < 0) {
3733         MaskVal[i] = Idx - l;
3734         continue;
3735       }
3736       if ((signed)(Idx - l) != MaskVal[i])
3737         return false;
3738     }
3739   }
3740
3741   return true;
3742 }
3743
3744 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3745 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3746 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3747   if (!VT.is128BitVector())
3748     return false;
3749
3750   unsigned NumElems = VT.getVectorNumElements();
3751
3752   if (NumElems != 4)
3753     return false;
3754
3755   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3756   return isUndefOrEqual(Mask[0], 6) &&
3757          isUndefOrEqual(Mask[1], 7) &&
3758          isUndefOrEqual(Mask[2], 2) &&
3759          isUndefOrEqual(Mask[3], 3);
3760 }
3761
3762 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3763 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3764 /// <2, 3, 2, 3>
3765 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3766   if (!VT.is128BitVector())
3767     return false;
3768
3769   unsigned NumElems = VT.getVectorNumElements();
3770
3771   if (NumElems != 4)
3772     return false;
3773
3774   return isUndefOrEqual(Mask[0], 2) &&
3775          isUndefOrEqual(Mask[1], 3) &&
3776          isUndefOrEqual(Mask[2], 2) &&
3777          isUndefOrEqual(Mask[3], 3);
3778 }
3779
3780 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3781 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3782 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3783   if (!VT.is128BitVector())
3784     return false;
3785
3786   unsigned NumElems = VT.getVectorNumElements();
3787
3788   if (NumElems != 2 && NumElems != 4)
3789     return false;
3790
3791   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3792     if (!isUndefOrEqual(Mask[i], i + NumElems))
3793       return false;
3794
3795   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3796     if (!isUndefOrEqual(Mask[i], i))
3797       return false;
3798
3799   return true;
3800 }
3801
3802 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3803 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3804 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3805   if (!VT.is128BitVector())
3806     return false;
3807
3808   unsigned NumElems = VT.getVectorNumElements();
3809
3810   if (NumElems != 2 && NumElems != 4)
3811     return false;
3812
3813   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3814     if (!isUndefOrEqual(Mask[i], i))
3815       return false;
3816
3817   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3818     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3819       return false;
3820
3821   return true;
3822 }
3823
3824 //
3825 // Some special combinations that can be optimized.
3826 //
3827 static
3828 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3829                                SelectionDAG &DAG) {
3830   MVT VT = SVOp->getSimpleValueType(0);
3831   SDLoc dl(SVOp);
3832
3833   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3834     return SDValue();
3835
3836   ArrayRef<int> Mask = SVOp->getMask();
3837
3838   // These are the special masks that may be optimized.
3839   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3840   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3841   bool MatchEvenMask = true;
3842   bool MatchOddMask  = true;
3843   for (int i=0; i<8; ++i) {
3844     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3845       MatchEvenMask = false;
3846     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3847       MatchOddMask = false;
3848   }
3849
3850   if (!MatchEvenMask && !MatchOddMask)
3851     return SDValue();
3852
3853   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3854
3855   SDValue Op0 = SVOp->getOperand(0);
3856   SDValue Op1 = SVOp->getOperand(1);
3857
3858   if (MatchEvenMask) {
3859     // Shift the second operand right to 32 bits.
3860     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3861     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3862   } else {
3863     // Shift the first operand left to 32 bits.
3864     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3865     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3866   }
3867   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3868   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3869 }
3870
3871 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3872 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3873 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3874                          bool HasInt256, bool V2IsSplat = false) {
3875
3876   assert(VT.getSizeInBits() >= 128 &&
3877          "Unsupported vector type for unpckl");
3878
3879   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3880   unsigned NumLanes;
3881   unsigned NumOf256BitLanes;
3882   unsigned NumElts = VT.getVectorNumElements();
3883   if (VT.is256BitVector()) {
3884     if (NumElts != 4 && NumElts != 8 &&
3885         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3886     return false;
3887     NumLanes = 2;
3888     NumOf256BitLanes = 1;
3889   } else if (VT.is512BitVector()) {
3890     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3891            "Unsupported vector type for unpckh");
3892     NumLanes = 2;
3893     NumOf256BitLanes = 2;
3894   } else {
3895     NumLanes = 1;
3896     NumOf256BitLanes = 1;
3897   }
3898
3899   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3900   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3901
3902   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3903     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3904       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3905         int BitI  = Mask[l256*NumEltsInStride+l+i];
3906         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3907         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3908           return false;
3909         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3910           return false;
3911         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3912           return false;
3913       }
3914     }
3915   }
3916   return true;
3917 }
3918
3919 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3920 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3921 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3922                          bool HasInt256, bool V2IsSplat = false) {
3923   assert(VT.getSizeInBits() >= 128 &&
3924          "Unsupported vector type for unpckh");
3925
3926   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3927   unsigned NumLanes;
3928   unsigned NumOf256BitLanes;
3929   unsigned NumElts = VT.getVectorNumElements();
3930   if (VT.is256BitVector()) {
3931     if (NumElts != 4 && NumElts != 8 &&
3932         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3933     return false;
3934     NumLanes = 2;
3935     NumOf256BitLanes = 1;
3936   } else if (VT.is512BitVector()) {
3937     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3938            "Unsupported vector type for unpckh");
3939     NumLanes = 2;
3940     NumOf256BitLanes = 2;
3941   } else {
3942     NumLanes = 1;
3943     NumOf256BitLanes = 1;
3944   }
3945
3946   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3947   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3948
3949   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3950     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3951       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3952         int BitI  = Mask[l256*NumEltsInStride+l+i];
3953         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3954         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3955           return false;
3956         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3957           return false;
3958         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3959           return false;
3960       }
3961     }
3962   }
3963   return true;
3964 }
3965
3966 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3967 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3968 /// <0, 0, 1, 1>
3969 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3970   unsigned NumElts = VT.getVectorNumElements();
3971   bool Is256BitVec = VT.is256BitVector();
3972
3973   if (VT.is512BitVector())
3974     return false;
3975   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3976          "Unsupported vector type for unpckh");
3977
3978   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
3979       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3980     return false;
3981
3982   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3983   // FIXME: Need a better way to get rid of this, there's no latency difference
3984   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3985   // the former later. We should also remove the "_undef" special mask.
3986   if (NumElts == 4 && Is256BitVec)
3987     return false;
3988
3989   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3990   // independently on 128-bit lanes.
3991   unsigned NumLanes = VT.getSizeInBits()/128;
3992   unsigned NumLaneElts = NumElts/NumLanes;
3993
3994   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3995     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3996       int BitI  = Mask[l+i];
3997       int BitI1 = Mask[l+i+1];
3998
3999       if (!isUndefOrEqual(BitI, j))
4000         return false;
4001       if (!isUndefOrEqual(BitI1, j))
4002         return false;
4003     }
4004   }
4005
4006   return true;
4007 }
4008
4009 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4010 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4011 /// <2, 2, 3, 3>
4012 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4013   unsigned NumElts = VT.getVectorNumElements();
4014
4015   if (VT.is512BitVector())
4016     return false;
4017
4018   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4019          "Unsupported vector type for unpckh");
4020
4021   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4022       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4023     return false;
4024
4025   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4026   // independently on 128-bit lanes.
4027   unsigned NumLanes = VT.getSizeInBits()/128;
4028   unsigned NumLaneElts = NumElts/NumLanes;
4029
4030   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4031     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4032       int BitI  = Mask[l+i];
4033       int BitI1 = Mask[l+i+1];
4034       if (!isUndefOrEqual(BitI, j))
4035         return false;
4036       if (!isUndefOrEqual(BitI1, j))
4037         return false;
4038     }
4039   }
4040   return true;
4041 }
4042
4043 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4044 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4045 /// MOVSD, and MOVD, i.e. setting the lowest element.
4046 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4047   if (VT.getVectorElementType().getSizeInBits() < 32)
4048     return false;
4049   if (!VT.is128BitVector())
4050     return false;
4051
4052   unsigned NumElts = VT.getVectorNumElements();
4053
4054   if (!isUndefOrEqual(Mask[0], NumElts))
4055     return false;
4056
4057   for (unsigned i = 1; i != NumElts; ++i)
4058     if (!isUndefOrEqual(Mask[i], i))
4059       return false;
4060
4061   return true;
4062 }
4063
4064 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4065 /// as permutations between 128-bit chunks or halves. As an example: this
4066 /// shuffle bellow:
4067 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4068 /// The first half comes from the second half of V1 and the second half from the
4069 /// the second half of V2.
4070 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4071   if (!HasFp256 || !VT.is256BitVector())
4072     return false;
4073
4074   // The shuffle result is divided into half A and half B. In total the two
4075   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4076   // B must come from C, D, E or F.
4077   unsigned HalfSize = VT.getVectorNumElements()/2;
4078   bool MatchA = false, MatchB = false;
4079
4080   // Check if A comes from one of C, D, E, F.
4081   for (unsigned Half = 0; Half != 4; ++Half) {
4082     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4083       MatchA = true;
4084       break;
4085     }
4086   }
4087
4088   // Check if B comes from one of C, D, E, F.
4089   for (unsigned Half = 0; Half != 4; ++Half) {
4090     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4091       MatchB = true;
4092       break;
4093     }
4094   }
4095
4096   return MatchA && MatchB;
4097 }
4098
4099 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4100 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4101 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4102   MVT VT = SVOp->getSimpleValueType(0);
4103
4104   unsigned HalfSize = VT.getVectorNumElements()/2;
4105
4106   unsigned FstHalf = 0, SndHalf = 0;
4107   for (unsigned i = 0; i < HalfSize; ++i) {
4108     if (SVOp->getMaskElt(i) > 0) {
4109       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4110       break;
4111     }
4112   }
4113   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4114     if (SVOp->getMaskElt(i) > 0) {
4115       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4116       break;
4117     }
4118   }
4119
4120   return (FstHalf | (SndHalf << 4));
4121 }
4122
4123 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4124 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4125   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4126   if (EltSize < 32)
4127     return false;
4128
4129   unsigned NumElts = VT.getVectorNumElements();
4130   Imm8 = 0;
4131   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4132     for (unsigned i = 0; i != NumElts; ++i) {
4133       if (Mask[i] < 0)
4134         continue;
4135       Imm8 |= Mask[i] << (i*2);
4136     }
4137     return true;
4138   }
4139
4140   unsigned LaneSize = 4;
4141   SmallVector<int, 4> MaskVal(LaneSize, -1);
4142
4143   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4144     for (unsigned i = 0; i != LaneSize; ++i) {
4145       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4146         return false;
4147       if (Mask[i+l] < 0)
4148         continue;
4149       if (MaskVal[i] < 0) {
4150         MaskVal[i] = Mask[i+l] - l;
4151         Imm8 |= MaskVal[i] << (i*2);
4152         continue;
4153       }
4154       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4155         return false;
4156     }
4157   }
4158   return true;
4159 }
4160
4161 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4162 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4163 /// Note that VPERMIL mask matching is different depending whether theunderlying
4164 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4165 /// to the same elements of the low, but to the higher half of the source.
4166 /// In VPERMILPD the two lanes could be shuffled independently of each other
4167 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4168 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4169   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4170   if (VT.getSizeInBits() < 256 || EltSize < 32)
4171     return false;
4172   bool symetricMaskRequired = (EltSize == 32);
4173   unsigned NumElts = VT.getVectorNumElements();
4174
4175   unsigned NumLanes = VT.getSizeInBits()/128;
4176   unsigned LaneSize = NumElts/NumLanes;
4177   // 2 or 4 elements in one lane
4178   
4179   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4180   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4181     for (unsigned i = 0; i != LaneSize; ++i) {
4182       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4183         return false;
4184       if (symetricMaskRequired) {
4185         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4186           ExpectedMaskVal[i] = Mask[i+l] - l;
4187           continue;
4188         }
4189         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4190           return false;
4191       }
4192     }
4193   }
4194   return true;
4195 }
4196
4197 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4198 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4199 /// element of vector 2 and the other elements to come from vector 1 in order.
4200 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4201                                bool V2IsSplat = false, bool V2IsUndef = false) {
4202   if (!VT.is128BitVector())
4203     return false;
4204
4205   unsigned NumOps = VT.getVectorNumElements();
4206   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4207     return false;
4208
4209   if (!isUndefOrEqual(Mask[0], 0))
4210     return false;
4211
4212   for (unsigned i = 1; i != NumOps; ++i)
4213     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4214           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4215           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4216       return false;
4217
4218   return true;
4219 }
4220
4221 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4222 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4223 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4224 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4225                            const X86Subtarget *Subtarget) {
4226   if (!Subtarget->hasSSE3())
4227     return false;
4228
4229   unsigned NumElems = VT.getVectorNumElements();
4230
4231   if ((VT.is128BitVector() && NumElems != 4) ||
4232       (VT.is256BitVector() && NumElems != 8) ||
4233       (VT.is512BitVector() && NumElems != 16))
4234     return false;
4235
4236   // "i+1" is the value the indexed mask element must have
4237   for (unsigned i = 0; i != NumElems; i += 2)
4238     if (!isUndefOrEqual(Mask[i], i+1) ||
4239         !isUndefOrEqual(Mask[i+1], i+1))
4240       return false;
4241
4242   return true;
4243 }
4244
4245 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4246 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4247 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4248 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4249                            const X86Subtarget *Subtarget) {
4250   if (!Subtarget->hasSSE3())
4251     return false;
4252
4253   unsigned NumElems = VT.getVectorNumElements();
4254
4255   if ((VT.is128BitVector() && NumElems != 4) ||
4256       (VT.is256BitVector() && NumElems != 8) ||
4257       (VT.is512BitVector() && NumElems != 16))
4258     return false;
4259
4260   // "i" is the value the indexed mask element must have
4261   for (unsigned i = 0; i != NumElems; i += 2)
4262     if (!isUndefOrEqual(Mask[i], i) ||
4263         !isUndefOrEqual(Mask[i+1], i))
4264       return false;
4265
4266   return true;
4267 }
4268
4269 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4270 /// specifies a shuffle of elements that is suitable for input to 256-bit
4271 /// version of MOVDDUP.
4272 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4273   if (!HasFp256 || !VT.is256BitVector())
4274     return false;
4275
4276   unsigned NumElts = VT.getVectorNumElements();
4277   if (NumElts != 4)
4278     return false;
4279
4280   for (unsigned i = 0; i != NumElts/2; ++i)
4281     if (!isUndefOrEqual(Mask[i], 0))
4282       return false;
4283   for (unsigned i = NumElts/2; i != NumElts; ++i)
4284     if (!isUndefOrEqual(Mask[i], NumElts/2))
4285       return false;
4286   return true;
4287 }
4288
4289 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4290 /// specifies a shuffle of elements that is suitable for input to 128-bit
4291 /// version of MOVDDUP.
4292 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4293   if (!VT.is128BitVector())
4294     return false;
4295
4296   unsigned e = VT.getVectorNumElements() / 2;
4297   for (unsigned i = 0; i != e; ++i)
4298     if (!isUndefOrEqual(Mask[i], i))
4299       return false;
4300   for (unsigned i = 0; i != e; ++i)
4301     if (!isUndefOrEqual(Mask[e+i], i))
4302       return false;
4303   return true;
4304 }
4305
4306 /// isVEXTRACTIndex - Return true if the specified
4307 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4308 /// suitable for instruction that extract 128 or 256 bit vectors
4309 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4310   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4311   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4312     return false;
4313
4314   // The index should be aligned on a vecWidth-bit boundary.
4315   uint64_t Index =
4316     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4317
4318   MVT VT = N->getSimpleValueType(0);
4319   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4320   bool Result = (Index * ElSize) % vecWidth == 0;
4321
4322   return Result;
4323 }
4324
4325 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4326 /// operand specifies a subvector insert that is suitable for input to
4327 /// insertion of 128 or 256-bit subvectors
4328 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4329   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4330   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4331     return false;
4332   // The index should be aligned on a vecWidth-bit boundary.
4333   uint64_t Index =
4334     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4335
4336   MVT VT = N->getSimpleValueType(0);
4337   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4338   bool Result = (Index * ElSize) % vecWidth == 0;
4339
4340   return Result;
4341 }
4342
4343 bool X86::isVINSERT128Index(SDNode *N) {
4344   return isVINSERTIndex(N, 128);
4345 }
4346
4347 bool X86::isVINSERT256Index(SDNode *N) {
4348   return isVINSERTIndex(N, 256);
4349 }
4350
4351 bool X86::isVEXTRACT128Index(SDNode *N) {
4352   return isVEXTRACTIndex(N, 128);
4353 }
4354
4355 bool X86::isVEXTRACT256Index(SDNode *N) {
4356   return isVEXTRACTIndex(N, 256);
4357 }
4358
4359 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4360 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4361 /// Handles 128-bit and 256-bit.
4362 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4363   MVT VT = N->getSimpleValueType(0);
4364
4365   assert((VT.getSizeInBits() >= 128) &&
4366          "Unsupported vector type for PSHUF/SHUFP");
4367
4368   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4369   // independently on 128-bit lanes.
4370   unsigned NumElts = VT.getVectorNumElements();
4371   unsigned NumLanes = VT.getSizeInBits()/128;
4372   unsigned NumLaneElts = NumElts/NumLanes;
4373
4374   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4375          "Only supports 2, 4 or 8 elements per lane");
4376
4377   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4378   unsigned Mask = 0;
4379   for (unsigned i = 0; i != NumElts; ++i) {
4380     int Elt = N->getMaskElt(i);
4381     if (Elt < 0) continue;
4382     Elt &= NumLaneElts - 1;
4383     unsigned ShAmt = (i << Shift) % 8;
4384     Mask |= Elt << ShAmt;
4385   }
4386
4387   return Mask;
4388 }
4389
4390 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4391 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4392 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4393   MVT VT = N->getSimpleValueType(0);
4394
4395   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4396          "Unsupported vector type for PSHUFHW");
4397
4398   unsigned NumElts = VT.getVectorNumElements();
4399
4400   unsigned Mask = 0;
4401   for (unsigned l = 0; l != NumElts; l += 8) {
4402     // 8 nodes per lane, but we only care about the last 4.
4403     for (unsigned i = 0; i < 4; ++i) {
4404       int Elt = N->getMaskElt(l+i+4);
4405       if (Elt < 0) continue;
4406       Elt &= 0x3; // only 2-bits.
4407       Mask |= Elt << (i * 2);
4408     }
4409   }
4410
4411   return Mask;
4412 }
4413
4414 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4415 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4416 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4417   MVT VT = N->getSimpleValueType(0);
4418
4419   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4420          "Unsupported vector type for PSHUFHW");
4421
4422   unsigned NumElts = VT.getVectorNumElements();
4423
4424   unsigned Mask = 0;
4425   for (unsigned l = 0; l != NumElts; l += 8) {
4426     // 8 nodes per lane, but we only care about the first 4.
4427     for (unsigned i = 0; i < 4; ++i) {
4428       int Elt = N->getMaskElt(l+i);
4429       if (Elt < 0) continue;
4430       Elt &= 0x3; // only 2-bits
4431       Mask |= Elt << (i * 2);
4432     }
4433   }
4434
4435   return Mask;
4436 }
4437
4438 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4439 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4440 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4441   MVT VT = SVOp->getSimpleValueType(0);
4442   unsigned EltSize = VT.is512BitVector() ? 1 :
4443     VT.getVectorElementType().getSizeInBits() >> 3;
4444
4445   unsigned NumElts = VT.getVectorNumElements();
4446   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4447   unsigned NumLaneElts = NumElts/NumLanes;
4448
4449   int Val = 0;
4450   unsigned i;
4451   for (i = 0; i != NumElts; ++i) {
4452     Val = SVOp->getMaskElt(i);
4453     if (Val >= 0)
4454       break;
4455   }
4456   if (Val >= (int)NumElts)
4457     Val -= NumElts - NumLaneElts;
4458
4459   assert(Val - i > 0 && "PALIGNR imm should be positive");
4460   return (Val - i) * EltSize;
4461 }
4462
4463 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4464   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4465   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4466     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4467
4468   uint64_t Index =
4469     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4470
4471   MVT VecVT = N->getOperand(0).getSimpleValueType();
4472   MVT ElVT = VecVT.getVectorElementType();
4473
4474   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4475   return Index / NumElemsPerChunk;
4476 }
4477
4478 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4479   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4480   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4481     llvm_unreachable("Illegal insert subvector for VINSERT");
4482
4483   uint64_t Index =
4484     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4485
4486   MVT VecVT = N->getSimpleValueType(0);
4487   MVT ElVT = VecVT.getVectorElementType();
4488
4489   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4490   return Index / NumElemsPerChunk;
4491 }
4492
4493 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4494 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4495 /// and VINSERTI128 instructions.
4496 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4497   return getExtractVEXTRACTImmediate(N, 128);
4498 }
4499
4500 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4501 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4502 /// and VINSERTI64x4 instructions.
4503 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4504   return getExtractVEXTRACTImmediate(N, 256);
4505 }
4506
4507 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4508 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4509 /// and VINSERTI128 instructions.
4510 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4511   return getInsertVINSERTImmediate(N, 128);
4512 }
4513
4514 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4515 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4516 /// and VINSERTI64x4 instructions.
4517 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4518   return getInsertVINSERTImmediate(N, 256);
4519 }
4520
4521 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4522 /// constant +0.0.
4523 bool X86::isZeroNode(SDValue Elt) {
4524   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4525     return CN->isNullValue();
4526   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4527     return CFP->getValueAPF().isPosZero();
4528   return false;
4529 }
4530
4531 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4532 /// their permute mask.
4533 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4534                                     SelectionDAG &DAG) {
4535   MVT VT = SVOp->getSimpleValueType(0);
4536   unsigned NumElems = VT.getVectorNumElements();
4537   SmallVector<int, 8> MaskVec;
4538
4539   for (unsigned i = 0; i != NumElems; ++i) {
4540     int Idx = SVOp->getMaskElt(i);
4541     if (Idx >= 0) {
4542       if (Idx < (int)NumElems)
4543         Idx += NumElems;
4544       else
4545         Idx -= NumElems;
4546     }
4547     MaskVec.push_back(Idx);
4548   }
4549   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4550                               SVOp->getOperand(0), &MaskVec[0]);
4551 }
4552
4553 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4554 /// match movhlps. The lower half elements should come from upper half of
4555 /// V1 (and in order), and the upper half elements should come from the upper
4556 /// half of V2 (and in order).
4557 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4558   if (!VT.is128BitVector())
4559     return false;
4560   if (VT.getVectorNumElements() != 4)
4561     return false;
4562   for (unsigned i = 0, e = 2; i != e; ++i)
4563     if (!isUndefOrEqual(Mask[i], i+2))
4564       return false;
4565   for (unsigned i = 2; i != 4; ++i)
4566     if (!isUndefOrEqual(Mask[i], i+4))
4567       return false;
4568   return true;
4569 }
4570
4571 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4572 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4573 /// required.
4574 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4575   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4576     return false;
4577   N = N->getOperand(0).getNode();
4578   if (!ISD::isNON_EXTLoad(N))
4579     return false;
4580   if (LD)
4581     *LD = cast<LoadSDNode>(N);
4582   return true;
4583 }
4584
4585 // Test whether the given value is a vector value which will be legalized
4586 // into a load.
4587 static bool WillBeConstantPoolLoad(SDNode *N) {
4588   if (N->getOpcode() != ISD::BUILD_VECTOR)
4589     return false;
4590
4591   // Check for any non-constant elements.
4592   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4593     switch (N->getOperand(i).getNode()->getOpcode()) {
4594     case ISD::UNDEF:
4595     case ISD::ConstantFP:
4596     case ISD::Constant:
4597       break;
4598     default:
4599       return false;
4600     }
4601
4602   // Vectors of all-zeros and all-ones are materialized with special
4603   // instructions rather than being loaded.
4604   return !ISD::isBuildVectorAllZeros(N) &&
4605          !ISD::isBuildVectorAllOnes(N);
4606 }
4607
4608 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4609 /// match movlp{s|d}. The lower half elements should come from lower half of
4610 /// V1 (and in order), and the upper half elements should come from the upper
4611 /// half of V2 (and in order). And since V1 will become the source of the
4612 /// MOVLP, it must be either a vector load or a scalar load to vector.
4613 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4614                                ArrayRef<int> Mask, MVT VT) {
4615   if (!VT.is128BitVector())
4616     return false;
4617
4618   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4619     return false;
4620   // Is V2 is a vector load, don't do this transformation. We will try to use
4621   // load folding shufps op.
4622   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4623     return false;
4624
4625   unsigned NumElems = VT.getVectorNumElements();
4626
4627   if (NumElems != 2 && NumElems != 4)
4628     return false;
4629   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4630     if (!isUndefOrEqual(Mask[i], i))
4631       return false;
4632   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4633     if (!isUndefOrEqual(Mask[i], i+NumElems))
4634       return false;
4635   return true;
4636 }
4637
4638 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4639 /// all the same.
4640 static bool isSplatVector(SDNode *N) {
4641   if (N->getOpcode() != ISD::BUILD_VECTOR)
4642     return false;
4643
4644   SDValue SplatValue = N->getOperand(0);
4645   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4646     if (N->getOperand(i) != SplatValue)
4647       return false;
4648   return true;
4649 }
4650
4651 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4652 /// to an zero vector.
4653 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4654 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4655   SDValue V1 = N->getOperand(0);
4656   SDValue V2 = N->getOperand(1);
4657   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4658   for (unsigned i = 0; i != NumElems; ++i) {
4659     int Idx = N->getMaskElt(i);
4660     if (Idx >= (int)NumElems) {
4661       unsigned Opc = V2.getOpcode();
4662       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4663         continue;
4664       if (Opc != ISD::BUILD_VECTOR ||
4665           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4666         return false;
4667     } else if (Idx >= 0) {
4668       unsigned Opc = V1.getOpcode();
4669       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4670         continue;
4671       if (Opc != ISD::BUILD_VECTOR ||
4672           !X86::isZeroNode(V1.getOperand(Idx)))
4673         return false;
4674     }
4675   }
4676   return true;
4677 }
4678
4679 /// getZeroVector - Returns a vector of specified type with all zero elements.
4680 ///
4681 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4682                              SelectionDAG &DAG, SDLoc dl) {
4683   assert(VT.isVector() && "Expected a vector type");
4684
4685   // Always build SSE zero vectors as <4 x i32> bitcasted
4686   // to their dest type. This ensures they get CSE'd.
4687   SDValue Vec;
4688   if (VT.is128BitVector()) {  // SSE
4689     if (Subtarget->hasSSE2()) {  // SSE2
4690       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4691       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4692     } else { // SSE1
4693       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4694       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4695     }
4696   } else if (VT.is256BitVector()) { // AVX
4697     if (Subtarget->hasInt256()) { // AVX2
4698       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4699       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4700       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4701                         array_lengthof(Ops));
4702     } else {
4703       // 256-bit logic and arithmetic instructions in AVX are all
4704       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4705       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4706       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4707       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4708                         array_lengthof(Ops));
4709     }
4710   } else if (VT.is512BitVector()) { // AVX-512
4711       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4712       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4713                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4714       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4715   } else
4716     llvm_unreachable("Unexpected vector type");
4717
4718   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4719 }
4720
4721 /// getOnesVector - Returns a vector of specified type with all bits set.
4722 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4723 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4724 /// Then bitcast to their original type, ensuring they get CSE'd.
4725 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4726                              SDLoc dl) {
4727   assert(VT.isVector() && "Expected a vector type");
4728
4729   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4730   SDValue Vec;
4731   if (VT.is256BitVector()) {
4732     if (HasInt256) { // AVX2
4733       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4734       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4735                         array_lengthof(Ops));
4736     } else { // AVX
4737       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4738       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4739     }
4740   } else if (VT.is128BitVector()) {
4741     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4742   } else
4743     llvm_unreachable("Unexpected vector type");
4744
4745   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4746 }
4747
4748 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4749 /// that point to V2 points to its first element.
4750 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4751   for (unsigned i = 0; i != NumElems; ++i) {
4752     if (Mask[i] > (int)NumElems) {
4753       Mask[i] = NumElems;
4754     }
4755   }
4756 }
4757
4758 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4759 /// operation of specified width.
4760 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4761                        SDValue V2) {
4762   unsigned NumElems = VT.getVectorNumElements();
4763   SmallVector<int, 8> Mask;
4764   Mask.push_back(NumElems);
4765   for (unsigned i = 1; i != NumElems; ++i)
4766     Mask.push_back(i);
4767   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4768 }
4769
4770 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4771 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4772                           SDValue V2) {
4773   unsigned NumElems = VT.getVectorNumElements();
4774   SmallVector<int, 8> Mask;
4775   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4776     Mask.push_back(i);
4777     Mask.push_back(i + NumElems);
4778   }
4779   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4780 }
4781
4782 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4783 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4784                           SDValue V2) {
4785   unsigned NumElems = VT.getVectorNumElements();
4786   SmallVector<int, 8> Mask;
4787   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4788     Mask.push_back(i + Half);
4789     Mask.push_back(i + NumElems + Half);
4790   }
4791   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4792 }
4793
4794 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4795 // a generic shuffle instruction because the target has no such instructions.
4796 // Generate shuffles which repeat i16 and i8 several times until they can be
4797 // represented by v4f32 and then be manipulated by target suported shuffles.
4798 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4799   MVT VT = V.getSimpleValueType();
4800   int NumElems = VT.getVectorNumElements();
4801   SDLoc dl(V);
4802
4803   while (NumElems > 4) {
4804     if (EltNo < NumElems/2) {
4805       V = getUnpackl(DAG, dl, VT, V, V);
4806     } else {
4807       V = getUnpackh(DAG, dl, VT, V, V);
4808       EltNo -= NumElems/2;
4809     }
4810     NumElems >>= 1;
4811   }
4812   return V;
4813 }
4814
4815 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4816 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4817   MVT VT = V.getSimpleValueType();
4818   SDLoc dl(V);
4819
4820   if (VT.is128BitVector()) {
4821     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4822     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4823     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4824                              &SplatMask[0]);
4825   } else if (VT.is256BitVector()) {
4826     // To use VPERMILPS to splat scalars, the second half of indicies must
4827     // refer to the higher part, which is a duplication of the lower one,
4828     // because VPERMILPS can only handle in-lane permutations.
4829     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4830                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4831
4832     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4833     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4834                              &SplatMask[0]);
4835   } else
4836     llvm_unreachable("Vector size not supported");
4837
4838   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4839 }
4840
4841 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4842 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4843   MVT SrcVT = SV->getSimpleValueType(0);
4844   SDValue V1 = SV->getOperand(0);
4845   SDLoc dl(SV);
4846
4847   int EltNo = SV->getSplatIndex();
4848   int NumElems = SrcVT.getVectorNumElements();
4849   bool Is256BitVec = SrcVT.is256BitVector();
4850
4851   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4852          "Unknown how to promote splat for type");
4853
4854   // Extract the 128-bit part containing the splat element and update
4855   // the splat element index when it refers to the higher register.
4856   if (Is256BitVec) {
4857     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4858     if (EltNo >= NumElems/2)
4859       EltNo -= NumElems/2;
4860   }
4861
4862   // All i16 and i8 vector types can't be used directly by a generic shuffle
4863   // instruction because the target has no such instruction. Generate shuffles
4864   // which repeat i16 and i8 several times until they fit in i32, and then can
4865   // be manipulated by target suported shuffles.
4866   MVT EltVT = SrcVT.getVectorElementType();
4867   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4868     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4869
4870   // Recreate the 256-bit vector and place the same 128-bit vector
4871   // into the low and high part. This is necessary because we want
4872   // to use VPERM* to shuffle the vectors
4873   if (Is256BitVec) {
4874     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4875   }
4876
4877   return getLegalSplat(DAG, V1, EltNo);
4878 }
4879
4880 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4881 /// vector of zero or undef vector.  This produces a shuffle where the low
4882 /// element of V2 is swizzled into the zero/undef vector, landing at element
4883 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4884 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4885                                            bool IsZero,
4886                                            const X86Subtarget *Subtarget,
4887                                            SelectionDAG &DAG) {
4888   MVT VT = V2.getSimpleValueType();
4889   SDValue V1 = IsZero
4890     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4891   unsigned NumElems = VT.getVectorNumElements();
4892   SmallVector<int, 16> MaskVec;
4893   for (unsigned i = 0; i != NumElems; ++i)
4894     // If this is the insertion idx, put the low elt of V2 here.
4895     MaskVec.push_back(i == Idx ? NumElems : i);
4896   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4897 }
4898
4899 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4900 /// target specific opcode. Returns true if the Mask could be calculated.
4901 /// Sets IsUnary to true if only uses one source.
4902 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4903                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4904   unsigned NumElems = VT.getVectorNumElements();
4905   SDValue ImmN;
4906
4907   IsUnary = false;
4908   switch(N->getOpcode()) {
4909   case X86ISD::SHUFP:
4910     ImmN = N->getOperand(N->getNumOperands()-1);
4911     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4912     break;
4913   case X86ISD::UNPCKH:
4914     DecodeUNPCKHMask(VT, Mask);
4915     break;
4916   case X86ISD::UNPCKL:
4917     DecodeUNPCKLMask(VT, Mask);
4918     break;
4919   case X86ISD::MOVHLPS:
4920     DecodeMOVHLPSMask(NumElems, Mask);
4921     break;
4922   case X86ISD::MOVLHPS:
4923     DecodeMOVLHPSMask(NumElems, Mask);
4924     break;
4925   case X86ISD::PALIGNR:
4926     ImmN = N->getOperand(N->getNumOperands()-1);
4927     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4928     break;
4929   case X86ISD::PSHUFD:
4930   case X86ISD::VPERMILP:
4931     ImmN = N->getOperand(N->getNumOperands()-1);
4932     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4933     IsUnary = true;
4934     break;
4935   case X86ISD::PSHUFHW:
4936     ImmN = N->getOperand(N->getNumOperands()-1);
4937     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4938     IsUnary = true;
4939     break;
4940   case X86ISD::PSHUFLW:
4941     ImmN = N->getOperand(N->getNumOperands()-1);
4942     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4943     IsUnary = true;
4944     break;
4945   case X86ISD::VPERMI:
4946     ImmN = N->getOperand(N->getNumOperands()-1);
4947     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4948     IsUnary = true;
4949     break;
4950   case X86ISD::MOVSS:
4951   case X86ISD::MOVSD: {
4952     // The index 0 always comes from the first element of the second source,
4953     // this is why MOVSS and MOVSD are used in the first place. The other
4954     // elements come from the other positions of the first source vector
4955     Mask.push_back(NumElems);
4956     for (unsigned i = 1; i != NumElems; ++i) {
4957       Mask.push_back(i);
4958     }
4959     break;
4960   }
4961   case X86ISD::VPERM2X128:
4962     ImmN = N->getOperand(N->getNumOperands()-1);
4963     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4964     if (Mask.empty()) return false;
4965     break;
4966   case X86ISD::MOVDDUP:
4967   case X86ISD::MOVLHPD:
4968   case X86ISD::MOVLPD:
4969   case X86ISD::MOVLPS:
4970   case X86ISD::MOVSHDUP:
4971   case X86ISD::MOVSLDUP:
4972     // Not yet implemented
4973     return false;
4974   default: llvm_unreachable("unknown target shuffle node");
4975   }
4976
4977   return true;
4978 }
4979
4980 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4981 /// element of the result of the vector shuffle.
4982 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4983                                    unsigned Depth) {
4984   if (Depth == 6)
4985     return SDValue();  // Limit search depth.
4986
4987   SDValue V = SDValue(N, 0);
4988   EVT VT = V.getValueType();
4989   unsigned Opcode = V.getOpcode();
4990
4991   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4992   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4993     int Elt = SV->getMaskElt(Index);
4994
4995     if (Elt < 0)
4996       return DAG.getUNDEF(VT.getVectorElementType());
4997
4998     unsigned NumElems = VT.getVectorNumElements();
4999     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5000                                          : SV->getOperand(1);
5001     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5002   }
5003
5004   // Recurse into target specific vector shuffles to find scalars.
5005   if (isTargetShuffle(Opcode)) {
5006     MVT ShufVT = V.getSimpleValueType();
5007     unsigned NumElems = ShufVT.getVectorNumElements();
5008     SmallVector<int, 16> ShuffleMask;
5009     bool IsUnary;
5010
5011     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5012       return SDValue();
5013
5014     int Elt = ShuffleMask[Index];
5015     if (Elt < 0)
5016       return DAG.getUNDEF(ShufVT.getVectorElementType());
5017
5018     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5019                                          : N->getOperand(1);
5020     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5021                                Depth+1);
5022   }
5023
5024   // Actual nodes that may contain scalar elements
5025   if (Opcode == ISD::BITCAST) {
5026     V = V.getOperand(0);
5027     EVT SrcVT = V.getValueType();
5028     unsigned NumElems = VT.getVectorNumElements();
5029
5030     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5031       return SDValue();
5032   }
5033
5034   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5035     return (Index == 0) ? V.getOperand(0)
5036                         : DAG.getUNDEF(VT.getVectorElementType());
5037
5038   if (V.getOpcode() == ISD::BUILD_VECTOR)
5039     return V.getOperand(Index);
5040
5041   return SDValue();
5042 }
5043
5044 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5045 /// shuffle operation which come from a consecutively from a zero. The
5046 /// search can start in two different directions, from left or right.
5047 /// We count undefs as zeros until PreferredNum is reached.
5048 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5049                                          unsigned NumElems, bool ZerosFromLeft,
5050                                          SelectionDAG &DAG,
5051                                          unsigned PreferredNum = -1U) {
5052   unsigned NumZeros = 0;
5053   for (unsigned i = 0; i != NumElems; ++i) {
5054     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5055     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5056     if (!Elt.getNode())
5057       break;
5058
5059     if (X86::isZeroNode(Elt))
5060       ++NumZeros;
5061     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5062       NumZeros = std::min(NumZeros + 1, PreferredNum);
5063     else
5064       break;
5065   }
5066
5067   return NumZeros;
5068 }
5069
5070 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5071 /// correspond consecutively to elements from one of the vector operands,
5072 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5073 static
5074 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5075                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5076                               unsigned NumElems, unsigned &OpNum) {
5077   bool SeenV1 = false;
5078   bool SeenV2 = false;
5079
5080   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5081     int Idx = SVOp->getMaskElt(i);
5082     // Ignore undef indicies
5083     if (Idx < 0)
5084       continue;
5085
5086     if (Idx < (int)NumElems)
5087       SeenV1 = true;
5088     else
5089       SeenV2 = true;
5090
5091     // Only accept consecutive elements from the same vector
5092     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5093       return false;
5094   }
5095
5096   OpNum = SeenV1 ? 0 : 1;
5097   return true;
5098 }
5099
5100 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5101 /// logical left shift of a vector.
5102 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5103                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5104   unsigned NumElems =
5105     SVOp->getSimpleValueType(0).getVectorNumElements();
5106   unsigned NumZeros = getNumOfConsecutiveZeros(
5107       SVOp, NumElems, false /* check zeros from right */, DAG,
5108       SVOp->getMaskElt(0));
5109   unsigned OpSrc;
5110
5111   if (!NumZeros)
5112     return false;
5113
5114   // Considering the elements in the mask that are not consecutive zeros,
5115   // check if they consecutively come from only one of the source vectors.
5116   //
5117   //               V1 = {X, A, B, C}     0
5118   //                         \  \  \    /
5119   //   vector_shuffle V1, V2 <1, 2, 3, X>
5120   //
5121   if (!isShuffleMaskConsecutive(SVOp,
5122             0,                   // Mask Start Index
5123             NumElems-NumZeros,   // Mask End Index(exclusive)
5124             NumZeros,            // Where to start looking in the src vector
5125             NumElems,            // Number of elements in vector
5126             OpSrc))              // Which source operand ?
5127     return false;
5128
5129   isLeft = false;
5130   ShAmt = NumZeros;
5131   ShVal = SVOp->getOperand(OpSrc);
5132   return true;
5133 }
5134
5135 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5136 /// logical left shift of a vector.
5137 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5138                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5139   unsigned NumElems =
5140     SVOp->getSimpleValueType(0).getVectorNumElements();
5141   unsigned NumZeros = getNumOfConsecutiveZeros(
5142       SVOp, NumElems, true /* check zeros from left */, DAG,
5143       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5144   unsigned OpSrc;
5145
5146   if (!NumZeros)
5147     return false;
5148
5149   // Considering the elements in the mask that are not consecutive zeros,
5150   // check if they consecutively come from only one of the source vectors.
5151   //
5152   //                           0    { A, B, X, X } = V2
5153   //                          / \    /  /
5154   //   vector_shuffle V1, V2 <X, X, 4, 5>
5155   //
5156   if (!isShuffleMaskConsecutive(SVOp,
5157             NumZeros,     // Mask Start Index
5158             NumElems,     // Mask End Index(exclusive)
5159             0,            // Where to start looking in the src vector
5160             NumElems,     // Number of elements in vector
5161             OpSrc))       // Which source operand ?
5162     return false;
5163
5164   isLeft = true;
5165   ShAmt = NumZeros;
5166   ShVal = SVOp->getOperand(OpSrc);
5167   return true;
5168 }
5169
5170 /// isVectorShift - Returns true if the shuffle can be implemented as a
5171 /// logical left or right shift of a vector.
5172 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5173                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5174   // Although the logic below support any bitwidth size, there are no
5175   // shift instructions which handle more than 128-bit vectors.
5176   if (!SVOp->getSimpleValueType(0).is128BitVector())
5177     return false;
5178
5179   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5180       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5181     return true;
5182
5183   return false;
5184 }
5185
5186 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5187 ///
5188 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5189                                        unsigned NumNonZero, unsigned NumZero,
5190                                        SelectionDAG &DAG,
5191                                        const X86Subtarget* Subtarget,
5192                                        const TargetLowering &TLI) {
5193   if (NumNonZero > 8)
5194     return SDValue();
5195
5196   SDLoc dl(Op);
5197   SDValue V(0, 0);
5198   bool First = true;
5199   for (unsigned i = 0; i < 16; ++i) {
5200     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5201     if (ThisIsNonZero && First) {
5202       if (NumZero)
5203         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5204       else
5205         V = DAG.getUNDEF(MVT::v8i16);
5206       First = false;
5207     }
5208
5209     if ((i & 1) != 0) {
5210       SDValue ThisElt(0, 0), LastElt(0, 0);
5211       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5212       if (LastIsNonZero) {
5213         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5214                               MVT::i16, Op.getOperand(i-1));
5215       }
5216       if (ThisIsNonZero) {
5217         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5218         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5219                               ThisElt, DAG.getConstant(8, MVT::i8));
5220         if (LastIsNonZero)
5221           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5222       } else
5223         ThisElt = LastElt;
5224
5225       if (ThisElt.getNode())
5226         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5227                         DAG.getIntPtrConstant(i/2));
5228     }
5229   }
5230
5231   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5232 }
5233
5234 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5235 ///
5236 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5237                                      unsigned NumNonZero, unsigned NumZero,
5238                                      SelectionDAG &DAG,
5239                                      const X86Subtarget* Subtarget,
5240                                      const TargetLowering &TLI) {
5241   if (NumNonZero > 4)
5242     return SDValue();
5243
5244   SDLoc dl(Op);
5245   SDValue V(0, 0);
5246   bool First = true;
5247   for (unsigned i = 0; i < 8; ++i) {
5248     bool isNonZero = (NonZeros & (1 << i)) != 0;
5249     if (isNonZero) {
5250       if (First) {
5251         if (NumZero)
5252           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5253         else
5254           V = DAG.getUNDEF(MVT::v8i16);
5255         First = false;
5256       }
5257       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5258                       MVT::v8i16, V, Op.getOperand(i),
5259                       DAG.getIntPtrConstant(i));
5260     }
5261   }
5262
5263   return V;
5264 }
5265
5266 /// getVShift - Return a vector logical shift node.
5267 ///
5268 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5269                          unsigned NumBits, SelectionDAG &DAG,
5270                          const TargetLowering &TLI, SDLoc dl) {
5271   assert(VT.is128BitVector() && "Unknown type for VShift");
5272   EVT ShVT = MVT::v2i64;
5273   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5274   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5275   return DAG.getNode(ISD::BITCAST, dl, VT,
5276                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5277                              DAG.getConstant(NumBits,
5278                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5279 }
5280
5281 static SDValue
5282 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5283
5284   // Check if the scalar load can be widened into a vector load. And if
5285   // the address is "base + cst" see if the cst can be "absorbed" into
5286   // the shuffle mask.
5287   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5288     SDValue Ptr = LD->getBasePtr();
5289     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5290       return SDValue();
5291     EVT PVT = LD->getValueType(0);
5292     if (PVT != MVT::i32 && PVT != MVT::f32)
5293       return SDValue();
5294
5295     int FI = -1;
5296     int64_t Offset = 0;
5297     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5298       FI = FINode->getIndex();
5299       Offset = 0;
5300     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5301                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5302       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5303       Offset = Ptr.getConstantOperandVal(1);
5304       Ptr = Ptr.getOperand(0);
5305     } else {
5306       return SDValue();
5307     }
5308
5309     // FIXME: 256-bit vector instructions don't require a strict alignment,
5310     // improve this code to support it better.
5311     unsigned RequiredAlign = VT.getSizeInBits()/8;
5312     SDValue Chain = LD->getChain();
5313     // Make sure the stack object alignment is at least 16 or 32.
5314     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5315     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5316       if (MFI->isFixedObjectIndex(FI)) {
5317         // Can't change the alignment. FIXME: It's possible to compute
5318         // the exact stack offset and reference FI + adjust offset instead.
5319         // If someone *really* cares about this. That's the way to implement it.
5320         return SDValue();
5321       } else {
5322         MFI->setObjectAlignment(FI, RequiredAlign);
5323       }
5324     }
5325
5326     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5327     // Ptr + (Offset & ~15).
5328     if (Offset < 0)
5329       return SDValue();
5330     if ((Offset % RequiredAlign) & 3)
5331       return SDValue();
5332     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5333     if (StartOffset)
5334       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5335                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5336
5337     int EltNo = (Offset - StartOffset) >> 2;
5338     unsigned NumElems = VT.getVectorNumElements();
5339
5340     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5341     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5342                              LD->getPointerInfo().getWithOffset(StartOffset),
5343                              false, false, false, 0);
5344
5345     SmallVector<int, 8> Mask;
5346     for (unsigned i = 0; i != NumElems; ++i)
5347       Mask.push_back(EltNo);
5348
5349     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5350   }
5351
5352   return SDValue();
5353 }
5354
5355 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5356 /// vector of type 'VT', see if the elements can be replaced by a single large
5357 /// load which has the same value as a build_vector whose operands are 'elts'.
5358 ///
5359 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5360 ///
5361 /// FIXME: we'd also like to handle the case where the last elements are zero
5362 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5363 /// There's even a handy isZeroNode for that purpose.
5364 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5365                                         SDLoc &DL, SelectionDAG &DAG) {
5366   EVT EltVT = VT.getVectorElementType();
5367   unsigned NumElems = Elts.size();
5368
5369   LoadSDNode *LDBase = NULL;
5370   unsigned LastLoadedElt = -1U;
5371
5372   // For each element in the initializer, see if we've found a load or an undef.
5373   // If we don't find an initial load element, or later load elements are
5374   // non-consecutive, bail out.
5375   for (unsigned i = 0; i < NumElems; ++i) {
5376     SDValue Elt = Elts[i];
5377
5378     if (!Elt.getNode() ||
5379         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5380       return SDValue();
5381     if (!LDBase) {
5382       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5383         return SDValue();
5384       LDBase = cast<LoadSDNode>(Elt.getNode());
5385       LastLoadedElt = i;
5386       continue;
5387     }
5388     if (Elt.getOpcode() == ISD::UNDEF)
5389       continue;
5390
5391     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5392     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5393       return SDValue();
5394     LastLoadedElt = i;
5395   }
5396
5397   // If we have found an entire vector of loads and undefs, then return a large
5398   // load of the entire vector width starting at the base pointer.  If we found
5399   // consecutive loads for the low half, generate a vzext_load node.
5400   if (LastLoadedElt == NumElems - 1) {
5401     SDValue NewLd = SDValue();
5402     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5403       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5404                           LDBase->getPointerInfo(),
5405                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5406                           LDBase->isInvariant(), 0);
5407     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5408                         LDBase->getPointerInfo(),
5409                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5410                         LDBase->isInvariant(), LDBase->getAlignment());
5411
5412     if (LDBase->hasAnyUseOfValue(1)) {
5413       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5414                                      SDValue(LDBase, 1),
5415                                      SDValue(NewLd.getNode(), 1));
5416       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5417       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5418                              SDValue(NewLd.getNode(), 1));
5419     }
5420
5421     return NewLd;
5422   }
5423   if (NumElems == 4 && LastLoadedElt == 1 &&
5424       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5425     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5426     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5427     SDValue ResNode =
5428         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5429                                 array_lengthof(Ops), MVT::i64,
5430                                 LDBase->getPointerInfo(),
5431                                 LDBase->getAlignment(),
5432                                 false/*isVolatile*/, true/*ReadMem*/,
5433                                 false/*WriteMem*/);
5434
5435     // Make sure the newly-created LOAD is in the same position as LDBase in
5436     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5437     // update uses of LDBase's output chain to use the TokenFactor.
5438     if (LDBase->hasAnyUseOfValue(1)) {
5439       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5440                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5441       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5442       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5443                              SDValue(ResNode.getNode(), 1));
5444     }
5445
5446     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5447   }
5448   return SDValue();
5449 }
5450
5451 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5452 /// to generate a splat value for the following cases:
5453 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5454 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5455 /// a scalar load, or a constant.
5456 /// The VBROADCAST node is returned when a pattern is found,
5457 /// or SDValue() otherwise.
5458 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5459                                     SelectionDAG &DAG) {
5460   if (!Subtarget->hasFp256())
5461     return SDValue();
5462
5463   MVT VT = Op.getSimpleValueType();
5464   SDLoc dl(Op);
5465
5466   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5467          "Unsupported vector type for broadcast.");
5468
5469   SDValue Ld;
5470   bool ConstSplatVal;
5471
5472   switch (Op.getOpcode()) {
5473     default:
5474       // Unknown pattern found.
5475       return SDValue();
5476
5477     case ISD::BUILD_VECTOR: {
5478       // The BUILD_VECTOR node must be a splat.
5479       if (!isSplatVector(Op.getNode()))
5480         return SDValue();
5481
5482       Ld = Op.getOperand(0);
5483       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5484                      Ld.getOpcode() == ISD::ConstantFP);
5485
5486       // The suspected load node has several users. Make sure that all
5487       // of its users are from the BUILD_VECTOR node.
5488       // Constants may have multiple users.
5489       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5490         return SDValue();
5491       break;
5492     }
5493
5494     case ISD::VECTOR_SHUFFLE: {
5495       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5496
5497       // Shuffles must have a splat mask where the first element is
5498       // broadcasted.
5499       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5500         return SDValue();
5501
5502       SDValue Sc = Op.getOperand(0);
5503       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5504           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5505
5506         if (!Subtarget->hasInt256())
5507           return SDValue();
5508
5509         // Use the register form of the broadcast instruction available on AVX2.
5510         if (VT.getSizeInBits() >= 256)
5511           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5512         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5513       }
5514
5515       Ld = Sc.getOperand(0);
5516       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5517                        Ld.getOpcode() == ISD::ConstantFP);
5518
5519       // The scalar_to_vector node and the suspected
5520       // load node must have exactly one user.
5521       // Constants may have multiple users.
5522
5523       // AVX-512 has register version of the broadcast
5524       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5525         Ld.getValueType().getSizeInBits() >= 32;
5526       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5527           !hasRegVer))
5528         return SDValue();
5529       break;
5530     }
5531   }
5532
5533   bool IsGE256 = (VT.getSizeInBits() >= 256);
5534
5535   // Handle the broadcasting a single constant scalar from the constant pool
5536   // into a vector. On Sandybridge it is still better to load a constant vector
5537   // from the constant pool and not to broadcast it from a scalar.
5538   if (ConstSplatVal && Subtarget->hasInt256()) {
5539     EVT CVT = Ld.getValueType();
5540     assert(!CVT.isVector() && "Must not broadcast a vector type");
5541     unsigned ScalarSize = CVT.getSizeInBits();
5542
5543     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5544       const Constant *C = 0;
5545       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5546         C = CI->getConstantIntValue();
5547       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5548         C = CF->getConstantFPValue();
5549
5550       assert(C && "Invalid constant type");
5551
5552       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5553       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5554       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5555       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5556                        MachinePointerInfo::getConstantPool(),
5557                        false, false, false, Alignment);
5558
5559       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5560     }
5561   }
5562
5563   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5564   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5565
5566   // Handle AVX2 in-register broadcasts.
5567   if (!IsLoad && Subtarget->hasInt256() &&
5568       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5569     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5570
5571   // The scalar source must be a normal load.
5572   if (!IsLoad)
5573     return SDValue();
5574
5575   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5576     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5577
5578   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5579   // double since there is no vbroadcastsd xmm
5580   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5581     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5582       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5583   }
5584
5585   // Unsupported broadcast.
5586   return SDValue();
5587 }
5588
5589 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5590   MVT VT = Op.getSimpleValueType();
5591
5592   // Skip if insert_vec_elt is not supported.
5593   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5594   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5595     return SDValue();
5596
5597   SDLoc DL(Op);
5598   unsigned NumElems = Op.getNumOperands();
5599
5600   SDValue VecIn1;
5601   SDValue VecIn2;
5602   SmallVector<unsigned, 4> InsertIndices;
5603   SmallVector<int, 8> Mask(NumElems, -1);
5604
5605   for (unsigned i = 0; i != NumElems; ++i) {
5606     unsigned Opc = Op.getOperand(i).getOpcode();
5607
5608     if (Opc == ISD::UNDEF)
5609       continue;
5610
5611     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5612       // Quit if more than 1 elements need inserting.
5613       if (InsertIndices.size() > 1)
5614         return SDValue();
5615
5616       InsertIndices.push_back(i);
5617       continue;
5618     }
5619
5620     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5621     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5622
5623     // Quit if extracted from vector of different type.
5624     if (ExtractedFromVec.getValueType() != VT)
5625       return SDValue();
5626
5627     // Quit if non-constant index.
5628     if (!isa<ConstantSDNode>(ExtIdx))
5629       return SDValue();
5630
5631     if (VecIn1.getNode() == 0)
5632       VecIn1 = ExtractedFromVec;
5633     else if (VecIn1 != ExtractedFromVec) {
5634       if (VecIn2.getNode() == 0)
5635         VecIn2 = ExtractedFromVec;
5636       else if (VecIn2 != ExtractedFromVec)
5637         // Quit if more than 2 vectors to shuffle
5638         return SDValue();
5639     }
5640
5641     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5642
5643     if (ExtractedFromVec == VecIn1)
5644       Mask[i] = Idx;
5645     else if (ExtractedFromVec == VecIn2)
5646       Mask[i] = Idx + NumElems;
5647   }
5648
5649   if (VecIn1.getNode() == 0)
5650     return SDValue();
5651
5652   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5653   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5654   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5655     unsigned Idx = InsertIndices[i];
5656     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5657                      DAG.getIntPtrConstant(Idx));
5658   }
5659
5660   return NV;
5661 }
5662
5663 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5664 SDValue
5665 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5666
5667   MVT VT = Op.getSimpleValueType();
5668   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5669          "Unexpected type in LowerBUILD_VECTORvXi1!");
5670
5671   SDLoc dl(Op);
5672   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5673     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5674     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5675                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5676     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5677                        Ops, VT.getVectorNumElements());
5678   }
5679
5680   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5681     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5682     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5683                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5684     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5685                        Ops, VT.getVectorNumElements());
5686   }
5687
5688   bool AllContants = true;
5689   uint64_t Immediate = 0;
5690   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5691     SDValue In = Op.getOperand(idx);
5692     if (In.getOpcode() == ISD::UNDEF)
5693       continue;
5694     if (!isa<ConstantSDNode>(In)) {
5695       AllContants = false;
5696       break;
5697     }
5698     if (cast<ConstantSDNode>(In)->getZExtValue())
5699       Immediate |= (1ULL << idx);
5700   }
5701
5702   if (AllContants) {
5703     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5704       DAG.getConstant(Immediate, MVT::i16));
5705     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5706                        DAG.getIntPtrConstant(0));
5707   }
5708
5709   // Splat vector (with undefs)
5710   SDValue In = Op.getOperand(0);
5711   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5712     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5713       llvm_unreachable("Unsupported predicate operation");
5714   }
5715
5716   SDValue EFLAGS, X86CC;
5717   if (In.getOpcode() == ISD::SETCC) {
5718     SDValue Op0 = In.getOperand(0);
5719     SDValue Op1 = In.getOperand(1);
5720     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5721     bool isFP = Op1.getValueType().isFloatingPoint();
5722     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5723
5724     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5725
5726     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5727     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5728     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5729   } else if (In.getOpcode() == X86ISD::SETCC) {
5730     X86CC = In.getOperand(0);
5731     EFLAGS = In.getOperand(1);
5732   } else {
5733     // The algorithm:
5734     //   Bit1 = In & 0x1
5735     //   if (Bit1 != 0)
5736     //     ZF = 0
5737     //   else
5738     //     ZF = 1
5739     //   if (ZF == 0)
5740     //     res = allOnes ### CMOVNE -1, %res
5741     //   else
5742     //     res = allZero
5743     MVT InVT = In.getSimpleValueType();
5744     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5745     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5746     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5747   }
5748
5749   if (VT == MVT::v16i1) {
5750     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5751     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5752     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5753           Cst0, Cst1, X86CC, EFLAGS);
5754     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5755   }
5756
5757   if (VT == MVT::v8i1) {
5758     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5759     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5760     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5761           Cst0, Cst1, X86CC, EFLAGS);
5762     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5763     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5764   }
5765   llvm_unreachable("Unsupported predicate operation");
5766 }
5767
5768 SDValue
5769 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5770   SDLoc dl(Op);
5771
5772   MVT VT = Op.getSimpleValueType();
5773   MVT ExtVT = VT.getVectorElementType();
5774   unsigned NumElems = Op.getNumOperands();
5775
5776   // Generate vectors for predicate vectors.
5777   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5778     return LowerBUILD_VECTORvXi1(Op, DAG);
5779
5780   // Vectors containing all zeros can be matched by pxor and xorps later
5781   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5782     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5783     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5784     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5785       return Op;
5786
5787     return getZeroVector(VT, Subtarget, DAG, dl);
5788   }
5789
5790   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5791   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5792   // vpcmpeqd on 256-bit vectors.
5793   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5794     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5795       return Op;
5796
5797     if (!VT.is512BitVector())
5798       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5799   }
5800
5801   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5802   if (Broadcast.getNode())
5803     return Broadcast;
5804
5805   unsigned EVTBits = ExtVT.getSizeInBits();
5806
5807   unsigned NumZero  = 0;
5808   unsigned NumNonZero = 0;
5809   unsigned NonZeros = 0;
5810   bool IsAllConstants = true;
5811   SmallSet<SDValue, 8> Values;
5812   for (unsigned i = 0; i < NumElems; ++i) {
5813     SDValue Elt = Op.getOperand(i);
5814     if (Elt.getOpcode() == ISD::UNDEF)
5815       continue;
5816     Values.insert(Elt);
5817     if (Elt.getOpcode() != ISD::Constant &&
5818         Elt.getOpcode() != ISD::ConstantFP)
5819       IsAllConstants = false;
5820     if (X86::isZeroNode(Elt))
5821       NumZero++;
5822     else {
5823       NonZeros |= (1 << i);
5824       NumNonZero++;
5825     }
5826   }
5827
5828   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5829   if (NumNonZero == 0)
5830     return DAG.getUNDEF(VT);
5831
5832   // Special case for single non-zero, non-undef, element.
5833   if (NumNonZero == 1) {
5834     unsigned Idx = countTrailingZeros(NonZeros);
5835     SDValue Item = Op.getOperand(Idx);
5836
5837     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5838     // the value are obviously zero, truncate the value to i32 and do the
5839     // insertion that way.  Only do this if the value is non-constant or if the
5840     // value is a constant being inserted into element 0.  It is cheaper to do
5841     // a constant pool load than it is to do a movd + shuffle.
5842     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5843         (!IsAllConstants || Idx == 0)) {
5844       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5845         // Handle SSE only.
5846         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5847         EVT VecVT = MVT::v4i32;
5848         unsigned VecElts = 4;
5849
5850         // Truncate the value (which may itself be a constant) to i32, and
5851         // convert it to a vector with movd (S2V+shuffle to zero extend).
5852         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5853         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5854         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5855
5856         // Now we have our 32-bit value zero extended in the low element of
5857         // a vector.  If Idx != 0, swizzle it into place.
5858         if (Idx != 0) {
5859           SmallVector<int, 4> Mask;
5860           Mask.push_back(Idx);
5861           for (unsigned i = 1; i != VecElts; ++i)
5862             Mask.push_back(i);
5863           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5864                                       &Mask[0]);
5865         }
5866         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5867       }
5868     }
5869
5870     // If we have a constant or non-constant insertion into the low element of
5871     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5872     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5873     // depending on what the source datatype is.
5874     if (Idx == 0) {
5875       if (NumZero == 0)
5876         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5877
5878       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5879           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5880         if (VT.is256BitVector() || VT.is512BitVector()) {
5881           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5882           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5883                              Item, DAG.getIntPtrConstant(0));
5884         }
5885         assert(VT.is128BitVector() && "Expected an SSE value type!");
5886         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5887         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5888         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5889       }
5890
5891       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5892         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5893         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5894         if (VT.is256BitVector()) {
5895           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5896           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5897         } else {
5898           assert(VT.is128BitVector() && "Expected an SSE value type!");
5899           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5900         }
5901         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5902       }
5903     }
5904
5905     // Is it a vector logical left shift?
5906     if (NumElems == 2 && Idx == 1 &&
5907         X86::isZeroNode(Op.getOperand(0)) &&
5908         !X86::isZeroNode(Op.getOperand(1))) {
5909       unsigned NumBits = VT.getSizeInBits();
5910       return getVShift(true, VT,
5911                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5912                                    VT, Op.getOperand(1)),
5913                        NumBits/2, DAG, *this, dl);
5914     }
5915
5916     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5917       return SDValue();
5918
5919     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5920     // is a non-constant being inserted into an element other than the low one,
5921     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5922     // movd/movss) to move this into the low element, then shuffle it into
5923     // place.
5924     if (EVTBits == 32) {
5925       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5926
5927       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5928       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5929       SmallVector<int, 8> MaskVec;
5930       for (unsigned i = 0; i != NumElems; ++i)
5931         MaskVec.push_back(i == Idx ? 0 : 1);
5932       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5933     }
5934   }
5935
5936   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5937   if (Values.size() == 1) {
5938     if (EVTBits == 32) {
5939       // Instead of a shuffle like this:
5940       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5941       // Check if it's possible to issue this instead.
5942       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5943       unsigned Idx = countTrailingZeros(NonZeros);
5944       SDValue Item = Op.getOperand(Idx);
5945       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5946         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5947     }
5948     return SDValue();
5949   }
5950
5951   // A vector full of immediates; various special cases are already
5952   // handled, so this is best done with a single constant-pool load.
5953   if (IsAllConstants)
5954     return SDValue();
5955
5956   // For AVX-length vectors, build the individual 128-bit pieces and use
5957   // shuffles to put them in place.
5958   if (VT.is256BitVector()) {
5959     SmallVector<SDValue, 32> V;
5960     for (unsigned i = 0; i != NumElems; ++i)
5961       V.push_back(Op.getOperand(i));
5962
5963     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5964
5965     // Build both the lower and upper subvector.
5966     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5967     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5968                                 NumElems/2);
5969
5970     // Recreate the wider vector with the lower and upper part.
5971     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5972   }
5973
5974   // Let legalizer expand 2-wide build_vectors.
5975   if (EVTBits == 64) {
5976     if (NumNonZero == 1) {
5977       // One half is zero or undef.
5978       unsigned Idx = countTrailingZeros(NonZeros);
5979       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5980                                  Op.getOperand(Idx));
5981       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5982     }
5983     return SDValue();
5984   }
5985
5986   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5987   if (EVTBits == 8 && NumElems == 16) {
5988     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5989                                         Subtarget, *this);
5990     if (V.getNode()) return V;
5991   }
5992
5993   if (EVTBits == 16 && NumElems == 8) {
5994     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
5995                                       Subtarget, *this);
5996     if (V.getNode()) return V;
5997   }
5998
5999   // If element VT is == 32 bits, turn it into a number of shuffles.
6000   SmallVector<SDValue, 8> V(NumElems);
6001   if (NumElems == 4 && NumZero > 0) {
6002     for (unsigned i = 0; i < 4; ++i) {
6003       bool isZero = !(NonZeros & (1 << i));
6004       if (isZero)
6005         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6006       else
6007         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6008     }
6009
6010     for (unsigned i = 0; i < 2; ++i) {
6011       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6012         default: break;
6013         case 0:
6014           V[i] = V[i*2];  // Must be a zero vector.
6015           break;
6016         case 1:
6017           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6018           break;
6019         case 2:
6020           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6021           break;
6022         case 3:
6023           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6024           break;
6025       }
6026     }
6027
6028     bool Reverse1 = (NonZeros & 0x3) == 2;
6029     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6030     int MaskVec[] = {
6031       Reverse1 ? 1 : 0,
6032       Reverse1 ? 0 : 1,
6033       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6034       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6035     };
6036     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6037   }
6038
6039   if (Values.size() > 1 && VT.is128BitVector()) {
6040     // Check for a build vector of consecutive loads.
6041     for (unsigned i = 0; i < NumElems; ++i)
6042       V[i] = Op.getOperand(i);
6043
6044     // Check for elements which are consecutive loads.
6045     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6046     if (LD.getNode())
6047       return LD;
6048
6049     // Check for a build vector from mostly shuffle plus few inserting.
6050     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6051     if (Sh.getNode())
6052       return Sh;
6053
6054     // For SSE 4.1, use insertps to put the high elements into the low element.
6055     if (getSubtarget()->hasSSE41()) {
6056       SDValue Result;
6057       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6058         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6059       else
6060         Result = DAG.getUNDEF(VT);
6061
6062       for (unsigned i = 1; i < NumElems; ++i) {
6063         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6064         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6065                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6066       }
6067       return Result;
6068     }
6069
6070     // Otherwise, expand into a number of unpckl*, start by extending each of
6071     // our (non-undef) elements to the full vector width with the element in the
6072     // bottom slot of the vector (which generates no code for SSE).
6073     for (unsigned i = 0; i < NumElems; ++i) {
6074       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6075         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6076       else
6077         V[i] = DAG.getUNDEF(VT);
6078     }
6079
6080     // Next, we iteratively mix elements, e.g. for v4f32:
6081     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6082     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6083     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6084     unsigned EltStride = NumElems >> 1;
6085     while (EltStride != 0) {
6086       for (unsigned i = 0; i < EltStride; ++i) {
6087         // If V[i+EltStride] is undef and this is the first round of mixing,
6088         // then it is safe to just drop this shuffle: V[i] is already in the
6089         // right place, the one element (since it's the first round) being
6090         // inserted as undef can be dropped.  This isn't safe for successive
6091         // rounds because they will permute elements within both vectors.
6092         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6093             EltStride == NumElems/2)
6094           continue;
6095
6096         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6097       }
6098       EltStride >>= 1;
6099     }
6100     return V[0];
6101   }
6102   return SDValue();
6103 }
6104
6105 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6106 // to create 256-bit vectors from two other 128-bit ones.
6107 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6108   SDLoc dl(Op);
6109   MVT ResVT = Op.getSimpleValueType();
6110
6111   assert((ResVT.is256BitVector() ||
6112           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6113
6114   SDValue V1 = Op.getOperand(0);
6115   SDValue V2 = Op.getOperand(1);
6116   unsigned NumElems = ResVT.getVectorNumElements();
6117   if(ResVT.is256BitVector())
6118     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6119
6120   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6121 }
6122
6123 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6124   assert(Op.getNumOperands() == 2);
6125
6126   // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
6127   // from two other 128-bit ones.
6128   return LowerAVXCONCAT_VECTORS(Op, DAG);
6129 }
6130
6131 // Try to lower a shuffle node into a simple blend instruction.
6132 static SDValue
6133 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6134                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6135   SDValue V1 = SVOp->getOperand(0);
6136   SDValue V2 = SVOp->getOperand(1);
6137   SDLoc dl(SVOp);
6138   MVT VT = SVOp->getSimpleValueType(0);
6139   MVT EltVT = VT.getVectorElementType();
6140   unsigned NumElems = VT.getVectorNumElements();
6141
6142   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6143     return SDValue();
6144   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6145     return SDValue();
6146
6147   // Check the mask for BLEND and build the value.
6148   unsigned MaskValue = 0;
6149   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6150   unsigned NumLanes = (NumElems-1)/8 + 1;
6151   unsigned NumElemsInLane = NumElems / NumLanes;
6152
6153   // Blend for v16i16 should be symetric for the both lanes.
6154   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6155
6156     int SndLaneEltIdx = (NumLanes == 2) ?
6157       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6158     int EltIdx = SVOp->getMaskElt(i);
6159
6160     if ((EltIdx < 0 || EltIdx == (int)i) &&
6161         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6162       continue;
6163
6164     if (((unsigned)EltIdx == (i + NumElems)) &&
6165         (SndLaneEltIdx < 0 ||
6166          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6167       MaskValue |= (1<<i);
6168     else
6169       return SDValue();
6170   }
6171
6172   // Convert i32 vectors to floating point if it is not AVX2.
6173   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6174   MVT BlendVT = VT;
6175   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6176     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6177                                NumElems);
6178     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6179     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6180   }
6181
6182   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6183                             DAG.getConstant(MaskValue, MVT::i32));
6184   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6185 }
6186
6187 // v8i16 shuffles - Prefer shuffles in the following order:
6188 // 1. [all]   pshuflw, pshufhw, optional move
6189 // 2. [ssse3] 1 x pshufb
6190 // 3. [ssse3] 2 x pshufb + 1 x por
6191 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6192 static SDValue
6193 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6194                          SelectionDAG &DAG) {
6195   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6196   SDValue V1 = SVOp->getOperand(0);
6197   SDValue V2 = SVOp->getOperand(1);
6198   SDLoc dl(SVOp);
6199   SmallVector<int, 8> MaskVals;
6200
6201   // Determine if more than 1 of the words in each of the low and high quadwords
6202   // of the result come from the same quadword of one of the two inputs.  Undef
6203   // mask values count as coming from any quadword, for better codegen.
6204   unsigned LoQuad[] = { 0, 0, 0, 0 };
6205   unsigned HiQuad[] = { 0, 0, 0, 0 };
6206   std::bitset<4> InputQuads;
6207   for (unsigned i = 0; i < 8; ++i) {
6208     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6209     int EltIdx = SVOp->getMaskElt(i);
6210     MaskVals.push_back(EltIdx);
6211     if (EltIdx < 0) {
6212       ++Quad[0];
6213       ++Quad[1];
6214       ++Quad[2];
6215       ++Quad[3];
6216       continue;
6217     }
6218     ++Quad[EltIdx / 4];
6219     InputQuads.set(EltIdx / 4);
6220   }
6221
6222   int BestLoQuad = -1;
6223   unsigned MaxQuad = 1;
6224   for (unsigned i = 0; i < 4; ++i) {
6225     if (LoQuad[i] > MaxQuad) {
6226       BestLoQuad = i;
6227       MaxQuad = LoQuad[i];
6228     }
6229   }
6230
6231   int BestHiQuad = -1;
6232   MaxQuad = 1;
6233   for (unsigned i = 0; i < 4; ++i) {
6234     if (HiQuad[i] > MaxQuad) {
6235       BestHiQuad = i;
6236       MaxQuad = HiQuad[i];
6237     }
6238   }
6239
6240   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6241   // of the two input vectors, shuffle them into one input vector so only a
6242   // single pshufb instruction is necessary. If There are more than 2 input
6243   // quads, disable the next transformation since it does not help SSSE3.
6244   bool V1Used = InputQuads[0] || InputQuads[1];
6245   bool V2Used = InputQuads[2] || InputQuads[3];
6246   if (Subtarget->hasSSSE3()) {
6247     if (InputQuads.count() == 2 && V1Used && V2Used) {
6248       BestLoQuad = InputQuads[0] ? 0 : 1;
6249       BestHiQuad = InputQuads[2] ? 2 : 3;
6250     }
6251     if (InputQuads.count() > 2) {
6252       BestLoQuad = -1;
6253       BestHiQuad = -1;
6254     }
6255   }
6256
6257   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6258   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6259   // words from all 4 input quadwords.
6260   SDValue NewV;
6261   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6262     int MaskV[] = {
6263       BestLoQuad < 0 ? 0 : BestLoQuad,
6264       BestHiQuad < 0 ? 1 : BestHiQuad
6265     };
6266     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6267                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6268                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6269     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6270
6271     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6272     // source words for the shuffle, to aid later transformations.
6273     bool AllWordsInNewV = true;
6274     bool InOrder[2] = { true, true };
6275     for (unsigned i = 0; i != 8; ++i) {
6276       int idx = MaskVals[i];
6277       if (idx != (int)i)
6278         InOrder[i/4] = false;
6279       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6280         continue;
6281       AllWordsInNewV = false;
6282       break;
6283     }
6284
6285     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6286     if (AllWordsInNewV) {
6287       for (int i = 0; i != 8; ++i) {
6288         int idx = MaskVals[i];
6289         if (idx < 0)
6290           continue;
6291         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6292         if ((idx != i) && idx < 4)
6293           pshufhw = false;
6294         if ((idx != i) && idx > 3)
6295           pshuflw = false;
6296       }
6297       V1 = NewV;
6298       V2Used = false;
6299       BestLoQuad = 0;
6300       BestHiQuad = 1;
6301     }
6302
6303     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6304     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6305     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6306       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6307       unsigned TargetMask = 0;
6308       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6309                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6310       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6311       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6312                              getShufflePSHUFLWImmediate(SVOp);
6313       V1 = NewV.getOperand(0);
6314       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6315     }
6316   }
6317
6318   // Promote splats to a larger type which usually leads to more efficient code.
6319   // FIXME: Is this true if pshufb is available?
6320   if (SVOp->isSplat())
6321     return PromoteSplat(SVOp, DAG);
6322
6323   // If we have SSSE3, and all words of the result are from 1 input vector,
6324   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6325   // is present, fall back to case 4.
6326   if (Subtarget->hasSSSE3()) {
6327     SmallVector<SDValue,16> pshufbMask;
6328
6329     // If we have elements from both input vectors, set the high bit of the
6330     // shuffle mask element to zero out elements that come from V2 in the V1
6331     // mask, and elements that come from V1 in the V2 mask, so that the two
6332     // results can be OR'd together.
6333     bool TwoInputs = V1Used && V2Used;
6334     for (unsigned i = 0; i != 8; ++i) {
6335       int EltIdx = MaskVals[i] * 2;
6336       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6337       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6338       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6339       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6340     }
6341     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6342     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6343                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6344                                  MVT::v16i8, &pshufbMask[0], 16));
6345     if (!TwoInputs)
6346       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6347
6348     // Calculate the shuffle mask for the second input, shuffle it, and
6349     // OR it with the first shuffled input.
6350     pshufbMask.clear();
6351     for (unsigned i = 0; i != 8; ++i) {
6352       int EltIdx = MaskVals[i] * 2;
6353       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6354       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6355       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6356       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6357     }
6358     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6359     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6360                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6361                                  MVT::v16i8, &pshufbMask[0], 16));
6362     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6363     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6364   }
6365
6366   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6367   // and update MaskVals with new element order.
6368   std::bitset<8> InOrder;
6369   if (BestLoQuad >= 0) {
6370     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6371     for (int i = 0; i != 4; ++i) {
6372       int idx = MaskVals[i];
6373       if (idx < 0) {
6374         InOrder.set(i);
6375       } else if ((idx / 4) == BestLoQuad) {
6376         MaskV[i] = idx & 3;
6377         InOrder.set(i);
6378       }
6379     }
6380     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6381                                 &MaskV[0]);
6382
6383     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6384       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6385       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6386                                   NewV.getOperand(0),
6387                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6388     }
6389   }
6390
6391   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6392   // and update MaskVals with the new element order.
6393   if (BestHiQuad >= 0) {
6394     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6395     for (unsigned i = 4; i != 8; ++i) {
6396       int idx = MaskVals[i];
6397       if (idx < 0) {
6398         InOrder.set(i);
6399       } else if ((idx / 4) == BestHiQuad) {
6400         MaskV[i] = (idx & 3) + 4;
6401         InOrder.set(i);
6402       }
6403     }
6404     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6405                                 &MaskV[0]);
6406
6407     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6408       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6409       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6410                                   NewV.getOperand(0),
6411                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6412     }
6413   }
6414
6415   // In case BestHi & BestLo were both -1, which means each quadword has a word
6416   // from each of the four input quadwords, calculate the InOrder bitvector now
6417   // before falling through to the insert/extract cleanup.
6418   if (BestLoQuad == -1 && BestHiQuad == -1) {
6419     NewV = V1;
6420     for (int i = 0; i != 8; ++i)
6421       if (MaskVals[i] < 0 || MaskVals[i] == i)
6422         InOrder.set(i);
6423   }
6424
6425   // The other elements are put in the right place using pextrw and pinsrw.
6426   for (unsigned i = 0; i != 8; ++i) {
6427     if (InOrder[i])
6428       continue;
6429     int EltIdx = MaskVals[i];
6430     if (EltIdx < 0)
6431       continue;
6432     SDValue ExtOp = (EltIdx < 8) ?
6433       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6434                   DAG.getIntPtrConstant(EltIdx)) :
6435       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6436                   DAG.getIntPtrConstant(EltIdx - 8));
6437     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6438                        DAG.getIntPtrConstant(i));
6439   }
6440   return NewV;
6441 }
6442
6443 // v16i8 shuffles - Prefer shuffles in the following order:
6444 // 1. [ssse3] 1 x pshufb
6445 // 2. [ssse3] 2 x pshufb + 1 x por
6446 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6447 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6448                                         const X86Subtarget* Subtarget,
6449                                         SelectionDAG &DAG) {
6450   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6451   SDValue V1 = SVOp->getOperand(0);
6452   SDValue V2 = SVOp->getOperand(1);
6453   SDLoc dl(SVOp);
6454   ArrayRef<int> MaskVals = SVOp->getMask();
6455
6456   // Promote splats to a larger type which usually leads to more efficient code.
6457   // FIXME: Is this true if pshufb is available?
6458   if (SVOp->isSplat())
6459     return PromoteSplat(SVOp, DAG);
6460
6461   // If we have SSSE3, case 1 is generated when all result bytes come from
6462   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6463   // present, fall back to case 3.
6464
6465   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6466   if (Subtarget->hasSSSE3()) {
6467     SmallVector<SDValue,16> pshufbMask;
6468
6469     // If all result elements are from one input vector, then only translate
6470     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6471     //
6472     // Otherwise, we have elements from both input vectors, and must zero out
6473     // elements that come from V2 in the first mask, and V1 in the second mask
6474     // so that we can OR them together.
6475     for (unsigned i = 0; i != 16; ++i) {
6476       int EltIdx = MaskVals[i];
6477       if (EltIdx < 0 || EltIdx >= 16)
6478         EltIdx = 0x80;
6479       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6480     }
6481     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6482                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6483                                  MVT::v16i8, &pshufbMask[0], 16));
6484
6485     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6486     // the 2nd operand if it's undefined or zero.
6487     if (V2.getOpcode() == ISD::UNDEF ||
6488         ISD::isBuildVectorAllZeros(V2.getNode()))
6489       return V1;
6490
6491     // Calculate the shuffle mask for the second input, shuffle it, and
6492     // OR it with the first shuffled input.
6493     pshufbMask.clear();
6494     for (unsigned i = 0; i != 16; ++i) {
6495       int EltIdx = MaskVals[i];
6496       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6497       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6498     }
6499     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6500                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6501                                  MVT::v16i8, &pshufbMask[0], 16));
6502     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6503   }
6504
6505   // No SSSE3 - Calculate in place words and then fix all out of place words
6506   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6507   // the 16 different words that comprise the two doublequadword input vectors.
6508   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6509   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6510   SDValue NewV = V1;
6511   for (int i = 0; i != 8; ++i) {
6512     int Elt0 = MaskVals[i*2];
6513     int Elt1 = MaskVals[i*2+1];
6514
6515     // This word of the result is all undef, skip it.
6516     if (Elt0 < 0 && Elt1 < 0)
6517       continue;
6518
6519     // This word of the result is already in the correct place, skip it.
6520     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6521       continue;
6522
6523     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6524     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6525     SDValue InsElt;
6526
6527     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6528     // using a single extract together, load it and store it.
6529     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6530       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6531                            DAG.getIntPtrConstant(Elt1 / 2));
6532       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6533                         DAG.getIntPtrConstant(i));
6534       continue;
6535     }
6536
6537     // If Elt1 is defined, extract it from the appropriate source.  If the
6538     // source byte is not also odd, shift the extracted word left 8 bits
6539     // otherwise clear the bottom 8 bits if we need to do an or.
6540     if (Elt1 >= 0) {
6541       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6542                            DAG.getIntPtrConstant(Elt1 / 2));
6543       if ((Elt1 & 1) == 0)
6544         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6545                              DAG.getConstant(8,
6546                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6547       else if (Elt0 >= 0)
6548         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6549                              DAG.getConstant(0xFF00, MVT::i16));
6550     }
6551     // If Elt0 is defined, extract it from the appropriate source.  If the
6552     // source byte is not also even, shift the extracted word right 8 bits. If
6553     // Elt1 was also defined, OR the extracted values together before
6554     // inserting them in the result.
6555     if (Elt0 >= 0) {
6556       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6557                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6558       if ((Elt0 & 1) != 0)
6559         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6560                               DAG.getConstant(8,
6561                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6562       else if (Elt1 >= 0)
6563         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6564                              DAG.getConstant(0x00FF, MVT::i16));
6565       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6566                          : InsElt0;
6567     }
6568     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6569                        DAG.getIntPtrConstant(i));
6570   }
6571   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6572 }
6573
6574 // v32i8 shuffles - Translate to VPSHUFB if possible.
6575 static
6576 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6577                                  const X86Subtarget *Subtarget,
6578                                  SelectionDAG &DAG) {
6579   MVT VT = SVOp->getSimpleValueType(0);
6580   SDValue V1 = SVOp->getOperand(0);
6581   SDValue V2 = SVOp->getOperand(1);
6582   SDLoc dl(SVOp);
6583   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6584
6585   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6586   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6587   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6588
6589   // VPSHUFB may be generated if
6590   // (1) one of input vector is undefined or zeroinitializer.
6591   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6592   // And (2) the mask indexes don't cross the 128-bit lane.
6593   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6594       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6595     return SDValue();
6596
6597   if (V1IsAllZero && !V2IsAllZero) {
6598     CommuteVectorShuffleMask(MaskVals, 32);
6599     V1 = V2;
6600   }
6601   SmallVector<SDValue, 32> pshufbMask;
6602   for (unsigned i = 0; i != 32; i++) {
6603     int EltIdx = MaskVals[i];
6604     if (EltIdx < 0 || EltIdx >= 32)
6605       EltIdx = 0x80;
6606     else {
6607       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6608         // Cross lane is not allowed.
6609         return SDValue();
6610       EltIdx &= 0xf;
6611     }
6612     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6613   }
6614   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6615                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6616                                   MVT::v32i8, &pshufbMask[0], 32));
6617 }
6618
6619 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6620 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6621 /// done when every pair / quad of shuffle mask elements point to elements in
6622 /// the right sequence. e.g.
6623 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6624 static
6625 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6626                                  SelectionDAG &DAG) {
6627   MVT VT = SVOp->getSimpleValueType(0);
6628   SDLoc dl(SVOp);
6629   unsigned NumElems = VT.getVectorNumElements();
6630   MVT NewVT;
6631   unsigned Scale;
6632   switch (VT.SimpleTy) {
6633   default: llvm_unreachable("Unexpected!");
6634   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6635   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6636   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6637   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6638   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6639   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6640   }
6641
6642   SmallVector<int, 8> MaskVec;
6643   for (unsigned i = 0; i != NumElems; i += Scale) {
6644     int StartIdx = -1;
6645     for (unsigned j = 0; j != Scale; ++j) {
6646       int EltIdx = SVOp->getMaskElt(i+j);
6647       if (EltIdx < 0)
6648         continue;
6649       if (StartIdx < 0)
6650         StartIdx = (EltIdx / Scale);
6651       if (EltIdx != (int)(StartIdx*Scale + j))
6652         return SDValue();
6653     }
6654     MaskVec.push_back(StartIdx);
6655   }
6656
6657   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6658   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6659   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6660 }
6661
6662 /// getVZextMovL - Return a zero-extending vector move low node.
6663 ///
6664 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6665                             SDValue SrcOp, SelectionDAG &DAG,
6666                             const X86Subtarget *Subtarget, SDLoc dl) {
6667   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6668     LoadSDNode *LD = NULL;
6669     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6670       LD = dyn_cast<LoadSDNode>(SrcOp);
6671     if (!LD) {
6672       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6673       // instead.
6674       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6675       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6676           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6677           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6678           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6679         // PR2108
6680         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6681         return DAG.getNode(ISD::BITCAST, dl, VT,
6682                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6683                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6684                                                    OpVT,
6685                                                    SrcOp.getOperand(0)
6686                                                           .getOperand(0))));
6687       }
6688     }
6689   }
6690
6691   return DAG.getNode(ISD::BITCAST, dl, VT,
6692                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6693                                  DAG.getNode(ISD::BITCAST, dl,
6694                                              OpVT, SrcOp)));
6695 }
6696
6697 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6698 /// which could not be matched by any known target speficic shuffle
6699 static SDValue
6700 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6701
6702   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6703   if (NewOp.getNode())
6704     return NewOp;
6705
6706   MVT VT = SVOp->getSimpleValueType(0);
6707
6708   unsigned NumElems = VT.getVectorNumElements();
6709   unsigned NumLaneElems = NumElems / 2;
6710
6711   SDLoc dl(SVOp);
6712   MVT EltVT = VT.getVectorElementType();
6713   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6714   SDValue Output[2];
6715
6716   SmallVector<int, 16> Mask;
6717   for (unsigned l = 0; l < 2; ++l) {
6718     // Build a shuffle mask for the output, discovering on the fly which
6719     // input vectors to use as shuffle operands (recorded in InputUsed).
6720     // If building a suitable shuffle vector proves too hard, then bail
6721     // out with UseBuildVector set.
6722     bool UseBuildVector = false;
6723     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6724     unsigned LaneStart = l * NumLaneElems;
6725     for (unsigned i = 0; i != NumLaneElems; ++i) {
6726       // The mask element.  This indexes into the input.
6727       int Idx = SVOp->getMaskElt(i+LaneStart);
6728       if (Idx < 0) {
6729         // the mask element does not index into any input vector.
6730         Mask.push_back(-1);
6731         continue;
6732       }
6733
6734       // The input vector this mask element indexes into.
6735       int Input = Idx / NumLaneElems;
6736
6737       // Turn the index into an offset from the start of the input vector.
6738       Idx -= Input * NumLaneElems;
6739
6740       // Find or create a shuffle vector operand to hold this input.
6741       unsigned OpNo;
6742       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6743         if (InputUsed[OpNo] == Input)
6744           // This input vector is already an operand.
6745           break;
6746         if (InputUsed[OpNo] < 0) {
6747           // Create a new operand for this input vector.
6748           InputUsed[OpNo] = Input;
6749           break;
6750         }
6751       }
6752
6753       if (OpNo >= array_lengthof(InputUsed)) {
6754         // More than two input vectors used!  Give up on trying to create a
6755         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6756         UseBuildVector = true;
6757         break;
6758       }
6759
6760       // Add the mask index for the new shuffle vector.
6761       Mask.push_back(Idx + OpNo * NumLaneElems);
6762     }
6763
6764     if (UseBuildVector) {
6765       SmallVector<SDValue, 16> SVOps;
6766       for (unsigned i = 0; i != NumLaneElems; ++i) {
6767         // The mask element.  This indexes into the input.
6768         int Idx = SVOp->getMaskElt(i+LaneStart);
6769         if (Idx < 0) {
6770           SVOps.push_back(DAG.getUNDEF(EltVT));
6771           continue;
6772         }
6773
6774         // The input vector this mask element indexes into.
6775         int Input = Idx / NumElems;
6776
6777         // Turn the index into an offset from the start of the input vector.
6778         Idx -= Input * NumElems;
6779
6780         // Extract the vector element by hand.
6781         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6782                                     SVOp->getOperand(Input),
6783                                     DAG.getIntPtrConstant(Idx)));
6784       }
6785
6786       // Construct the output using a BUILD_VECTOR.
6787       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6788                               SVOps.size());
6789     } else if (InputUsed[0] < 0) {
6790       // No input vectors were used! The result is undefined.
6791       Output[l] = DAG.getUNDEF(NVT);
6792     } else {
6793       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6794                                         (InputUsed[0] % 2) * NumLaneElems,
6795                                         DAG, dl);
6796       // If only one input was used, use an undefined vector for the other.
6797       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6798         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6799                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6800       // At least one input vector was used. Create a new shuffle vector.
6801       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6802     }
6803
6804     Mask.clear();
6805   }
6806
6807   // Concatenate the result back
6808   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6809 }
6810
6811 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6812 /// 4 elements, and match them with several different shuffle types.
6813 static SDValue
6814 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6815   SDValue V1 = SVOp->getOperand(0);
6816   SDValue V2 = SVOp->getOperand(1);
6817   SDLoc dl(SVOp);
6818   MVT VT = SVOp->getSimpleValueType(0);
6819
6820   assert(VT.is128BitVector() && "Unsupported vector size");
6821
6822   std::pair<int, int> Locs[4];
6823   int Mask1[] = { -1, -1, -1, -1 };
6824   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6825
6826   unsigned NumHi = 0;
6827   unsigned NumLo = 0;
6828   for (unsigned i = 0; i != 4; ++i) {
6829     int Idx = PermMask[i];
6830     if (Idx < 0) {
6831       Locs[i] = std::make_pair(-1, -1);
6832     } else {
6833       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6834       if (Idx < 4) {
6835         Locs[i] = std::make_pair(0, NumLo);
6836         Mask1[NumLo] = Idx;
6837         NumLo++;
6838       } else {
6839         Locs[i] = std::make_pair(1, NumHi);
6840         if (2+NumHi < 4)
6841           Mask1[2+NumHi] = Idx;
6842         NumHi++;
6843       }
6844     }
6845   }
6846
6847   if (NumLo <= 2 && NumHi <= 2) {
6848     // If no more than two elements come from either vector. This can be
6849     // implemented with two shuffles. First shuffle gather the elements.
6850     // The second shuffle, which takes the first shuffle as both of its
6851     // vector operands, put the elements into the right order.
6852     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6853
6854     int Mask2[] = { -1, -1, -1, -1 };
6855
6856     for (unsigned i = 0; i != 4; ++i)
6857       if (Locs[i].first != -1) {
6858         unsigned Idx = (i < 2) ? 0 : 4;
6859         Idx += Locs[i].first * 2 + Locs[i].second;
6860         Mask2[i] = Idx;
6861       }
6862
6863     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6864   }
6865
6866   if (NumLo == 3 || NumHi == 3) {
6867     // Otherwise, we must have three elements from one vector, call it X, and
6868     // one element from the other, call it Y.  First, use a shufps to build an
6869     // intermediate vector with the one element from Y and the element from X
6870     // that will be in the same half in the final destination (the indexes don't
6871     // matter). Then, use a shufps to build the final vector, taking the half
6872     // containing the element from Y from the intermediate, and the other half
6873     // from X.
6874     if (NumHi == 3) {
6875       // Normalize it so the 3 elements come from V1.
6876       CommuteVectorShuffleMask(PermMask, 4);
6877       std::swap(V1, V2);
6878     }
6879
6880     // Find the element from V2.
6881     unsigned HiIndex;
6882     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6883       int Val = PermMask[HiIndex];
6884       if (Val < 0)
6885         continue;
6886       if (Val >= 4)
6887         break;
6888     }
6889
6890     Mask1[0] = PermMask[HiIndex];
6891     Mask1[1] = -1;
6892     Mask1[2] = PermMask[HiIndex^1];
6893     Mask1[3] = -1;
6894     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6895
6896     if (HiIndex >= 2) {
6897       Mask1[0] = PermMask[0];
6898       Mask1[1] = PermMask[1];
6899       Mask1[2] = HiIndex & 1 ? 6 : 4;
6900       Mask1[3] = HiIndex & 1 ? 4 : 6;
6901       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6902     }
6903
6904     Mask1[0] = HiIndex & 1 ? 2 : 0;
6905     Mask1[1] = HiIndex & 1 ? 0 : 2;
6906     Mask1[2] = PermMask[2];
6907     Mask1[3] = PermMask[3];
6908     if (Mask1[2] >= 0)
6909       Mask1[2] += 4;
6910     if (Mask1[3] >= 0)
6911       Mask1[3] += 4;
6912     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6913   }
6914
6915   // Break it into (shuffle shuffle_hi, shuffle_lo).
6916   int LoMask[] = { -1, -1, -1, -1 };
6917   int HiMask[] = { -1, -1, -1, -1 };
6918
6919   int *MaskPtr = LoMask;
6920   unsigned MaskIdx = 0;
6921   unsigned LoIdx = 0;
6922   unsigned HiIdx = 2;
6923   for (unsigned i = 0; i != 4; ++i) {
6924     if (i == 2) {
6925       MaskPtr = HiMask;
6926       MaskIdx = 1;
6927       LoIdx = 0;
6928       HiIdx = 2;
6929     }
6930     int Idx = PermMask[i];
6931     if (Idx < 0) {
6932       Locs[i] = std::make_pair(-1, -1);
6933     } else if (Idx < 4) {
6934       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6935       MaskPtr[LoIdx] = Idx;
6936       LoIdx++;
6937     } else {
6938       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6939       MaskPtr[HiIdx] = Idx;
6940       HiIdx++;
6941     }
6942   }
6943
6944   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6945   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6946   int MaskOps[] = { -1, -1, -1, -1 };
6947   for (unsigned i = 0; i != 4; ++i)
6948     if (Locs[i].first != -1)
6949       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6950   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6951 }
6952
6953 static bool MayFoldVectorLoad(SDValue V) {
6954   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6955     V = V.getOperand(0);
6956
6957   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6958     V = V.getOperand(0);
6959   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6960       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6961     // BUILD_VECTOR (load), undef
6962     V = V.getOperand(0);
6963
6964   return MayFoldLoad(V);
6965 }
6966
6967 static
6968 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
6969   MVT VT = Op.getSimpleValueType();
6970
6971   // Canonizalize to v2f64.
6972   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6973   return DAG.getNode(ISD::BITCAST, dl, VT,
6974                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6975                                           V1, DAG));
6976 }
6977
6978 static
6979 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
6980                         bool HasSSE2) {
6981   SDValue V1 = Op.getOperand(0);
6982   SDValue V2 = Op.getOperand(1);
6983   MVT VT = Op.getSimpleValueType();
6984
6985   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6986
6987   if (HasSSE2 && VT == MVT::v2f64)
6988     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6989
6990   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6991   return DAG.getNode(ISD::BITCAST, dl, VT,
6992                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6993                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6994                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
6995 }
6996
6997 static
6998 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
6999   SDValue V1 = Op.getOperand(0);
7000   SDValue V2 = Op.getOperand(1);
7001   MVT VT = Op.getSimpleValueType();
7002
7003   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7004          "unsupported shuffle type");
7005
7006   if (V2.getOpcode() == ISD::UNDEF)
7007     V2 = V1;
7008
7009   // v4i32 or v4f32
7010   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7011 }
7012
7013 static
7014 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7015   SDValue V1 = Op.getOperand(0);
7016   SDValue V2 = Op.getOperand(1);
7017   MVT VT = Op.getSimpleValueType();
7018   unsigned NumElems = VT.getVectorNumElements();
7019
7020   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7021   // operand of these instructions is only memory, so check if there's a
7022   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7023   // same masks.
7024   bool CanFoldLoad = false;
7025
7026   // Trivial case, when V2 comes from a load.
7027   if (MayFoldVectorLoad(V2))
7028     CanFoldLoad = true;
7029
7030   // When V1 is a load, it can be folded later into a store in isel, example:
7031   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7032   //    turns into:
7033   //  (MOVLPSmr addr:$src1, VR128:$src2)
7034   // So, recognize this potential and also use MOVLPS or MOVLPD
7035   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7036     CanFoldLoad = true;
7037
7038   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7039   if (CanFoldLoad) {
7040     if (HasSSE2 && NumElems == 2)
7041       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7042
7043     if (NumElems == 4)
7044       // If we don't care about the second element, proceed to use movss.
7045       if (SVOp->getMaskElt(1) != -1)
7046         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7047   }
7048
7049   // movl and movlp will both match v2i64, but v2i64 is never matched by
7050   // movl earlier because we make it strict to avoid messing with the movlp load
7051   // folding logic (see the code above getMOVLP call). Match it here then,
7052   // this is horrible, but will stay like this until we move all shuffle
7053   // matching to x86 specific nodes. Note that for the 1st condition all
7054   // types are matched with movsd.
7055   if (HasSSE2) {
7056     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7057     // as to remove this logic from here, as much as possible
7058     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7059       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7060     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7061   }
7062
7063   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7064
7065   // Invert the operand order and use SHUFPS to match it.
7066   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7067                               getShuffleSHUFImmediate(SVOp), DAG);
7068 }
7069
7070 // Reduce a vector shuffle to zext.
7071 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7072                                     SelectionDAG &DAG) {
7073   // PMOVZX is only available from SSE41.
7074   if (!Subtarget->hasSSE41())
7075     return SDValue();
7076
7077   MVT VT = Op.getSimpleValueType();
7078
7079   // Only AVX2 support 256-bit vector integer extending.
7080   if (!Subtarget->hasInt256() && VT.is256BitVector())
7081     return SDValue();
7082
7083   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7084   SDLoc DL(Op);
7085   SDValue V1 = Op.getOperand(0);
7086   SDValue V2 = Op.getOperand(1);
7087   unsigned NumElems = VT.getVectorNumElements();
7088
7089   // Extending is an unary operation and the element type of the source vector
7090   // won't be equal to or larger than i64.
7091   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7092       VT.getVectorElementType() == MVT::i64)
7093     return SDValue();
7094
7095   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7096   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7097   while ((1U << Shift) < NumElems) {
7098     if (SVOp->getMaskElt(1U << Shift) == 1)
7099       break;
7100     Shift += 1;
7101     // The maximal ratio is 8, i.e. from i8 to i64.
7102     if (Shift > 3)
7103       return SDValue();
7104   }
7105
7106   // Check the shuffle mask.
7107   unsigned Mask = (1U << Shift) - 1;
7108   for (unsigned i = 0; i != NumElems; ++i) {
7109     int EltIdx = SVOp->getMaskElt(i);
7110     if ((i & Mask) != 0 && EltIdx != -1)
7111       return SDValue();
7112     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7113       return SDValue();
7114   }
7115
7116   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7117   MVT NeVT = MVT::getIntegerVT(NBits);
7118   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7119
7120   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7121     return SDValue();
7122
7123   // Simplify the operand as it's prepared to be fed into shuffle.
7124   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7125   if (V1.getOpcode() == ISD::BITCAST &&
7126       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7127       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7128       V1.getOperand(0).getOperand(0)
7129         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7130     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7131     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7132     ConstantSDNode *CIdx =
7133       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7134     // If it's foldable, i.e. normal load with single use, we will let code
7135     // selection to fold it. Otherwise, we will short the conversion sequence.
7136     if (CIdx && CIdx->getZExtValue() == 0 &&
7137         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7138       MVT FullVT = V.getSimpleValueType();
7139       MVT V1VT = V1.getSimpleValueType();
7140       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7141         // The "ext_vec_elt" node is wider than the result node.
7142         // In this case we should extract subvector from V.
7143         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7144         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7145         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7146                                         FullVT.getVectorNumElements()/Ratio);
7147         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7148                         DAG.getIntPtrConstant(0));
7149       }
7150       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7151     }
7152   }
7153
7154   return DAG.getNode(ISD::BITCAST, DL, VT,
7155                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7156 }
7157
7158 static SDValue
7159 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7160                        SelectionDAG &DAG) {
7161   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7162   MVT VT = Op.getSimpleValueType();
7163   SDLoc dl(Op);
7164   SDValue V1 = Op.getOperand(0);
7165   SDValue V2 = Op.getOperand(1);
7166
7167   if (isZeroShuffle(SVOp))
7168     return getZeroVector(VT, Subtarget, DAG, dl);
7169
7170   // Handle splat operations
7171   if (SVOp->isSplat()) {
7172     // Use vbroadcast whenever the splat comes from a foldable load
7173     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7174     if (Broadcast.getNode())
7175       return Broadcast;
7176   }
7177
7178   // Check integer expanding shuffles.
7179   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7180   if (NewOp.getNode())
7181     return NewOp;
7182
7183   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7184   // do it!
7185   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7186       VT == MVT::v16i16 || VT == MVT::v32i8) {
7187     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7188     if (NewOp.getNode())
7189       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7190   } else if ((VT == MVT::v4i32 ||
7191              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7192     // FIXME: Figure out a cleaner way to do this.
7193     // Try to make use of movq to zero out the top part.
7194     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7195       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7196       if (NewOp.getNode()) {
7197         MVT NewVT = NewOp.getSimpleValueType();
7198         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7199                                NewVT, true, false))
7200           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7201                               DAG, Subtarget, dl);
7202       }
7203     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7204       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7205       if (NewOp.getNode()) {
7206         MVT NewVT = NewOp.getSimpleValueType();
7207         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7208           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7209                               DAG, Subtarget, dl);
7210       }
7211     }
7212   }
7213   return SDValue();
7214 }
7215
7216 SDValue
7217 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7218   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7219   SDValue V1 = Op.getOperand(0);
7220   SDValue V2 = Op.getOperand(1);
7221   MVT VT = Op.getSimpleValueType();
7222   SDLoc dl(Op);
7223   unsigned NumElems = VT.getVectorNumElements();
7224   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7225   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7226   bool V1IsSplat = false;
7227   bool V2IsSplat = false;
7228   bool HasSSE2 = Subtarget->hasSSE2();
7229   bool HasFp256    = Subtarget->hasFp256();
7230   bool HasInt256   = Subtarget->hasInt256();
7231   MachineFunction &MF = DAG.getMachineFunction();
7232   bool OptForSize = MF.getFunction()->getAttributes().
7233     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7234
7235   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7236
7237   if (V1IsUndef && V2IsUndef)
7238     return DAG.getUNDEF(VT);
7239
7240   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7241
7242   // Vector shuffle lowering takes 3 steps:
7243   //
7244   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7245   //    narrowing and commutation of operands should be handled.
7246   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7247   //    shuffle nodes.
7248   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7249   //    so the shuffle can be broken into other shuffles and the legalizer can
7250   //    try the lowering again.
7251   //
7252   // The general idea is that no vector_shuffle operation should be left to
7253   // be matched during isel, all of them must be converted to a target specific
7254   // node here.
7255
7256   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7257   // narrowing and commutation of operands should be handled. The actual code
7258   // doesn't include all of those, work in progress...
7259   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7260   if (NewOp.getNode())
7261     return NewOp;
7262
7263   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7264
7265   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7266   // unpckh_undef). Only use pshufd if speed is more important than size.
7267   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7268     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7269   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7270     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7271
7272   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7273       V2IsUndef && MayFoldVectorLoad(V1))
7274     return getMOVDDup(Op, dl, V1, DAG);
7275
7276   if (isMOVHLPS_v_undef_Mask(M, VT))
7277     return getMOVHighToLow(Op, dl, DAG);
7278
7279   // Use to match splats
7280   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7281       (VT == MVT::v2f64 || VT == MVT::v2i64))
7282     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7283
7284   if (isPSHUFDMask(M, VT)) {
7285     // The actual implementation will match the mask in the if above and then
7286     // during isel it can match several different instructions, not only pshufd
7287     // as its name says, sad but true, emulate the behavior for now...
7288     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7289       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7290
7291     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7292
7293     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7294       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7295
7296     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7297       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7298                                   DAG);
7299
7300     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7301                                 TargetMask, DAG);
7302   }
7303
7304   if (isPALIGNRMask(M, VT, Subtarget))
7305     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7306                                 getShufflePALIGNRImmediate(SVOp),
7307                                 DAG);
7308
7309   // Check if this can be converted into a logical shift.
7310   bool isLeft = false;
7311   unsigned ShAmt = 0;
7312   SDValue ShVal;
7313   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7314   if (isShift && ShVal.hasOneUse()) {
7315     // If the shifted value has multiple uses, it may be cheaper to use
7316     // v_set0 + movlhps or movhlps, etc.
7317     MVT EltVT = VT.getVectorElementType();
7318     ShAmt *= EltVT.getSizeInBits();
7319     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7320   }
7321
7322   if (isMOVLMask(M, VT)) {
7323     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7324       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7325     if (!isMOVLPMask(M, VT)) {
7326       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7327         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7328
7329       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7330         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7331     }
7332   }
7333
7334   // FIXME: fold these into legal mask.
7335   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7336     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7337
7338   if (isMOVHLPSMask(M, VT))
7339     return getMOVHighToLow(Op, dl, DAG);
7340
7341   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7342     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7343
7344   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7345     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7346
7347   if (isMOVLPMask(M, VT))
7348     return getMOVLP(Op, dl, DAG, HasSSE2);
7349
7350   if (ShouldXformToMOVHLPS(M, VT) ||
7351       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7352     return CommuteVectorShuffle(SVOp, DAG);
7353
7354   if (isShift) {
7355     // No better options. Use a vshldq / vsrldq.
7356     MVT EltVT = VT.getVectorElementType();
7357     ShAmt *= EltVT.getSizeInBits();
7358     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7359   }
7360
7361   bool Commuted = false;
7362   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7363   // 1,1,1,1 -> v8i16 though.
7364   V1IsSplat = isSplatVector(V1.getNode());
7365   V2IsSplat = isSplatVector(V2.getNode());
7366
7367   // Canonicalize the splat or undef, if present, to be on the RHS.
7368   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7369     CommuteVectorShuffleMask(M, NumElems);
7370     std::swap(V1, V2);
7371     std::swap(V1IsSplat, V2IsSplat);
7372     Commuted = true;
7373   }
7374
7375   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7376     // Shuffling low element of v1 into undef, just return v1.
7377     if (V2IsUndef)
7378       return V1;
7379     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7380     // the instruction selector will not match, so get a canonical MOVL with
7381     // swapped operands to undo the commute.
7382     return getMOVL(DAG, dl, VT, V2, V1);
7383   }
7384
7385   if (isUNPCKLMask(M, VT, HasInt256))
7386     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7387
7388   if (isUNPCKHMask(M, VT, HasInt256))
7389     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7390
7391   if (V2IsSplat) {
7392     // Normalize mask so all entries that point to V2 points to its first
7393     // element then try to match unpck{h|l} again. If match, return a
7394     // new vector_shuffle with the corrected mask.p
7395     SmallVector<int, 8> NewMask(M.begin(), M.end());
7396     NormalizeMask(NewMask, NumElems);
7397     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7398       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7399     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7400       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7401   }
7402
7403   if (Commuted) {
7404     // Commute is back and try unpck* again.
7405     // FIXME: this seems wrong.
7406     CommuteVectorShuffleMask(M, NumElems);
7407     std::swap(V1, V2);
7408     std::swap(V1IsSplat, V2IsSplat);
7409     Commuted = false;
7410
7411     if (isUNPCKLMask(M, VT, HasInt256))
7412       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7413
7414     if (isUNPCKHMask(M, VT, HasInt256))
7415       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7416   }
7417
7418   // Normalize the node to match x86 shuffle ops if needed
7419   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7420     return CommuteVectorShuffle(SVOp, DAG);
7421
7422   // The checks below are all present in isShuffleMaskLegal, but they are
7423   // inlined here right now to enable us to directly emit target specific
7424   // nodes, and remove one by one until they don't return Op anymore.
7425
7426   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7427       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7428     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7429       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7430   }
7431
7432   if (isPSHUFHWMask(M, VT, HasInt256))
7433     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7434                                 getShufflePSHUFHWImmediate(SVOp),
7435                                 DAG);
7436
7437   if (isPSHUFLWMask(M, VT, HasInt256))
7438     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7439                                 getShufflePSHUFLWImmediate(SVOp),
7440                                 DAG);
7441
7442   if (isSHUFPMask(M, VT))
7443     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7444                                 getShuffleSHUFImmediate(SVOp), DAG);
7445
7446   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7447     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7448   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7449     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7450
7451   //===--------------------------------------------------------------------===//
7452   // Generate target specific nodes for 128 or 256-bit shuffles only
7453   // supported in the AVX instruction set.
7454   //
7455
7456   // Handle VMOVDDUPY permutations
7457   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7458     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7459
7460   // Handle VPERMILPS/D* permutations
7461   if (isVPERMILPMask(M, VT)) {
7462     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7463       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7464                                   getShuffleSHUFImmediate(SVOp), DAG);
7465     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7466                                 getShuffleSHUFImmediate(SVOp), DAG);
7467   }
7468
7469   // Handle VPERM2F128/VPERM2I128 permutations
7470   if (isVPERM2X128Mask(M, VT, HasFp256))
7471     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7472                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7473
7474   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7475   if (BlendOp.getNode())
7476     return BlendOp;
7477
7478   unsigned Imm8;
7479   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7480     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7481
7482   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7483       VT.is512BitVector()) {
7484     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7485     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7486     SmallVector<SDValue, 16> permclMask;
7487     for (unsigned i = 0; i != NumElems; ++i) {
7488       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7489     }
7490
7491     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7492                                 &permclMask[0], NumElems);
7493     if (V2IsUndef)
7494       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7495       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7496                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7497     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7498                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7499   }
7500
7501   //===--------------------------------------------------------------------===//
7502   // Since no target specific shuffle was selected for this generic one,
7503   // lower it into other known shuffles. FIXME: this isn't true yet, but
7504   // this is the plan.
7505   //
7506
7507   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7508   if (VT == MVT::v8i16) {
7509     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7510     if (NewOp.getNode())
7511       return NewOp;
7512   }
7513
7514   if (VT == MVT::v16i8) {
7515     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7516     if (NewOp.getNode())
7517       return NewOp;
7518   }
7519
7520   if (VT == MVT::v32i8) {
7521     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7522     if (NewOp.getNode())
7523       return NewOp;
7524   }
7525
7526   // Handle all 128-bit wide vectors with 4 elements, and match them with
7527   // several different shuffle types.
7528   if (NumElems == 4 && VT.is128BitVector())
7529     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7530
7531   // Handle general 256-bit shuffles
7532   if (VT.is256BitVector())
7533     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7534
7535   return SDValue();
7536 }
7537
7538 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7539   MVT VT = Op.getSimpleValueType();
7540   SDLoc dl(Op);
7541
7542   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7543     return SDValue();
7544
7545   if (VT.getSizeInBits() == 8) {
7546     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7547                                   Op.getOperand(0), Op.getOperand(1));
7548     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7549                                   DAG.getValueType(VT));
7550     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7551   }
7552
7553   if (VT.getSizeInBits() == 16) {
7554     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7555     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7556     if (Idx == 0)
7557       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7558                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7559                                      DAG.getNode(ISD::BITCAST, dl,
7560                                                  MVT::v4i32,
7561                                                  Op.getOperand(0)),
7562                                      Op.getOperand(1)));
7563     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7564                                   Op.getOperand(0), Op.getOperand(1));
7565     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7566                                   DAG.getValueType(VT));
7567     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7568   }
7569
7570   if (VT == MVT::f32) {
7571     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7572     // the result back to FR32 register. It's only worth matching if the
7573     // result has a single use which is a store or a bitcast to i32.  And in
7574     // the case of a store, it's not worth it if the index is a constant 0,
7575     // because a MOVSSmr can be used instead, which is smaller and faster.
7576     if (!Op.hasOneUse())
7577       return SDValue();
7578     SDNode *User = *Op.getNode()->use_begin();
7579     if ((User->getOpcode() != ISD::STORE ||
7580          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7581           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7582         (User->getOpcode() != ISD::BITCAST ||
7583          User->getValueType(0) != MVT::i32))
7584       return SDValue();
7585     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7586                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7587                                               Op.getOperand(0)),
7588                                               Op.getOperand(1));
7589     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7590   }
7591
7592   if (VT == MVT::i32 || VT == MVT::i64) {
7593     // ExtractPS/pextrq works with constant index.
7594     if (isa<ConstantSDNode>(Op.getOperand(1)))
7595       return Op;
7596   }
7597   return SDValue();
7598 }
7599
7600 SDValue
7601 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7602                                            SelectionDAG &DAG) const {
7603   SDLoc dl(Op);
7604   if (!isa<ConstantSDNode>(Op.getOperand(1)))
7605     return SDValue();
7606
7607   SDValue Vec = Op.getOperand(0);
7608   MVT VecVT = Vec.getSimpleValueType();
7609
7610   // If this is a 256-bit vector result, first extract the 128-bit vector and
7611   // then extract the element from the 128-bit vector.
7612   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7613     SDValue Idx = Op.getOperand(1);
7614     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7615
7616     // Get the 128-bit vector.
7617     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7618     MVT EltVT = VecVT.getVectorElementType();
7619
7620     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7621
7622     //if (IdxVal >= NumElems/2)
7623     //  IdxVal -= NumElems/2;
7624     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7625     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7626                        DAG.getConstant(IdxVal, MVT::i32));
7627   }
7628
7629   assert(VecVT.is128BitVector() && "Unexpected vector length");
7630
7631   if (Subtarget->hasSSE41()) {
7632     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7633     if (Res.getNode())
7634       return Res;
7635   }
7636
7637   MVT VT = Op.getSimpleValueType();
7638   // TODO: handle v16i8.
7639   if (VT.getSizeInBits() == 16) {
7640     SDValue Vec = Op.getOperand(0);
7641     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7642     if (Idx == 0)
7643       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7644                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7645                                      DAG.getNode(ISD::BITCAST, dl,
7646                                                  MVT::v4i32, Vec),
7647                                      Op.getOperand(1)));
7648     // Transform it so it match pextrw which produces a 32-bit result.
7649     MVT EltVT = MVT::i32;
7650     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7651                                   Op.getOperand(0), Op.getOperand(1));
7652     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7653                                   DAG.getValueType(VT));
7654     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7655   }
7656
7657   if (VT.getSizeInBits() == 32) {
7658     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7659     if (Idx == 0)
7660       return Op;
7661
7662     // SHUFPS the element to the lowest double word, then movss.
7663     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7664     MVT VVT = Op.getOperand(0).getSimpleValueType();
7665     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7666                                        DAG.getUNDEF(VVT), Mask);
7667     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7668                        DAG.getIntPtrConstant(0));
7669   }
7670
7671   if (VT.getSizeInBits() == 64) {
7672     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7673     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7674     //        to match extract_elt for f64.
7675     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7676     if (Idx == 0)
7677       return Op;
7678
7679     // UNPCKHPD the element to the lowest double word, then movsd.
7680     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7681     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7682     int Mask[2] = { 1, -1 };
7683     MVT VVT = Op.getOperand(0).getSimpleValueType();
7684     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7685                                        DAG.getUNDEF(VVT), Mask);
7686     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7687                        DAG.getIntPtrConstant(0));
7688   }
7689
7690   return SDValue();
7691 }
7692
7693 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7694   MVT VT = Op.getSimpleValueType();
7695   MVT EltVT = VT.getVectorElementType();
7696   SDLoc dl(Op);
7697
7698   SDValue N0 = Op.getOperand(0);
7699   SDValue N1 = Op.getOperand(1);
7700   SDValue N2 = Op.getOperand(2);
7701
7702   if (!VT.is128BitVector())
7703     return SDValue();
7704
7705   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7706       isa<ConstantSDNode>(N2)) {
7707     unsigned Opc;
7708     if (VT == MVT::v8i16)
7709       Opc = X86ISD::PINSRW;
7710     else if (VT == MVT::v16i8)
7711       Opc = X86ISD::PINSRB;
7712     else
7713       Opc = X86ISD::PINSRB;
7714
7715     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7716     // argument.
7717     if (N1.getValueType() != MVT::i32)
7718       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7719     if (N2.getValueType() != MVT::i32)
7720       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7721     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7722   }
7723
7724   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7725     // Bits [7:6] of the constant are the source select.  This will always be
7726     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7727     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7728     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7729     // Bits [5:4] of the constant are the destination select.  This is the
7730     //  value of the incoming immediate.
7731     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7732     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7733     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7734     // Create this as a scalar to vector..
7735     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7736     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7737   }
7738
7739   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7740     // PINSR* works with constant index.
7741     return Op;
7742   }
7743   return SDValue();
7744 }
7745
7746 SDValue
7747 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7748   MVT VT = Op.getSimpleValueType();
7749   MVT EltVT = VT.getVectorElementType();
7750
7751   SDLoc dl(Op);
7752   SDValue N0 = Op.getOperand(0);
7753   SDValue N1 = Op.getOperand(1);
7754   SDValue N2 = Op.getOperand(2);
7755
7756   // If this is a 256-bit vector result, first extract the 128-bit vector,
7757   // insert the element into the extracted half and then place it back.
7758   if (VT.is256BitVector() || VT.is512BitVector()) {
7759     if (!isa<ConstantSDNode>(N2))
7760       return SDValue();
7761
7762     // Get the desired 128-bit vector half.
7763     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7764     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7765
7766     // Insert the element into the desired half.
7767     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7768     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7769
7770     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7771                     DAG.getConstant(IdxIn128, MVT::i32));
7772
7773     // Insert the changed part back to the 256-bit vector
7774     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7775   }
7776
7777   if (Subtarget->hasSSE41())
7778     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7779
7780   if (EltVT == MVT::i8)
7781     return SDValue();
7782
7783   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7784     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7785     // as its second argument.
7786     if (N1.getValueType() != MVT::i32)
7787       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7788     if (N2.getValueType() != MVT::i32)
7789       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7790     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7791   }
7792   return SDValue();
7793 }
7794
7795 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7796   SDLoc dl(Op);
7797   MVT OpVT = Op.getSimpleValueType();
7798
7799   // If this is a 256-bit vector result, first insert into a 128-bit
7800   // vector and then insert into the 256-bit vector.
7801   if (!OpVT.is128BitVector()) {
7802     // Insert into a 128-bit vector.
7803     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7804     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7805                                  OpVT.getVectorNumElements() / SizeFactor);
7806
7807     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7808
7809     // Insert the 128-bit vector.
7810     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7811   }
7812
7813   if (OpVT == MVT::v1i64 &&
7814       Op.getOperand(0).getValueType() == MVT::i64)
7815     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7816
7817   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7818   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7819   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7820                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7821 }
7822
7823 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7824 // a simple subregister reference or explicit instructions to grab
7825 // upper bits of a vector.
7826 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7827                                       SelectionDAG &DAG) {
7828   SDLoc dl(Op);
7829   SDValue In =  Op.getOperand(0);
7830   SDValue Idx = Op.getOperand(1);
7831   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7832   MVT ResVT   = Op.getSimpleValueType();
7833   MVT InVT    = In.getSimpleValueType();
7834
7835   if (Subtarget->hasFp256()) {
7836     if (ResVT.is128BitVector() &&
7837         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7838         isa<ConstantSDNode>(Idx)) {
7839       return Extract128BitVector(In, IdxVal, DAG, dl);
7840     }
7841     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7842         isa<ConstantSDNode>(Idx)) {
7843       return Extract256BitVector(In, IdxVal, DAG, dl);
7844     }
7845   }
7846   return SDValue();
7847 }
7848
7849 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7850 // simple superregister reference or explicit instructions to insert
7851 // the upper bits of a vector.
7852 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7853                                      SelectionDAG &DAG) {
7854   if (Subtarget->hasFp256()) {
7855     SDLoc dl(Op.getNode());
7856     SDValue Vec = Op.getNode()->getOperand(0);
7857     SDValue SubVec = Op.getNode()->getOperand(1);
7858     SDValue Idx = Op.getNode()->getOperand(2);
7859
7860     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7861          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7862         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
7863         isa<ConstantSDNode>(Idx)) {
7864       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7865       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7866     }
7867
7868     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7869         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
7870         isa<ConstantSDNode>(Idx)) {
7871       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7872       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7873     }
7874   }
7875   return SDValue();
7876 }
7877
7878 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7879 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7880 // one of the above mentioned nodes. It has to be wrapped because otherwise
7881 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7882 // be used to form addressing mode. These wrapped nodes will be selected
7883 // into MOV32ri.
7884 SDValue
7885 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7886   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7887
7888   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7889   // global base reg.
7890   unsigned char OpFlag = 0;
7891   unsigned WrapperKind = X86ISD::Wrapper;
7892   CodeModel::Model M = getTargetMachine().getCodeModel();
7893
7894   if (Subtarget->isPICStyleRIPRel() &&
7895       (M == CodeModel::Small || M == CodeModel::Kernel))
7896     WrapperKind = X86ISD::WrapperRIP;
7897   else if (Subtarget->isPICStyleGOT())
7898     OpFlag = X86II::MO_GOTOFF;
7899   else if (Subtarget->isPICStyleStubPIC())
7900     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7901
7902   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7903                                              CP->getAlignment(),
7904                                              CP->getOffset(), OpFlag);
7905   SDLoc DL(CP);
7906   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7907   // With PIC, the address is actually $g + Offset.
7908   if (OpFlag) {
7909     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7910                          DAG.getNode(X86ISD::GlobalBaseReg,
7911                                      SDLoc(), getPointerTy()),
7912                          Result);
7913   }
7914
7915   return Result;
7916 }
7917
7918 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7919   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7920
7921   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7922   // global base reg.
7923   unsigned char OpFlag = 0;
7924   unsigned WrapperKind = X86ISD::Wrapper;
7925   CodeModel::Model M = getTargetMachine().getCodeModel();
7926
7927   if (Subtarget->isPICStyleRIPRel() &&
7928       (M == CodeModel::Small || M == CodeModel::Kernel))
7929     WrapperKind = X86ISD::WrapperRIP;
7930   else if (Subtarget->isPICStyleGOT())
7931     OpFlag = X86II::MO_GOTOFF;
7932   else if (Subtarget->isPICStyleStubPIC())
7933     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7934
7935   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7936                                           OpFlag);
7937   SDLoc DL(JT);
7938   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7939
7940   // With PIC, the address is actually $g + Offset.
7941   if (OpFlag)
7942     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7943                          DAG.getNode(X86ISD::GlobalBaseReg,
7944                                      SDLoc(), getPointerTy()),
7945                          Result);
7946
7947   return Result;
7948 }
7949
7950 SDValue
7951 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7952   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7953
7954   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7955   // global base reg.
7956   unsigned char OpFlag = 0;
7957   unsigned WrapperKind = X86ISD::Wrapper;
7958   CodeModel::Model M = getTargetMachine().getCodeModel();
7959
7960   if (Subtarget->isPICStyleRIPRel() &&
7961       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7962     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7963       OpFlag = X86II::MO_GOTPCREL;
7964     WrapperKind = X86ISD::WrapperRIP;
7965   } else if (Subtarget->isPICStyleGOT()) {
7966     OpFlag = X86II::MO_GOT;
7967   } else if (Subtarget->isPICStyleStubPIC()) {
7968     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7969   } else if (Subtarget->isPICStyleStubNoDynamic()) {
7970     OpFlag = X86II::MO_DARWIN_NONLAZY;
7971   }
7972
7973   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
7974
7975   SDLoc DL(Op);
7976   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7977
7978   // With PIC, the address is actually $g + Offset.
7979   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
7980       !Subtarget->is64Bit()) {
7981     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7982                          DAG.getNode(X86ISD::GlobalBaseReg,
7983                                      SDLoc(), getPointerTy()),
7984                          Result);
7985   }
7986
7987   // For symbols that require a load from a stub to get the address, emit the
7988   // load.
7989   if (isGlobalStubReference(OpFlag))
7990     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7991                          MachinePointerInfo::getGOT(), false, false, false, 0);
7992
7993   return Result;
7994 }
7995
7996 SDValue
7997 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
7998   // Create the TargetBlockAddressAddress node.
7999   unsigned char OpFlags =
8000     Subtarget->ClassifyBlockAddressReference();
8001   CodeModel::Model M = getTargetMachine().getCodeModel();
8002   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8003   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8004   SDLoc dl(Op);
8005   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8006                                              OpFlags);
8007
8008   if (Subtarget->isPICStyleRIPRel() &&
8009       (M == CodeModel::Small || M == CodeModel::Kernel))
8010     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8011   else
8012     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8013
8014   // With PIC, the address is actually $g + Offset.
8015   if (isGlobalRelativeToPICBase(OpFlags)) {
8016     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8017                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8018                          Result);
8019   }
8020
8021   return Result;
8022 }
8023
8024 SDValue
8025 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8026                                       int64_t Offset, SelectionDAG &DAG) const {
8027   // Create the TargetGlobalAddress node, folding in the constant
8028   // offset if it is legal.
8029   unsigned char OpFlags =
8030     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8031   CodeModel::Model M = getTargetMachine().getCodeModel();
8032   SDValue Result;
8033   if (OpFlags == X86II::MO_NO_FLAG &&
8034       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8035     // A direct static reference to a global.
8036     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8037     Offset = 0;
8038   } else {
8039     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8040   }
8041
8042   if (Subtarget->isPICStyleRIPRel() &&
8043       (M == CodeModel::Small || M == CodeModel::Kernel))
8044     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8045   else
8046     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8047
8048   // With PIC, the address is actually $g + Offset.
8049   if (isGlobalRelativeToPICBase(OpFlags)) {
8050     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8051                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8052                          Result);
8053   }
8054
8055   // For globals that require a load from a stub to get the address, emit the
8056   // load.
8057   if (isGlobalStubReference(OpFlags))
8058     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8059                          MachinePointerInfo::getGOT(), false, false, false, 0);
8060
8061   // If there was a non-zero offset that we didn't fold, create an explicit
8062   // addition for it.
8063   if (Offset != 0)
8064     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8065                          DAG.getConstant(Offset, getPointerTy()));
8066
8067   return Result;
8068 }
8069
8070 SDValue
8071 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8072   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8073   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8074   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8075 }
8076
8077 static SDValue
8078 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8079            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8080            unsigned char OperandFlags, bool LocalDynamic = false) {
8081   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8082   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8083   SDLoc dl(GA);
8084   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8085                                            GA->getValueType(0),
8086                                            GA->getOffset(),
8087                                            OperandFlags);
8088
8089   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8090                                            : X86ISD::TLSADDR;
8091
8092   if (InFlag) {
8093     SDValue Ops[] = { Chain,  TGA, *InFlag };
8094     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8095   } else {
8096     SDValue Ops[]  = { Chain, TGA };
8097     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8098   }
8099
8100   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8101   MFI->setAdjustsStack(true);
8102
8103   SDValue Flag = Chain.getValue(1);
8104   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8105 }
8106
8107 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8108 static SDValue
8109 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8110                                 const EVT PtrVT) {
8111   SDValue InFlag;
8112   SDLoc dl(GA);  // ? function entry point might be better
8113   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8114                                    DAG.getNode(X86ISD::GlobalBaseReg,
8115                                                SDLoc(), PtrVT), InFlag);
8116   InFlag = Chain.getValue(1);
8117
8118   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8119 }
8120
8121 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8122 static SDValue
8123 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8124                                 const EVT PtrVT) {
8125   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8126                     X86::RAX, X86II::MO_TLSGD);
8127 }
8128
8129 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8130                                            SelectionDAG &DAG,
8131                                            const EVT PtrVT,
8132                                            bool is64Bit) {
8133   SDLoc dl(GA);
8134
8135   // Get the start address of the TLS block for this module.
8136   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8137       .getInfo<X86MachineFunctionInfo>();
8138   MFI->incNumLocalDynamicTLSAccesses();
8139
8140   SDValue Base;
8141   if (is64Bit) {
8142     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8143                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8144   } else {
8145     SDValue InFlag;
8146     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8147         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8148     InFlag = Chain.getValue(1);
8149     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8150                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8151   }
8152
8153   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8154   // of Base.
8155
8156   // Build x@dtpoff.
8157   unsigned char OperandFlags = X86II::MO_DTPOFF;
8158   unsigned WrapperKind = X86ISD::Wrapper;
8159   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8160                                            GA->getValueType(0),
8161                                            GA->getOffset(), OperandFlags);
8162   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8163
8164   // Add x@dtpoff with the base.
8165   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8166 }
8167
8168 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8169 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8170                                    const EVT PtrVT, TLSModel::Model model,
8171                                    bool is64Bit, bool isPIC) {
8172   SDLoc dl(GA);
8173
8174   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8175   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8176                                                          is64Bit ? 257 : 256));
8177
8178   SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
8179                                       DAG.getIntPtrConstant(0),
8180                                       MachinePointerInfo(Ptr),
8181                                       false, false, false, 0);
8182
8183   unsigned char OperandFlags = 0;
8184   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8185   // initialexec.
8186   unsigned WrapperKind = X86ISD::Wrapper;
8187   if (model == TLSModel::LocalExec) {
8188     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8189   } else if (model == TLSModel::InitialExec) {
8190     if (is64Bit) {
8191       OperandFlags = X86II::MO_GOTTPOFF;
8192       WrapperKind = X86ISD::WrapperRIP;
8193     } else {
8194       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8195     }
8196   } else {
8197     llvm_unreachable("Unexpected model");
8198   }
8199
8200   // emit "addl x@ntpoff,%eax" (local exec)
8201   // or "addl x@indntpoff,%eax" (initial exec)
8202   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8203   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8204                                            GA->getValueType(0),
8205                                            GA->getOffset(), OperandFlags);
8206   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8207
8208   if (model == TLSModel::InitialExec) {
8209     if (isPIC && !is64Bit) {
8210       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8211                           DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8212                            Offset);
8213     }
8214
8215     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8216                          MachinePointerInfo::getGOT(), false, false, false,
8217                          0);
8218   }
8219
8220   // The address of the thread local variable is the add of the thread
8221   // pointer with the offset of the variable.
8222   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8223 }
8224
8225 SDValue
8226 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8227
8228   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8229   const GlobalValue *GV = GA->getGlobal();
8230
8231   if (Subtarget->isTargetELF()) {
8232     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8233
8234     switch (model) {
8235       case TLSModel::GeneralDynamic:
8236         if (Subtarget->is64Bit())
8237           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8238         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8239       case TLSModel::LocalDynamic:
8240         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8241                                            Subtarget->is64Bit());
8242       case TLSModel::InitialExec:
8243       case TLSModel::LocalExec:
8244         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8245                                    Subtarget->is64Bit(),
8246                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8247     }
8248     llvm_unreachable("Unknown TLS model.");
8249   }
8250
8251   if (Subtarget->isTargetDarwin()) {
8252     // Darwin only has one model of TLS.  Lower to that.
8253     unsigned char OpFlag = 0;
8254     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8255                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8256
8257     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8258     // global base reg.
8259     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8260                   !Subtarget->is64Bit();
8261     if (PIC32)
8262       OpFlag = X86II::MO_TLVP_PIC_BASE;
8263     else
8264       OpFlag = X86II::MO_TLVP;
8265     SDLoc DL(Op);
8266     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8267                                                 GA->getValueType(0),
8268                                                 GA->getOffset(), OpFlag);
8269     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8270
8271     // With PIC32, the address is actually $g + Offset.
8272     if (PIC32)
8273       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8274                            DAG.getNode(X86ISD::GlobalBaseReg,
8275                                        SDLoc(), getPointerTy()),
8276                            Offset);
8277
8278     // Lowering the machine isd will make sure everything is in the right
8279     // location.
8280     SDValue Chain = DAG.getEntryNode();
8281     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8282     SDValue Args[] = { Chain, Offset };
8283     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8284
8285     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8286     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8287     MFI->setAdjustsStack(true);
8288
8289     // And our return value (tls address) is in the standard call return value
8290     // location.
8291     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8292     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8293                               Chain.getValue(1));
8294   }
8295
8296   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8297     // Just use the implicit TLS architecture
8298     // Need to generate someting similar to:
8299     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8300     //                                  ; from TEB
8301     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8302     //   mov     rcx, qword [rdx+rcx*8]
8303     //   mov     eax, .tls$:tlsvar
8304     //   [rax+rcx] contains the address
8305     // Windows 64bit: gs:0x58
8306     // Windows 32bit: fs:__tls_array
8307
8308     // If GV is an alias then use the aliasee for determining
8309     // thread-localness.
8310     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8311       GV = GA->resolveAliasedGlobal(false);
8312     SDLoc dl(GA);
8313     SDValue Chain = DAG.getEntryNode();
8314
8315     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8316     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8317     // use its literal value of 0x2C.
8318     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8319                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8320                                                              256)
8321                                         : Type::getInt32PtrTy(*DAG.getContext(),
8322                                                               257));
8323
8324     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8325       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8326         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8327
8328     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8329                                         MachinePointerInfo(Ptr),
8330                                         false, false, false, 0);
8331
8332     // Load the _tls_index variable
8333     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8334     if (Subtarget->is64Bit())
8335       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8336                            IDX, MachinePointerInfo(), MVT::i32,
8337                            false, false, 0);
8338     else
8339       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8340                         false, false, false, 0);
8341
8342     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8343                                     getPointerTy());
8344     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8345
8346     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8347     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8348                       false, false, false, 0);
8349
8350     // Get the offset of start of .tls section
8351     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8352                                              GA->getValueType(0),
8353                                              GA->getOffset(), X86II::MO_SECREL);
8354     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8355
8356     // The address of the thread local variable is the add of the thread
8357     // pointer with the offset of the variable.
8358     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8359   }
8360
8361   llvm_unreachable("TLS not implemented for this target.");
8362 }
8363
8364 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8365 /// and take a 2 x i32 value to shift plus a shift amount.
8366 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
8367   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8368   EVT VT = Op.getValueType();
8369   unsigned VTBits = VT.getSizeInBits();
8370   SDLoc dl(Op);
8371   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8372   SDValue ShOpLo = Op.getOperand(0);
8373   SDValue ShOpHi = Op.getOperand(1);
8374   SDValue ShAmt  = Op.getOperand(2);
8375   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8376                                      DAG.getConstant(VTBits - 1, MVT::i8))
8377                        : DAG.getConstant(0, VT);
8378
8379   SDValue Tmp2, Tmp3;
8380   if (Op.getOpcode() == ISD::SHL_PARTS) {
8381     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8382     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
8383   } else {
8384     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8385     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
8386   }
8387
8388   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8389                                 DAG.getConstant(VTBits, MVT::i8));
8390   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8391                              AndNode, DAG.getConstant(0, MVT::i8));
8392
8393   SDValue Hi, Lo;
8394   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8395   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8396   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8397
8398   if (Op.getOpcode() == ISD::SHL_PARTS) {
8399     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8400     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8401   } else {
8402     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8403     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8404   }
8405
8406   SDValue Ops[2] = { Lo, Hi };
8407   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8408 }
8409
8410 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8411                                            SelectionDAG &DAG) const {
8412   EVT SrcVT = Op.getOperand(0).getValueType();
8413
8414   if (SrcVT.isVector())
8415     return SDValue();
8416
8417   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
8418          "Unknown SINT_TO_FP to lower!");
8419
8420   // These are really Legal; return the operand so the caller accepts it as
8421   // Legal.
8422   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8423     return Op;
8424   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8425       Subtarget->is64Bit()) {
8426     return Op;
8427   }
8428
8429   SDLoc dl(Op);
8430   unsigned Size = SrcVT.getSizeInBits()/8;
8431   MachineFunction &MF = DAG.getMachineFunction();
8432   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8433   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8434   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8435                                StackSlot,
8436                                MachinePointerInfo::getFixedStack(SSFI),
8437                                false, false, 0);
8438   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8439 }
8440
8441 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8442                                      SDValue StackSlot,
8443                                      SelectionDAG &DAG) const {
8444   // Build the FILD
8445   SDLoc DL(Op);
8446   SDVTList Tys;
8447   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8448   if (useSSE)
8449     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8450   else
8451     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8452
8453   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8454
8455   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8456   MachineMemOperand *MMO;
8457   if (FI) {
8458     int SSFI = FI->getIndex();
8459     MMO =
8460       DAG.getMachineFunction()
8461       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8462                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8463   } else {
8464     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8465     StackSlot = StackSlot.getOperand(1);
8466   }
8467   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8468   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8469                                            X86ISD::FILD, DL,
8470                                            Tys, Ops, array_lengthof(Ops),
8471                                            SrcVT, MMO);
8472
8473   if (useSSE) {
8474     Chain = Result.getValue(1);
8475     SDValue InFlag = Result.getValue(2);
8476
8477     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8478     // shouldn't be necessary except that RFP cannot be live across
8479     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8480     MachineFunction &MF = DAG.getMachineFunction();
8481     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8482     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8483     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8484     Tys = DAG.getVTList(MVT::Other);
8485     SDValue Ops[] = {
8486       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8487     };
8488     MachineMemOperand *MMO =
8489       DAG.getMachineFunction()
8490       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8491                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8492
8493     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8494                                     Ops, array_lengthof(Ops),
8495                                     Op.getValueType(), MMO);
8496     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8497                          MachinePointerInfo::getFixedStack(SSFI),
8498                          false, false, false, 0);
8499   }
8500
8501   return Result;
8502 }
8503
8504 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8505 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8506                                                SelectionDAG &DAG) const {
8507   // This algorithm is not obvious. Here it is what we're trying to output:
8508   /*
8509      movq       %rax,  %xmm0
8510      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8511      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8512      #ifdef __SSE3__
8513        haddpd   %xmm0, %xmm0
8514      #else
8515        pshufd   $0x4e, %xmm0, %xmm1
8516        addpd    %xmm1, %xmm0
8517      #endif
8518   */
8519
8520   SDLoc dl(Op);
8521   LLVMContext *Context = DAG.getContext();
8522
8523   // Build some magic constants.
8524   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8525   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8526   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8527
8528   SmallVector<Constant*,2> CV1;
8529   CV1.push_back(
8530     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8531                                       APInt(64, 0x4330000000000000ULL))));
8532   CV1.push_back(
8533     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8534                                       APInt(64, 0x4530000000000000ULL))));
8535   Constant *C1 = ConstantVector::get(CV1);
8536   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8537
8538   // Load the 64-bit value into an XMM register.
8539   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8540                             Op.getOperand(0));
8541   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8542                               MachinePointerInfo::getConstantPool(),
8543                               false, false, false, 16);
8544   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8545                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8546                               CLod0);
8547
8548   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8549                               MachinePointerInfo::getConstantPool(),
8550                               false, false, false, 16);
8551   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8552   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8553   SDValue Result;
8554
8555   if (Subtarget->hasSSE3()) {
8556     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8557     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8558   } else {
8559     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8560     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8561                                            S2F, 0x4E, DAG);
8562     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8563                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8564                          Sub);
8565   }
8566
8567   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8568                      DAG.getIntPtrConstant(0));
8569 }
8570
8571 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8572 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8573                                                SelectionDAG &DAG) const {
8574   SDLoc dl(Op);
8575   // FP constant to bias correct the final result.
8576   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8577                                    MVT::f64);
8578
8579   // Load the 32-bit value into an XMM register.
8580   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8581                              Op.getOperand(0));
8582
8583   // Zero out the upper parts of the register.
8584   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8585
8586   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8587                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8588                      DAG.getIntPtrConstant(0));
8589
8590   // Or the load with the bias.
8591   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8592                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8593                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8594                                                    MVT::v2f64, Load)),
8595                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8596                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8597                                                    MVT::v2f64, Bias)));
8598   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8599                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8600                    DAG.getIntPtrConstant(0));
8601
8602   // Subtract the bias.
8603   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8604
8605   // Handle final rounding.
8606   EVT DestVT = Op.getValueType();
8607
8608   if (DestVT.bitsLT(MVT::f64))
8609     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8610                        DAG.getIntPtrConstant(0));
8611   if (DestVT.bitsGT(MVT::f64))
8612     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8613
8614   // Handle final rounding.
8615   return Sub;
8616 }
8617
8618 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8619                                                SelectionDAG &DAG) const {
8620   SDValue N0 = Op.getOperand(0);
8621   EVT SVT = N0.getValueType();
8622   SDLoc dl(Op);
8623
8624   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8625           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8626          "Custom UINT_TO_FP is not supported!");
8627
8628   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8629                              SVT.getVectorNumElements());
8630   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8631                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8632 }
8633
8634 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8635                                            SelectionDAG &DAG) const {
8636   SDValue N0 = Op.getOperand(0);
8637   SDLoc dl(Op);
8638
8639   if (Op.getValueType().isVector())
8640     return lowerUINT_TO_FP_vec(Op, DAG);
8641
8642   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8643   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8644   // the optimization here.
8645   if (DAG.SignBitIsZero(N0))
8646     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8647
8648   EVT SrcVT = N0.getValueType();
8649   EVT DstVT = Op.getValueType();
8650   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8651     return LowerUINT_TO_FP_i64(Op, DAG);
8652   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8653     return LowerUINT_TO_FP_i32(Op, DAG);
8654   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8655     return SDValue();
8656
8657   // Make a 64-bit buffer, and use it to build an FILD.
8658   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8659   if (SrcVT == MVT::i32) {
8660     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8661     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8662                                      getPointerTy(), StackSlot, WordOff);
8663     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8664                                   StackSlot, MachinePointerInfo(),
8665                                   false, false, 0);
8666     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8667                                   OffsetSlot, MachinePointerInfo(),
8668                                   false, false, 0);
8669     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8670     return Fild;
8671   }
8672
8673   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8674   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8675                                StackSlot, MachinePointerInfo(),
8676                                false, false, 0);
8677   // For i64 source, we need to add the appropriate power of 2 if the input
8678   // was negative.  This is the same as the optimization in
8679   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8680   // we must be careful to do the computation in x87 extended precision, not
8681   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8682   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8683   MachineMemOperand *MMO =
8684     DAG.getMachineFunction()
8685     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8686                           MachineMemOperand::MOLoad, 8, 8);
8687
8688   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8689   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8690   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8691                                          array_lengthof(Ops), MVT::i64, MMO);
8692
8693   APInt FF(32, 0x5F800000ULL);
8694
8695   // Check whether the sign bit is set.
8696   SDValue SignSet = DAG.getSetCC(dl,
8697                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8698                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8699                                  ISD::SETLT);
8700
8701   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8702   SDValue FudgePtr = DAG.getConstantPool(
8703                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8704                                          getPointerTy());
8705
8706   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8707   SDValue Zero = DAG.getIntPtrConstant(0);
8708   SDValue Four = DAG.getIntPtrConstant(4);
8709   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8710                                Zero, Four);
8711   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8712
8713   // Load the value out, extending it from f32 to f80.
8714   // FIXME: Avoid the extend by constructing the right constant pool?
8715   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8716                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8717                                  MVT::f32, false, false, 4);
8718   // Extend everything to 80 bits to force it to be done on x87.
8719   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8720   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8721 }
8722
8723 std::pair<SDValue,SDValue>
8724 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8725                                     bool IsSigned, bool IsReplace) const {
8726   SDLoc DL(Op);
8727
8728   EVT DstTy = Op.getValueType();
8729
8730   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8731     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8732     DstTy = MVT::i64;
8733   }
8734
8735   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8736          DstTy.getSimpleVT() >= MVT::i16 &&
8737          "Unknown FP_TO_INT to lower!");
8738
8739   // These are really Legal.
8740   if (DstTy == MVT::i32 &&
8741       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8742     return std::make_pair(SDValue(), SDValue());
8743   if (Subtarget->is64Bit() &&
8744       DstTy == MVT::i64 &&
8745       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8746     return std::make_pair(SDValue(), SDValue());
8747
8748   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8749   // stack slot, or into the FTOL runtime function.
8750   MachineFunction &MF = DAG.getMachineFunction();
8751   unsigned MemSize = DstTy.getSizeInBits()/8;
8752   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8753   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8754
8755   unsigned Opc;
8756   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8757     Opc = X86ISD::WIN_FTOL;
8758   else
8759     switch (DstTy.getSimpleVT().SimpleTy) {
8760     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8761     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8762     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8763     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8764     }
8765
8766   SDValue Chain = DAG.getEntryNode();
8767   SDValue Value = Op.getOperand(0);
8768   EVT TheVT = Op.getOperand(0).getValueType();
8769   // FIXME This causes a redundant load/store if the SSE-class value is already
8770   // in memory, such as if it is on the callstack.
8771   if (isScalarFPTypeInSSEReg(TheVT)) {
8772     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8773     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8774                          MachinePointerInfo::getFixedStack(SSFI),
8775                          false, false, 0);
8776     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8777     SDValue Ops[] = {
8778       Chain, StackSlot, DAG.getValueType(TheVT)
8779     };
8780
8781     MachineMemOperand *MMO =
8782       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8783                               MachineMemOperand::MOLoad, MemSize, MemSize);
8784     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8785                                     array_lengthof(Ops), DstTy, MMO);
8786     Chain = Value.getValue(1);
8787     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8788     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8789   }
8790
8791   MachineMemOperand *MMO =
8792     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8793                             MachineMemOperand::MOStore, MemSize, MemSize);
8794
8795   if (Opc != X86ISD::WIN_FTOL) {
8796     // Build the FP_TO_INT*_IN_MEM
8797     SDValue Ops[] = { Chain, Value, StackSlot };
8798     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8799                                            Ops, array_lengthof(Ops), DstTy,
8800                                            MMO);
8801     return std::make_pair(FIST, StackSlot);
8802   } else {
8803     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8804       DAG.getVTList(MVT::Other, MVT::Glue),
8805       Chain, Value);
8806     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8807       MVT::i32, ftol.getValue(1));
8808     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8809       MVT::i32, eax.getValue(2));
8810     SDValue Ops[] = { eax, edx };
8811     SDValue pair = IsReplace
8812       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8813       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8814     return std::make_pair(pair, SDValue());
8815   }
8816 }
8817
8818 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8819                               const X86Subtarget *Subtarget) {
8820   MVT VT = Op->getSimpleValueType(0);
8821   SDValue In = Op->getOperand(0);
8822   MVT InVT = In.getSimpleValueType();
8823   SDLoc dl(Op);
8824
8825   // Optimize vectors in AVX mode:
8826   //
8827   //   v8i16 -> v8i32
8828   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8829   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8830   //   Concat upper and lower parts.
8831   //
8832   //   v4i32 -> v4i64
8833   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8834   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8835   //   Concat upper and lower parts.
8836   //
8837
8838   if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8839       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8840     return SDValue();
8841
8842   if (Subtarget->hasInt256())
8843     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8844
8845   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8846   SDValue Undef = DAG.getUNDEF(InVT);
8847   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8848   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8849   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8850
8851   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
8852                              VT.getVectorNumElements()/2);
8853
8854   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8855   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8856
8857   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8858 }
8859
8860 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8861                                         SelectionDAG &DAG) {
8862   MVT VT = Op->getValueType(0).getSimpleVT();
8863   SDValue In = Op->getOperand(0);
8864   MVT InVT = In.getValueType().getSimpleVT();
8865   SDLoc DL(Op);
8866   unsigned int NumElts = VT.getVectorNumElements();
8867   if (NumElts != 8 && NumElts != 16)
8868     return SDValue();
8869
8870   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8871     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8872
8873   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8874   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8875   // Now we have only mask extension
8876   assert(InVT.getVectorElementType() == MVT::i1);
8877   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8878   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8879   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8880   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8881   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8882                            MachinePointerInfo::getConstantPool(),
8883                            false, false, false, Alignment);
8884
8885   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8886   if (VT.is512BitVector())
8887     return Brcst;
8888   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8889 }
8890
8891 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8892                                SelectionDAG &DAG) {
8893   if (Subtarget->hasFp256()) {
8894     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8895     if (Res.getNode())
8896       return Res;
8897   }
8898
8899   return SDValue();
8900 }
8901
8902 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8903                                 SelectionDAG &DAG) {
8904   SDLoc DL(Op);
8905   MVT VT = Op.getSimpleValueType();
8906   SDValue In = Op.getOperand(0);
8907   MVT SVT = In.getSimpleValueType();
8908
8909   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8910     return LowerZERO_EXTEND_AVX512(Op, DAG);
8911
8912   if (Subtarget->hasFp256()) {
8913     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8914     if (Res.getNode())
8915       return Res;
8916   }
8917
8918   if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8919       VT.getVectorNumElements() != SVT.getVectorNumElements())
8920     return SDValue();
8921
8922   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8923
8924   // AVX2 has better support of integer extending.
8925   if (Subtarget->hasInt256())
8926     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8927
8928   SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8929   static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8930   SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
8931                            DAG.getVectorShuffle(MVT::v8i16, DL, In,
8932                                                 DAG.getUNDEF(MVT::v8i16),
8933                                                 &Mask[0]));
8934
8935   return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8936 }
8937
8938 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8939   SDLoc DL(Op);
8940   MVT VT = Op.getSimpleValueType();  
8941   SDValue In = Op.getOperand(0);
8942   MVT InVT = In.getSimpleValueType();
8943   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8944          "Invalid TRUNCATE operation");
8945
8946   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
8947     if (VT.getVectorElementType().getSizeInBits() >=8)
8948       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
8949
8950     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
8951     unsigned NumElts = InVT.getVectorNumElements();
8952     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
8953     if (InVT.getSizeInBits() < 512) {
8954       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
8955       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
8956       InVT = ExtVT;
8957     }
8958     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
8959     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8960     SDValue CP = DAG.getConstantPool(C, getPointerTy());
8961     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8962     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8963                            MachinePointerInfo::getConstantPool(),
8964                            false, false, false, Alignment);
8965     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
8966     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
8967     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
8968   }
8969
8970   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
8971     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8972     if (Subtarget->hasInt256()) {
8973       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8974       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8975       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8976                                 ShufMask);
8977       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8978                          DAG.getIntPtrConstant(0));
8979     }
8980
8981     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8982     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8983                                DAG.getIntPtrConstant(0));
8984     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8985                                DAG.getIntPtrConstant(2));
8986
8987     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8988     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8989
8990     // The PSHUFD mask:
8991     static const int ShufMask1[] = {0, 2, 0, 0};
8992     SDValue Undef = DAG.getUNDEF(VT);
8993     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
8994     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
8995
8996     // The MOVLHPS mask:
8997     static const int ShufMask2[] = {0, 1, 4, 5};
8998     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
8999   }
9000
9001   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9002     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9003     if (Subtarget->hasInt256()) {
9004       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9005
9006       SmallVector<SDValue,32> pshufbMask;
9007       for (unsigned i = 0; i < 2; ++i) {
9008         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9009         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9010         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9011         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9012         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9013         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9014         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9015         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9016         for (unsigned j = 0; j < 8; ++j)
9017           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9018       }
9019       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9020                                &pshufbMask[0], 32);
9021       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9022       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9023
9024       static const int ShufMask[] = {0,  2,  -1,  -1};
9025       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9026                                 &ShufMask[0]);
9027       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9028                        DAG.getIntPtrConstant(0));
9029       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9030     }
9031
9032     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9033                                DAG.getIntPtrConstant(0));
9034
9035     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9036                                DAG.getIntPtrConstant(4));
9037
9038     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9039     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9040
9041     // The PSHUFB mask:
9042     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9043                                    -1, -1, -1, -1, -1, -1, -1, -1};
9044
9045     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9046     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9047     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9048
9049     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9050     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9051
9052     // The MOVLHPS Mask:
9053     static const int ShufMask2[] = {0, 1, 4, 5};
9054     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9055     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9056   }
9057
9058   // Handle truncation of V256 to V128 using shuffles.
9059   if (!VT.is128BitVector() || !InVT.is256BitVector())
9060     return SDValue();
9061
9062   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9063
9064   unsigned NumElems = VT.getVectorNumElements();
9065   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9066                              NumElems * 2);
9067
9068   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9069   // Prepare truncation shuffle mask
9070   for (unsigned i = 0; i != NumElems; ++i)
9071     MaskVec[i] = i * 2;
9072   SDValue V = DAG.getVectorShuffle(NVT, DL,
9073                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9074                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9075   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9076                      DAG.getIntPtrConstant(0));
9077 }
9078
9079 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9080                                            SelectionDAG &DAG) const {
9081   MVT VT = Op.getSimpleValueType();
9082   if (VT.isVector()) {
9083     if (VT == MVT::v8i16)
9084       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9085                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9086                                      MVT::v8i32, Op.getOperand(0)));
9087     return SDValue();
9088   }
9089
9090   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9091     /*IsSigned=*/ true, /*IsReplace=*/ false);
9092   SDValue FIST = Vals.first, StackSlot = Vals.second;
9093   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9094   if (FIST.getNode() == 0) return Op;
9095
9096   if (StackSlot.getNode())
9097     // Load the result.
9098     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9099                        FIST, StackSlot, MachinePointerInfo(),
9100                        false, false, false, 0);
9101
9102   // The node is the result.
9103   return FIST;
9104 }
9105
9106 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9107                                            SelectionDAG &DAG) const {
9108   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9109     /*IsSigned=*/ false, /*IsReplace=*/ false);
9110   SDValue FIST = Vals.first, StackSlot = Vals.second;
9111   assert(FIST.getNode() && "Unexpected failure");
9112
9113   if (StackSlot.getNode())
9114     // Load the result.
9115     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9116                        FIST, StackSlot, MachinePointerInfo(),
9117                        false, false, false, 0);
9118
9119   // The node is the result.
9120   return FIST;
9121 }
9122
9123 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9124   SDLoc DL(Op);
9125   MVT VT = Op.getSimpleValueType();
9126   SDValue In = Op.getOperand(0);
9127   MVT SVT = In.getSimpleValueType();
9128
9129   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9130
9131   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9132                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9133                                  In, DAG.getUNDEF(SVT)));
9134 }
9135
9136 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
9137   LLVMContext *Context = DAG.getContext();
9138   SDLoc dl(Op);
9139   MVT VT = Op.getSimpleValueType();
9140   MVT EltVT = VT;
9141   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9142   if (VT.isVector()) {
9143     EltVT = VT.getVectorElementType();
9144     NumElts = VT.getVectorNumElements();
9145   }
9146   Constant *C;
9147   if (EltVT == MVT::f64)
9148     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9149                                           APInt(64, ~(1ULL << 63))));
9150   else
9151     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9152                                           APInt(32, ~(1U << 31))));
9153   C = ConstantVector::getSplat(NumElts, C);
9154   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9155   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9156   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9157                              MachinePointerInfo::getConstantPool(),
9158                              false, false, false, Alignment);
9159   if (VT.isVector()) {
9160     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9161     return DAG.getNode(ISD::BITCAST, dl, VT,
9162                        DAG.getNode(ISD::AND, dl, ANDVT,
9163                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9164                                                Op.getOperand(0)),
9165                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9166   }
9167   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9168 }
9169
9170 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9171   LLVMContext *Context = DAG.getContext();
9172   SDLoc dl(Op);
9173   MVT VT = Op.getSimpleValueType();
9174   MVT EltVT = VT;
9175   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9176   if (VT.isVector()) {
9177     EltVT = VT.getVectorElementType();
9178     NumElts = VT.getVectorNumElements();
9179   }
9180   Constant *C;
9181   if (EltVT == MVT::f64)
9182     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9183                                           APInt(64, 1ULL << 63)));
9184   else
9185     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9186                                           APInt(32, 1U << 31)));
9187   C = ConstantVector::getSplat(NumElts, C);
9188   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9189   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9190   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9191                              MachinePointerInfo::getConstantPool(),
9192                              false, false, false, Alignment);
9193   if (VT.isVector()) {
9194     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9195     return DAG.getNode(ISD::BITCAST, dl, VT,
9196                        DAG.getNode(ISD::XOR, dl, XORVT,
9197                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9198                                                Op.getOperand(0)),
9199                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9200   }
9201
9202   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9203 }
9204
9205 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9206   LLVMContext *Context = DAG.getContext();
9207   SDValue Op0 = Op.getOperand(0);
9208   SDValue Op1 = Op.getOperand(1);
9209   SDLoc dl(Op);
9210   MVT VT = Op.getSimpleValueType();
9211   MVT SrcVT = Op1.getSimpleValueType();
9212
9213   // If second operand is smaller, extend it first.
9214   if (SrcVT.bitsLT(VT)) {
9215     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9216     SrcVT = VT;
9217   }
9218   // And if it is bigger, shrink it first.
9219   if (SrcVT.bitsGT(VT)) {
9220     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9221     SrcVT = VT;
9222   }
9223
9224   // At this point the operands and the result should have the same
9225   // type, and that won't be f80 since that is not custom lowered.
9226
9227   // First get the sign bit of second operand.
9228   SmallVector<Constant*,4> CV;
9229   if (SrcVT == MVT::f64) {
9230     const fltSemantics &Sem = APFloat::IEEEdouble;
9231     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9232     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9233   } else {
9234     const fltSemantics &Sem = APFloat::IEEEsingle;
9235     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9236     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9237     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9238     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9239   }
9240   Constant *C = ConstantVector::get(CV);
9241   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9242   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9243                               MachinePointerInfo::getConstantPool(),
9244                               false, false, false, 16);
9245   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9246
9247   // Shift sign bit right or left if the two operands have different types.
9248   if (SrcVT.bitsGT(VT)) {
9249     // Op0 is MVT::f32, Op1 is MVT::f64.
9250     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9251     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9252                           DAG.getConstant(32, MVT::i32));
9253     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9254     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9255                           DAG.getIntPtrConstant(0));
9256   }
9257
9258   // Clear first operand sign bit.
9259   CV.clear();
9260   if (VT == MVT::f64) {
9261     const fltSemantics &Sem = APFloat::IEEEdouble;
9262     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9263                                                    APInt(64, ~(1ULL << 63)))));
9264     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9265   } else {
9266     const fltSemantics &Sem = APFloat::IEEEsingle;
9267     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9268                                                    APInt(32, ~(1U << 31)))));
9269     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9270     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9271     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9272   }
9273   C = ConstantVector::get(CV);
9274   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9275   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9276                               MachinePointerInfo::getConstantPool(),
9277                               false, false, false, 16);
9278   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9279
9280   // Or the value with the sign bit.
9281   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9282 }
9283
9284 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9285   SDValue N0 = Op.getOperand(0);
9286   SDLoc dl(Op);
9287   MVT VT = Op.getSimpleValueType();
9288
9289   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9290   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9291                                   DAG.getConstant(1, VT));
9292   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9293 }
9294
9295 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9296 //
9297 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9298                                       SelectionDAG &DAG) {
9299   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9300
9301   if (!Subtarget->hasSSE41())
9302     return SDValue();
9303
9304   if (!Op->hasOneUse())
9305     return SDValue();
9306
9307   SDNode *N = Op.getNode();
9308   SDLoc DL(N);
9309
9310   SmallVector<SDValue, 8> Opnds;
9311   DenseMap<SDValue, unsigned> VecInMap;
9312   EVT VT = MVT::Other;
9313
9314   // Recognize a special case where a vector is casted into wide integer to
9315   // test all 0s.
9316   Opnds.push_back(N->getOperand(0));
9317   Opnds.push_back(N->getOperand(1));
9318
9319   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9320     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9321     // BFS traverse all OR'd operands.
9322     if (I->getOpcode() == ISD::OR) {
9323       Opnds.push_back(I->getOperand(0));
9324       Opnds.push_back(I->getOperand(1));
9325       // Re-evaluate the number of nodes to be traversed.
9326       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9327       continue;
9328     }
9329
9330     // Quit if a non-EXTRACT_VECTOR_ELT
9331     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9332       return SDValue();
9333
9334     // Quit if without a constant index.
9335     SDValue Idx = I->getOperand(1);
9336     if (!isa<ConstantSDNode>(Idx))
9337       return SDValue();
9338
9339     SDValue ExtractedFromVec = I->getOperand(0);
9340     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9341     if (M == VecInMap.end()) {
9342       VT = ExtractedFromVec.getValueType();
9343       // Quit if not 128/256-bit vector.
9344       if (!VT.is128BitVector() && !VT.is256BitVector())
9345         return SDValue();
9346       // Quit if not the same type.
9347       if (VecInMap.begin() != VecInMap.end() &&
9348           VT != VecInMap.begin()->first.getValueType())
9349         return SDValue();
9350       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9351     }
9352     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9353   }
9354
9355   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9356          "Not extracted from 128-/256-bit vector.");
9357
9358   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9359   SmallVector<SDValue, 8> VecIns;
9360
9361   for (DenseMap<SDValue, unsigned>::const_iterator
9362         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9363     // Quit if not all elements are used.
9364     if (I->second != FullMask)
9365       return SDValue();
9366     VecIns.push_back(I->first);
9367   }
9368
9369   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9370
9371   // Cast all vectors into TestVT for PTEST.
9372   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9373     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9374
9375   // If more than one full vectors are evaluated, OR them first before PTEST.
9376   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9377     // Each iteration will OR 2 nodes and append the result until there is only
9378     // 1 node left, i.e. the final OR'd value of all vectors.
9379     SDValue LHS = VecIns[Slot];
9380     SDValue RHS = VecIns[Slot + 1];
9381     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9382   }
9383
9384   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9385                      VecIns.back(), VecIns.back());
9386 }
9387
9388 /// Emit nodes that will be selected as "test Op0,Op0", or something
9389 /// equivalent.
9390 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9391                                     SelectionDAG &DAG) const {
9392   SDLoc dl(Op);
9393
9394   // CF and OF aren't always set the way we want. Determine which
9395   // of these we need.
9396   bool NeedCF = false;
9397   bool NeedOF = false;
9398   switch (X86CC) {
9399   default: break;
9400   case X86::COND_A: case X86::COND_AE:
9401   case X86::COND_B: case X86::COND_BE:
9402     NeedCF = true;
9403     break;
9404   case X86::COND_G: case X86::COND_GE:
9405   case X86::COND_L: case X86::COND_LE:
9406   case X86::COND_O: case X86::COND_NO:
9407     NeedOF = true;
9408     break;
9409   }
9410
9411   // See if we can use the EFLAGS value from the operand instead of
9412   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9413   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9414   if (Op.getResNo() != 0 || NeedOF || NeedCF)
9415     // Emit a CMP with 0, which is the TEST pattern.
9416     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9417                        DAG.getConstant(0, Op.getValueType()));
9418
9419   unsigned Opcode = 0;
9420   unsigned NumOperands = 0;
9421
9422   // Truncate operations may prevent the merge of the SETCC instruction
9423   // and the arithmetic intruction before it. Attempt to truncate the operands
9424   // of the arithmetic instruction and use a reduced bit-width instruction.
9425   bool NeedTruncation = false;
9426   SDValue ArithOp = Op;
9427   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9428     SDValue Arith = Op->getOperand(0);
9429     // Both the trunc and the arithmetic op need to have one user each.
9430     if (Arith->hasOneUse())
9431       switch (Arith.getOpcode()) {
9432         default: break;
9433         case ISD::ADD:
9434         case ISD::SUB:
9435         case ISD::AND:
9436         case ISD::OR:
9437         case ISD::XOR: {
9438           NeedTruncation = true;
9439           ArithOp = Arith;
9440         }
9441       }
9442   }
9443
9444   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9445   // which may be the result of a CAST.  We use the variable 'Op', which is the
9446   // non-casted variable when we check for possible users.
9447   switch (ArithOp.getOpcode()) {
9448   case ISD::ADD:
9449     // Due to an isel shortcoming, be conservative if this add is likely to be
9450     // selected as part of a load-modify-store instruction. When the root node
9451     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9452     // uses of other nodes in the match, such as the ADD in this case. This
9453     // leads to the ADD being left around and reselected, with the result being
9454     // two adds in the output.  Alas, even if none our users are stores, that
9455     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9456     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9457     // climbing the DAG back to the root, and it doesn't seem to be worth the
9458     // effort.
9459     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9460          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9461       if (UI->getOpcode() != ISD::CopyToReg &&
9462           UI->getOpcode() != ISD::SETCC &&
9463           UI->getOpcode() != ISD::STORE)
9464         goto default_case;
9465
9466     if (ConstantSDNode *C =
9467         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9468       // An add of one will be selected as an INC.
9469       if (C->getAPIntValue() == 1) {
9470         Opcode = X86ISD::INC;
9471         NumOperands = 1;
9472         break;
9473       }
9474
9475       // An add of negative one (subtract of one) will be selected as a DEC.
9476       if (C->getAPIntValue().isAllOnesValue()) {
9477         Opcode = X86ISD::DEC;
9478         NumOperands = 1;
9479         break;
9480       }
9481     }
9482
9483     // Otherwise use a regular EFLAGS-setting add.
9484     Opcode = X86ISD::ADD;
9485     NumOperands = 2;
9486     break;
9487   case ISD::AND: {
9488     // If the primary and result isn't used, don't bother using X86ISD::AND,
9489     // because a TEST instruction will be better.
9490     bool NonFlagUse = false;
9491     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9492            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9493       SDNode *User = *UI;
9494       unsigned UOpNo = UI.getOperandNo();
9495       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9496         // Look pass truncate.
9497         UOpNo = User->use_begin().getOperandNo();
9498         User = *User->use_begin();
9499       }
9500
9501       if (User->getOpcode() != ISD::BRCOND &&
9502           User->getOpcode() != ISD::SETCC &&
9503           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9504         NonFlagUse = true;
9505         break;
9506       }
9507     }
9508
9509     if (!NonFlagUse)
9510       break;
9511   }
9512     // FALL THROUGH
9513   case ISD::SUB:
9514   case ISD::OR:
9515   case ISD::XOR:
9516     // Due to the ISEL shortcoming noted above, be conservative if this op is
9517     // likely to be selected as part of a load-modify-store instruction.
9518     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9519            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9520       if (UI->getOpcode() == ISD::STORE)
9521         goto default_case;
9522
9523     // Otherwise use a regular EFLAGS-setting instruction.
9524     switch (ArithOp.getOpcode()) {
9525     default: llvm_unreachable("unexpected operator!");
9526     case ISD::SUB: Opcode = X86ISD::SUB; break;
9527     case ISD::XOR: Opcode = X86ISD::XOR; break;
9528     case ISD::AND: Opcode = X86ISD::AND; break;
9529     case ISD::OR: {
9530       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9531         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9532         if (EFLAGS.getNode())
9533           return EFLAGS;
9534       }
9535       Opcode = X86ISD::OR;
9536       break;
9537     }
9538     }
9539
9540     NumOperands = 2;
9541     break;
9542   case X86ISD::ADD:
9543   case X86ISD::SUB:
9544   case X86ISD::INC:
9545   case X86ISD::DEC:
9546   case X86ISD::OR:
9547   case X86ISD::XOR:
9548   case X86ISD::AND:
9549     return SDValue(Op.getNode(), 1);
9550   default:
9551   default_case:
9552     break;
9553   }
9554
9555   // If we found that truncation is beneficial, perform the truncation and
9556   // update 'Op'.
9557   if (NeedTruncation) {
9558     EVT VT = Op.getValueType();
9559     SDValue WideVal = Op->getOperand(0);
9560     EVT WideVT = WideVal.getValueType();
9561     unsigned ConvertedOp = 0;
9562     // Use a target machine opcode to prevent further DAGCombine
9563     // optimizations that may separate the arithmetic operations
9564     // from the setcc node.
9565     switch (WideVal.getOpcode()) {
9566       default: break;
9567       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9568       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9569       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9570       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9571       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9572     }
9573
9574     if (ConvertedOp) {
9575       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9576       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9577         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9578         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9579         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9580       }
9581     }
9582   }
9583
9584   if (Opcode == 0)
9585     // Emit a CMP with 0, which is the TEST pattern.
9586     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9587                        DAG.getConstant(0, Op.getValueType()));
9588
9589   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9590   SmallVector<SDValue, 4> Ops;
9591   for (unsigned i = 0; i != NumOperands; ++i)
9592     Ops.push_back(Op.getOperand(i));
9593
9594   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9595   DAG.ReplaceAllUsesWith(Op, New);
9596   return SDValue(New.getNode(), 1);
9597 }
9598
9599 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9600 /// equivalent.
9601 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9602                                    SelectionDAG &DAG) const {
9603   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9604     if (C->getAPIntValue() == 0)
9605       return EmitTest(Op0, X86CC, DAG);
9606
9607   SDLoc dl(Op0);
9608   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9609        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9610     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9611     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9612     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9613                               Op0, Op1);
9614     return SDValue(Sub.getNode(), 1);
9615   }
9616   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9617 }
9618
9619 /// Convert a comparison if required by the subtarget.
9620 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9621                                                  SelectionDAG &DAG) const {
9622   // If the subtarget does not support the FUCOMI instruction, floating-point
9623   // comparisons have to be converted.
9624   if (Subtarget->hasCMov() ||
9625       Cmp.getOpcode() != X86ISD::CMP ||
9626       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9627       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9628     return Cmp;
9629
9630   // The instruction selector will select an FUCOM instruction instead of
9631   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9632   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9633   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9634   SDLoc dl(Cmp);
9635   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9636   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9637   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9638                             DAG.getConstant(8, MVT::i8));
9639   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9640   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9641 }
9642
9643 static bool isAllOnes(SDValue V) {
9644   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9645   return C && C->isAllOnesValue();
9646 }
9647
9648 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9649 /// if it's possible.
9650 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9651                                      SDLoc dl, SelectionDAG &DAG) const {
9652   SDValue Op0 = And.getOperand(0);
9653   SDValue Op1 = And.getOperand(1);
9654   if (Op0.getOpcode() == ISD::TRUNCATE)
9655     Op0 = Op0.getOperand(0);
9656   if (Op1.getOpcode() == ISD::TRUNCATE)
9657     Op1 = Op1.getOperand(0);
9658
9659   SDValue LHS, RHS;
9660   if (Op1.getOpcode() == ISD::SHL)
9661     std::swap(Op0, Op1);
9662   if (Op0.getOpcode() == ISD::SHL) {
9663     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9664       if (And00C->getZExtValue() == 1) {
9665         // If we looked past a truncate, check that it's only truncating away
9666         // known zeros.
9667         unsigned BitWidth = Op0.getValueSizeInBits();
9668         unsigned AndBitWidth = And.getValueSizeInBits();
9669         if (BitWidth > AndBitWidth) {
9670           APInt Zeros, Ones;
9671           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9672           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9673             return SDValue();
9674         }
9675         LHS = Op1;
9676         RHS = Op0.getOperand(1);
9677       }
9678   } else if (Op1.getOpcode() == ISD::Constant) {
9679     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9680     uint64_t AndRHSVal = AndRHS->getZExtValue();
9681     SDValue AndLHS = Op0;
9682
9683     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9684       LHS = AndLHS.getOperand(0);
9685       RHS = AndLHS.getOperand(1);
9686     }
9687
9688     // Use BT if the immediate can't be encoded in a TEST instruction.
9689     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9690       LHS = AndLHS;
9691       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9692     }
9693   }
9694
9695   if (LHS.getNode()) {
9696     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9697     // instruction.  Since the shift amount is in-range-or-undefined, we know
9698     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9699     // the encoding for the i16 version is larger than the i32 version.
9700     // Also promote i16 to i32 for performance / code size reason.
9701     if (LHS.getValueType() == MVT::i8 ||
9702         LHS.getValueType() == MVT::i16)
9703       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9704
9705     // If the operand types disagree, extend the shift amount to match.  Since
9706     // BT ignores high bits (like shifts) we can use anyextend.
9707     if (LHS.getValueType() != RHS.getValueType())
9708       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9709
9710     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9711     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9712     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9713                        DAG.getConstant(Cond, MVT::i8), BT);
9714   }
9715
9716   return SDValue();
9717 }
9718
9719 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9720 /// mask CMPs.
9721 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9722                               SDValue &Op1) {
9723   unsigned SSECC;
9724   bool Swap = false;
9725
9726   // SSE Condition code mapping:
9727   //  0 - EQ
9728   //  1 - LT
9729   //  2 - LE
9730   //  3 - UNORD
9731   //  4 - NEQ
9732   //  5 - NLT
9733   //  6 - NLE
9734   //  7 - ORD
9735   switch (SetCCOpcode) {
9736   default: llvm_unreachable("Unexpected SETCC condition");
9737   case ISD::SETOEQ:
9738   case ISD::SETEQ:  SSECC = 0; break;
9739   case ISD::SETOGT:
9740   case ISD::SETGT:  Swap = true; // Fallthrough
9741   case ISD::SETLT:
9742   case ISD::SETOLT: SSECC = 1; break;
9743   case ISD::SETOGE:
9744   case ISD::SETGE:  Swap = true; // Fallthrough
9745   case ISD::SETLE:
9746   case ISD::SETOLE: SSECC = 2; break;
9747   case ISD::SETUO:  SSECC = 3; break;
9748   case ISD::SETUNE:
9749   case ISD::SETNE:  SSECC = 4; break;
9750   case ISD::SETULE: Swap = true; // Fallthrough
9751   case ISD::SETUGE: SSECC = 5; break;
9752   case ISD::SETULT: Swap = true; // Fallthrough
9753   case ISD::SETUGT: SSECC = 6; break;
9754   case ISD::SETO:   SSECC = 7; break;
9755   case ISD::SETUEQ:
9756   case ISD::SETONE: SSECC = 8; break;
9757   }
9758   if (Swap)
9759     std::swap(Op0, Op1);
9760
9761   return SSECC;
9762 }
9763
9764 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9765 // ones, and then concatenate the result back.
9766 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9767   MVT VT = Op.getSimpleValueType();
9768
9769   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9770          "Unsupported value type for operation");
9771
9772   unsigned NumElems = VT.getVectorNumElements();
9773   SDLoc dl(Op);
9774   SDValue CC = Op.getOperand(2);
9775
9776   // Extract the LHS vectors
9777   SDValue LHS = Op.getOperand(0);
9778   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9779   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9780
9781   // Extract the RHS vectors
9782   SDValue RHS = Op.getOperand(1);
9783   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9784   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9785
9786   // Issue the operation on the smaller types and concatenate the result back
9787   MVT EltVT = VT.getVectorElementType();
9788   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9789   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9790                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9791                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9792 }
9793
9794 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9795   SDValue Cond;
9796   SDValue Op0 = Op.getOperand(0);
9797   SDValue Op1 = Op.getOperand(1);
9798   SDValue CC = Op.getOperand(2);
9799   MVT VT = Op.getSimpleValueType();
9800
9801   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9802          Op.getValueType().getScalarType() == MVT::i1 &&
9803          "Cannot set masked compare for this operation");
9804
9805   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9806   SDLoc dl(Op);
9807
9808   bool Unsigned = false;
9809   unsigned SSECC;
9810   switch (SetCCOpcode) {
9811   default: llvm_unreachable("Unexpected SETCC condition");
9812   case ISD::SETNE:  SSECC = 4; break;
9813   case ISD::SETEQ:  SSECC = 0; break;
9814   case ISD::SETUGT: Unsigned = true;
9815   case ISD::SETGT:  SSECC = 6; break; // NLE
9816   case ISD::SETULT: Unsigned = true;
9817   case ISD::SETLT:  SSECC = 1; break;
9818   case ISD::SETUGE: Unsigned = true;
9819   case ISD::SETGE:  SSECC = 5; break; // NLT
9820   case ISD::SETULE: Unsigned = true;
9821   case ISD::SETLE:  SSECC = 2; break;
9822   }
9823   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9824   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9825                      DAG.getConstant(SSECC, MVT::i8));
9826
9827 }
9828
9829 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9830                            SelectionDAG &DAG) {
9831   SDValue Cond;
9832   SDValue Op0 = Op.getOperand(0);
9833   SDValue Op1 = Op.getOperand(1);
9834   SDValue CC = Op.getOperand(2);
9835   MVT VT = Op.getSimpleValueType();
9836   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9837   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
9838   SDLoc dl(Op);
9839
9840   if (isFP) {
9841 #ifndef NDEBUG
9842     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
9843     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9844 #endif
9845
9846     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
9847     unsigned Opc = X86ISD::CMPP;
9848     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
9849       assert(VT.getVectorNumElements() <= 16);
9850       Opc = X86ISD::CMPM;
9851     }
9852     // In the two special cases we can't handle, emit two comparisons.
9853     if (SSECC == 8) {
9854       unsigned CC0, CC1;
9855       unsigned CombineOpc;
9856       if (SetCCOpcode == ISD::SETUEQ) {
9857         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9858       } else {
9859         assert(SetCCOpcode == ISD::SETONE);
9860         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9861       }
9862
9863       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9864                                  DAG.getConstant(CC0, MVT::i8));
9865       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9866                                  DAG.getConstant(CC1, MVT::i8));
9867       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9868     }
9869     // Handle all other FP comparisons here.
9870     return DAG.getNode(Opc, dl, VT, Op0, Op1,
9871                        DAG.getConstant(SSECC, MVT::i8));
9872   }
9873
9874   // Break 256-bit integer vector compare into smaller ones.
9875   if (VT.is256BitVector() && !Subtarget->hasInt256())
9876     return Lower256IntVSETCC(Op, DAG);
9877
9878   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9879   EVT OpVT = Op1.getValueType();
9880   if (Subtarget->hasAVX512()) {
9881     if (Op1.getValueType().is512BitVector() ||
9882         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9883       return LowerIntVSETCC_AVX512(Op, DAG);
9884
9885     // In AVX-512 architecture setcc returns mask with i1 elements,
9886     // But there is no compare instruction for i8 and i16 elements.
9887     // We are not talking about 512-bit operands in this case, these
9888     // types are illegal.
9889     if (MaskResult &&
9890         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9891          OpVT.getVectorElementType().getSizeInBits() >= 8))
9892       return DAG.getNode(ISD::TRUNCATE, dl, VT,
9893                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9894   }
9895
9896   // We are handling one of the integer comparisons here.  Since SSE only has
9897   // GT and EQ comparisons for integer, swapping operands and multiple
9898   // operations may be required for some comparisons.
9899   unsigned Opc;
9900   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9901   
9902   switch (SetCCOpcode) {
9903   default: llvm_unreachable("Unexpected SETCC condition");
9904   case ISD::SETNE:  Invert = true;
9905   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
9906   case ISD::SETLT:  Swap = true;
9907   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
9908   case ISD::SETGE:  Swap = true;
9909   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9910                     Invert = true; break;
9911   case ISD::SETULT: Swap = true;
9912   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9913                     FlipSigns = true; break;
9914   case ISD::SETUGE: Swap = true;
9915   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9916                     FlipSigns = true; Invert = true; break;
9917   }
9918   
9919   // Special case: Use min/max operations for SETULE/SETUGE
9920   MVT VET = VT.getVectorElementType();
9921   bool hasMinMax =
9922        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9923     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
9924   
9925   if (hasMinMax) {
9926     switch (SetCCOpcode) {
9927     default: break;
9928     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9929     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9930     }
9931     
9932     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9933   }
9934   
9935   if (Swap)
9936     std::swap(Op0, Op1);
9937
9938   // Check that the operation in question is available (most are plain SSE2,
9939   // but PCMPGTQ and PCMPEQQ have different requirements).
9940   if (VT == MVT::v2i64) {
9941     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9942       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9943
9944       // First cast everything to the right type.
9945       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9946       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9947
9948       // Since SSE has no unsigned integer comparisons, we need to flip the sign
9949       // bits of the inputs before performing those operations. The lower
9950       // compare is always unsigned.
9951       SDValue SB;
9952       if (FlipSigns) {
9953         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9954       } else {
9955         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9956         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9957         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9958                          Sign, Zero, Sign, Zero);
9959       }
9960       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9961       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
9962
9963       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9964       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9965       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9966
9967       // Create masks for only the low parts/high parts of the 64 bit integers.
9968       static const int MaskHi[] = { 1, 1, 3, 3 };
9969       static const int MaskLo[] = { 0, 0, 2, 2 };
9970       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9971       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9972       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9973
9974       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
9975       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
9976
9977       if (Invert)
9978         Result = DAG.getNOT(dl, Result, MVT::v4i32);
9979
9980       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9981     }
9982
9983     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9984       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
9985       // pcmpeqd + pshufd + pand.
9986       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
9987
9988       // First cast everything to the right type.
9989       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9990       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9991
9992       // Do the compare.
9993       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
9994
9995       // Make sure the lower and upper halves are both all-ones.
9996       static const int Mask[] = { 1, 0, 3, 2 };
9997       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
9998       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
9999
10000       if (Invert)
10001         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10002
10003       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10004     }
10005   }
10006
10007   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10008   // bits of the inputs before performing those operations.
10009   if (FlipSigns) {
10010     EVT EltVT = VT.getVectorElementType();
10011     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10012     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10013     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10014   }
10015
10016   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10017
10018   // If the logical-not of the result is required, perform that now.
10019   if (Invert)
10020     Result = DAG.getNOT(dl, Result, VT);
10021   
10022   if (MinMax)
10023     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10024
10025   return Result;
10026 }
10027
10028 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10029
10030   MVT VT = Op.getSimpleValueType();
10031
10032   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10033
10034   assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10035   SDValue Op0 = Op.getOperand(0);
10036   SDValue Op1 = Op.getOperand(1);
10037   SDLoc dl(Op);
10038   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10039
10040   // Optimize to BT if possible.
10041   // Lower (X & (1 << N)) == 0 to BT(X, N).
10042   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10043   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10044   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10045       Op1.getOpcode() == ISD::Constant &&
10046       cast<ConstantSDNode>(Op1)->isNullValue() &&
10047       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10048     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10049     if (NewSetCC.getNode())
10050       return NewSetCC;
10051   }
10052
10053   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10054   // these.
10055   if (Op1.getOpcode() == ISD::Constant &&
10056       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10057        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10058       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10059
10060     // If the input is a setcc, then reuse the input setcc or use a new one with
10061     // the inverted condition.
10062     if (Op0.getOpcode() == X86ISD::SETCC) {
10063       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10064       bool Invert = (CC == ISD::SETNE) ^
10065         cast<ConstantSDNode>(Op1)->isNullValue();
10066       if (!Invert) return Op0;
10067
10068       CCode = X86::GetOppositeBranchCondition(CCode);
10069       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10070                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10071     }
10072   }
10073
10074   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10075   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10076   if (X86CC == X86::COND_INVALID)
10077     return SDValue();
10078
10079   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10080   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10081   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10082                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10083 }
10084
10085 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10086 static bool isX86LogicalCmp(SDValue Op) {
10087   unsigned Opc = Op.getNode()->getOpcode();
10088   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10089       Opc == X86ISD::SAHF)
10090     return true;
10091   if (Op.getResNo() == 1 &&
10092       (Opc == X86ISD::ADD ||
10093        Opc == X86ISD::SUB ||
10094        Opc == X86ISD::ADC ||
10095        Opc == X86ISD::SBB ||
10096        Opc == X86ISD::SMUL ||
10097        Opc == X86ISD::UMUL ||
10098        Opc == X86ISD::INC ||
10099        Opc == X86ISD::DEC ||
10100        Opc == X86ISD::OR ||
10101        Opc == X86ISD::XOR ||
10102        Opc == X86ISD::AND))
10103     return true;
10104
10105   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10106     return true;
10107
10108   return false;
10109 }
10110
10111 static bool isZero(SDValue V) {
10112   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10113   return C && C->isNullValue();
10114 }
10115
10116 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10117   if (V.getOpcode() != ISD::TRUNCATE)
10118     return false;
10119
10120   SDValue VOp0 = V.getOperand(0);
10121   unsigned InBits = VOp0.getValueSizeInBits();
10122   unsigned Bits = V.getValueSizeInBits();
10123   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10124 }
10125
10126 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10127   bool addTest = true;
10128   SDValue Cond  = Op.getOperand(0);
10129   SDValue Op1 = Op.getOperand(1);
10130   SDValue Op2 = Op.getOperand(2);
10131   SDLoc DL(Op);
10132   EVT VT = Op1.getValueType();
10133   SDValue CC;
10134
10135   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10136   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10137   // sequence later on.
10138   if (Cond.getOpcode() == ISD::SETCC &&
10139       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10140        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10141       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10142     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10143     int SSECC = translateX86FSETCC(
10144         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10145
10146     if (SSECC != 8) {
10147       unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10148       SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10149                                 DAG.getConstant(SSECC, MVT::i8));
10150       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10151       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10152       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10153     }
10154   }
10155
10156   if (Cond.getOpcode() == ISD::SETCC) {
10157     SDValue NewCond = LowerSETCC(Cond, DAG);
10158     if (NewCond.getNode())
10159       Cond = NewCond;
10160   }
10161
10162   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10163   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10164   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10165   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10166   if (Cond.getOpcode() == X86ISD::SETCC &&
10167       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10168       isZero(Cond.getOperand(1).getOperand(1))) {
10169     SDValue Cmp = Cond.getOperand(1);
10170
10171     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10172
10173     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10174         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10175       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10176
10177       SDValue CmpOp0 = Cmp.getOperand(0);
10178       // Apply further optimizations for special cases
10179       // (select (x != 0), -1, 0) -> neg & sbb
10180       // (select (x == 0), 0, -1) -> neg & sbb
10181       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10182         if (YC->isNullValue() &&
10183             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10184           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10185           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10186                                     DAG.getConstant(0, CmpOp0.getValueType()),
10187                                     CmpOp0);
10188           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10189                                     DAG.getConstant(X86::COND_B, MVT::i8),
10190                                     SDValue(Neg.getNode(), 1));
10191           return Res;
10192         }
10193
10194       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10195                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10196       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10197
10198       SDValue Res =   // Res = 0 or -1.
10199         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10200                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10201
10202       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10203         Res = DAG.getNOT(DL, Res, Res.getValueType());
10204
10205       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10206       if (N2C == 0 || !N2C->isNullValue())
10207         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10208       return Res;
10209     }
10210   }
10211
10212   // Look past (and (setcc_carry (cmp ...)), 1).
10213   if (Cond.getOpcode() == ISD::AND &&
10214       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10215     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10216     if (C && C->getAPIntValue() == 1)
10217       Cond = Cond.getOperand(0);
10218   }
10219
10220   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10221   // setting operand in place of the X86ISD::SETCC.
10222   unsigned CondOpcode = Cond.getOpcode();
10223   if (CondOpcode == X86ISD::SETCC ||
10224       CondOpcode == X86ISD::SETCC_CARRY) {
10225     CC = Cond.getOperand(0);
10226
10227     SDValue Cmp = Cond.getOperand(1);
10228     unsigned Opc = Cmp.getOpcode();
10229     MVT VT = Op.getSimpleValueType();
10230
10231     bool IllegalFPCMov = false;
10232     if (VT.isFloatingPoint() && !VT.isVector() &&
10233         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10234       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10235
10236     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10237         Opc == X86ISD::BT) { // FIXME
10238       Cond = Cmp;
10239       addTest = false;
10240     }
10241   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10242              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10243              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10244               Cond.getOperand(0).getValueType() != MVT::i8)) {
10245     SDValue LHS = Cond.getOperand(0);
10246     SDValue RHS = Cond.getOperand(1);
10247     unsigned X86Opcode;
10248     unsigned X86Cond;
10249     SDVTList VTs;
10250     switch (CondOpcode) {
10251     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10252     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10253     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10254     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10255     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10256     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10257     default: llvm_unreachable("unexpected overflowing operator");
10258     }
10259     if (CondOpcode == ISD::UMULO)
10260       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10261                           MVT::i32);
10262     else
10263       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10264
10265     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10266
10267     if (CondOpcode == ISD::UMULO)
10268       Cond = X86Op.getValue(2);
10269     else
10270       Cond = X86Op.getValue(1);
10271
10272     CC = DAG.getConstant(X86Cond, MVT::i8);
10273     addTest = false;
10274   }
10275
10276   if (addTest) {
10277     // Look pass the truncate if the high bits are known zero.
10278     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10279         Cond = Cond.getOperand(0);
10280
10281     // We know the result of AND is compared against zero. Try to match
10282     // it to BT.
10283     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10284       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10285       if (NewSetCC.getNode()) {
10286         CC = NewSetCC.getOperand(0);
10287         Cond = NewSetCC.getOperand(1);
10288         addTest = false;
10289       }
10290     }
10291   }
10292
10293   if (addTest) {
10294     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10295     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10296   }
10297
10298   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10299   // a <  b ?  0 : -1 -> RES = setcc_carry
10300   // a >= b ? -1 :  0 -> RES = setcc_carry
10301   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10302   if (Cond.getOpcode() == X86ISD::SUB) {
10303     Cond = ConvertCmpIfNecessary(Cond, DAG);
10304     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10305
10306     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10307         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10308       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10309                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10310       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10311         return DAG.getNOT(DL, Res, Res.getValueType());
10312       return Res;
10313     }
10314   }
10315
10316   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10317   // widen the cmov and push the truncate through. This avoids introducing a new
10318   // branch during isel and doesn't add any extensions.
10319   if (Op.getValueType() == MVT::i8 &&
10320       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10321     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10322     if (T1.getValueType() == T2.getValueType() &&
10323         // Blacklist CopyFromReg to avoid partial register stalls.
10324         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10325       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10326       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10327       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10328     }
10329   }
10330
10331   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10332   // condition is true.
10333   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10334   SDValue Ops[] = { Op2, Op1, CC, Cond };
10335   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10336 }
10337
10338 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10339   MVT VT = Op->getSimpleValueType(0);
10340   SDValue In = Op->getOperand(0);
10341   MVT InVT = In.getSimpleValueType();
10342   SDLoc dl(Op);
10343
10344   unsigned int NumElts = VT.getVectorNumElements();
10345   if (NumElts != 8 && NumElts != 16)
10346     return SDValue();
10347
10348   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10349     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10350
10351   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10352   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10353
10354   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10355   Constant *C = ConstantInt::get(*DAG.getContext(),
10356     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10357
10358   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10359   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10360   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10361                           MachinePointerInfo::getConstantPool(),
10362                           false, false, false, Alignment);
10363   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10364   if (VT.is512BitVector())
10365     return Brcst;
10366   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10367 }
10368
10369 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10370                                 SelectionDAG &DAG) {
10371   MVT VT = Op->getSimpleValueType(0);
10372   SDValue In = Op->getOperand(0);
10373   MVT InVT = In.getSimpleValueType();
10374   SDLoc dl(Op);
10375
10376   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10377     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10378
10379   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10380       (VT != MVT::v8i32 || InVT != MVT::v8i16))
10381     return SDValue();
10382
10383   if (Subtarget->hasInt256())
10384     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10385
10386   // Optimize vectors in AVX mode
10387   // Sign extend  v8i16 to v8i32 and
10388   //              v4i32 to v4i64
10389   //
10390   // Divide input vector into two parts
10391   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10392   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10393   // concat the vectors to original VT
10394
10395   unsigned NumElems = InVT.getVectorNumElements();
10396   SDValue Undef = DAG.getUNDEF(InVT);
10397
10398   SmallVector<int,8> ShufMask1(NumElems, -1);
10399   for (unsigned i = 0; i != NumElems/2; ++i)
10400     ShufMask1[i] = i;
10401
10402   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10403
10404   SmallVector<int,8> ShufMask2(NumElems, -1);
10405   for (unsigned i = 0; i != NumElems/2; ++i)
10406     ShufMask2[i] = i + NumElems/2;
10407
10408   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10409
10410   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10411                                 VT.getVectorNumElements()/2);
10412
10413   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10414   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10415
10416   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10417 }
10418
10419 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10420 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10421 // from the AND / OR.
10422 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10423   Opc = Op.getOpcode();
10424   if (Opc != ISD::OR && Opc != ISD::AND)
10425     return false;
10426   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10427           Op.getOperand(0).hasOneUse() &&
10428           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10429           Op.getOperand(1).hasOneUse());
10430 }
10431
10432 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10433 // 1 and that the SETCC node has a single use.
10434 static bool isXor1OfSetCC(SDValue Op) {
10435   if (Op.getOpcode() != ISD::XOR)
10436     return false;
10437   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10438   if (N1C && N1C->getAPIntValue() == 1) {
10439     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10440       Op.getOperand(0).hasOneUse();
10441   }
10442   return false;
10443 }
10444
10445 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10446   bool addTest = true;
10447   SDValue Chain = Op.getOperand(0);
10448   SDValue Cond  = Op.getOperand(1);
10449   SDValue Dest  = Op.getOperand(2);
10450   SDLoc dl(Op);
10451   SDValue CC;
10452   bool Inverted = false;
10453
10454   if (Cond.getOpcode() == ISD::SETCC) {
10455     // Check for setcc([su]{add,sub,mul}o == 0).
10456     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10457         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10458         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10459         Cond.getOperand(0).getResNo() == 1 &&
10460         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10461          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10462          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10463          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10464          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10465          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10466       Inverted = true;
10467       Cond = Cond.getOperand(0);
10468     } else {
10469       SDValue NewCond = LowerSETCC(Cond, DAG);
10470       if (NewCond.getNode())
10471         Cond = NewCond;
10472     }
10473   }
10474 #if 0
10475   // FIXME: LowerXALUO doesn't handle these!!
10476   else if (Cond.getOpcode() == X86ISD::ADD  ||
10477            Cond.getOpcode() == X86ISD::SUB  ||
10478            Cond.getOpcode() == X86ISD::SMUL ||
10479            Cond.getOpcode() == X86ISD::UMUL)
10480     Cond = LowerXALUO(Cond, DAG);
10481 #endif
10482
10483   // Look pass (and (setcc_carry (cmp ...)), 1).
10484   if (Cond.getOpcode() == ISD::AND &&
10485       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10486     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10487     if (C && C->getAPIntValue() == 1)
10488       Cond = Cond.getOperand(0);
10489   }
10490
10491   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10492   // setting operand in place of the X86ISD::SETCC.
10493   unsigned CondOpcode = Cond.getOpcode();
10494   if (CondOpcode == X86ISD::SETCC ||
10495       CondOpcode == X86ISD::SETCC_CARRY) {
10496     CC = Cond.getOperand(0);
10497
10498     SDValue Cmp = Cond.getOperand(1);
10499     unsigned Opc = Cmp.getOpcode();
10500     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10501     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10502       Cond = Cmp;
10503       addTest = false;
10504     } else {
10505       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10506       default: break;
10507       case X86::COND_O:
10508       case X86::COND_B:
10509         // These can only come from an arithmetic instruction with overflow,
10510         // e.g. SADDO, UADDO.
10511         Cond = Cond.getNode()->getOperand(1);
10512         addTest = false;
10513         break;
10514       }
10515     }
10516   }
10517   CondOpcode = Cond.getOpcode();
10518   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10519       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10520       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10521        Cond.getOperand(0).getValueType() != MVT::i8)) {
10522     SDValue LHS = Cond.getOperand(0);
10523     SDValue RHS = Cond.getOperand(1);
10524     unsigned X86Opcode;
10525     unsigned X86Cond;
10526     SDVTList VTs;
10527     switch (CondOpcode) {
10528     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10529     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10530     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10531     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10532     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10533     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10534     default: llvm_unreachable("unexpected overflowing operator");
10535     }
10536     if (Inverted)
10537       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10538     if (CondOpcode == ISD::UMULO)
10539       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10540                           MVT::i32);
10541     else
10542       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10543
10544     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10545
10546     if (CondOpcode == ISD::UMULO)
10547       Cond = X86Op.getValue(2);
10548     else
10549       Cond = X86Op.getValue(1);
10550
10551     CC = DAG.getConstant(X86Cond, MVT::i8);
10552     addTest = false;
10553   } else {
10554     unsigned CondOpc;
10555     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10556       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10557       if (CondOpc == ISD::OR) {
10558         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10559         // two branches instead of an explicit OR instruction with a
10560         // separate test.
10561         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10562             isX86LogicalCmp(Cmp)) {
10563           CC = Cond.getOperand(0).getOperand(0);
10564           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10565                               Chain, Dest, CC, Cmp);
10566           CC = Cond.getOperand(1).getOperand(0);
10567           Cond = Cmp;
10568           addTest = false;
10569         }
10570       } else { // ISD::AND
10571         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10572         // two branches instead of an explicit AND instruction with a
10573         // separate test. However, we only do this if this block doesn't
10574         // have a fall-through edge, because this requires an explicit
10575         // jmp when the condition is false.
10576         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10577             isX86LogicalCmp(Cmp) &&
10578             Op.getNode()->hasOneUse()) {
10579           X86::CondCode CCode =
10580             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10581           CCode = X86::GetOppositeBranchCondition(CCode);
10582           CC = DAG.getConstant(CCode, MVT::i8);
10583           SDNode *User = *Op.getNode()->use_begin();
10584           // Look for an unconditional branch following this conditional branch.
10585           // We need this because we need to reverse the successors in order
10586           // to implement FCMP_OEQ.
10587           if (User->getOpcode() == ISD::BR) {
10588             SDValue FalseBB = User->getOperand(1);
10589             SDNode *NewBR =
10590               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10591             assert(NewBR == User);
10592             (void)NewBR;
10593             Dest = FalseBB;
10594
10595             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10596                                 Chain, Dest, CC, Cmp);
10597             X86::CondCode CCode =
10598               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10599             CCode = X86::GetOppositeBranchCondition(CCode);
10600             CC = DAG.getConstant(CCode, MVT::i8);
10601             Cond = Cmp;
10602             addTest = false;
10603           }
10604         }
10605       }
10606     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10607       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10608       // It should be transformed during dag combiner except when the condition
10609       // is set by a arithmetics with overflow node.
10610       X86::CondCode CCode =
10611         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10612       CCode = X86::GetOppositeBranchCondition(CCode);
10613       CC = DAG.getConstant(CCode, MVT::i8);
10614       Cond = Cond.getOperand(0).getOperand(1);
10615       addTest = false;
10616     } else if (Cond.getOpcode() == ISD::SETCC &&
10617                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10618       // For FCMP_OEQ, we can emit
10619       // two branches instead of an explicit AND instruction with a
10620       // separate test. However, we only do this if this block doesn't
10621       // have a fall-through edge, because this requires an explicit
10622       // jmp when the condition is false.
10623       if (Op.getNode()->hasOneUse()) {
10624         SDNode *User = *Op.getNode()->use_begin();
10625         // Look for an unconditional branch following this conditional branch.
10626         // We need this because we need to reverse the successors in order
10627         // to implement FCMP_OEQ.
10628         if (User->getOpcode() == ISD::BR) {
10629           SDValue FalseBB = User->getOperand(1);
10630           SDNode *NewBR =
10631             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10632           assert(NewBR == User);
10633           (void)NewBR;
10634           Dest = FalseBB;
10635
10636           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10637                                     Cond.getOperand(0), Cond.getOperand(1));
10638           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10639           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10640           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10641                               Chain, Dest, CC, Cmp);
10642           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10643           Cond = Cmp;
10644           addTest = false;
10645         }
10646       }
10647     } else if (Cond.getOpcode() == ISD::SETCC &&
10648                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10649       // For FCMP_UNE, we can emit
10650       // two branches instead of an explicit AND instruction with a
10651       // separate test. However, we only do this if this block doesn't
10652       // have a fall-through edge, because this requires an explicit
10653       // jmp when the condition is false.
10654       if (Op.getNode()->hasOneUse()) {
10655         SDNode *User = *Op.getNode()->use_begin();
10656         // Look for an unconditional branch following this conditional branch.
10657         // We need this because we need to reverse the successors in order
10658         // to implement FCMP_UNE.
10659         if (User->getOpcode() == ISD::BR) {
10660           SDValue FalseBB = User->getOperand(1);
10661           SDNode *NewBR =
10662             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10663           assert(NewBR == User);
10664           (void)NewBR;
10665
10666           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10667                                     Cond.getOperand(0), Cond.getOperand(1));
10668           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10669           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10670           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10671                               Chain, Dest, CC, Cmp);
10672           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10673           Cond = Cmp;
10674           addTest = false;
10675           Dest = FalseBB;
10676         }
10677       }
10678     }
10679   }
10680
10681   if (addTest) {
10682     // Look pass the truncate if the high bits are known zero.
10683     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10684         Cond = Cond.getOperand(0);
10685
10686     // We know the result of AND is compared against zero. Try to match
10687     // it to BT.
10688     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10689       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10690       if (NewSetCC.getNode()) {
10691         CC = NewSetCC.getOperand(0);
10692         Cond = NewSetCC.getOperand(1);
10693         addTest = false;
10694       }
10695     }
10696   }
10697
10698   if (addTest) {
10699     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10700     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10701   }
10702   Cond = ConvertCmpIfNecessary(Cond, DAG);
10703   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10704                      Chain, Dest, CC, Cond);
10705 }
10706
10707 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10708 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10709 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10710 // that the guard pages used by the OS virtual memory manager are allocated in
10711 // correct sequence.
10712 SDValue
10713 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10714                                            SelectionDAG &DAG) const {
10715   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10716           getTargetMachine().Options.EnableSegmentedStacks) &&
10717          "This should be used only on Windows targets or when segmented stacks "
10718          "are being used");
10719   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
10720   SDLoc dl(Op);
10721
10722   // Get the inputs.
10723   SDValue Chain = Op.getOperand(0);
10724   SDValue Size  = Op.getOperand(1);
10725   // FIXME: Ensure alignment here
10726
10727   bool Is64Bit = Subtarget->is64Bit();
10728   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10729
10730   if (getTargetMachine().Options.EnableSegmentedStacks) {
10731     MachineFunction &MF = DAG.getMachineFunction();
10732     MachineRegisterInfo &MRI = MF.getRegInfo();
10733
10734     if (Is64Bit) {
10735       // The 64 bit implementation of segmented stacks needs to clobber both r10
10736       // r11. This makes it impossible to use it along with nested parameters.
10737       const Function *F = MF.getFunction();
10738
10739       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10740            I != E; ++I)
10741         if (I->hasNestAttr())
10742           report_fatal_error("Cannot use segmented stacks with functions that "
10743                              "have nested arguments.");
10744     }
10745
10746     const TargetRegisterClass *AddrRegClass =
10747       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10748     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10749     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10750     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10751                                 DAG.getRegister(Vreg, SPTy));
10752     SDValue Ops1[2] = { Value, Chain };
10753     return DAG.getMergeValues(Ops1, 2, dl);
10754   } else {
10755     SDValue Flag;
10756     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10757
10758     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10759     Flag = Chain.getValue(1);
10760     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10761
10762     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10763     Flag = Chain.getValue(1);
10764
10765     const X86RegisterInfo *RegInfo =
10766       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10767     Chain = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
10768                                SPTy).getValue(1);
10769
10770     SDValue Ops1[2] = { Chain.getValue(0), Chain };
10771     return DAG.getMergeValues(Ops1, 2, dl);
10772   }
10773 }
10774
10775 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10776   MachineFunction &MF = DAG.getMachineFunction();
10777   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10778
10779   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10780   SDLoc DL(Op);
10781
10782   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10783     // vastart just stores the address of the VarArgsFrameIndex slot into the
10784     // memory location argument.
10785     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10786                                    getPointerTy());
10787     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10788                         MachinePointerInfo(SV), false, false, 0);
10789   }
10790
10791   // __va_list_tag:
10792   //   gp_offset         (0 - 6 * 8)
10793   //   fp_offset         (48 - 48 + 8 * 16)
10794   //   overflow_arg_area (point to parameters coming in memory).
10795   //   reg_save_area
10796   SmallVector<SDValue, 8> MemOps;
10797   SDValue FIN = Op.getOperand(1);
10798   // Store gp_offset
10799   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10800                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10801                                                MVT::i32),
10802                                FIN, MachinePointerInfo(SV), false, false, 0);
10803   MemOps.push_back(Store);
10804
10805   // Store fp_offset
10806   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10807                     FIN, DAG.getIntPtrConstant(4));
10808   Store = DAG.getStore(Op.getOperand(0), DL,
10809                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10810                                        MVT::i32),
10811                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10812   MemOps.push_back(Store);
10813
10814   // Store ptr to overflow_arg_area
10815   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10816                     FIN, DAG.getIntPtrConstant(4));
10817   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10818                                     getPointerTy());
10819   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10820                        MachinePointerInfo(SV, 8),
10821                        false, false, 0);
10822   MemOps.push_back(Store);
10823
10824   // Store ptr to reg_save_area.
10825   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10826                     FIN, DAG.getIntPtrConstant(8));
10827   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10828                                     getPointerTy());
10829   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10830                        MachinePointerInfo(SV, 16), false, false, 0);
10831   MemOps.push_back(Store);
10832   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
10833                      &MemOps[0], MemOps.size());
10834 }
10835
10836 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
10837   assert(Subtarget->is64Bit() &&
10838          "LowerVAARG only handles 64-bit va_arg!");
10839   assert((Subtarget->isTargetLinux() ||
10840           Subtarget->isTargetDarwin()) &&
10841           "Unhandled target in LowerVAARG");
10842   assert(Op.getNode()->getNumOperands() == 4);
10843   SDValue Chain = Op.getOperand(0);
10844   SDValue SrcPtr = Op.getOperand(1);
10845   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10846   unsigned Align = Op.getConstantOperandVal(3);
10847   SDLoc dl(Op);
10848
10849   EVT ArgVT = Op.getNode()->getValueType(0);
10850   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10851   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
10852   uint8_t ArgMode;
10853
10854   // Decide which area this value should be read from.
10855   // TODO: Implement the AMD64 ABI in its entirety. This simple
10856   // selection mechanism works only for the basic types.
10857   if (ArgVT == MVT::f80) {
10858     llvm_unreachable("va_arg for f80 not yet implemented");
10859   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10860     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
10861   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10862     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
10863   } else {
10864     llvm_unreachable("Unhandled argument type in LowerVAARG");
10865   }
10866
10867   if (ArgMode == 2) {
10868     // Sanity Check: Make sure using fp_offset makes sense.
10869     assert(!getTargetMachine().Options.UseSoftFloat &&
10870            !(DAG.getMachineFunction()
10871                 .getFunction()->getAttributes()
10872                 .hasAttribute(AttributeSet::FunctionIndex,
10873                               Attribute::NoImplicitFloat)) &&
10874            Subtarget->hasSSE1());
10875   }
10876
10877   // Insert VAARG_64 node into the DAG
10878   // VAARG_64 returns two values: Variable Argument Address, Chain
10879   SmallVector<SDValue, 11> InstOps;
10880   InstOps.push_back(Chain);
10881   InstOps.push_back(SrcPtr);
10882   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10883   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10884   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10885   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10886   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10887                                           VTs, &InstOps[0], InstOps.size(),
10888                                           MVT::i64,
10889                                           MachinePointerInfo(SV),
10890                                           /*Align=*/0,
10891                                           /*Volatile=*/false,
10892                                           /*ReadMem=*/true,
10893                                           /*WriteMem=*/true);
10894   Chain = VAARG.getValue(1);
10895
10896   // Load the next argument and return it
10897   return DAG.getLoad(ArgVT, dl,
10898                      Chain,
10899                      VAARG,
10900                      MachinePointerInfo(),
10901                      false, false, false, 0);
10902 }
10903
10904 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10905                            SelectionDAG &DAG) {
10906   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
10907   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
10908   SDValue Chain = Op.getOperand(0);
10909   SDValue DstPtr = Op.getOperand(1);
10910   SDValue SrcPtr = Op.getOperand(2);
10911   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10912   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10913   SDLoc DL(Op);
10914
10915   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
10916                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
10917                        false,
10918                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
10919 }
10920
10921 // getTargetVShiftNode - Handle vector element shifts where the shift amount
10922 // may or may not be a constant. Takes immediate version of shift as input.
10923 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
10924                                    SDValue SrcOp, SDValue ShAmt,
10925                                    SelectionDAG &DAG) {
10926   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10927
10928   if (isa<ConstantSDNode>(ShAmt)) {
10929     // Constant may be a TargetConstant. Use a regular constant.
10930     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
10931     switch (Opc) {
10932       default: llvm_unreachable("Unknown target vector shift node");
10933       case X86ISD::VSHLI:
10934       case X86ISD::VSRLI:
10935       case X86ISD::VSRAI:
10936         return DAG.getNode(Opc, dl, VT, SrcOp,
10937                            DAG.getConstant(ShiftAmt, MVT::i32));
10938     }
10939   }
10940
10941   // Change opcode to non-immediate version
10942   switch (Opc) {
10943     default: llvm_unreachable("Unknown target vector shift node");
10944     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10945     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10946     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10947   }
10948
10949   // Need to build a vector containing shift amount
10950   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10951   SDValue ShOps[4];
10952   ShOps[0] = ShAmt;
10953   ShOps[1] = DAG.getConstant(0, MVT::i32);
10954   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
10955   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
10956
10957   // The return type has to be a 128-bit type with the same element
10958   // type as the input type.
10959   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10960   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10961
10962   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
10963   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10964 }
10965
10966 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
10967   SDLoc dl(Op);
10968   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10969   switch (IntNo) {
10970   default: return SDValue();    // Don't custom lower most intrinsics.
10971   // Comparison intrinsics.
10972   case Intrinsic::x86_sse_comieq_ss:
10973   case Intrinsic::x86_sse_comilt_ss:
10974   case Intrinsic::x86_sse_comile_ss:
10975   case Intrinsic::x86_sse_comigt_ss:
10976   case Intrinsic::x86_sse_comige_ss:
10977   case Intrinsic::x86_sse_comineq_ss:
10978   case Intrinsic::x86_sse_ucomieq_ss:
10979   case Intrinsic::x86_sse_ucomilt_ss:
10980   case Intrinsic::x86_sse_ucomile_ss:
10981   case Intrinsic::x86_sse_ucomigt_ss:
10982   case Intrinsic::x86_sse_ucomige_ss:
10983   case Intrinsic::x86_sse_ucomineq_ss:
10984   case Intrinsic::x86_sse2_comieq_sd:
10985   case Intrinsic::x86_sse2_comilt_sd:
10986   case Intrinsic::x86_sse2_comile_sd:
10987   case Intrinsic::x86_sse2_comigt_sd:
10988   case Intrinsic::x86_sse2_comige_sd:
10989   case Intrinsic::x86_sse2_comineq_sd:
10990   case Intrinsic::x86_sse2_ucomieq_sd:
10991   case Intrinsic::x86_sse2_ucomilt_sd:
10992   case Intrinsic::x86_sse2_ucomile_sd:
10993   case Intrinsic::x86_sse2_ucomigt_sd:
10994   case Intrinsic::x86_sse2_ucomige_sd:
10995   case Intrinsic::x86_sse2_ucomineq_sd: {
10996     unsigned Opc;
10997     ISD::CondCode CC;
10998     switch (IntNo) {
10999     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11000     case Intrinsic::x86_sse_comieq_ss:
11001     case Intrinsic::x86_sse2_comieq_sd:
11002       Opc = X86ISD::COMI;
11003       CC = ISD::SETEQ;
11004       break;
11005     case Intrinsic::x86_sse_comilt_ss:
11006     case Intrinsic::x86_sse2_comilt_sd:
11007       Opc = X86ISD::COMI;
11008       CC = ISD::SETLT;
11009       break;
11010     case Intrinsic::x86_sse_comile_ss:
11011     case Intrinsic::x86_sse2_comile_sd:
11012       Opc = X86ISD::COMI;
11013       CC = ISD::SETLE;
11014       break;
11015     case Intrinsic::x86_sse_comigt_ss:
11016     case Intrinsic::x86_sse2_comigt_sd:
11017       Opc = X86ISD::COMI;
11018       CC = ISD::SETGT;
11019       break;
11020     case Intrinsic::x86_sse_comige_ss:
11021     case Intrinsic::x86_sse2_comige_sd:
11022       Opc = X86ISD::COMI;
11023       CC = ISD::SETGE;
11024       break;
11025     case Intrinsic::x86_sse_comineq_ss:
11026     case Intrinsic::x86_sse2_comineq_sd:
11027       Opc = X86ISD::COMI;
11028       CC = ISD::SETNE;
11029       break;
11030     case Intrinsic::x86_sse_ucomieq_ss:
11031     case Intrinsic::x86_sse2_ucomieq_sd:
11032       Opc = X86ISD::UCOMI;
11033       CC = ISD::SETEQ;
11034       break;
11035     case Intrinsic::x86_sse_ucomilt_ss:
11036     case Intrinsic::x86_sse2_ucomilt_sd:
11037       Opc = X86ISD::UCOMI;
11038       CC = ISD::SETLT;
11039       break;
11040     case Intrinsic::x86_sse_ucomile_ss:
11041     case Intrinsic::x86_sse2_ucomile_sd:
11042       Opc = X86ISD::UCOMI;
11043       CC = ISD::SETLE;
11044       break;
11045     case Intrinsic::x86_sse_ucomigt_ss:
11046     case Intrinsic::x86_sse2_ucomigt_sd:
11047       Opc = X86ISD::UCOMI;
11048       CC = ISD::SETGT;
11049       break;
11050     case Intrinsic::x86_sse_ucomige_ss:
11051     case Intrinsic::x86_sse2_ucomige_sd:
11052       Opc = X86ISD::UCOMI;
11053       CC = ISD::SETGE;
11054       break;
11055     case Intrinsic::x86_sse_ucomineq_ss:
11056     case Intrinsic::x86_sse2_ucomineq_sd:
11057       Opc = X86ISD::UCOMI;
11058       CC = ISD::SETNE;
11059       break;
11060     }
11061
11062     SDValue LHS = Op.getOperand(1);
11063     SDValue RHS = Op.getOperand(2);
11064     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11065     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11066     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11067     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11068                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11069     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11070   }
11071
11072   // Arithmetic intrinsics.
11073   case Intrinsic::x86_sse2_pmulu_dq:
11074   case Intrinsic::x86_avx2_pmulu_dq:
11075     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11076                        Op.getOperand(1), Op.getOperand(2));
11077
11078   // SSE2/AVX2 sub with unsigned saturation intrinsics
11079   case Intrinsic::x86_sse2_psubus_b:
11080   case Intrinsic::x86_sse2_psubus_w:
11081   case Intrinsic::x86_avx2_psubus_b:
11082   case Intrinsic::x86_avx2_psubus_w:
11083     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11084                        Op.getOperand(1), Op.getOperand(2));
11085
11086   // SSE3/AVX horizontal add/sub intrinsics
11087   case Intrinsic::x86_sse3_hadd_ps:
11088   case Intrinsic::x86_sse3_hadd_pd:
11089   case Intrinsic::x86_avx_hadd_ps_256:
11090   case Intrinsic::x86_avx_hadd_pd_256:
11091   case Intrinsic::x86_sse3_hsub_ps:
11092   case Intrinsic::x86_sse3_hsub_pd:
11093   case Intrinsic::x86_avx_hsub_ps_256:
11094   case Intrinsic::x86_avx_hsub_pd_256:
11095   case Intrinsic::x86_ssse3_phadd_w_128:
11096   case Intrinsic::x86_ssse3_phadd_d_128:
11097   case Intrinsic::x86_avx2_phadd_w:
11098   case Intrinsic::x86_avx2_phadd_d:
11099   case Intrinsic::x86_ssse3_phsub_w_128:
11100   case Intrinsic::x86_ssse3_phsub_d_128:
11101   case Intrinsic::x86_avx2_phsub_w:
11102   case Intrinsic::x86_avx2_phsub_d: {
11103     unsigned Opcode;
11104     switch (IntNo) {
11105     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11106     case Intrinsic::x86_sse3_hadd_ps:
11107     case Intrinsic::x86_sse3_hadd_pd:
11108     case Intrinsic::x86_avx_hadd_ps_256:
11109     case Intrinsic::x86_avx_hadd_pd_256:
11110       Opcode = X86ISD::FHADD;
11111       break;
11112     case Intrinsic::x86_sse3_hsub_ps:
11113     case Intrinsic::x86_sse3_hsub_pd:
11114     case Intrinsic::x86_avx_hsub_ps_256:
11115     case Intrinsic::x86_avx_hsub_pd_256:
11116       Opcode = X86ISD::FHSUB;
11117       break;
11118     case Intrinsic::x86_ssse3_phadd_w_128:
11119     case Intrinsic::x86_ssse3_phadd_d_128:
11120     case Intrinsic::x86_avx2_phadd_w:
11121     case Intrinsic::x86_avx2_phadd_d:
11122       Opcode = X86ISD::HADD;
11123       break;
11124     case Intrinsic::x86_ssse3_phsub_w_128:
11125     case Intrinsic::x86_ssse3_phsub_d_128:
11126     case Intrinsic::x86_avx2_phsub_w:
11127     case Intrinsic::x86_avx2_phsub_d:
11128       Opcode = X86ISD::HSUB;
11129       break;
11130     }
11131     return DAG.getNode(Opcode, dl, Op.getValueType(),
11132                        Op.getOperand(1), Op.getOperand(2));
11133   }
11134
11135   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11136   case Intrinsic::x86_sse2_pmaxu_b:
11137   case Intrinsic::x86_sse41_pmaxuw:
11138   case Intrinsic::x86_sse41_pmaxud:
11139   case Intrinsic::x86_avx2_pmaxu_b:
11140   case Intrinsic::x86_avx2_pmaxu_w:
11141   case Intrinsic::x86_avx2_pmaxu_d:
11142   case Intrinsic::x86_sse2_pminu_b:
11143   case Intrinsic::x86_sse41_pminuw:
11144   case Intrinsic::x86_sse41_pminud:
11145   case Intrinsic::x86_avx2_pminu_b:
11146   case Intrinsic::x86_avx2_pminu_w:
11147   case Intrinsic::x86_avx2_pminu_d:
11148   case Intrinsic::x86_sse41_pmaxsb:
11149   case Intrinsic::x86_sse2_pmaxs_w:
11150   case Intrinsic::x86_sse41_pmaxsd:
11151   case Intrinsic::x86_avx2_pmaxs_b:
11152   case Intrinsic::x86_avx2_pmaxs_w:
11153   case Intrinsic::x86_avx2_pmaxs_d:
11154   case Intrinsic::x86_sse41_pminsb:
11155   case Intrinsic::x86_sse2_pmins_w:
11156   case Intrinsic::x86_sse41_pminsd:
11157   case Intrinsic::x86_avx2_pmins_b:
11158   case Intrinsic::x86_avx2_pmins_w:
11159   case Intrinsic::x86_avx2_pmins_d: {
11160     unsigned Opcode;
11161     switch (IntNo) {
11162     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11163     case Intrinsic::x86_sse2_pmaxu_b:
11164     case Intrinsic::x86_sse41_pmaxuw:
11165     case Intrinsic::x86_sse41_pmaxud:
11166     case Intrinsic::x86_avx2_pmaxu_b:
11167     case Intrinsic::x86_avx2_pmaxu_w:
11168     case Intrinsic::x86_avx2_pmaxu_d:
11169       Opcode = X86ISD::UMAX;
11170       break;
11171     case Intrinsic::x86_sse2_pminu_b:
11172     case Intrinsic::x86_sse41_pminuw:
11173     case Intrinsic::x86_sse41_pminud:
11174     case Intrinsic::x86_avx2_pminu_b:
11175     case Intrinsic::x86_avx2_pminu_w:
11176     case Intrinsic::x86_avx2_pminu_d:
11177       Opcode = X86ISD::UMIN;
11178       break;
11179     case Intrinsic::x86_sse41_pmaxsb:
11180     case Intrinsic::x86_sse2_pmaxs_w:
11181     case Intrinsic::x86_sse41_pmaxsd:
11182     case Intrinsic::x86_avx2_pmaxs_b:
11183     case Intrinsic::x86_avx2_pmaxs_w:
11184     case Intrinsic::x86_avx2_pmaxs_d:
11185       Opcode = X86ISD::SMAX;
11186       break;
11187     case Intrinsic::x86_sse41_pminsb:
11188     case Intrinsic::x86_sse2_pmins_w:
11189     case Intrinsic::x86_sse41_pminsd:
11190     case Intrinsic::x86_avx2_pmins_b:
11191     case Intrinsic::x86_avx2_pmins_w:
11192     case Intrinsic::x86_avx2_pmins_d:
11193       Opcode = X86ISD::SMIN;
11194       break;
11195     }
11196     return DAG.getNode(Opcode, dl, Op.getValueType(),
11197                        Op.getOperand(1), Op.getOperand(2));
11198   }
11199
11200   // SSE/SSE2/AVX floating point max/min intrinsics.
11201   case Intrinsic::x86_sse_max_ps:
11202   case Intrinsic::x86_sse2_max_pd:
11203   case Intrinsic::x86_avx_max_ps_256:
11204   case Intrinsic::x86_avx_max_pd_256:
11205   case Intrinsic::x86_avx512_max_ps_512:
11206   case Intrinsic::x86_avx512_max_pd_512:
11207   case Intrinsic::x86_sse_min_ps:
11208   case Intrinsic::x86_sse2_min_pd:
11209   case Intrinsic::x86_avx_min_ps_256:
11210   case Intrinsic::x86_avx_min_pd_256:
11211   case Intrinsic::x86_avx512_min_ps_512:
11212   case Intrinsic::x86_avx512_min_pd_512:  {
11213     unsigned Opcode;
11214     switch (IntNo) {
11215     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11216     case Intrinsic::x86_sse_max_ps:
11217     case Intrinsic::x86_sse2_max_pd:
11218     case Intrinsic::x86_avx_max_ps_256:
11219     case Intrinsic::x86_avx_max_pd_256:
11220     case Intrinsic::x86_avx512_max_ps_512:
11221     case Intrinsic::x86_avx512_max_pd_512:
11222       Opcode = X86ISD::FMAX;
11223       break;
11224     case Intrinsic::x86_sse_min_ps:
11225     case Intrinsic::x86_sse2_min_pd:
11226     case Intrinsic::x86_avx_min_ps_256:
11227     case Intrinsic::x86_avx_min_pd_256:
11228     case Intrinsic::x86_avx512_min_ps_512:
11229     case Intrinsic::x86_avx512_min_pd_512:
11230       Opcode = X86ISD::FMIN;
11231       break;
11232     }
11233     return DAG.getNode(Opcode, dl, Op.getValueType(),
11234                        Op.getOperand(1), Op.getOperand(2));
11235   }
11236
11237   // AVX2 variable shift intrinsics
11238   case Intrinsic::x86_avx2_psllv_d:
11239   case Intrinsic::x86_avx2_psllv_q:
11240   case Intrinsic::x86_avx2_psllv_d_256:
11241   case Intrinsic::x86_avx2_psllv_q_256:
11242   case Intrinsic::x86_avx2_psrlv_d:
11243   case Intrinsic::x86_avx2_psrlv_q:
11244   case Intrinsic::x86_avx2_psrlv_d_256:
11245   case Intrinsic::x86_avx2_psrlv_q_256:
11246   case Intrinsic::x86_avx2_psrav_d:
11247   case Intrinsic::x86_avx2_psrav_d_256: {
11248     unsigned Opcode;
11249     switch (IntNo) {
11250     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11251     case Intrinsic::x86_avx2_psllv_d:
11252     case Intrinsic::x86_avx2_psllv_q:
11253     case Intrinsic::x86_avx2_psllv_d_256:
11254     case Intrinsic::x86_avx2_psllv_q_256:
11255       Opcode = ISD::SHL;
11256       break;
11257     case Intrinsic::x86_avx2_psrlv_d:
11258     case Intrinsic::x86_avx2_psrlv_q:
11259     case Intrinsic::x86_avx2_psrlv_d_256:
11260     case Intrinsic::x86_avx2_psrlv_q_256:
11261       Opcode = ISD::SRL;
11262       break;
11263     case Intrinsic::x86_avx2_psrav_d:
11264     case Intrinsic::x86_avx2_psrav_d_256:
11265       Opcode = ISD::SRA;
11266       break;
11267     }
11268     return DAG.getNode(Opcode, dl, Op.getValueType(),
11269                        Op.getOperand(1), Op.getOperand(2));
11270   }
11271
11272   case Intrinsic::x86_ssse3_pshuf_b_128:
11273   case Intrinsic::x86_avx2_pshuf_b:
11274     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11275                        Op.getOperand(1), Op.getOperand(2));
11276
11277   case Intrinsic::x86_ssse3_psign_b_128:
11278   case Intrinsic::x86_ssse3_psign_w_128:
11279   case Intrinsic::x86_ssse3_psign_d_128:
11280   case Intrinsic::x86_avx2_psign_b:
11281   case Intrinsic::x86_avx2_psign_w:
11282   case Intrinsic::x86_avx2_psign_d:
11283     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11284                        Op.getOperand(1), Op.getOperand(2));
11285
11286   case Intrinsic::x86_sse41_insertps:
11287     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11288                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11289
11290   case Intrinsic::x86_avx_vperm2f128_ps_256:
11291   case Intrinsic::x86_avx_vperm2f128_pd_256:
11292   case Intrinsic::x86_avx_vperm2f128_si_256:
11293   case Intrinsic::x86_avx2_vperm2i128:
11294     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11295                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11296
11297   case Intrinsic::x86_avx2_permd:
11298   case Intrinsic::x86_avx2_permps:
11299     // Operands intentionally swapped. Mask is last operand to intrinsic,
11300     // but second operand for node/intruction.
11301     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11302                        Op.getOperand(2), Op.getOperand(1));
11303
11304   case Intrinsic::x86_sse_sqrt_ps:
11305   case Intrinsic::x86_sse2_sqrt_pd:
11306   case Intrinsic::x86_avx_sqrt_ps_256:
11307   case Intrinsic::x86_avx_sqrt_pd_256:
11308     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11309
11310   // ptest and testp intrinsics. The intrinsic these come from are designed to
11311   // return an integer value, not just an instruction so lower it to the ptest
11312   // or testp pattern and a setcc for the result.
11313   case Intrinsic::x86_sse41_ptestz:
11314   case Intrinsic::x86_sse41_ptestc:
11315   case Intrinsic::x86_sse41_ptestnzc:
11316   case Intrinsic::x86_avx_ptestz_256:
11317   case Intrinsic::x86_avx_ptestc_256:
11318   case Intrinsic::x86_avx_ptestnzc_256:
11319   case Intrinsic::x86_avx_vtestz_ps:
11320   case Intrinsic::x86_avx_vtestc_ps:
11321   case Intrinsic::x86_avx_vtestnzc_ps:
11322   case Intrinsic::x86_avx_vtestz_pd:
11323   case Intrinsic::x86_avx_vtestc_pd:
11324   case Intrinsic::x86_avx_vtestnzc_pd:
11325   case Intrinsic::x86_avx_vtestz_ps_256:
11326   case Intrinsic::x86_avx_vtestc_ps_256:
11327   case Intrinsic::x86_avx_vtestnzc_ps_256:
11328   case Intrinsic::x86_avx_vtestz_pd_256:
11329   case Intrinsic::x86_avx_vtestc_pd_256:
11330   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11331     bool IsTestPacked = false;
11332     unsigned X86CC;
11333     switch (IntNo) {
11334     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11335     case Intrinsic::x86_avx_vtestz_ps:
11336     case Intrinsic::x86_avx_vtestz_pd:
11337     case Intrinsic::x86_avx_vtestz_ps_256:
11338     case Intrinsic::x86_avx_vtestz_pd_256:
11339       IsTestPacked = true; // Fallthrough
11340     case Intrinsic::x86_sse41_ptestz:
11341     case Intrinsic::x86_avx_ptestz_256:
11342       // ZF = 1
11343       X86CC = X86::COND_E;
11344       break;
11345     case Intrinsic::x86_avx_vtestc_ps:
11346     case Intrinsic::x86_avx_vtestc_pd:
11347     case Intrinsic::x86_avx_vtestc_ps_256:
11348     case Intrinsic::x86_avx_vtestc_pd_256:
11349       IsTestPacked = true; // Fallthrough
11350     case Intrinsic::x86_sse41_ptestc:
11351     case Intrinsic::x86_avx_ptestc_256:
11352       // CF = 1
11353       X86CC = X86::COND_B;
11354       break;
11355     case Intrinsic::x86_avx_vtestnzc_ps:
11356     case Intrinsic::x86_avx_vtestnzc_pd:
11357     case Intrinsic::x86_avx_vtestnzc_ps_256:
11358     case Intrinsic::x86_avx_vtestnzc_pd_256:
11359       IsTestPacked = true; // Fallthrough
11360     case Intrinsic::x86_sse41_ptestnzc:
11361     case Intrinsic::x86_avx_ptestnzc_256:
11362       // ZF and CF = 0
11363       X86CC = X86::COND_A;
11364       break;
11365     }
11366
11367     SDValue LHS = Op.getOperand(1);
11368     SDValue RHS = Op.getOperand(2);
11369     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11370     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11371     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11372     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11373     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11374   }
11375   case Intrinsic::x86_avx512_kortestz:
11376   case Intrinsic::x86_avx512_kortestc: {
11377     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11378     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11379     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11380     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11381     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11382     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11383     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11384   }
11385
11386   // SSE/AVX shift intrinsics
11387   case Intrinsic::x86_sse2_psll_w:
11388   case Intrinsic::x86_sse2_psll_d:
11389   case Intrinsic::x86_sse2_psll_q:
11390   case Intrinsic::x86_avx2_psll_w:
11391   case Intrinsic::x86_avx2_psll_d:
11392   case Intrinsic::x86_avx2_psll_q:
11393   case Intrinsic::x86_sse2_psrl_w:
11394   case Intrinsic::x86_sse2_psrl_d:
11395   case Intrinsic::x86_sse2_psrl_q:
11396   case Intrinsic::x86_avx2_psrl_w:
11397   case Intrinsic::x86_avx2_psrl_d:
11398   case Intrinsic::x86_avx2_psrl_q:
11399   case Intrinsic::x86_sse2_psra_w:
11400   case Intrinsic::x86_sse2_psra_d:
11401   case Intrinsic::x86_avx2_psra_w:
11402   case Intrinsic::x86_avx2_psra_d: {
11403     unsigned Opcode;
11404     switch (IntNo) {
11405     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11406     case Intrinsic::x86_sse2_psll_w:
11407     case Intrinsic::x86_sse2_psll_d:
11408     case Intrinsic::x86_sse2_psll_q:
11409     case Intrinsic::x86_avx2_psll_w:
11410     case Intrinsic::x86_avx2_psll_d:
11411     case Intrinsic::x86_avx2_psll_q:
11412       Opcode = X86ISD::VSHL;
11413       break;
11414     case Intrinsic::x86_sse2_psrl_w:
11415     case Intrinsic::x86_sse2_psrl_d:
11416     case Intrinsic::x86_sse2_psrl_q:
11417     case Intrinsic::x86_avx2_psrl_w:
11418     case Intrinsic::x86_avx2_psrl_d:
11419     case Intrinsic::x86_avx2_psrl_q:
11420       Opcode = X86ISD::VSRL;
11421       break;
11422     case Intrinsic::x86_sse2_psra_w:
11423     case Intrinsic::x86_sse2_psra_d:
11424     case Intrinsic::x86_avx2_psra_w:
11425     case Intrinsic::x86_avx2_psra_d:
11426       Opcode = X86ISD::VSRA;
11427       break;
11428     }
11429     return DAG.getNode(Opcode, dl, Op.getValueType(),
11430                        Op.getOperand(1), Op.getOperand(2));
11431   }
11432
11433   // SSE/AVX immediate shift intrinsics
11434   case Intrinsic::x86_sse2_pslli_w:
11435   case Intrinsic::x86_sse2_pslli_d:
11436   case Intrinsic::x86_sse2_pslli_q:
11437   case Intrinsic::x86_avx2_pslli_w:
11438   case Intrinsic::x86_avx2_pslli_d:
11439   case Intrinsic::x86_avx2_pslli_q:
11440   case Intrinsic::x86_sse2_psrli_w:
11441   case Intrinsic::x86_sse2_psrli_d:
11442   case Intrinsic::x86_sse2_psrli_q:
11443   case Intrinsic::x86_avx2_psrli_w:
11444   case Intrinsic::x86_avx2_psrli_d:
11445   case Intrinsic::x86_avx2_psrli_q:
11446   case Intrinsic::x86_sse2_psrai_w:
11447   case Intrinsic::x86_sse2_psrai_d:
11448   case Intrinsic::x86_avx2_psrai_w:
11449   case Intrinsic::x86_avx2_psrai_d: {
11450     unsigned Opcode;
11451     switch (IntNo) {
11452     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11453     case Intrinsic::x86_sse2_pslli_w:
11454     case Intrinsic::x86_sse2_pslli_d:
11455     case Intrinsic::x86_sse2_pslli_q:
11456     case Intrinsic::x86_avx2_pslli_w:
11457     case Intrinsic::x86_avx2_pslli_d:
11458     case Intrinsic::x86_avx2_pslli_q:
11459       Opcode = X86ISD::VSHLI;
11460       break;
11461     case Intrinsic::x86_sse2_psrli_w:
11462     case Intrinsic::x86_sse2_psrli_d:
11463     case Intrinsic::x86_sse2_psrli_q:
11464     case Intrinsic::x86_avx2_psrli_w:
11465     case Intrinsic::x86_avx2_psrli_d:
11466     case Intrinsic::x86_avx2_psrli_q:
11467       Opcode = X86ISD::VSRLI;
11468       break;
11469     case Intrinsic::x86_sse2_psrai_w:
11470     case Intrinsic::x86_sse2_psrai_d:
11471     case Intrinsic::x86_avx2_psrai_w:
11472     case Intrinsic::x86_avx2_psrai_d:
11473       Opcode = X86ISD::VSRAI;
11474       break;
11475     }
11476     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
11477                                Op.getOperand(1), Op.getOperand(2), DAG);
11478   }
11479
11480   case Intrinsic::x86_sse42_pcmpistria128:
11481   case Intrinsic::x86_sse42_pcmpestria128:
11482   case Intrinsic::x86_sse42_pcmpistric128:
11483   case Intrinsic::x86_sse42_pcmpestric128:
11484   case Intrinsic::x86_sse42_pcmpistrio128:
11485   case Intrinsic::x86_sse42_pcmpestrio128:
11486   case Intrinsic::x86_sse42_pcmpistris128:
11487   case Intrinsic::x86_sse42_pcmpestris128:
11488   case Intrinsic::x86_sse42_pcmpistriz128:
11489   case Intrinsic::x86_sse42_pcmpestriz128: {
11490     unsigned Opcode;
11491     unsigned X86CC;
11492     switch (IntNo) {
11493     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11494     case Intrinsic::x86_sse42_pcmpistria128:
11495       Opcode = X86ISD::PCMPISTRI;
11496       X86CC = X86::COND_A;
11497       break;
11498     case Intrinsic::x86_sse42_pcmpestria128:
11499       Opcode = X86ISD::PCMPESTRI;
11500       X86CC = X86::COND_A;
11501       break;
11502     case Intrinsic::x86_sse42_pcmpistric128:
11503       Opcode = X86ISD::PCMPISTRI;
11504       X86CC = X86::COND_B;
11505       break;
11506     case Intrinsic::x86_sse42_pcmpestric128:
11507       Opcode = X86ISD::PCMPESTRI;
11508       X86CC = X86::COND_B;
11509       break;
11510     case Intrinsic::x86_sse42_pcmpistrio128:
11511       Opcode = X86ISD::PCMPISTRI;
11512       X86CC = X86::COND_O;
11513       break;
11514     case Intrinsic::x86_sse42_pcmpestrio128:
11515       Opcode = X86ISD::PCMPESTRI;
11516       X86CC = X86::COND_O;
11517       break;
11518     case Intrinsic::x86_sse42_pcmpistris128:
11519       Opcode = X86ISD::PCMPISTRI;
11520       X86CC = X86::COND_S;
11521       break;
11522     case Intrinsic::x86_sse42_pcmpestris128:
11523       Opcode = X86ISD::PCMPESTRI;
11524       X86CC = X86::COND_S;
11525       break;
11526     case Intrinsic::x86_sse42_pcmpistriz128:
11527       Opcode = X86ISD::PCMPISTRI;
11528       X86CC = X86::COND_E;
11529       break;
11530     case Intrinsic::x86_sse42_pcmpestriz128:
11531       Opcode = X86ISD::PCMPESTRI;
11532       X86CC = X86::COND_E;
11533       break;
11534     }
11535     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11536     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11537     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11538     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11539                                 DAG.getConstant(X86CC, MVT::i8),
11540                                 SDValue(PCMP.getNode(), 1));
11541     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11542   }
11543
11544   case Intrinsic::x86_sse42_pcmpistri128:
11545   case Intrinsic::x86_sse42_pcmpestri128: {
11546     unsigned Opcode;
11547     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11548       Opcode = X86ISD::PCMPISTRI;
11549     else
11550       Opcode = X86ISD::PCMPESTRI;
11551
11552     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11553     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11554     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11555   }
11556   case Intrinsic::x86_fma_vfmadd_ps:
11557   case Intrinsic::x86_fma_vfmadd_pd:
11558   case Intrinsic::x86_fma_vfmsub_ps:
11559   case Intrinsic::x86_fma_vfmsub_pd:
11560   case Intrinsic::x86_fma_vfnmadd_ps:
11561   case Intrinsic::x86_fma_vfnmadd_pd:
11562   case Intrinsic::x86_fma_vfnmsub_ps:
11563   case Intrinsic::x86_fma_vfnmsub_pd:
11564   case Intrinsic::x86_fma_vfmaddsub_ps:
11565   case Intrinsic::x86_fma_vfmaddsub_pd:
11566   case Intrinsic::x86_fma_vfmsubadd_ps:
11567   case Intrinsic::x86_fma_vfmsubadd_pd:
11568   case Intrinsic::x86_fma_vfmadd_ps_256:
11569   case Intrinsic::x86_fma_vfmadd_pd_256:
11570   case Intrinsic::x86_fma_vfmsub_ps_256:
11571   case Intrinsic::x86_fma_vfmsub_pd_256:
11572   case Intrinsic::x86_fma_vfnmadd_ps_256:
11573   case Intrinsic::x86_fma_vfnmadd_pd_256:
11574   case Intrinsic::x86_fma_vfnmsub_ps_256:
11575   case Intrinsic::x86_fma_vfnmsub_pd_256:
11576   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11577   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11578   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11579   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
11580     unsigned Opc;
11581     switch (IntNo) {
11582     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11583     case Intrinsic::x86_fma_vfmadd_ps:
11584     case Intrinsic::x86_fma_vfmadd_pd:
11585     case Intrinsic::x86_fma_vfmadd_ps_256:
11586     case Intrinsic::x86_fma_vfmadd_pd_256:
11587       Opc = X86ISD::FMADD;
11588       break;
11589     case Intrinsic::x86_fma_vfmsub_ps:
11590     case Intrinsic::x86_fma_vfmsub_pd:
11591     case Intrinsic::x86_fma_vfmsub_ps_256:
11592     case Intrinsic::x86_fma_vfmsub_pd_256:
11593       Opc = X86ISD::FMSUB;
11594       break;
11595     case Intrinsic::x86_fma_vfnmadd_ps:
11596     case Intrinsic::x86_fma_vfnmadd_pd:
11597     case Intrinsic::x86_fma_vfnmadd_ps_256:
11598     case Intrinsic::x86_fma_vfnmadd_pd_256:
11599       Opc = X86ISD::FNMADD;
11600       break;
11601     case Intrinsic::x86_fma_vfnmsub_ps:
11602     case Intrinsic::x86_fma_vfnmsub_pd:
11603     case Intrinsic::x86_fma_vfnmsub_ps_256:
11604     case Intrinsic::x86_fma_vfnmsub_pd_256:
11605       Opc = X86ISD::FNMSUB;
11606       break;
11607     case Intrinsic::x86_fma_vfmaddsub_ps:
11608     case Intrinsic::x86_fma_vfmaddsub_pd:
11609     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11610     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11611       Opc = X86ISD::FMADDSUB;
11612       break;
11613     case Intrinsic::x86_fma_vfmsubadd_ps:
11614     case Intrinsic::x86_fma_vfmsubadd_pd:
11615     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11616     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11617       Opc = X86ISD::FMSUBADD;
11618       break;
11619     }
11620
11621     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11622                        Op.getOperand(2), Op.getOperand(3));
11623   }
11624   }
11625 }
11626
11627 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11628                              SDValue Base, SDValue Index,
11629                              SDValue ScaleOp, SDValue Chain,
11630                              const X86Subtarget * Subtarget) {
11631   SDLoc dl(Op);
11632   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11633   assert(C && "Invalid scale type");
11634   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11635   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11636   EVT MaskVT = MVT::getVectorVT(MVT::i1, 
11637                                 Index.getValueType().getVectorNumElements());
11638   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11639   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11640   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11641   SDValue Segment = DAG.getRegister(0, MVT::i32);
11642   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11643   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11644   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11645   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11646 }
11647
11648 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11649                               SDValue Src, SDValue Mask, SDValue Base,
11650                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11651                               const X86Subtarget * Subtarget) {
11652   SDLoc dl(Op);
11653   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11654   assert(C && "Invalid scale type");
11655   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11656   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11657                                 Index.getValueType().getVectorNumElements());
11658   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11659   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11660   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11661   SDValue Segment = DAG.getRegister(0, MVT::i32);
11662   if (Src.getOpcode() == ISD::UNDEF)
11663     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl); 
11664   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11665   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11666   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11667   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11668 }
11669
11670 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11671                               SDValue Src, SDValue Base, SDValue Index,
11672                               SDValue ScaleOp, SDValue Chain) {
11673   SDLoc dl(Op);
11674   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11675   assert(C && "Invalid scale type");
11676   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11677   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11678   SDValue Segment = DAG.getRegister(0, MVT::i32);
11679   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11680                                 Index.getValueType().getVectorNumElements());
11681   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11682   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11683   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11684   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11685   return SDValue(Res, 1);
11686 }
11687
11688 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11689                                SDValue Src, SDValue Mask, SDValue Base,
11690                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11691   SDLoc dl(Op);
11692   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11693   assert(C && "Invalid scale type");
11694   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11695   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11696   SDValue Segment = DAG.getRegister(0, MVT::i32);
11697   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11698                                 Index.getValueType().getVectorNumElements());
11699   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11700   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11701   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11702   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11703   return SDValue(Res, 1);
11704 }
11705
11706 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11707                                       SelectionDAG &DAG) {
11708   SDLoc dl(Op);
11709   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11710   switch (IntNo) {
11711   default: return SDValue();    // Don't custom lower most intrinsics.
11712
11713   // RDRAND/RDSEED intrinsics.
11714   case Intrinsic::x86_rdrand_16:
11715   case Intrinsic::x86_rdrand_32:
11716   case Intrinsic::x86_rdrand_64:
11717   case Intrinsic::x86_rdseed_16:
11718   case Intrinsic::x86_rdseed_32:
11719   case Intrinsic::x86_rdseed_64: {
11720     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11721                        IntNo == Intrinsic::x86_rdseed_32 ||
11722                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11723                                                             X86ISD::RDRAND;
11724     // Emit the node with the right value type.
11725     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11726     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11727
11728     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11729     // Otherwise return the value from Rand, which is always 0, casted to i32.
11730     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11731                       DAG.getConstant(1, Op->getValueType(1)),
11732                       DAG.getConstant(X86::COND_B, MVT::i32),
11733                       SDValue(Result.getNode(), 1) };
11734     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11735                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11736                                   Ops, array_lengthof(Ops));
11737
11738     // Return { result, isValid, chain }.
11739     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
11740                        SDValue(Result.getNode(), 2));
11741   }
11742   //int_gather(index, base, scale);
11743   case Intrinsic::x86_avx512_gather_qpd_512:
11744   case Intrinsic::x86_avx512_gather_qps_512:
11745   case Intrinsic::x86_avx512_gather_dpd_512:
11746   case Intrinsic::x86_avx512_gather_qpi_512:
11747   case Intrinsic::x86_avx512_gather_qpq_512:
11748   case Intrinsic::x86_avx512_gather_dpq_512:
11749   case Intrinsic::x86_avx512_gather_dps_512:
11750   case Intrinsic::x86_avx512_gather_dpi_512: {
11751     unsigned Opc;
11752     switch (IntNo) {
11753       default: llvm_unreachable("Unexpected intrinsic!");
11754       case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11755       case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11756       case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11757       case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11758       case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11759       case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11760       case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11761       case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11762     }
11763     SDValue Chain = Op.getOperand(0);
11764     SDValue Index = Op.getOperand(2);
11765     SDValue Base  = Op.getOperand(3);
11766     SDValue Scale = Op.getOperand(4);
11767     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11768   }
11769   //int_gather_mask(v1, mask, index, base, scale);
11770   case Intrinsic::x86_avx512_gather_qps_mask_512:
11771   case Intrinsic::x86_avx512_gather_qpd_mask_512:
11772   case Intrinsic::x86_avx512_gather_dpd_mask_512:
11773   case Intrinsic::x86_avx512_gather_dps_mask_512:
11774   case Intrinsic::x86_avx512_gather_qpi_mask_512:
11775   case Intrinsic::x86_avx512_gather_qpq_mask_512:
11776   case Intrinsic::x86_avx512_gather_dpi_mask_512:
11777   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11778     unsigned Opc;
11779     switch (IntNo) {
11780       default: llvm_unreachable("Unexpected intrinsic!");
11781       case Intrinsic::x86_avx512_gather_qps_mask_512: 
11782         Opc = X86::VGATHERQPSZrm; break;
11783       case Intrinsic::x86_avx512_gather_qpd_mask_512:
11784         Opc = X86::VGATHERQPDZrm; break;
11785       case Intrinsic::x86_avx512_gather_dpd_mask_512:
11786         Opc = X86::VGATHERDPDZrm; break;
11787       case Intrinsic::x86_avx512_gather_dps_mask_512:
11788         Opc = X86::VGATHERDPSZrm; break;
11789       case Intrinsic::x86_avx512_gather_qpi_mask_512:
11790         Opc = X86::VPGATHERQDZrm; break;
11791       case Intrinsic::x86_avx512_gather_qpq_mask_512:
11792         Opc = X86::VPGATHERQQZrm; break;
11793       case Intrinsic::x86_avx512_gather_dpi_mask_512:
11794         Opc = X86::VPGATHERDDZrm; break;
11795       case Intrinsic::x86_avx512_gather_dpq_mask_512:
11796         Opc = X86::VPGATHERDQZrm; break;
11797     }
11798     SDValue Chain = Op.getOperand(0);
11799     SDValue Src   = Op.getOperand(2);
11800     SDValue Mask  = Op.getOperand(3);
11801     SDValue Index = Op.getOperand(4);
11802     SDValue Base  = Op.getOperand(5);
11803     SDValue Scale = Op.getOperand(6);
11804     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11805                           Subtarget);
11806   }
11807   //int_scatter(base, index, v1, scale);
11808   case Intrinsic::x86_avx512_scatter_qpd_512:
11809   case Intrinsic::x86_avx512_scatter_qps_512:
11810   case Intrinsic::x86_avx512_scatter_dpd_512:
11811   case Intrinsic::x86_avx512_scatter_qpi_512:
11812   case Intrinsic::x86_avx512_scatter_qpq_512:
11813   case Intrinsic::x86_avx512_scatter_dpq_512:
11814   case Intrinsic::x86_avx512_scatter_dps_512:
11815   case Intrinsic::x86_avx512_scatter_dpi_512: {
11816     unsigned Opc;
11817     switch (IntNo) {
11818       default: llvm_unreachable("Unexpected intrinsic!");
11819       case Intrinsic::x86_avx512_scatter_qpd_512: 
11820         Opc = X86::VSCATTERQPDZmr; break;
11821       case Intrinsic::x86_avx512_scatter_qps_512:
11822         Opc = X86::VSCATTERQPSZmr; break;
11823       case Intrinsic::x86_avx512_scatter_dpd_512:
11824         Opc = X86::VSCATTERDPDZmr; break;
11825       case Intrinsic::x86_avx512_scatter_dps_512:
11826         Opc = X86::VSCATTERDPSZmr; break;
11827       case Intrinsic::x86_avx512_scatter_qpi_512:
11828         Opc = X86::VPSCATTERQDZmr; break;
11829       case Intrinsic::x86_avx512_scatter_qpq_512:
11830         Opc = X86::VPSCATTERQQZmr; break;
11831       case Intrinsic::x86_avx512_scatter_dpq_512:
11832         Opc = X86::VPSCATTERDQZmr; break;
11833       case Intrinsic::x86_avx512_scatter_dpi_512:
11834         Opc = X86::VPSCATTERDDZmr; break;
11835     }
11836     SDValue Chain = Op.getOperand(0);
11837     SDValue Base  = Op.getOperand(2);
11838     SDValue Index = Op.getOperand(3);
11839     SDValue Src   = Op.getOperand(4);
11840     SDValue Scale = Op.getOperand(5);
11841     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11842   }
11843   //int_scatter_mask(base, mask, index, v1, scale);
11844   case Intrinsic::x86_avx512_scatter_qps_mask_512:
11845   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11846   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11847   case Intrinsic::x86_avx512_scatter_dps_mask_512:
11848   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11849   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11850   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11851   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11852     unsigned Opc;
11853     switch (IntNo) {
11854       default: llvm_unreachable("Unexpected intrinsic!");
11855       case Intrinsic::x86_avx512_scatter_qpd_mask_512: 
11856         Opc = X86::VSCATTERQPDZmr; break;
11857       case Intrinsic::x86_avx512_scatter_qps_mask_512:
11858         Opc = X86::VSCATTERQPSZmr; break;
11859       case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11860         Opc = X86::VSCATTERDPDZmr; break;
11861       case Intrinsic::x86_avx512_scatter_dps_mask_512:
11862         Opc = X86::VSCATTERDPSZmr; break;
11863       case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11864         Opc = X86::VPSCATTERQDZmr; break;
11865       case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11866         Opc = X86::VPSCATTERQQZmr; break;
11867       case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11868         Opc = X86::VPSCATTERDQZmr; break;
11869       case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11870         Opc = X86::VPSCATTERDDZmr; break;
11871     }
11872     SDValue Chain = Op.getOperand(0);
11873     SDValue Base  = Op.getOperand(2);
11874     SDValue Mask  = Op.getOperand(3);
11875     SDValue Index = Op.getOperand(4);
11876     SDValue Src   = Op.getOperand(5);
11877     SDValue Scale = Op.getOperand(6);
11878     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11879   }
11880   // XTEST intrinsics.
11881   case Intrinsic::x86_xtest: {
11882     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11883     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11884     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11885                                 DAG.getConstant(X86::COND_NE, MVT::i8),
11886                                 InTrans);
11887     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11888     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11889                        Ret, SDValue(InTrans.getNode(), 1));
11890   }
11891   }
11892 }
11893
11894 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11895                                            SelectionDAG &DAG) const {
11896   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11897   MFI->setReturnAddressIsTaken(true);
11898
11899   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11900   SDLoc dl(Op);
11901   EVT PtrVT = getPointerTy();
11902
11903   if (Depth > 0) {
11904     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11905     const X86RegisterInfo *RegInfo =
11906       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11907     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
11908     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11909                        DAG.getNode(ISD::ADD, dl, PtrVT,
11910                                    FrameAddr, Offset),
11911                        MachinePointerInfo(), false, false, false, 0);
11912   }
11913
11914   // Just load the return address.
11915   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
11916   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11917                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
11918 }
11919
11920 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
11921   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11922   MFI->setFrameAddressIsTaken(true);
11923
11924   EVT VT = Op.getValueType();
11925   SDLoc dl(Op);  // FIXME probably not meaningful
11926   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11927   const X86RegisterInfo *RegInfo =
11928     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11929   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11930   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
11931           (FrameReg == X86::EBP && VT == MVT::i32)) &&
11932          "Invalid Frame Register!");
11933   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
11934   while (Depth--)
11935     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11936                             MachinePointerInfo(),
11937                             false, false, false, 0);
11938   return FrameAddr;
11939 }
11940
11941 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
11942                                                      SelectionDAG &DAG) const {
11943   const X86RegisterInfo *RegInfo =
11944     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11945   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
11946 }
11947
11948 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
11949   SDValue Chain     = Op.getOperand(0);
11950   SDValue Offset    = Op.getOperand(1);
11951   SDValue Handler   = Op.getOperand(2);
11952   SDLoc dl      (Op);
11953
11954   EVT PtrVT = getPointerTy();
11955   const X86RegisterInfo *RegInfo =
11956     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11957   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11958   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11959           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11960          "Invalid Frame Register!");
11961   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11962   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
11963
11964   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
11965                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
11966   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
11967   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
11968                        false, false, 0);
11969   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
11970
11971   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
11972                      DAG.getRegister(StoreAddrReg, PtrVT));
11973 }
11974
11975 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
11976                                                SelectionDAG &DAG) const {
11977   SDLoc DL(Op);
11978   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
11979                      DAG.getVTList(MVT::i32, MVT::Other),
11980                      Op.getOperand(0), Op.getOperand(1));
11981 }
11982
11983 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
11984                                                 SelectionDAG &DAG) const {
11985   SDLoc DL(Op);
11986   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
11987                      Op.getOperand(0), Op.getOperand(1));
11988 }
11989
11990 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
11991   return Op.getOperand(0);
11992 }
11993
11994 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
11995                                                 SelectionDAG &DAG) const {
11996   SDValue Root = Op.getOperand(0);
11997   SDValue Trmp = Op.getOperand(1); // trampoline
11998   SDValue FPtr = Op.getOperand(2); // nested function
11999   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12000   SDLoc dl (Op);
12001
12002   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12003   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12004
12005   if (Subtarget->is64Bit()) {
12006     SDValue OutChains[6];
12007
12008     // Large code-model.
12009     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12010     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12011
12012     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12013     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12014
12015     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12016
12017     // Load the pointer to the nested function into R11.
12018     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12019     SDValue Addr = Trmp;
12020     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12021                                 Addr, MachinePointerInfo(TrmpAddr),
12022                                 false, false, 0);
12023
12024     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12025                        DAG.getConstant(2, MVT::i64));
12026     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12027                                 MachinePointerInfo(TrmpAddr, 2),
12028                                 false, false, 2);
12029
12030     // Load the 'nest' parameter value into R10.
12031     // R10 is specified in X86CallingConv.td
12032     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12033     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12034                        DAG.getConstant(10, MVT::i64));
12035     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12036                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12037                                 false, false, 0);
12038
12039     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12040                        DAG.getConstant(12, MVT::i64));
12041     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12042                                 MachinePointerInfo(TrmpAddr, 12),
12043                                 false, false, 2);
12044
12045     // Jump to the nested function.
12046     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12047     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12048                        DAG.getConstant(20, MVT::i64));
12049     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12050                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12051                                 false, false, 0);
12052
12053     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12054     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12055                        DAG.getConstant(22, MVT::i64));
12056     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12057                                 MachinePointerInfo(TrmpAddr, 22),
12058                                 false, false, 0);
12059
12060     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12061   } else {
12062     const Function *Func =
12063       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12064     CallingConv::ID CC = Func->getCallingConv();
12065     unsigned NestReg;
12066
12067     switch (CC) {
12068     default:
12069       llvm_unreachable("Unsupported calling convention");
12070     case CallingConv::C:
12071     case CallingConv::X86_StdCall: {
12072       // Pass 'nest' parameter in ECX.
12073       // Must be kept in sync with X86CallingConv.td
12074       NestReg = X86::ECX;
12075
12076       // Check that ECX wasn't needed by an 'inreg' parameter.
12077       FunctionType *FTy = Func->getFunctionType();
12078       const AttributeSet &Attrs = Func->getAttributes();
12079
12080       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12081         unsigned InRegCount = 0;
12082         unsigned Idx = 1;
12083
12084         for (FunctionType::param_iterator I = FTy->param_begin(),
12085              E = FTy->param_end(); I != E; ++I, ++Idx)
12086           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12087             // FIXME: should only count parameters that are lowered to integers.
12088             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12089
12090         if (InRegCount > 2) {
12091           report_fatal_error("Nest register in use - reduce number of inreg"
12092                              " parameters!");
12093         }
12094       }
12095       break;
12096     }
12097     case CallingConv::X86_FastCall:
12098     case CallingConv::X86_ThisCall:
12099     case CallingConv::Fast:
12100       // Pass 'nest' parameter in EAX.
12101       // Must be kept in sync with X86CallingConv.td
12102       NestReg = X86::EAX;
12103       break;
12104     }
12105
12106     SDValue OutChains[4];
12107     SDValue Addr, Disp;
12108
12109     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12110                        DAG.getConstant(10, MVT::i32));
12111     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12112
12113     // This is storing the opcode for MOV32ri.
12114     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12115     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12116     OutChains[0] = DAG.getStore(Root, dl,
12117                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12118                                 Trmp, MachinePointerInfo(TrmpAddr),
12119                                 false, false, 0);
12120
12121     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12122                        DAG.getConstant(1, MVT::i32));
12123     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12124                                 MachinePointerInfo(TrmpAddr, 1),
12125                                 false, false, 1);
12126
12127     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12128     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12129                        DAG.getConstant(5, MVT::i32));
12130     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12131                                 MachinePointerInfo(TrmpAddr, 5),
12132                                 false, false, 1);
12133
12134     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12135                        DAG.getConstant(6, MVT::i32));
12136     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12137                                 MachinePointerInfo(TrmpAddr, 6),
12138                                 false, false, 1);
12139
12140     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12141   }
12142 }
12143
12144 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12145                                             SelectionDAG &DAG) const {
12146   /*
12147    The rounding mode is in bits 11:10 of FPSR, and has the following
12148    settings:
12149      00 Round to nearest
12150      01 Round to -inf
12151      10 Round to +inf
12152      11 Round to 0
12153
12154   FLT_ROUNDS, on the other hand, expects the following:
12155     -1 Undefined
12156      0 Round to 0
12157      1 Round to nearest
12158      2 Round to +inf
12159      3 Round to -inf
12160
12161   To perform the conversion, we do:
12162     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12163   */
12164
12165   MachineFunction &MF = DAG.getMachineFunction();
12166   const TargetMachine &TM = MF.getTarget();
12167   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12168   unsigned StackAlignment = TFI.getStackAlignment();
12169   EVT VT = Op.getValueType();
12170   SDLoc DL(Op);
12171
12172   // Save FP Control Word to stack slot
12173   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12174   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12175
12176   MachineMemOperand *MMO =
12177    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12178                            MachineMemOperand::MOStore, 2, 2);
12179
12180   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12181   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12182                                           DAG.getVTList(MVT::Other),
12183                                           Ops, array_lengthof(Ops), MVT::i16,
12184                                           MMO);
12185
12186   // Load FP Control Word from stack slot
12187   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12188                             MachinePointerInfo(), false, false, false, 0);
12189
12190   // Transform as necessary
12191   SDValue CWD1 =
12192     DAG.getNode(ISD::SRL, DL, MVT::i16,
12193                 DAG.getNode(ISD::AND, DL, MVT::i16,
12194                             CWD, DAG.getConstant(0x800, MVT::i16)),
12195                 DAG.getConstant(11, MVT::i8));
12196   SDValue CWD2 =
12197     DAG.getNode(ISD::SRL, DL, MVT::i16,
12198                 DAG.getNode(ISD::AND, DL, MVT::i16,
12199                             CWD, DAG.getConstant(0x400, MVT::i16)),
12200                 DAG.getConstant(9, MVT::i8));
12201
12202   SDValue RetVal =
12203     DAG.getNode(ISD::AND, DL, MVT::i16,
12204                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12205                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12206                             DAG.getConstant(1, MVT::i16)),
12207                 DAG.getConstant(3, MVT::i16));
12208
12209   return DAG.getNode((VT.getSizeInBits() < 16 ?
12210                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12211 }
12212
12213 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12214   EVT VT = Op.getValueType();
12215   EVT OpVT = VT;
12216   unsigned NumBits = VT.getSizeInBits();
12217   SDLoc dl(Op);
12218
12219   Op = Op.getOperand(0);
12220   if (VT == MVT::i8) {
12221     // Zero extend to i32 since there is not an i8 bsr.
12222     OpVT = MVT::i32;
12223     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12224   }
12225
12226   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12227   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12228   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12229
12230   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12231   SDValue Ops[] = {
12232     Op,
12233     DAG.getConstant(NumBits+NumBits-1, OpVT),
12234     DAG.getConstant(X86::COND_E, MVT::i8),
12235     Op.getValue(1)
12236   };
12237   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12238
12239   // Finally xor with NumBits-1.
12240   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12241
12242   if (VT == MVT::i8)
12243     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12244   return Op;
12245 }
12246
12247 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12248   EVT VT = Op.getValueType();
12249   EVT OpVT = VT;
12250   unsigned NumBits = VT.getSizeInBits();
12251   SDLoc dl(Op);
12252
12253   Op = Op.getOperand(0);
12254   if (VT == MVT::i8) {
12255     // Zero extend to i32 since there is not an i8 bsr.
12256     OpVT = MVT::i32;
12257     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12258   }
12259
12260   // Issue a bsr (scan bits in reverse).
12261   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12262   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12263
12264   // And xor with NumBits-1.
12265   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12266
12267   if (VT == MVT::i8)
12268     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12269   return Op;
12270 }
12271
12272 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12273   EVT VT = Op.getValueType();
12274   unsigned NumBits = VT.getSizeInBits();
12275   SDLoc dl(Op);
12276   Op = Op.getOperand(0);
12277
12278   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12279   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12280   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12281
12282   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12283   SDValue Ops[] = {
12284     Op,
12285     DAG.getConstant(NumBits, VT),
12286     DAG.getConstant(X86::COND_E, MVT::i8),
12287     Op.getValue(1)
12288   };
12289   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12290 }
12291
12292 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12293 // ones, and then concatenate the result back.
12294 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12295   EVT VT = Op.getValueType();
12296
12297   assert(VT.is256BitVector() && VT.isInteger() &&
12298          "Unsupported value type for operation");
12299
12300   unsigned NumElems = VT.getVectorNumElements();
12301   SDLoc dl(Op);
12302
12303   // Extract the LHS vectors
12304   SDValue LHS = Op.getOperand(0);
12305   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12306   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12307
12308   // Extract the RHS vectors
12309   SDValue RHS = Op.getOperand(1);
12310   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12311   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12312
12313   MVT EltVT = VT.getVectorElementType().getSimpleVT();
12314   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12315
12316   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12317                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12318                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12319 }
12320
12321 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12322   assert(Op.getValueType().is256BitVector() &&
12323          Op.getValueType().isInteger() &&
12324          "Only handle AVX 256-bit vector integer operation");
12325   return Lower256IntArith(Op, DAG);
12326 }
12327
12328 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12329   assert(Op.getValueType().is256BitVector() &&
12330          Op.getValueType().isInteger() &&
12331          "Only handle AVX 256-bit vector integer operation");
12332   return Lower256IntArith(Op, DAG);
12333 }
12334
12335 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12336                         SelectionDAG &DAG) {
12337   SDLoc dl(Op);
12338   EVT VT = Op.getValueType();
12339
12340   // Decompose 256-bit ops into smaller 128-bit ops.
12341   if (VT.is256BitVector() && !Subtarget->hasInt256())
12342     return Lower256IntArith(Op, DAG);
12343
12344   SDValue A = Op.getOperand(0);
12345   SDValue B = Op.getOperand(1);
12346
12347   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12348   if (VT == MVT::v4i32) {
12349     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12350            "Should not custom lower when pmuldq is available!");
12351
12352     // Extract the odd parts.
12353     static const int UnpackMask[] = { 1, -1, 3, -1 };
12354     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12355     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12356
12357     // Multiply the even parts.
12358     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12359     // Now multiply odd parts.
12360     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12361
12362     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12363     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12364
12365     // Merge the two vectors back together with a shuffle. This expands into 2
12366     // shuffles.
12367     static const int ShufMask[] = { 0, 4, 2, 6 };
12368     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12369   }
12370
12371   assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
12372          "Only know how to lower V2I64/V4I64 multiply");
12373
12374   //  Ahi = psrlqi(a, 32);
12375   //  Bhi = psrlqi(b, 32);
12376   //
12377   //  AloBlo = pmuludq(a, b);
12378   //  AloBhi = pmuludq(a, Bhi);
12379   //  AhiBlo = pmuludq(Ahi, b);
12380
12381   //  AloBhi = psllqi(AloBhi, 32);
12382   //  AhiBlo = psllqi(AhiBlo, 32);
12383   //  return AloBlo + AloBhi + AhiBlo;
12384
12385   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
12386
12387   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12388   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
12389
12390   // Bit cast to 32-bit vectors for MULUDQ
12391   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
12392   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12393   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12394   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12395   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12396
12397   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12398   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12399   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12400
12401   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12402   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
12403
12404   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12405   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12406 }
12407
12408 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12409   EVT VT = Op.getValueType();
12410   EVT EltTy = VT.getVectorElementType();
12411   unsigned NumElts = VT.getVectorNumElements();
12412   SDValue N0 = Op.getOperand(0);
12413   SDLoc dl(Op);
12414
12415   // Lower sdiv X, pow2-const.
12416   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12417   if (!C)
12418     return SDValue();
12419
12420   APInt SplatValue, SplatUndef;
12421   unsigned SplatBitSize;
12422   bool HasAnyUndefs;
12423   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12424                           HasAnyUndefs) ||
12425       EltTy.getSizeInBits() < SplatBitSize)
12426     return SDValue();
12427
12428   if ((SplatValue != 0) &&
12429       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12430     unsigned lg2 = SplatValue.countTrailingZeros();
12431     // Splat the sign bit.
12432     SDValue Sz = DAG.getConstant(EltTy.getSizeInBits()-1, MVT::i32);
12433     SDValue SGN = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, N0, Sz, DAG);
12434     // Add (N0 < 0) ? abs2 - 1 : 0;
12435     SDValue Amt = DAG.getConstant(EltTy.getSizeInBits() - lg2, MVT::i32);
12436     SDValue SRL = getTargetVShiftNode(X86ISD::VSRLI, dl, VT, SGN, Amt, DAG);
12437     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12438     SDValue Lg2Amt = DAG.getConstant(lg2, MVT::i32);
12439     SDValue SRA = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, ADD, Lg2Amt, DAG);
12440
12441     // If we're dividing by a positive value, we're done.  Otherwise, we must
12442     // negate the result.
12443     if (SplatValue.isNonNegative())
12444       return SRA;
12445
12446     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12447     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12448     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12449   }
12450   return SDValue();
12451 }
12452
12453 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12454                                          const X86Subtarget *Subtarget) {
12455   EVT VT = Op.getValueType();
12456   SDLoc dl(Op);
12457   SDValue R = Op.getOperand(0);
12458   SDValue Amt = Op.getOperand(1);
12459
12460   // Optimize shl/srl/sra with constant shift amount.
12461   if (isSplatVector(Amt.getNode())) {
12462     SDValue SclrAmt = Amt->getOperand(0);
12463     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12464       uint64_t ShiftAmt = C->getZExtValue();
12465
12466       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12467           (Subtarget->hasInt256() &&
12468            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12469           (Subtarget->hasAVX512() &&
12470            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12471         if (Op.getOpcode() == ISD::SHL)
12472           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12473                              DAG.getConstant(ShiftAmt, MVT::i32));
12474         if (Op.getOpcode() == ISD::SRL)
12475           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12476                              DAG.getConstant(ShiftAmt, MVT::i32));
12477         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12478           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12479                              DAG.getConstant(ShiftAmt, MVT::i32));
12480       }
12481
12482       if (VT == MVT::v16i8) {
12483         if (Op.getOpcode() == ISD::SHL) {
12484           // Make a large shift.
12485           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12486                                     DAG.getConstant(ShiftAmt, MVT::i32));
12487           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12488           // Zero out the rightmost bits.
12489           SmallVector<SDValue, 16> V(16,
12490                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12491                                                      MVT::i8));
12492           return DAG.getNode(ISD::AND, dl, VT, SHL,
12493                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12494         }
12495         if (Op.getOpcode() == ISD::SRL) {
12496           // Make a large shift.
12497           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12498                                     DAG.getConstant(ShiftAmt, MVT::i32));
12499           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12500           // Zero out the leftmost bits.
12501           SmallVector<SDValue, 16> V(16,
12502                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12503                                                      MVT::i8));
12504           return DAG.getNode(ISD::AND, dl, VT, SRL,
12505                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12506         }
12507         if (Op.getOpcode() == ISD::SRA) {
12508           if (ShiftAmt == 7) {
12509             // R s>> 7  ===  R s< 0
12510             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12511             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12512           }
12513
12514           // R s>> a === ((R u>> a) ^ m) - m
12515           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12516           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12517                                                          MVT::i8));
12518           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12519           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12520           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12521           return Res;
12522         }
12523         llvm_unreachable("Unknown shift opcode.");
12524       }
12525
12526       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12527         if (Op.getOpcode() == ISD::SHL) {
12528           // Make a large shift.
12529           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12530                                     DAG.getConstant(ShiftAmt, MVT::i32));
12531           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12532           // Zero out the rightmost bits.
12533           SmallVector<SDValue, 32> V(32,
12534                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12535                                                      MVT::i8));
12536           return DAG.getNode(ISD::AND, dl, VT, SHL,
12537                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12538         }
12539         if (Op.getOpcode() == ISD::SRL) {
12540           // Make a large shift.
12541           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12542                                     DAG.getConstant(ShiftAmt, MVT::i32));
12543           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12544           // Zero out the leftmost bits.
12545           SmallVector<SDValue, 32> V(32,
12546                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12547                                                      MVT::i8));
12548           return DAG.getNode(ISD::AND, dl, VT, SRL,
12549                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12550         }
12551         if (Op.getOpcode() == ISD::SRA) {
12552           if (ShiftAmt == 7) {
12553             // R s>> 7  ===  R s< 0
12554             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12555             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12556           }
12557
12558           // R s>> a === ((R u>> a) ^ m) - m
12559           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12560           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12561                                                          MVT::i8));
12562           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12563           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12564           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12565           return Res;
12566         }
12567         llvm_unreachable("Unknown shift opcode.");
12568       }
12569     }
12570   }
12571
12572   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12573   if (!Subtarget->is64Bit() &&
12574       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12575       Amt.getOpcode() == ISD::BITCAST &&
12576       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12577     Amt = Amt.getOperand(0);
12578     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12579                      VT.getVectorNumElements();
12580     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12581     uint64_t ShiftAmt = 0;
12582     for (unsigned i = 0; i != Ratio; ++i) {
12583       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12584       if (C == 0)
12585         return SDValue();
12586       // 6 == Log2(64)
12587       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12588     }
12589     // Check remaining shift amounts.
12590     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12591       uint64_t ShAmt = 0;
12592       for (unsigned j = 0; j != Ratio; ++j) {
12593         ConstantSDNode *C =
12594           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12595         if (C == 0)
12596           return SDValue();
12597         // 6 == Log2(64)
12598         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12599       }
12600       if (ShAmt != ShiftAmt)
12601         return SDValue();
12602     }
12603     switch (Op.getOpcode()) {
12604     default:
12605       llvm_unreachable("Unknown shift opcode!");
12606     case ISD::SHL:
12607       return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12608                          DAG.getConstant(ShiftAmt, MVT::i32));
12609     case ISD::SRL:
12610       return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12611                          DAG.getConstant(ShiftAmt, MVT::i32));
12612     case ISD::SRA:
12613       return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12614                          DAG.getConstant(ShiftAmt, MVT::i32));
12615     }
12616   }
12617
12618   return SDValue();
12619 }
12620
12621 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12622                                         const X86Subtarget* Subtarget) {
12623   EVT VT = Op.getValueType();
12624   SDLoc dl(Op);
12625   SDValue R = Op.getOperand(0);
12626   SDValue Amt = Op.getOperand(1);
12627
12628   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12629       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12630       (Subtarget->hasInt256() &&
12631        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12632         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12633        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12634     SDValue BaseShAmt;
12635     EVT EltVT = VT.getVectorElementType();
12636
12637     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12638       unsigned NumElts = VT.getVectorNumElements();
12639       unsigned i, j;
12640       for (i = 0; i != NumElts; ++i) {
12641         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12642           continue;
12643         break;
12644       }
12645       for (j = i; j != NumElts; ++j) {
12646         SDValue Arg = Amt.getOperand(j);
12647         if (Arg.getOpcode() == ISD::UNDEF) continue;
12648         if (Arg != Amt.getOperand(i))
12649           break;
12650       }
12651       if (i != NumElts && j == NumElts)
12652         BaseShAmt = Amt.getOperand(i);
12653     } else {
12654       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12655         Amt = Amt.getOperand(0);
12656       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12657                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12658         SDValue InVec = Amt.getOperand(0);
12659         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12660           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12661           unsigned i = 0;
12662           for (; i != NumElts; ++i) {
12663             SDValue Arg = InVec.getOperand(i);
12664             if (Arg.getOpcode() == ISD::UNDEF) continue;
12665             BaseShAmt = Arg;
12666             break;
12667           }
12668         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12669            if (ConstantSDNode *C =
12670                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12671              unsigned SplatIdx =
12672                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12673              if (C->getZExtValue() == SplatIdx)
12674                BaseShAmt = InVec.getOperand(1);
12675            }
12676         }
12677         if (BaseShAmt.getNode() == 0)
12678           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12679                                   DAG.getIntPtrConstant(0));
12680       }
12681     }
12682
12683     if (BaseShAmt.getNode()) {
12684       if (EltVT.bitsGT(MVT::i32))
12685         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12686       else if (EltVT.bitsLT(MVT::i32))
12687         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12688
12689       switch (Op.getOpcode()) {
12690       default:
12691         llvm_unreachable("Unknown shift opcode!");
12692       case ISD::SHL:
12693         switch (VT.getSimpleVT().SimpleTy) {
12694         default: return SDValue();
12695         case MVT::v2i64:
12696         case MVT::v4i32:
12697         case MVT::v8i16:
12698         case MVT::v4i64:
12699         case MVT::v8i32:
12700         case MVT::v16i16:
12701         case MVT::v16i32:
12702         case MVT::v8i64:
12703           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12704         }
12705       case ISD::SRA:
12706         switch (VT.getSimpleVT().SimpleTy) {
12707         default: return SDValue();
12708         case MVT::v4i32:
12709         case MVT::v8i16:
12710         case MVT::v8i32:
12711         case MVT::v16i16:
12712         case MVT::v16i32:
12713         case MVT::v8i64:
12714           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12715         }
12716       case ISD::SRL:
12717         switch (VT.getSimpleVT().SimpleTy) {
12718         default: return SDValue();
12719         case MVT::v2i64:
12720         case MVT::v4i32:
12721         case MVT::v8i16:
12722         case MVT::v4i64:
12723         case MVT::v8i32:
12724         case MVT::v16i16:
12725         case MVT::v16i32:
12726         case MVT::v8i64:
12727           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12728         }
12729       }
12730     }
12731   }
12732
12733   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12734   if (!Subtarget->is64Bit() &&
12735       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12736       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
12737       Amt.getOpcode() == ISD::BITCAST &&
12738       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12739     Amt = Amt.getOperand(0);
12740     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12741                      VT.getVectorNumElements();
12742     std::vector<SDValue> Vals(Ratio);
12743     for (unsigned i = 0; i != Ratio; ++i)
12744       Vals[i] = Amt.getOperand(i);
12745     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12746       for (unsigned j = 0; j != Ratio; ++j)
12747         if (Vals[j] != Amt.getOperand(i + j))
12748           return SDValue();
12749     }
12750     switch (Op.getOpcode()) {
12751     default:
12752       llvm_unreachable("Unknown shift opcode!");
12753     case ISD::SHL:
12754       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12755     case ISD::SRL:
12756       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12757     case ISD::SRA:
12758       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12759     }
12760   }
12761
12762   return SDValue();
12763 }
12764
12765 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12766                           SelectionDAG &DAG) {
12767
12768   EVT VT = Op.getValueType();
12769   SDLoc dl(Op);
12770   SDValue R = Op.getOperand(0);
12771   SDValue Amt = Op.getOperand(1);
12772   SDValue V;
12773
12774   if (!Subtarget->hasSSE2())
12775     return SDValue();
12776
12777   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12778   if (V.getNode())
12779     return V;
12780
12781   V = LowerScalarVariableShift(Op, DAG, Subtarget);
12782   if (V.getNode())
12783       return V;
12784
12785   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12786     return Op;
12787   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12788   if (Subtarget->hasInt256()) {
12789     if (Op.getOpcode() == ISD::SRL &&
12790         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12791          VT == MVT::v4i64 || VT == MVT::v8i32))
12792       return Op;
12793     if (Op.getOpcode() == ISD::SHL &&
12794         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12795          VT == MVT::v4i64 || VT == MVT::v8i32))
12796       return Op;
12797     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12798       return Op;
12799   }
12800
12801   // Lower SHL with variable shift amount.
12802   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
12803     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
12804
12805     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
12806     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
12807     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12808     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12809   }
12810   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
12811     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
12812
12813     // a = a << 5;
12814     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
12815     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
12816
12817     // Turn 'a' into a mask suitable for VSELECT
12818     SDValue VSelM = DAG.getConstant(0x80, VT);
12819     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12820     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12821
12822     SDValue CM1 = DAG.getConstant(0x0f, VT);
12823     SDValue CM2 = DAG.getConstant(0x3f, VT);
12824
12825     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12826     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
12827     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12828                             DAG.getConstant(4, MVT::i32), DAG);
12829     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12830     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12831
12832     // a += a
12833     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12834     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12835     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12836
12837     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12838     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
12839     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12840                             DAG.getConstant(2, MVT::i32), DAG);
12841     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12842     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12843
12844     // a += a
12845     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12846     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12847     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12848
12849     // return VSELECT(r, r+r, a);
12850     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
12851                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
12852     return R;
12853   }
12854
12855   // Decompose 256-bit shifts into smaller 128-bit shifts.
12856   if (VT.is256BitVector()) {
12857     unsigned NumElems = VT.getVectorNumElements();
12858     MVT EltVT = VT.getVectorElementType().getSimpleVT();
12859     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12860
12861     // Extract the two vectors
12862     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12863     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
12864
12865     // Recreate the shift amount vectors
12866     SDValue Amt1, Amt2;
12867     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12868       // Constant shift amount
12869       SmallVector<SDValue, 4> Amt1Csts;
12870       SmallVector<SDValue, 4> Amt2Csts;
12871       for (unsigned i = 0; i != NumElems/2; ++i)
12872         Amt1Csts.push_back(Amt->getOperand(i));
12873       for (unsigned i = NumElems/2; i != NumElems; ++i)
12874         Amt2Csts.push_back(Amt->getOperand(i));
12875
12876       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12877                                  &Amt1Csts[0], NumElems/2);
12878       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12879                                  &Amt2Csts[0], NumElems/2);
12880     } else {
12881       // Variable shift amount
12882       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12883       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
12884     }
12885
12886     // Issue new vector shifts for the smaller types
12887     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12888     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12889
12890     // Concatenate the result back
12891     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12892   }
12893
12894   return SDValue();
12895 }
12896
12897 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
12898   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12899   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
12900   // looks for this combo and may remove the "setcc" instruction if the "setcc"
12901   // has only one use.
12902   SDNode *N = Op.getNode();
12903   SDValue LHS = N->getOperand(0);
12904   SDValue RHS = N->getOperand(1);
12905   unsigned BaseOp = 0;
12906   unsigned Cond = 0;
12907   SDLoc DL(Op);
12908   switch (Op.getOpcode()) {
12909   default: llvm_unreachable("Unknown ovf instruction!");
12910   case ISD::SADDO:
12911     // A subtract of one will be selected as a INC. Note that INC doesn't
12912     // set CF, so we can't do this for UADDO.
12913     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12914       if (C->isOne()) {
12915         BaseOp = X86ISD::INC;
12916         Cond = X86::COND_O;
12917         break;
12918       }
12919     BaseOp = X86ISD::ADD;
12920     Cond = X86::COND_O;
12921     break;
12922   case ISD::UADDO:
12923     BaseOp = X86ISD::ADD;
12924     Cond = X86::COND_B;
12925     break;
12926   case ISD::SSUBO:
12927     // A subtract of one will be selected as a DEC. Note that DEC doesn't
12928     // set CF, so we can't do this for USUBO.
12929     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12930       if (C->isOne()) {
12931         BaseOp = X86ISD::DEC;
12932         Cond = X86::COND_O;
12933         break;
12934       }
12935     BaseOp = X86ISD::SUB;
12936     Cond = X86::COND_O;
12937     break;
12938   case ISD::USUBO:
12939     BaseOp = X86ISD::SUB;
12940     Cond = X86::COND_B;
12941     break;
12942   case ISD::SMULO:
12943     BaseOp = X86ISD::SMUL;
12944     Cond = X86::COND_O;
12945     break;
12946   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12947     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12948                                  MVT::i32);
12949     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
12950
12951     SDValue SetCC =
12952       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12953                   DAG.getConstant(X86::COND_O, MVT::i32),
12954                   SDValue(Sum.getNode(), 2));
12955
12956     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
12957   }
12958   }
12959
12960   // Also sets EFLAGS.
12961   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
12962   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
12963
12964   SDValue SetCC =
12965     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
12966                 DAG.getConstant(Cond, MVT::i32),
12967                 SDValue(Sum.getNode(), 1));
12968
12969   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
12970 }
12971
12972 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
12973                                                   SelectionDAG &DAG) const {
12974   SDLoc dl(Op);
12975   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
12976   EVT VT = Op.getValueType();
12977
12978   if (!Subtarget->hasSSE2() || !VT.isVector())
12979     return SDValue();
12980
12981   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
12982                       ExtraVT.getScalarType().getSizeInBits();
12983   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
12984
12985   switch (VT.getSimpleVT().SimpleTy) {
12986     default: return SDValue();
12987     case MVT::v8i32:
12988     case MVT::v16i16:
12989       if (!Subtarget->hasFp256())
12990         return SDValue();
12991       if (!Subtarget->hasInt256()) {
12992         // needs to be split
12993         unsigned NumElems = VT.getVectorNumElements();
12994
12995         // Extract the LHS vectors
12996         SDValue LHS = Op.getOperand(0);
12997         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12998         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12999
13000         MVT EltVT = VT.getVectorElementType().getSimpleVT();
13001         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13002
13003         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13004         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13005         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13006                                    ExtraNumElems/2);
13007         SDValue Extra = DAG.getValueType(ExtraVT);
13008
13009         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13010         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13011
13012         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13013       }
13014       // fall through
13015     case MVT::v4i32:
13016     case MVT::v8i16: {
13017       // (sext (vzext x)) -> (vsext x)
13018       SDValue Op0 = Op.getOperand(0);
13019       SDValue Op00 = Op0.getOperand(0);
13020       SDValue Tmp1;
13021       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13022       if (Op0.getOpcode() == ISD::BITCAST &&
13023           Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
13024         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13025       if (Tmp1.getNode()) {
13026         SDValue Tmp1Op0 = Tmp1.getOperand(0);
13027         assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13028                "This optimization is invalid without a VZEXT.");
13029         return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13030       }
13031
13032       // If the above didn't work, then just use Shift-Left + Shift-Right.
13033       Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
13034       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
13035     }
13036   }
13037 }
13038
13039 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13040                                  SelectionDAG &DAG) {
13041   SDLoc dl(Op);
13042   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13043     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13044   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13045     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13046
13047   // The only fence that needs an instruction is a sequentially-consistent
13048   // cross-thread fence.
13049   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13050     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13051     // no-sse2). There isn't any reason to disable it if the target processor
13052     // supports it.
13053     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13054       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13055
13056     SDValue Chain = Op.getOperand(0);
13057     SDValue Zero = DAG.getConstant(0, MVT::i32);
13058     SDValue Ops[] = {
13059       DAG.getRegister(X86::ESP, MVT::i32), // Base
13060       DAG.getTargetConstant(1, MVT::i8),   // Scale
13061       DAG.getRegister(0, MVT::i32),        // Index
13062       DAG.getTargetConstant(0, MVT::i32),  // Disp
13063       DAG.getRegister(0, MVT::i32),        // Segment.
13064       Zero,
13065       Chain
13066     };
13067     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13068     return SDValue(Res, 0);
13069   }
13070
13071   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13072   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13073 }
13074
13075 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13076                              SelectionDAG &DAG) {
13077   EVT T = Op.getValueType();
13078   SDLoc DL(Op);
13079   unsigned Reg = 0;
13080   unsigned size = 0;
13081   switch(T.getSimpleVT().SimpleTy) {
13082   default: llvm_unreachable("Invalid value type!");
13083   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13084   case MVT::i16: Reg = X86::AX;  size = 2; break;
13085   case MVT::i32: Reg = X86::EAX; size = 4; break;
13086   case MVT::i64:
13087     assert(Subtarget->is64Bit() && "Node not type legal!");
13088     Reg = X86::RAX; size = 8;
13089     break;
13090   }
13091   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13092                                     Op.getOperand(2), SDValue());
13093   SDValue Ops[] = { cpIn.getValue(0),
13094                     Op.getOperand(1),
13095                     Op.getOperand(3),
13096                     DAG.getTargetConstant(size, MVT::i8),
13097                     cpIn.getValue(1) };
13098   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13099   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13100   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13101                                            Ops, array_lengthof(Ops), T, MMO);
13102   SDValue cpOut =
13103     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13104   return cpOut;
13105 }
13106
13107 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13108                                      SelectionDAG &DAG) {
13109   assert(Subtarget->is64Bit() && "Result not type legalized?");
13110   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13111   SDValue TheChain = Op.getOperand(0);
13112   SDLoc dl(Op);
13113   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13114   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13115   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13116                                    rax.getValue(2));
13117   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13118                             DAG.getConstant(32, MVT::i8));
13119   SDValue Ops[] = {
13120     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13121     rdx.getValue(1)
13122   };
13123   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13124 }
13125
13126 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13127                             SelectionDAG &DAG) {
13128   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13129   MVT DstVT = Op.getSimpleValueType();
13130   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13131          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13132   assert((DstVT == MVT::i64 ||
13133           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13134          "Unexpected custom BITCAST");
13135   // i64 <=> MMX conversions are Legal.
13136   if (SrcVT==MVT::i64 && DstVT.isVector())
13137     return Op;
13138   if (DstVT==MVT::i64 && SrcVT.isVector())
13139     return Op;
13140   // MMX <=> MMX conversions are Legal.
13141   if (SrcVT.isVector() && DstVT.isVector())
13142     return Op;
13143   // All other conversions need to be expanded.
13144   return SDValue();
13145 }
13146
13147 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13148   SDNode *Node = Op.getNode();
13149   SDLoc dl(Node);
13150   EVT T = Node->getValueType(0);
13151   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13152                               DAG.getConstant(0, T), Node->getOperand(2));
13153   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13154                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13155                        Node->getOperand(0),
13156                        Node->getOperand(1), negOp,
13157                        cast<AtomicSDNode>(Node)->getSrcValue(),
13158                        cast<AtomicSDNode>(Node)->getAlignment(),
13159                        cast<AtomicSDNode>(Node)->getOrdering(),
13160                        cast<AtomicSDNode>(Node)->getSynchScope());
13161 }
13162
13163 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13164   SDNode *Node = Op.getNode();
13165   SDLoc dl(Node);
13166   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13167
13168   // Convert seq_cst store -> xchg
13169   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13170   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13171   //        (The only way to get a 16-byte store is cmpxchg16b)
13172   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13173   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13174       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13175     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13176                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13177                                  Node->getOperand(0),
13178                                  Node->getOperand(1), Node->getOperand(2),
13179                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13180                                  cast<AtomicSDNode>(Node)->getOrdering(),
13181                                  cast<AtomicSDNode>(Node)->getSynchScope());
13182     return Swap.getValue(1);
13183   }
13184   // Other atomic stores have a simple pattern.
13185   return Op;
13186 }
13187
13188 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13189   EVT VT = Op.getNode()->getValueType(0);
13190
13191   // Let legalize expand this if it isn't a legal type yet.
13192   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13193     return SDValue();
13194
13195   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13196
13197   unsigned Opc;
13198   bool ExtraOp = false;
13199   switch (Op.getOpcode()) {
13200   default: llvm_unreachable("Invalid code");
13201   case ISD::ADDC: Opc = X86ISD::ADD; break;
13202   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13203   case ISD::SUBC: Opc = X86ISD::SUB; break;
13204   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13205   }
13206
13207   if (!ExtraOp)
13208     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13209                        Op.getOperand(1));
13210   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13211                      Op.getOperand(1), Op.getOperand(2));
13212 }
13213
13214 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13215                             SelectionDAG &DAG) {
13216   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13217
13218   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13219   // which returns the values as { float, float } (in XMM0) or
13220   // { double, double } (which is returned in XMM0, XMM1).
13221   SDLoc dl(Op);
13222   SDValue Arg = Op.getOperand(0);
13223   EVT ArgVT = Arg.getValueType();
13224   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13225
13226   TargetLowering::ArgListTy Args;
13227   TargetLowering::ArgListEntry Entry;
13228
13229   Entry.Node = Arg;
13230   Entry.Ty = ArgTy;
13231   Entry.isSExt = false;
13232   Entry.isZExt = false;
13233   Args.push_back(Entry);
13234
13235   bool isF64 = ArgVT == MVT::f64;
13236   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13237   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13238   // the results are returned via SRet in memory.
13239   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13240   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13241   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13242
13243   Type *RetTy = isF64
13244     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13245     : (Type*)VectorType::get(ArgTy, 4);
13246   TargetLowering::
13247     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13248                          false, false, false, false, 0,
13249                          CallingConv::C, /*isTaillCall=*/false,
13250                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13251                          Callee, Args, DAG, dl);
13252   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13253
13254   if (isF64)
13255     // Returned in xmm0 and xmm1.
13256     return CallResult.first;
13257
13258   // Returned in bits 0:31 and 32:64 xmm0.
13259   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13260                                CallResult.first, DAG.getIntPtrConstant(0));
13261   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13262                                CallResult.first, DAG.getIntPtrConstant(1));
13263   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13264   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13265 }
13266
13267 /// LowerOperation - Provide custom lowering hooks for some operations.
13268 ///
13269 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13270   switch (Op.getOpcode()) {
13271   default: llvm_unreachable("Should not custom lower this!");
13272   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13273   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13274   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13275   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13276   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13277   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13278   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13279   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13280   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13281   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13282   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13283   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13284   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13285   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13286   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13287   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13288   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13289   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13290   case ISD::SHL_PARTS:
13291   case ISD::SRA_PARTS:
13292   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13293   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13294   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13295   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13296   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13297   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13298   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13299   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13300   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13301   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13302   case ISD::FABS:               return LowerFABS(Op, DAG);
13303   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13304   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13305   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13306   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13307   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13308   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13309   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13310   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13311   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13312   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13313   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13314   case ISD::INTRINSIC_VOID:
13315   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13316   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13317   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13318   case ISD::FRAME_TO_ARGS_OFFSET:
13319                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13320   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13321   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13322   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13323   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13324   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13325   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13326   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13327   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13328   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13329   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13330   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13331   case ISD::SRA:
13332   case ISD::SRL:
13333   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13334   case ISD::SADDO:
13335   case ISD::UADDO:
13336   case ISD::SSUBO:
13337   case ISD::USUBO:
13338   case ISD::SMULO:
13339   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13340   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13341   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13342   case ISD::ADDC:
13343   case ISD::ADDE:
13344   case ISD::SUBC:
13345   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13346   case ISD::ADD:                return LowerADD(Op, DAG);
13347   case ISD::SUB:                return LowerSUB(Op, DAG);
13348   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13349   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13350   }
13351 }
13352
13353 static void ReplaceATOMIC_LOAD(SDNode *Node,
13354                                   SmallVectorImpl<SDValue> &Results,
13355                                   SelectionDAG &DAG) {
13356   SDLoc dl(Node);
13357   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13358
13359   // Convert wide load -> cmpxchg8b/cmpxchg16b
13360   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13361   //        (The only way to get a 16-byte load is cmpxchg16b)
13362   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13363   SDValue Zero = DAG.getConstant(0, VT);
13364   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13365                                Node->getOperand(0),
13366                                Node->getOperand(1), Zero, Zero,
13367                                cast<AtomicSDNode>(Node)->getMemOperand(),
13368                                cast<AtomicSDNode>(Node)->getOrdering(),
13369                                cast<AtomicSDNode>(Node)->getSynchScope());
13370   Results.push_back(Swap.getValue(0));
13371   Results.push_back(Swap.getValue(1));
13372 }
13373
13374 static void
13375 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13376                         SelectionDAG &DAG, unsigned NewOp) {
13377   SDLoc dl(Node);
13378   assert (Node->getValueType(0) == MVT::i64 &&
13379           "Only know how to expand i64 atomics");
13380
13381   SDValue Chain = Node->getOperand(0);
13382   SDValue In1 = Node->getOperand(1);
13383   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13384                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13385   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13386                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13387   SDValue Ops[] = { Chain, In1, In2L, In2H };
13388   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13389   SDValue Result =
13390     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13391                             cast<MemSDNode>(Node)->getMemOperand());
13392   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13393   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13394   Results.push_back(Result.getValue(2));
13395 }
13396
13397 /// ReplaceNodeResults - Replace a node with an illegal result type
13398 /// with a new node built out of custom code.
13399 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13400                                            SmallVectorImpl<SDValue>&Results,
13401                                            SelectionDAG &DAG) const {
13402   SDLoc dl(N);
13403   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13404   switch (N->getOpcode()) {
13405   default:
13406     llvm_unreachable("Do not know how to custom type legalize this operation!");
13407   case ISD::SIGN_EXTEND_INREG:
13408   case ISD::ADDC:
13409   case ISD::ADDE:
13410   case ISD::SUBC:
13411   case ISD::SUBE:
13412     // We don't want to expand or promote these.
13413     return;
13414   case ISD::FP_TO_SINT:
13415   case ISD::FP_TO_UINT: {
13416     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13417
13418     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13419       return;
13420
13421     std::pair<SDValue,SDValue> Vals =
13422         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13423     SDValue FIST = Vals.first, StackSlot = Vals.second;
13424     if (FIST.getNode() != 0) {
13425       EVT VT = N->getValueType(0);
13426       // Return a load from the stack slot.
13427       if (StackSlot.getNode() != 0)
13428         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13429                                       MachinePointerInfo(),
13430                                       false, false, false, 0));
13431       else
13432         Results.push_back(FIST);
13433     }
13434     return;
13435   }
13436   case ISD::UINT_TO_FP: {
13437     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13438     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13439         N->getValueType(0) != MVT::v2f32)
13440       return;
13441     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13442                                  N->getOperand(0));
13443     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13444                                      MVT::f64);
13445     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13446     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13447                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13448     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13449     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13450     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13451     return;
13452   }
13453   case ISD::FP_ROUND: {
13454     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13455         return;
13456     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13457     Results.push_back(V);
13458     return;
13459   }
13460   case ISD::READCYCLECOUNTER: {
13461     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13462     SDValue TheChain = N->getOperand(0);
13463     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13464     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13465                                      rd.getValue(1));
13466     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13467                                      eax.getValue(2));
13468     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13469     SDValue Ops[] = { eax, edx };
13470     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13471                                   array_lengthof(Ops)));
13472     Results.push_back(edx.getValue(1));
13473     return;
13474   }
13475   case ISD::ATOMIC_CMP_SWAP: {
13476     EVT T = N->getValueType(0);
13477     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13478     bool Regs64bit = T == MVT::i128;
13479     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13480     SDValue cpInL, cpInH;
13481     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13482                         DAG.getConstant(0, HalfT));
13483     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13484                         DAG.getConstant(1, HalfT));
13485     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13486                              Regs64bit ? X86::RAX : X86::EAX,
13487                              cpInL, SDValue());
13488     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13489                              Regs64bit ? X86::RDX : X86::EDX,
13490                              cpInH, cpInL.getValue(1));
13491     SDValue swapInL, swapInH;
13492     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13493                           DAG.getConstant(0, HalfT));
13494     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13495                           DAG.getConstant(1, HalfT));
13496     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13497                                Regs64bit ? X86::RBX : X86::EBX,
13498                                swapInL, cpInH.getValue(1));
13499     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13500                                Regs64bit ? X86::RCX : X86::ECX,
13501                                swapInH, swapInL.getValue(1));
13502     SDValue Ops[] = { swapInH.getValue(0),
13503                       N->getOperand(1),
13504                       swapInH.getValue(1) };
13505     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13506     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13507     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13508                                   X86ISD::LCMPXCHG8_DAG;
13509     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13510                                              Ops, array_lengthof(Ops), T, MMO);
13511     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13512                                         Regs64bit ? X86::RAX : X86::EAX,
13513                                         HalfT, Result.getValue(1));
13514     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13515                                         Regs64bit ? X86::RDX : X86::EDX,
13516                                         HalfT, cpOutL.getValue(2));
13517     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13518     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13519     Results.push_back(cpOutH.getValue(1));
13520     return;
13521   }
13522   case ISD::ATOMIC_LOAD_ADD:
13523   case ISD::ATOMIC_LOAD_AND:
13524   case ISD::ATOMIC_LOAD_NAND:
13525   case ISD::ATOMIC_LOAD_OR:
13526   case ISD::ATOMIC_LOAD_SUB:
13527   case ISD::ATOMIC_LOAD_XOR:
13528   case ISD::ATOMIC_LOAD_MAX:
13529   case ISD::ATOMIC_LOAD_MIN:
13530   case ISD::ATOMIC_LOAD_UMAX:
13531   case ISD::ATOMIC_LOAD_UMIN:
13532   case ISD::ATOMIC_SWAP: {
13533     unsigned Opc;
13534     switch (N->getOpcode()) {
13535     default: llvm_unreachable("Unexpected opcode");
13536     case ISD::ATOMIC_LOAD_ADD:
13537       Opc = X86ISD::ATOMADD64_DAG;
13538       break;
13539     case ISD::ATOMIC_LOAD_AND:
13540       Opc = X86ISD::ATOMAND64_DAG;
13541       break;
13542     case ISD::ATOMIC_LOAD_NAND:
13543       Opc = X86ISD::ATOMNAND64_DAG;
13544       break;
13545     case ISD::ATOMIC_LOAD_OR:
13546       Opc = X86ISD::ATOMOR64_DAG;
13547       break;
13548     case ISD::ATOMIC_LOAD_SUB:
13549       Opc = X86ISD::ATOMSUB64_DAG;
13550       break;
13551     case ISD::ATOMIC_LOAD_XOR:
13552       Opc = X86ISD::ATOMXOR64_DAG;
13553       break;
13554     case ISD::ATOMIC_LOAD_MAX:
13555       Opc = X86ISD::ATOMMAX64_DAG;
13556       break;
13557     case ISD::ATOMIC_LOAD_MIN:
13558       Opc = X86ISD::ATOMMIN64_DAG;
13559       break;
13560     case ISD::ATOMIC_LOAD_UMAX:
13561       Opc = X86ISD::ATOMUMAX64_DAG;
13562       break;
13563     case ISD::ATOMIC_LOAD_UMIN:
13564       Opc = X86ISD::ATOMUMIN64_DAG;
13565       break;
13566     case ISD::ATOMIC_SWAP:
13567       Opc = X86ISD::ATOMSWAP64_DAG;
13568       break;
13569     }
13570     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13571     return;
13572   }
13573   case ISD::ATOMIC_LOAD:
13574     ReplaceATOMIC_LOAD(N, Results, DAG);
13575   }
13576 }
13577
13578 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13579   switch (Opcode) {
13580   default: return NULL;
13581   case X86ISD::BSF:                return "X86ISD::BSF";
13582   case X86ISD::BSR:                return "X86ISD::BSR";
13583   case X86ISD::SHLD:               return "X86ISD::SHLD";
13584   case X86ISD::SHRD:               return "X86ISD::SHRD";
13585   case X86ISD::FAND:               return "X86ISD::FAND";
13586   case X86ISD::FANDN:              return "X86ISD::FANDN";
13587   case X86ISD::FOR:                return "X86ISD::FOR";
13588   case X86ISD::FXOR:               return "X86ISD::FXOR";
13589   case X86ISD::FSRL:               return "X86ISD::FSRL";
13590   case X86ISD::FILD:               return "X86ISD::FILD";
13591   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13592   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13593   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13594   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13595   case X86ISD::FLD:                return "X86ISD::FLD";
13596   case X86ISD::FST:                return "X86ISD::FST";
13597   case X86ISD::CALL:               return "X86ISD::CALL";
13598   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13599   case X86ISD::BT:                 return "X86ISD::BT";
13600   case X86ISD::CMP:                return "X86ISD::CMP";
13601   case X86ISD::COMI:               return "X86ISD::COMI";
13602   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13603   case X86ISD::CMPM:               return "X86ISD::CMPM";
13604   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13605   case X86ISD::SETCC:              return "X86ISD::SETCC";
13606   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13607   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
13608   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
13609   case X86ISD::CMOV:               return "X86ISD::CMOV";
13610   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13611   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13612   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13613   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13614   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13615   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13616   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13617   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13618   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13619   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13620   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13621   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13622   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13623   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13624   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13625   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13626   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13627   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13628   case X86ISD::HADD:               return "X86ISD::HADD";
13629   case X86ISD::HSUB:               return "X86ISD::HSUB";
13630   case X86ISD::FHADD:              return "X86ISD::FHADD";
13631   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13632   case X86ISD::UMAX:               return "X86ISD::UMAX";
13633   case X86ISD::UMIN:               return "X86ISD::UMIN";
13634   case X86ISD::SMAX:               return "X86ISD::SMAX";
13635   case X86ISD::SMIN:               return "X86ISD::SMIN";
13636   case X86ISD::FMAX:               return "X86ISD::FMAX";
13637   case X86ISD::FMIN:               return "X86ISD::FMIN";
13638   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13639   case X86ISD::FMINC:              return "X86ISD::FMINC";
13640   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13641   case X86ISD::FRCP:               return "X86ISD::FRCP";
13642   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13643   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13644   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13645   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13646   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13647   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13648   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13649   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13650   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13651   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13652   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13653   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13654   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13655   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13656   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13657   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13658   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13659   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13660   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13661   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13662   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13663   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13664   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13665   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13666   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13667   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13668   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13669   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13670   case X86ISD::VSHL:               return "X86ISD::VSHL";
13671   case X86ISD::VSRL:               return "X86ISD::VSRL";
13672   case X86ISD::VSRA:               return "X86ISD::VSRA";
13673   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13674   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13675   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13676   case X86ISD::CMPP:               return "X86ISD::CMPP";
13677   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13678   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13679   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13680   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13681   case X86ISD::ADD:                return "X86ISD::ADD";
13682   case X86ISD::SUB:                return "X86ISD::SUB";
13683   case X86ISD::ADC:                return "X86ISD::ADC";
13684   case X86ISD::SBB:                return "X86ISD::SBB";
13685   case X86ISD::SMUL:               return "X86ISD::SMUL";
13686   case X86ISD::UMUL:               return "X86ISD::UMUL";
13687   case X86ISD::INC:                return "X86ISD::INC";
13688   case X86ISD::DEC:                return "X86ISD::DEC";
13689   case X86ISD::OR:                 return "X86ISD::OR";
13690   case X86ISD::XOR:                return "X86ISD::XOR";
13691   case X86ISD::AND:                return "X86ISD::AND";
13692   case X86ISD::BLSI:               return "X86ISD::BLSI";
13693   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13694   case X86ISD::BLSR:               return "X86ISD::BLSR";
13695   case X86ISD::BZHI:               return "X86ISD::BZHI";
13696   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13697   case X86ISD::PTEST:              return "X86ISD::PTEST";
13698   case X86ISD::TESTP:              return "X86ISD::TESTP";
13699   case X86ISD::TESTM:              return "X86ISD::TESTM";
13700   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13701   case X86ISD::KTEST:              return "X86ISD::KTEST";
13702   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13703   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13704   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13705   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13706   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13707   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13708   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13709   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13710   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13711   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13712   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13713   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13714   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13715   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13716   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
13717   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
13718   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
13719   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
13720   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
13721   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
13722   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
13723   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
13724   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
13725   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
13726   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
13727   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
13728   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
13729   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
13730   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
13731   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
13732   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
13733   case X86ISD::SAHF:               return "X86ISD::SAHF";
13734   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
13735   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
13736   case X86ISD::FMADD:              return "X86ISD::FMADD";
13737   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
13738   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
13739   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
13740   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
13741   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
13742   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
13743   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
13744   case X86ISD::XTEST:              return "X86ISD::XTEST";
13745   }
13746 }
13747
13748 // isLegalAddressingMode - Return true if the addressing mode represented
13749 // by AM is legal for this target, for a load/store of the specified type.
13750 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
13751                                               Type *Ty) const {
13752   // X86 supports extremely general addressing modes.
13753   CodeModel::Model M = getTargetMachine().getCodeModel();
13754   Reloc::Model R = getTargetMachine().getRelocationModel();
13755
13756   // X86 allows a sign-extended 32-bit immediate field as a displacement.
13757   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13758     return false;
13759
13760   if (AM.BaseGV) {
13761     unsigned GVFlags =
13762       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13763
13764     // If a reference to this global requires an extra load, we can't fold it.
13765     if (isGlobalStubReference(GVFlags))
13766       return false;
13767
13768     // If BaseGV requires a register for the PIC base, we cannot also have a
13769     // BaseReg specified.
13770     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13771       return false;
13772
13773     // If lower 4G is not available, then we must use rip-relative addressing.
13774     if ((M != CodeModel::Small || R != Reloc::Static) &&
13775         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13776       return false;
13777   }
13778
13779   switch (AM.Scale) {
13780   case 0:
13781   case 1:
13782   case 2:
13783   case 4:
13784   case 8:
13785     // These scales always work.
13786     break;
13787   case 3:
13788   case 5:
13789   case 9:
13790     // These scales are formed with basereg+scalereg.  Only accept if there is
13791     // no basereg yet.
13792     if (AM.HasBaseReg)
13793       return false;
13794     break;
13795   default:  // Other stuff never works.
13796     return false;
13797   }
13798
13799   return true;
13800 }
13801
13802 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13803   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13804     return false;
13805   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13806   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13807   return NumBits1 > NumBits2;
13808 }
13809
13810 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13811   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13812     return false;
13813
13814   if (!isTypeLegal(EVT::getEVT(Ty1)))
13815     return false;
13816
13817   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13818
13819   // Assuming the caller doesn't have a zeroext or signext return parameter,
13820   // truncation all the way down to i1 is valid.
13821   return true;
13822 }
13823
13824 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
13825   return isInt<32>(Imm);
13826 }
13827
13828 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
13829   // Can also use sub to handle negated immediates.
13830   return isInt<32>(Imm);
13831 }
13832
13833 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
13834   if (!VT1.isInteger() || !VT2.isInteger())
13835     return false;
13836   unsigned NumBits1 = VT1.getSizeInBits();
13837   unsigned NumBits2 = VT2.getSizeInBits();
13838   return NumBits1 > NumBits2;
13839 }
13840
13841 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13842   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13843   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
13844 }
13845
13846 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
13847   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13848   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
13849 }
13850
13851 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13852   EVT VT1 = Val.getValueType();
13853   if (isZExtFree(VT1, VT2))
13854     return true;
13855
13856   if (Val.getOpcode() != ISD::LOAD)
13857     return false;
13858
13859   if (!VT1.isSimple() || !VT1.isInteger() ||
13860       !VT2.isSimple() || !VT2.isInteger())
13861     return false;
13862
13863   switch (VT1.getSimpleVT().SimpleTy) {
13864   default: break;
13865   case MVT::i8:
13866   case MVT::i16:
13867   case MVT::i32:
13868     // X86 has 8, 16, and 32-bit zero-extending loads.
13869     return true;
13870   }
13871
13872   return false;
13873 }
13874
13875 bool
13876 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13877   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13878     return false;
13879
13880   VT = VT.getScalarType();
13881
13882   if (!VT.isSimple())
13883     return false;
13884
13885   switch (VT.getSimpleVT().SimpleTy) {
13886   case MVT::f32:
13887   case MVT::f64:
13888     return true;
13889   default:
13890     break;
13891   }
13892
13893   return false;
13894 }
13895
13896 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
13897   // i16 instructions are longer (0x66 prefix) and potentially slower.
13898   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
13899 }
13900
13901 /// isShuffleMaskLegal - Targets can use this to indicate that they only
13902 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13903 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13904 /// are assumed to be legal.
13905 bool
13906 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
13907                                       EVT VT) const {
13908   if (!VT.isSimple())
13909     return false;
13910
13911   MVT SVT = VT.getSimpleVT();
13912
13913   // Very little shuffling can be done for 64-bit vectors right now.
13914   if (VT.getSizeInBits() == 64)
13915     return false;
13916
13917   // FIXME: pshufb, blends, shifts.
13918   return (SVT.getVectorNumElements() == 2 ||
13919           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13920           isMOVLMask(M, SVT) ||
13921           isSHUFPMask(M, SVT) ||
13922           isPSHUFDMask(M, SVT) ||
13923           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13924           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13925           isPALIGNRMask(M, SVT, Subtarget) ||
13926           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13927           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13928           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13929           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
13930 }
13931
13932 bool
13933 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
13934                                           EVT VT) const {
13935   if (!VT.isSimple())
13936     return false;
13937
13938   MVT SVT = VT.getSimpleVT();
13939   unsigned NumElts = SVT.getVectorNumElements();
13940   // FIXME: This collection of masks seems suspect.
13941   if (NumElts == 2)
13942     return true;
13943   if (NumElts == 4 && SVT.is128BitVector()) {
13944     return (isMOVLMask(Mask, SVT)  ||
13945             isCommutedMOVLMask(Mask, SVT, true) ||
13946             isSHUFPMask(Mask, SVT) ||
13947             isSHUFPMask(Mask, SVT, /* Commuted */ true));
13948   }
13949   return false;
13950 }
13951
13952 //===----------------------------------------------------------------------===//
13953 //                           X86 Scheduler Hooks
13954 //===----------------------------------------------------------------------===//
13955
13956 /// Utility function to emit xbegin specifying the start of an RTM region.
13957 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
13958                                      const TargetInstrInfo *TII) {
13959   DebugLoc DL = MI->getDebugLoc();
13960
13961   const BasicBlock *BB = MBB->getBasicBlock();
13962   MachineFunction::iterator I = MBB;
13963   ++I;
13964
13965   // For the v = xbegin(), we generate
13966   //
13967   // thisMBB:
13968   //  xbegin sinkMBB
13969   //
13970   // mainMBB:
13971   //  eax = -1
13972   //
13973   // sinkMBB:
13974   //  v = eax
13975
13976   MachineBasicBlock *thisMBB = MBB;
13977   MachineFunction *MF = MBB->getParent();
13978   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13979   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13980   MF->insert(I, mainMBB);
13981   MF->insert(I, sinkMBB);
13982
13983   // Transfer the remainder of BB and its successor edges to sinkMBB.
13984   sinkMBB->splice(sinkMBB->begin(), MBB,
13985                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13986   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
13987
13988   // thisMBB:
13989   //  xbegin sinkMBB
13990   //  # fallthrough to mainMBB
13991   //  # abortion to sinkMBB
13992   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
13993   thisMBB->addSuccessor(mainMBB);
13994   thisMBB->addSuccessor(sinkMBB);
13995
13996   // mainMBB:
13997   //  EAX = -1
13998   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
13999   mainMBB->addSuccessor(sinkMBB);
14000
14001   // sinkMBB:
14002   // EAX is live into the sinkMBB
14003   sinkMBB->addLiveIn(X86::EAX);
14004   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14005           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14006     .addReg(X86::EAX);
14007
14008   MI->eraseFromParent();
14009   return sinkMBB;
14010 }
14011
14012 // Get CMPXCHG opcode for the specified data type.
14013 static unsigned getCmpXChgOpcode(EVT VT) {
14014   switch (VT.getSimpleVT().SimpleTy) {
14015   case MVT::i8:  return X86::LCMPXCHG8;
14016   case MVT::i16: return X86::LCMPXCHG16;
14017   case MVT::i32: return X86::LCMPXCHG32;
14018   case MVT::i64: return X86::LCMPXCHG64;
14019   default:
14020     break;
14021   }
14022   llvm_unreachable("Invalid operand size!");
14023 }
14024
14025 // Get LOAD opcode for the specified data type.
14026 static unsigned getLoadOpcode(EVT VT) {
14027   switch (VT.getSimpleVT().SimpleTy) {
14028   case MVT::i8:  return X86::MOV8rm;
14029   case MVT::i16: return X86::MOV16rm;
14030   case MVT::i32: return X86::MOV32rm;
14031   case MVT::i64: return X86::MOV64rm;
14032   default:
14033     break;
14034   }
14035   llvm_unreachable("Invalid operand size!");
14036 }
14037
14038 // Get opcode of the non-atomic one from the specified atomic instruction.
14039 static unsigned getNonAtomicOpcode(unsigned Opc) {
14040   switch (Opc) {
14041   case X86::ATOMAND8:  return X86::AND8rr;
14042   case X86::ATOMAND16: return X86::AND16rr;
14043   case X86::ATOMAND32: return X86::AND32rr;
14044   case X86::ATOMAND64: return X86::AND64rr;
14045   case X86::ATOMOR8:   return X86::OR8rr;
14046   case X86::ATOMOR16:  return X86::OR16rr;
14047   case X86::ATOMOR32:  return X86::OR32rr;
14048   case X86::ATOMOR64:  return X86::OR64rr;
14049   case X86::ATOMXOR8:  return X86::XOR8rr;
14050   case X86::ATOMXOR16: return X86::XOR16rr;
14051   case X86::ATOMXOR32: return X86::XOR32rr;
14052   case X86::ATOMXOR64: return X86::XOR64rr;
14053   }
14054   llvm_unreachable("Unhandled atomic-load-op opcode!");
14055 }
14056
14057 // Get opcode of the non-atomic one from the specified atomic instruction with
14058 // extra opcode.
14059 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14060                                                unsigned &ExtraOpc) {
14061   switch (Opc) {
14062   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14063   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14064   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14065   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14066   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14067   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14068   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14069   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14070   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14071   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14072   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14073   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14074   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14075   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14076   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14077   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14078   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14079   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14080   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14081   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14082   }
14083   llvm_unreachable("Unhandled atomic-load-op opcode!");
14084 }
14085
14086 // Get opcode of the non-atomic one from the specified atomic instruction for
14087 // 64-bit data type on 32-bit target.
14088 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14089   switch (Opc) {
14090   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14091   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14092   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14093   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14094   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14095   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14096   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14097   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14098   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14099   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14100   }
14101   llvm_unreachable("Unhandled atomic-load-op opcode!");
14102 }
14103
14104 // Get opcode of the non-atomic one from the specified atomic instruction for
14105 // 64-bit data type on 32-bit target with extra opcode.
14106 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14107                                                    unsigned &HiOpc,
14108                                                    unsigned &ExtraOpc) {
14109   switch (Opc) {
14110   case X86::ATOMNAND6432:
14111     ExtraOpc = X86::NOT32r;
14112     HiOpc = X86::AND32rr;
14113     return X86::AND32rr;
14114   }
14115   llvm_unreachable("Unhandled atomic-load-op opcode!");
14116 }
14117
14118 // Get pseudo CMOV opcode from the specified data type.
14119 static unsigned getPseudoCMOVOpc(EVT VT) {
14120   switch (VT.getSimpleVT().SimpleTy) {
14121   case MVT::i8:  return X86::CMOV_GR8;
14122   case MVT::i16: return X86::CMOV_GR16;
14123   case MVT::i32: return X86::CMOV_GR32;
14124   default:
14125     break;
14126   }
14127   llvm_unreachable("Unknown CMOV opcode!");
14128 }
14129
14130 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14131 // They will be translated into a spin-loop or compare-exchange loop from
14132 //
14133 //    ...
14134 //    dst = atomic-fetch-op MI.addr, MI.val
14135 //    ...
14136 //
14137 // to
14138 //
14139 //    ...
14140 //    t1 = LOAD MI.addr
14141 // loop:
14142 //    t4 = phi(t1, t3 / loop)
14143 //    t2 = OP MI.val, t4
14144 //    EAX = t4
14145 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14146 //    t3 = EAX
14147 //    JNE loop
14148 // sink:
14149 //    dst = t3
14150 //    ...
14151 MachineBasicBlock *
14152 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14153                                        MachineBasicBlock *MBB) const {
14154   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14155   DebugLoc DL = MI->getDebugLoc();
14156
14157   MachineFunction *MF = MBB->getParent();
14158   MachineRegisterInfo &MRI = MF->getRegInfo();
14159
14160   const BasicBlock *BB = MBB->getBasicBlock();
14161   MachineFunction::iterator I = MBB;
14162   ++I;
14163
14164   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14165          "Unexpected number of operands");
14166
14167   assert(MI->hasOneMemOperand() &&
14168          "Expected atomic-load-op to have one memoperand");
14169
14170   // Memory Reference
14171   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14172   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14173
14174   unsigned DstReg, SrcReg;
14175   unsigned MemOpndSlot;
14176
14177   unsigned CurOp = 0;
14178
14179   DstReg = MI->getOperand(CurOp++).getReg();
14180   MemOpndSlot = CurOp;
14181   CurOp += X86::AddrNumOperands;
14182   SrcReg = MI->getOperand(CurOp++).getReg();
14183
14184   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14185   MVT::SimpleValueType VT = *RC->vt_begin();
14186   unsigned t1 = MRI.createVirtualRegister(RC);
14187   unsigned t2 = MRI.createVirtualRegister(RC);
14188   unsigned t3 = MRI.createVirtualRegister(RC);
14189   unsigned t4 = MRI.createVirtualRegister(RC);
14190   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14191
14192   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14193   unsigned LOADOpc = getLoadOpcode(VT);
14194
14195   // For the atomic load-arith operator, we generate
14196   //
14197   //  thisMBB:
14198   //    t1 = LOAD [MI.addr]
14199   //  mainMBB:
14200   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14201   //    t1 = OP MI.val, EAX
14202   //    EAX = t4
14203   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14204   //    t3 = EAX
14205   //    JNE mainMBB
14206   //  sinkMBB:
14207   //    dst = t3
14208
14209   MachineBasicBlock *thisMBB = MBB;
14210   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14211   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14212   MF->insert(I, mainMBB);
14213   MF->insert(I, sinkMBB);
14214
14215   MachineInstrBuilder MIB;
14216
14217   // Transfer the remainder of BB and its successor edges to sinkMBB.
14218   sinkMBB->splice(sinkMBB->begin(), MBB,
14219                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14220   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14221
14222   // thisMBB:
14223   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14224   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14225     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14226     if (NewMO.isReg())
14227       NewMO.setIsKill(false);
14228     MIB.addOperand(NewMO);
14229   }
14230   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14231     unsigned flags = (*MMOI)->getFlags();
14232     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14233     MachineMemOperand *MMO =
14234       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14235                                (*MMOI)->getSize(),
14236                                (*MMOI)->getBaseAlignment(),
14237                                (*MMOI)->getTBAAInfo(),
14238                                (*MMOI)->getRanges());
14239     MIB.addMemOperand(MMO);
14240   }
14241
14242   thisMBB->addSuccessor(mainMBB);
14243
14244   // mainMBB:
14245   MachineBasicBlock *origMainMBB = mainMBB;
14246
14247   // Add a PHI.
14248   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14249                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14250
14251   unsigned Opc = MI->getOpcode();
14252   switch (Opc) {
14253   default:
14254     llvm_unreachable("Unhandled atomic-load-op opcode!");
14255   case X86::ATOMAND8:
14256   case X86::ATOMAND16:
14257   case X86::ATOMAND32:
14258   case X86::ATOMAND64:
14259   case X86::ATOMOR8:
14260   case X86::ATOMOR16:
14261   case X86::ATOMOR32:
14262   case X86::ATOMOR64:
14263   case X86::ATOMXOR8:
14264   case X86::ATOMXOR16:
14265   case X86::ATOMXOR32:
14266   case X86::ATOMXOR64: {
14267     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14268     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14269       .addReg(t4);
14270     break;
14271   }
14272   case X86::ATOMNAND8:
14273   case X86::ATOMNAND16:
14274   case X86::ATOMNAND32:
14275   case X86::ATOMNAND64: {
14276     unsigned Tmp = MRI.createVirtualRegister(RC);
14277     unsigned NOTOpc;
14278     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14279     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14280       .addReg(t4);
14281     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14282     break;
14283   }
14284   case X86::ATOMMAX8:
14285   case X86::ATOMMAX16:
14286   case X86::ATOMMAX32:
14287   case X86::ATOMMAX64:
14288   case X86::ATOMMIN8:
14289   case X86::ATOMMIN16:
14290   case X86::ATOMMIN32:
14291   case X86::ATOMMIN64:
14292   case X86::ATOMUMAX8:
14293   case X86::ATOMUMAX16:
14294   case X86::ATOMUMAX32:
14295   case X86::ATOMUMAX64:
14296   case X86::ATOMUMIN8:
14297   case X86::ATOMUMIN16:
14298   case X86::ATOMUMIN32:
14299   case X86::ATOMUMIN64: {
14300     unsigned CMPOpc;
14301     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14302
14303     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14304       .addReg(SrcReg)
14305       .addReg(t4);
14306
14307     if (Subtarget->hasCMov()) {
14308       if (VT != MVT::i8) {
14309         // Native support
14310         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14311           .addReg(SrcReg)
14312           .addReg(t4);
14313       } else {
14314         // Promote i8 to i32 to use CMOV32
14315         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14316         const TargetRegisterClass *RC32 =
14317           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14318         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14319         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14320         unsigned Tmp = MRI.createVirtualRegister(RC32);
14321
14322         unsigned Undef = MRI.createVirtualRegister(RC32);
14323         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14324
14325         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14326           .addReg(Undef)
14327           .addReg(SrcReg)
14328           .addImm(X86::sub_8bit);
14329         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14330           .addReg(Undef)
14331           .addReg(t4)
14332           .addImm(X86::sub_8bit);
14333
14334         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14335           .addReg(SrcReg32)
14336           .addReg(AccReg32);
14337
14338         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14339           .addReg(Tmp, 0, X86::sub_8bit);
14340       }
14341     } else {
14342       // Use pseudo select and lower them.
14343       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14344              "Invalid atomic-load-op transformation!");
14345       unsigned SelOpc = getPseudoCMOVOpc(VT);
14346       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14347       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14348       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14349               .addReg(SrcReg).addReg(t4)
14350               .addImm(CC);
14351       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14352       // Replace the original PHI node as mainMBB is changed after CMOV
14353       // lowering.
14354       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14355         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14356       Phi->eraseFromParent();
14357     }
14358     break;
14359   }
14360   }
14361
14362   // Copy PhyReg back from virtual register.
14363   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14364     .addReg(t4);
14365
14366   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14367   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14368     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14369     if (NewMO.isReg())
14370       NewMO.setIsKill(false);
14371     MIB.addOperand(NewMO);
14372   }
14373   MIB.addReg(t2);
14374   MIB.setMemRefs(MMOBegin, MMOEnd);
14375
14376   // Copy PhyReg back to virtual register.
14377   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14378     .addReg(PhyReg);
14379
14380   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14381
14382   mainMBB->addSuccessor(origMainMBB);
14383   mainMBB->addSuccessor(sinkMBB);
14384
14385   // sinkMBB:
14386   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14387           TII->get(TargetOpcode::COPY), DstReg)
14388     .addReg(t3);
14389
14390   MI->eraseFromParent();
14391   return sinkMBB;
14392 }
14393
14394 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14395 // instructions. They will be translated into a spin-loop or compare-exchange
14396 // loop from
14397 //
14398 //    ...
14399 //    dst = atomic-fetch-op MI.addr, MI.val
14400 //    ...
14401 //
14402 // to
14403 //
14404 //    ...
14405 //    t1L = LOAD [MI.addr + 0]
14406 //    t1H = LOAD [MI.addr + 4]
14407 // loop:
14408 //    t4L = phi(t1L, t3L / loop)
14409 //    t4H = phi(t1H, t3H / loop)
14410 //    t2L = OP MI.val.lo, t4L
14411 //    t2H = OP MI.val.hi, t4H
14412 //    EAX = t4L
14413 //    EDX = t4H
14414 //    EBX = t2L
14415 //    ECX = t2H
14416 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14417 //    t3L = EAX
14418 //    t3H = EDX
14419 //    JNE loop
14420 // sink:
14421 //    dstL = t3L
14422 //    dstH = t3H
14423 //    ...
14424 MachineBasicBlock *
14425 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14426                                            MachineBasicBlock *MBB) const {
14427   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14428   DebugLoc DL = MI->getDebugLoc();
14429
14430   MachineFunction *MF = MBB->getParent();
14431   MachineRegisterInfo &MRI = MF->getRegInfo();
14432
14433   const BasicBlock *BB = MBB->getBasicBlock();
14434   MachineFunction::iterator I = MBB;
14435   ++I;
14436
14437   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14438          "Unexpected number of operands");
14439
14440   assert(MI->hasOneMemOperand() &&
14441          "Expected atomic-load-op32 to have one memoperand");
14442
14443   // Memory Reference
14444   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14445   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14446
14447   unsigned DstLoReg, DstHiReg;
14448   unsigned SrcLoReg, SrcHiReg;
14449   unsigned MemOpndSlot;
14450
14451   unsigned CurOp = 0;
14452
14453   DstLoReg = MI->getOperand(CurOp++).getReg();
14454   DstHiReg = MI->getOperand(CurOp++).getReg();
14455   MemOpndSlot = CurOp;
14456   CurOp += X86::AddrNumOperands;
14457   SrcLoReg = MI->getOperand(CurOp++).getReg();
14458   SrcHiReg = MI->getOperand(CurOp++).getReg();
14459
14460   const TargetRegisterClass *RC = &X86::GR32RegClass;
14461   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14462
14463   unsigned t1L = MRI.createVirtualRegister(RC);
14464   unsigned t1H = MRI.createVirtualRegister(RC);
14465   unsigned t2L = MRI.createVirtualRegister(RC);
14466   unsigned t2H = MRI.createVirtualRegister(RC);
14467   unsigned t3L = MRI.createVirtualRegister(RC);
14468   unsigned t3H = MRI.createVirtualRegister(RC);
14469   unsigned t4L = MRI.createVirtualRegister(RC);
14470   unsigned t4H = MRI.createVirtualRegister(RC);
14471
14472   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14473   unsigned LOADOpc = X86::MOV32rm;
14474
14475   // For the atomic load-arith operator, we generate
14476   //
14477   //  thisMBB:
14478   //    t1L = LOAD [MI.addr + 0]
14479   //    t1H = LOAD [MI.addr + 4]
14480   //  mainMBB:
14481   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14482   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14483   //    t2L = OP MI.val.lo, t4L
14484   //    t2H = OP MI.val.hi, t4H
14485   //    EBX = t2L
14486   //    ECX = t2H
14487   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14488   //    t3L = EAX
14489   //    t3H = EDX
14490   //    JNE loop
14491   //  sinkMBB:
14492   //    dstL = t3L
14493   //    dstH = t3H
14494
14495   MachineBasicBlock *thisMBB = MBB;
14496   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14497   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14498   MF->insert(I, mainMBB);
14499   MF->insert(I, sinkMBB);
14500
14501   MachineInstrBuilder MIB;
14502
14503   // Transfer the remainder of BB and its successor edges to sinkMBB.
14504   sinkMBB->splice(sinkMBB->begin(), MBB,
14505                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14506   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14507
14508   // thisMBB:
14509   // Lo
14510   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14511   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14512     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14513     if (NewMO.isReg())
14514       NewMO.setIsKill(false);
14515     MIB.addOperand(NewMO);
14516   }
14517   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14518     unsigned flags = (*MMOI)->getFlags();
14519     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14520     MachineMemOperand *MMO =
14521       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14522                                (*MMOI)->getSize(),
14523                                (*MMOI)->getBaseAlignment(),
14524                                (*MMOI)->getTBAAInfo(),
14525                                (*MMOI)->getRanges());
14526     MIB.addMemOperand(MMO);
14527   };
14528   MachineInstr *LowMI = MIB;
14529
14530   // Hi
14531   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14532   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14533     if (i == X86::AddrDisp) {
14534       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14535     } else {
14536       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14537       if (NewMO.isReg())
14538         NewMO.setIsKill(false);
14539       MIB.addOperand(NewMO);
14540     }
14541   }
14542   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14543
14544   thisMBB->addSuccessor(mainMBB);
14545
14546   // mainMBB:
14547   MachineBasicBlock *origMainMBB = mainMBB;
14548
14549   // Add PHIs.
14550   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14551                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14552   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14553                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14554
14555   unsigned Opc = MI->getOpcode();
14556   switch (Opc) {
14557   default:
14558     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14559   case X86::ATOMAND6432:
14560   case X86::ATOMOR6432:
14561   case X86::ATOMXOR6432:
14562   case X86::ATOMADD6432:
14563   case X86::ATOMSUB6432: {
14564     unsigned HiOpc;
14565     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14566     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14567       .addReg(SrcLoReg);
14568     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14569       .addReg(SrcHiReg);
14570     break;
14571   }
14572   case X86::ATOMNAND6432: {
14573     unsigned HiOpc, NOTOpc;
14574     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14575     unsigned TmpL = MRI.createVirtualRegister(RC);
14576     unsigned TmpH = MRI.createVirtualRegister(RC);
14577     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14578       .addReg(t4L);
14579     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14580       .addReg(t4H);
14581     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14582     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14583     break;
14584   }
14585   case X86::ATOMMAX6432:
14586   case X86::ATOMMIN6432:
14587   case X86::ATOMUMAX6432:
14588   case X86::ATOMUMIN6432: {
14589     unsigned HiOpc;
14590     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14591     unsigned cL = MRI.createVirtualRegister(RC8);
14592     unsigned cH = MRI.createVirtualRegister(RC8);
14593     unsigned cL32 = MRI.createVirtualRegister(RC);
14594     unsigned cH32 = MRI.createVirtualRegister(RC);
14595     unsigned cc = MRI.createVirtualRegister(RC);
14596     // cl := cmp src_lo, lo
14597     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14598       .addReg(SrcLoReg).addReg(t4L);
14599     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14600     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14601     // ch := cmp src_hi, hi
14602     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14603       .addReg(SrcHiReg).addReg(t4H);
14604     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14605     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14606     // cc := if (src_hi == hi) ? cl : ch;
14607     if (Subtarget->hasCMov()) {
14608       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14609         .addReg(cH32).addReg(cL32);
14610     } else {
14611       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14612               .addReg(cH32).addReg(cL32)
14613               .addImm(X86::COND_E);
14614       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14615     }
14616     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14617     if (Subtarget->hasCMov()) {
14618       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14619         .addReg(SrcLoReg).addReg(t4L);
14620       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14621         .addReg(SrcHiReg).addReg(t4H);
14622     } else {
14623       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14624               .addReg(SrcLoReg).addReg(t4L)
14625               .addImm(X86::COND_NE);
14626       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14627       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14628       // 2nd CMOV lowering.
14629       mainMBB->addLiveIn(X86::EFLAGS);
14630       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14631               .addReg(SrcHiReg).addReg(t4H)
14632               .addImm(X86::COND_NE);
14633       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14634       // Replace the original PHI node as mainMBB is changed after CMOV
14635       // lowering.
14636       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14637         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14638       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14639         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14640       PhiL->eraseFromParent();
14641       PhiH->eraseFromParent();
14642     }
14643     break;
14644   }
14645   case X86::ATOMSWAP6432: {
14646     unsigned HiOpc;
14647     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14648     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14649     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14650     break;
14651   }
14652   }
14653
14654   // Copy EDX:EAX back from HiReg:LoReg
14655   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14656   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14657   // Copy ECX:EBX from t1H:t1L
14658   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14659   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14660
14661   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14662   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14663     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14664     if (NewMO.isReg())
14665       NewMO.setIsKill(false);
14666     MIB.addOperand(NewMO);
14667   }
14668   MIB.setMemRefs(MMOBegin, MMOEnd);
14669
14670   // Copy EDX:EAX back to t3H:t3L
14671   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14672   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14673
14674   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14675
14676   mainMBB->addSuccessor(origMainMBB);
14677   mainMBB->addSuccessor(sinkMBB);
14678
14679   // sinkMBB:
14680   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14681           TII->get(TargetOpcode::COPY), DstLoReg)
14682     .addReg(t3L);
14683   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14684           TII->get(TargetOpcode::COPY), DstHiReg)
14685     .addReg(t3H);
14686
14687   MI->eraseFromParent();
14688   return sinkMBB;
14689 }
14690
14691 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14692 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14693 // in the .td file.
14694 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14695                                        const TargetInstrInfo *TII) {
14696   unsigned Opc;
14697   switch (MI->getOpcode()) {
14698   default: llvm_unreachable("illegal opcode!");
14699   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14700   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14701   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14702   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14703   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14704   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14705   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14706   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14707   }
14708
14709   DebugLoc dl = MI->getDebugLoc();
14710   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14711
14712   unsigned NumArgs = MI->getNumOperands();
14713   for (unsigned i = 1; i < NumArgs; ++i) {
14714     MachineOperand &Op = MI->getOperand(i);
14715     if (!(Op.isReg() && Op.isImplicit()))
14716       MIB.addOperand(Op);
14717   }
14718   if (MI->hasOneMemOperand())
14719     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14720
14721   BuildMI(*BB, MI, dl,
14722     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14723     .addReg(X86::XMM0);
14724
14725   MI->eraseFromParent();
14726   return BB;
14727 }
14728
14729 // FIXME: Custom handling because TableGen doesn't support multiple implicit
14730 // defs in an instruction pattern
14731 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14732                                        const TargetInstrInfo *TII) {
14733   unsigned Opc;
14734   switch (MI->getOpcode()) {
14735   default: llvm_unreachable("illegal opcode!");
14736   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
14737   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14738   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
14739   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14740   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
14741   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14742   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
14743   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
14744   }
14745
14746   DebugLoc dl = MI->getDebugLoc();
14747   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14748
14749   unsigned NumArgs = MI->getNumOperands(); // remove the results
14750   for (unsigned i = 1; i < NumArgs; ++i) {
14751     MachineOperand &Op = MI->getOperand(i);
14752     if (!(Op.isReg() && Op.isImplicit()))
14753       MIB.addOperand(Op);
14754   }
14755   if (MI->hasOneMemOperand())
14756     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14757
14758   BuildMI(*BB, MI, dl,
14759     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14760     .addReg(X86::ECX);
14761
14762   MI->eraseFromParent();
14763   return BB;
14764 }
14765
14766 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14767                                        const TargetInstrInfo *TII,
14768                                        const X86Subtarget* Subtarget) {
14769   DebugLoc dl = MI->getDebugLoc();
14770
14771   // Address into RAX/EAX, other two args into ECX, EDX.
14772   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14773   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14774   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14775   for (int i = 0; i < X86::AddrNumOperands; ++i)
14776     MIB.addOperand(MI->getOperand(i));
14777
14778   unsigned ValOps = X86::AddrNumOperands;
14779   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14780     .addReg(MI->getOperand(ValOps).getReg());
14781   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14782     .addReg(MI->getOperand(ValOps+1).getReg());
14783
14784   // The instruction doesn't actually take any operands though.
14785   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
14786
14787   MI->eraseFromParent(); // The pseudo is gone now.
14788   return BB;
14789 }
14790
14791 MachineBasicBlock *
14792 X86TargetLowering::EmitVAARG64WithCustomInserter(
14793                    MachineInstr *MI,
14794                    MachineBasicBlock *MBB) const {
14795   // Emit va_arg instruction on X86-64.
14796
14797   // Operands to this pseudo-instruction:
14798   // 0  ) Output        : destination address (reg)
14799   // 1-5) Input         : va_list address (addr, i64mem)
14800   // 6  ) ArgSize       : Size (in bytes) of vararg type
14801   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14802   // 8  ) Align         : Alignment of type
14803   // 9  ) EFLAGS (implicit-def)
14804
14805   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14806   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14807
14808   unsigned DestReg = MI->getOperand(0).getReg();
14809   MachineOperand &Base = MI->getOperand(1);
14810   MachineOperand &Scale = MI->getOperand(2);
14811   MachineOperand &Index = MI->getOperand(3);
14812   MachineOperand &Disp = MI->getOperand(4);
14813   MachineOperand &Segment = MI->getOperand(5);
14814   unsigned ArgSize = MI->getOperand(6).getImm();
14815   unsigned ArgMode = MI->getOperand(7).getImm();
14816   unsigned Align = MI->getOperand(8).getImm();
14817
14818   // Memory Reference
14819   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14820   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14821   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14822
14823   // Machine Information
14824   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14825   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14826   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14827   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14828   DebugLoc DL = MI->getDebugLoc();
14829
14830   // struct va_list {
14831   //   i32   gp_offset
14832   //   i32   fp_offset
14833   //   i64   overflow_area (address)
14834   //   i64   reg_save_area (address)
14835   // }
14836   // sizeof(va_list) = 24
14837   // alignment(va_list) = 8
14838
14839   unsigned TotalNumIntRegs = 6;
14840   unsigned TotalNumXMMRegs = 8;
14841   bool UseGPOffset = (ArgMode == 1);
14842   bool UseFPOffset = (ArgMode == 2);
14843   unsigned MaxOffset = TotalNumIntRegs * 8 +
14844                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14845
14846   /* Align ArgSize to a multiple of 8 */
14847   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14848   bool NeedsAlign = (Align > 8);
14849
14850   MachineBasicBlock *thisMBB = MBB;
14851   MachineBasicBlock *overflowMBB;
14852   MachineBasicBlock *offsetMBB;
14853   MachineBasicBlock *endMBB;
14854
14855   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
14856   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
14857   unsigned OffsetReg = 0;
14858
14859   if (!UseGPOffset && !UseFPOffset) {
14860     // If we only pull from the overflow region, we don't create a branch.
14861     // We don't need to alter control flow.
14862     OffsetDestReg = 0; // unused
14863     OverflowDestReg = DestReg;
14864
14865     offsetMBB = NULL;
14866     overflowMBB = thisMBB;
14867     endMBB = thisMBB;
14868   } else {
14869     // First emit code to check if gp_offset (or fp_offset) is below the bound.
14870     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14871     // If not, pull from overflow_area. (branch to overflowMBB)
14872     //
14873     //       thisMBB
14874     //         |     .
14875     //         |        .
14876     //     offsetMBB   overflowMBB
14877     //         |        .
14878     //         |     .
14879     //        endMBB
14880
14881     // Registers for the PHI in endMBB
14882     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14883     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14884
14885     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14886     MachineFunction *MF = MBB->getParent();
14887     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14888     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14889     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14890
14891     MachineFunction::iterator MBBIter = MBB;
14892     ++MBBIter;
14893
14894     // Insert the new basic blocks
14895     MF->insert(MBBIter, offsetMBB);
14896     MF->insert(MBBIter, overflowMBB);
14897     MF->insert(MBBIter, endMBB);
14898
14899     // Transfer the remainder of MBB and its successor edges to endMBB.
14900     endMBB->splice(endMBB->begin(), thisMBB,
14901                     llvm::next(MachineBasicBlock::iterator(MI)),
14902                     thisMBB->end());
14903     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14904
14905     // Make offsetMBB and overflowMBB successors of thisMBB
14906     thisMBB->addSuccessor(offsetMBB);
14907     thisMBB->addSuccessor(overflowMBB);
14908
14909     // endMBB is a successor of both offsetMBB and overflowMBB
14910     offsetMBB->addSuccessor(endMBB);
14911     overflowMBB->addSuccessor(endMBB);
14912
14913     // Load the offset value into a register
14914     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14915     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14916       .addOperand(Base)
14917       .addOperand(Scale)
14918       .addOperand(Index)
14919       .addDisp(Disp, UseFPOffset ? 4 : 0)
14920       .addOperand(Segment)
14921       .setMemRefs(MMOBegin, MMOEnd);
14922
14923     // Check if there is enough room left to pull this argument.
14924     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14925       .addReg(OffsetReg)
14926       .addImm(MaxOffset + 8 - ArgSizeA8);
14927
14928     // Branch to "overflowMBB" if offset >= max
14929     // Fall through to "offsetMBB" otherwise
14930     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14931       .addMBB(overflowMBB);
14932   }
14933
14934   // In offsetMBB, emit code to use the reg_save_area.
14935   if (offsetMBB) {
14936     assert(OffsetReg != 0);
14937
14938     // Read the reg_save_area address.
14939     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14940     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14941       .addOperand(Base)
14942       .addOperand(Scale)
14943       .addOperand(Index)
14944       .addDisp(Disp, 16)
14945       .addOperand(Segment)
14946       .setMemRefs(MMOBegin, MMOEnd);
14947
14948     // Zero-extend the offset
14949     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14950       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14951         .addImm(0)
14952         .addReg(OffsetReg)
14953         .addImm(X86::sub_32bit);
14954
14955     // Add the offset to the reg_save_area to get the final address.
14956     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
14957       .addReg(OffsetReg64)
14958       .addReg(RegSaveReg);
14959
14960     // Compute the offset for the next argument
14961     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14962     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
14963       .addReg(OffsetReg)
14964       .addImm(UseFPOffset ? 16 : 8);
14965
14966     // Store it back into the va_list.
14967     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
14968       .addOperand(Base)
14969       .addOperand(Scale)
14970       .addOperand(Index)
14971       .addDisp(Disp, UseFPOffset ? 4 : 0)
14972       .addOperand(Segment)
14973       .addReg(NextOffsetReg)
14974       .setMemRefs(MMOBegin, MMOEnd);
14975
14976     // Jump to endMBB
14977     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
14978       .addMBB(endMBB);
14979   }
14980
14981   //
14982   // Emit code to use overflow area
14983   //
14984
14985   // Load the overflow_area address into a register.
14986   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
14987   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
14988     .addOperand(Base)
14989     .addOperand(Scale)
14990     .addOperand(Index)
14991     .addDisp(Disp, 8)
14992     .addOperand(Segment)
14993     .setMemRefs(MMOBegin, MMOEnd);
14994
14995   // If we need to align it, do so. Otherwise, just copy the address
14996   // to OverflowDestReg.
14997   if (NeedsAlign) {
14998     // Align the overflow address
14999     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15000     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15001
15002     // aligned_addr = (addr + (align-1)) & ~(align-1)
15003     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15004       .addReg(OverflowAddrReg)
15005       .addImm(Align-1);
15006
15007     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15008       .addReg(TmpReg)
15009       .addImm(~(uint64_t)(Align-1));
15010   } else {
15011     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15012       .addReg(OverflowAddrReg);
15013   }
15014
15015   // Compute the next overflow address after this argument.
15016   // (the overflow address should be kept 8-byte aligned)
15017   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15018   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15019     .addReg(OverflowDestReg)
15020     .addImm(ArgSizeA8);
15021
15022   // Store the new overflow address.
15023   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15024     .addOperand(Base)
15025     .addOperand(Scale)
15026     .addOperand(Index)
15027     .addDisp(Disp, 8)
15028     .addOperand(Segment)
15029     .addReg(NextAddrReg)
15030     .setMemRefs(MMOBegin, MMOEnd);
15031
15032   // If we branched, emit the PHI to the front of endMBB.
15033   if (offsetMBB) {
15034     BuildMI(*endMBB, endMBB->begin(), DL,
15035             TII->get(X86::PHI), DestReg)
15036       .addReg(OffsetDestReg).addMBB(offsetMBB)
15037       .addReg(OverflowDestReg).addMBB(overflowMBB);
15038   }
15039
15040   // Erase the pseudo instruction
15041   MI->eraseFromParent();
15042
15043   return endMBB;
15044 }
15045
15046 MachineBasicBlock *
15047 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15048                                                  MachineInstr *MI,
15049                                                  MachineBasicBlock *MBB) const {
15050   // Emit code to save XMM registers to the stack. The ABI says that the
15051   // number of registers to save is given in %al, so it's theoretically
15052   // possible to do an indirect jump trick to avoid saving all of them,
15053   // however this code takes a simpler approach and just executes all
15054   // of the stores if %al is non-zero. It's less code, and it's probably
15055   // easier on the hardware branch predictor, and stores aren't all that
15056   // expensive anyway.
15057
15058   // Create the new basic blocks. One block contains all the XMM stores,
15059   // and one block is the final destination regardless of whether any
15060   // stores were performed.
15061   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15062   MachineFunction *F = MBB->getParent();
15063   MachineFunction::iterator MBBIter = MBB;
15064   ++MBBIter;
15065   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15066   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15067   F->insert(MBBIter, XMMSaveMBB);
15068   F->insert(MBBIter, EndMBB);
15069
15070   // Transfer the remainder of MBB and its successor edges to EndMBB.
15071   EndMBB->splice(EndMBB->begin(), MBB,
15072                  llvm::next(MachineBasicBlock::iterator(MI)),
15073                  MBB->end());
15074   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15075
15076   // The original block will now fall through to the XMM save block.
15077   MBB->addSuccessor(XMMSaveMBB);
15078   // The XMMSaveMBB will fall through to the end block.
15079   XMMSaveMBB->addSuccessor(EndMBB);
15080
15081   // Now add the instructions.
15082   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15083   DebugLoc DL = MI->getDebugLoc();
15084
15085   unsigned CountReg = MI->getOperand(0).getReg();
15086   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15087   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15088
15089   if (!Subtarget->isTargetWin64()) {
15090     // If %al is 0, branch around the XMM save block.
15091     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15092     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15093     MBB->addSuccessor(EndMBB);
15094   }
15095
15096   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15097   // In the XMM save block, save all the XMM argument registers.
15098   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15099     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15100     MachineMemOperand *MMO =
15101       F->getMachineMemOperand(
15102           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15103         MachineMemOperand::MOStore,
15104         /*Size=*/16, /*Align=*/16);
15105     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15106       .addFrameIndex(RegSaveFrameIndex)
15107       .addImm(/*Scale=*/1)
15108       .addReg(/*IndexReg=*/0)
15109       .addImm(/*Disp=*/Offset)
15110       .addReg(/*Segment=*/0)
15111       .addReg(MI->getOperand(i).getReg())
15112       .addMemOperand(MMO);
15113   }
15114
15115   MI->eraseFromParent();   // The pseudo instruction is gone now.
15116
15117   return EndMBB;
15118 }
15119
15120 // The EFLAGS operand of SelectItr might be missing a kill marker
15121 // because there were multiple uses of EFLAGS, and ISel didn't know
15122 // which to mark. Figure out whether SelectItr should have had a
15123 // kill marker, and set it if it should. Returns the correct kill
15124 // marker value.
15125 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15126                                      MachineBasicBlock* BB,
15127                                      const TargetRegisterInfo* TRI) {
15128   // Scan forward through BB for a use/def of EFLAGS.
15129   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15130   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15131     const MachineInstr& mi = *miI;
15132     if (mi.readsRegister(X86::EFLAGS))
15133       return false;
15134     if (mi.definesRegister(X86::EFLAGS))
15135       break; // Should have kill-flag - update below.
15136   }
15137
15138   // If we hit the end of the block, check whether EFLAGS is live into a
15139   // successor.
15140   if (miI == BB->end()) {
15141     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15142                                           sEnd = BB->succ_end();
15143          sItr != sEnd; ++sItr) {
15144       MachineBasicBlock* succ = *sItr;
15145       if (succ->isLiveIn(X86::EFLAGS))
15146         return false;
15147     }
15148   }
15149
15150   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15151   // out. SelectMI should have a kill flag on EFLAGS.
15152   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15153   return true;
15154 }
15155
15156 MachineBasicBlock *
15157 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15158                                      MachineBasicBlock *BB) const {
15159   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15160   DebugLoc DL = MI->getDebugLoc();
15161
15162   // To "insert" a SELECT_CC instruction, we actually have to insert the
15163   // diamond control-flow pattern.  The incoming instruction knows the
15164   // destination vreg to set, the condition code register to branch on, the
15165   // true/false values to select between, and a branch opcode to use.
15166   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15167   MachineFunction::iterator It = BB;
15168   ++It;
15169
15170   //  thisMBB:
15171   //  ...
15172   //   TrueVal = ...
15173   //   cmpTY ccX, r1, r2
15174   //   bCC copy1MBB
15175   //   fallthrough --> copy0MBB
15176   MachineBasicBlock *thisMBB = BB;
15177   MachineFunction *F = BB->getParent();
15178   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15179   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15180   F->insert(It, copy0MBB);
15181   F->insert(It, sinkMBB);
15182
15183   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15184   // live into the sink and copy blocks.
15185   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15186   if (!MI->killsRegister(X86::EFLAGS) &&
15187       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15188     copy0MBB->addLiveIn(X86::EFLAGS);
15189     sinkMBB->addLiveIn(X86::EFLAGS);
15190   }
15191
15192   // Transfer the remainder of BB and its successor edges to sinkMBB.
15193   sinkMBB->splice(sinkMBB->begin(), BB,
15194                   llvm::next(MachineBasicBlock::iterator(MI)),
15195                   BB->end());
15196   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15197
15198   // Add the true and fallthrough blocks as its successors.
15199   BB->addSuccessor(copy0MBB);
15200   BB->addSuccessor(sinkMBB);
15201
15202   // Create the conditional branch instruction.
15203   unsigned Opc =
15204     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15205   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15206
15207   //  copy0MBB:
15208   //   %FalseValue = ...
15209   //   # fallthrough to sinkMBB
15210   copy0MBB->addSuccessor(sinkMBB);
15211
15212   //  sinkMBB:
15213   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15214   //  ...
15215   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15216           TII->get(X86::PHI), MI->getOperand(0).getReg())
15217     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15218     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15219
15220   MI->eraseFromParent();   // The pseudo instruction is gone now.
15221   return sinkMBB;
15222 }
15223
15224 MachineBasicBlock *
15225 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15226                                         bool Is64Bit) const {
15227   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15228   DebugLoc DL = MI->getDebugLoc();
15229   MachineFunction *MF = BB->getParent();
15230   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15231
15232   assert(getTargetMachine().Options.EnableSegmentedStacks);
15233
15234   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15235   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15236
15237   // BB:
15238   //  ... [Till the alloca]
15239   // If stacklet is not large enough, jump to mallocMBB
15240   //
15241   // bumpMBB:
15242   //  Allocate by subtracting from RSP
15243   //  Jump to continueMBB
15244   //
15245   // mallocMBB:
15246   //  Allocate by call to runtime
15247   //
15248   // continueMBB:
15249   //  ...
15250   //  [rest of original BB]
15251   //
15252
15253   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15254   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15255   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15256
15257   MachineRegisterInfo &MRI = MF->getRegInfo();
15258   const TargetRegisterClass *AddrRegClass =
15259     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15260
15261   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15262     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15263     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15264     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15265     sizeVReg = MI->getOperand(1).getReg(),
15266     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15267
15268   MachineFunction::iterator MBBIter = BB;
15269   ++MBBIter;
15270
15271   MF->insert(MBBIter, bumpMBB);
15272   MF->insert(MBBIter, mallocMBB);
15273   MF->insert(MBBIter, continueMBB);
15274
15275   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15276                       (MachineBasicBlock::iterator(MI)), BB->end());
15277   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15278
15279   // Add code to the main basic block to check if the stack limit has been hit,
15280   // and if so, jump to mallocMBB otherwise to bumpMBB.
15281   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15282   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15283     .addReg(tmpSPVReg).addReg(sizeVReg);
15284   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15285     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15286     .addReg(SPLimitVReg);
15287   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15288
15289   // bumpMBB simply decreases the stack pointer, since we know the current
15290   // stacklet has enough space.
15291   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15292     .addReg(SPLimitVReg);
15293   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15294     .addReg(SPLimitVReg);
15295   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15296
15297   // Calls into a routine in libgcc to allocate more space from the heap.
15298   const uint32_t *RegMask =
15299     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15300   if (Is64Bit) {
15301     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15302       .addReg(sizeVReg);
15303     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15304       .addExternalSymbol("__morestack_allocate_stack_space")
15305       .addRegMask(RegMask)
15306       .addReg(X86::RDI, RegState::Implicit)
15307       .addReg(X86::RAX, RegState::ImplicitDefine);
15308   } else {
15309     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15310       .addImm(12);
15311     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15312     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15313       .addExternalSymbol("__morestack_allocate_stack_space")
15314       .addRegMask(RegMask)
15315       .addReg(X86::EAX, RegState::ImplicitDefine);
15316   }
15317
15318   if (!Is64Bit)
15319     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15320       .addImm(16);
15321
15322   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15323     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15324   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15325
15326   // Set up the CFG correctly.
15327   BB->addSuccessor(bumpMBB);
15328   BB->addSuccessor(mallocMBB);
15329   mallocMBB->addSuccessor(continueMBB);
15330   bumpMBB->addSuccessor(continueMBB);
15331
15332   // Take care of the PHI nodes.
15333   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15334           MI->getOperand(0).getReg())
15335     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15336     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15337
15338   // Delete the original pseudo instruction.
15339   MI->eraseFromParent();
15340
15341   // And we're done.
15342   return continueMBB;
15343 }
15344
15345 MachineBasicBlock *
15346 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15347                                           MachineBasicBlock *BB) const {
15348   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15349   DebugLoc DL = MI->getDebugLoc();
15350
15351   assert(!Subtarget->isTargetEnvMacho());
15352
15353   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15354   // non-trivial part is impdef of ESP.
15355
15356   if (Subtarget->isTargetWin64()) {
15357     if (Subtarget->isTargetCygMing()) {
15358       // ___chkstk(Mingw64):
15359       // Clobbers R10, R11, RAX and EFLAGS.
15360       // Updates RSP.
15361       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15362         .addExternalSymbol("___chkstk")
15363         .addReg(X86::RAX, RegState::Implicit)
15364         .addReg(X86::RSP, RegState::Implicit)
15365         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15366         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15367         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15368     } else {
15369       // __chkstk(MSVCRT): does not update stack pointer.
15370       // Clobbers R10, R11 and EFLAGS.
15371       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15372         .addExternalSymbol("__chkstk")
15373         .addReg(X86::RAX, RegState::Implicit)
15374         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15375       // RAX has the offset to be subtracted from RSP.
15376       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15377         .addReg(X86::RSP)
15378         .addReg(X86::RAX);
15379     }
15380   } else {
15381     const char *StackProbeSymbol =
15382       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15383
15384     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15385       .addExternalSymbol(StackProbeSymbol)
15386       .addReg(X86::EAX, RegState::Implicit)
15387       .addReg(X86::ESP, RegState::Implicit)
15388       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15389       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15390       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15391   }
15392
15393   MI->eraseFromParent();   // The pseudo instruction is gone now.
15394   return BB;
15395 }
15396
15397 MachineBasicBlock *
15398 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15399                                       MachineBasicBlock *BB) const {
15400   // This is pretty easy.  We're taking the value that we received from
15401   // our load from the relocation, sticking it in either RDI (x86-64)
15402   // or EAX and doing an indirect call.  The return value will then
15403   // be in the normal return register.
15404   const X86InstrInfo *TII
15405     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15406   DebugLoc DL = MI->getDebugLoc();
15407   MachineFunction *F = BB->getParent();
15408
15409   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15410   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15411
15412   // Get a register mask for the lowered call.
15413   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15414   // proper register mask.
15415   const uint32_t *RegMask =
15416     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15417   if (Subtarget->is64Bit()) {
15418     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15419                                       TII->get(X86::MOV64rm), X86::RDI)
15420     .addReg(X86::RIP)
15421     .addImm(0).addReg(0)
15422     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15423                       MI->getOperand(3).getTargetFlags())
15424     .addReg(0);
15425     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15426     addDirectMem(MIB, X86::RDI);
15427     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15428   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15429     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15430                                       TII->get(X86::MOV32rm), X86::EAX)
15431     .addReg(0)
15432     .addImm(0).addReg(0)
15433     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15434                       MI->getOperand(3).getTargetFlags())
15435     .addReg(0);
15436     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15437     addDirectMem(MIB, X86::EAX);
15438     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15439   } else {
15440     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15441                                       TII->get(X86::MOV32rm), X86::EAX)
15442     .addReg(TII->getGlobalBaseReg(F))
15443     .addImm(0).addReg(0)
15444     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15445                       MI->getOperand(3).getTargetFlags())
15446     .addReg(0);
15447     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15448     addDirectMem(MIB, X86::EAX);
15449     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15450   }
15451
15452   MI->eraseFromParent(); // The pseudo instruction is gone now.
15453   return BB;
15454 }
15455
15456 MachineBasicBlock *
15457 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15458                                     MachineBasicBlock *MBB) const {
15459   DebugLoc DL = MI->getDebugLoc();
15460   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15461
15462   MachineFunction *MF = MBB->getParent();
15463   MachineRegisterInfo &MRI = MF->getRegInfo();
15464
15465   const BasicBlock *BB = MBB->getBasicBlock();
15466   MachineFunction::iterator I = MBB;
15467   ++I;
15468
15469   // Memory Reference
15470   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15471   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15472
15473   unsigned DstReg;
15474   unsigned MemOpndSlot = 0;
15475
15476   unsigned CurOp = 0;
15477
15478   DstReg = MI->getOperand(CurOp++).getReg();
15479   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15480   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15481   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15482   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15483
15484   MemOpndSlot = CurOp;
15485
15486   MVT PVT = getPointerTy();
15487   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15488          "Invalid Pointer Size!");
15489
15490   // For v = setjmp(buf), we generate
15491   //
15492   // thisMBB:
15493   //  buf[LabelOffset] = restoreMBB
15494   //  SjLjSetup restoreMBB
15495   //
15496   // mainMBB:
15497   //  v_main = 0
15498   //
15499   // sinkMBB:
15500   //  v = phi(main, restore)
15501   //
15502   // restoreMBB:
15503   //  v_restore = 1
15504
15505   MachineBasicBlock *thisMBB = MBB;
15506   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15507   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15508   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15509   MF->insert(I, mainMBB);
15510   MF->insert(I, sinkMBB);
15511   MF->push_back(restoreMBB);
15512
15513   MachineInstrBuilder MIB;
15514
15515   // Transfer the remainder of BB and its successor edges to sinkMBB.
15516   sinkMBB->splice(sinkMBB->begin(), MBB,
15517                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15518   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15519
15520   // thisMBB:
15521   unsigned PtrStoreOpc = 0;
15522   unsigned LabelReg = 0;
15523   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15524   Reloc::Model RM = getTargetMachine().getRelocationModel();
15525   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15526                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15527
15528   // Prepare IP either in reg or imm.
15529   if (!UseImmLabel) {
15530     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15531     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15532     LabelReg = MRI.createVirtualRegister(PtrRC);
15533     if (Subtarget->is64Bit()) {
15534       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15535               .addReg(X86::RIP)
15536               .addImm(0)
15537               .addReg(0)
15538               .addMBB(restoreMBB)
15539               .addReg(0);
15540     } else {
15541       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15542       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15543               .addReg(XII->getGlobalBaseReg(MF))
15544               .addImm(0)
15545               .addReg(0)
15546               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15547               .addReg(0);
15548     }
15549   } else
15550     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15551   // Store IP
15552   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15553   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15554     if (i == X86::AddrDisp)
15555       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15556     else
15557       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15558   }
15559   if (!UseImmLabel)
15560     MIB.addReg(LabelReg);
15561   else
15562     MIB.addMBB(restoreMBB);
15563   MIB.setMemRefs(MMOBegin, MMOEnd);
15564   // Setup
15565   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15566           .addMBB(restoreMBB);
15567
15568   const X86RegisterInfo *RegInfo =
15569     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15570   MIB.addRegMask(RegInfo->getNoPreservedMask());
15571   thisMBB->addSuccessor(mainMBB);
15572   thisMBB->addSuccessor(restoreMBB);
15573
15574   // mainMBB:
15575   //  EAX = 0
15576   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15577   mainMBB->addSuccessor(sinkMBB);
15578
15579   // sinkMBB:
15580   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15581           TII->get(X86::PHI), DstReg)
15582     .addReg(mainDstReg).addMBB(mainMBB)
15583     .addReg(restoreDstReg).addMBB(restoreMBB);
15584
15585   // restoreMBB:
15586   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15587   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15588   restoreMBB->addSuccessor(sinkMBB);
15589
15590   MI->eraseFromParent();
15591   return sinkMBB;
15592 }
15593
15594 MachineBasicBlock *
15595 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15596                                      MachineBasicBlock *MBB) const {
15597   DebugLoc DL = MI->getDebugLoc();
15598   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15599
15600   MachineFunction *MF = MBB->getParent();
15601   MachineRegisterInfo &MRI = MF->getRegInfo();
15602
15603   // Memory Reference
15604   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15605   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15606
15607   MVT PVT = getPointerTy();
15608   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15609          "Invalid Pointer Size!");
15610
15611   const TargetRegisterClass *RC =
15612     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15613   unsigned Tmp = MRI.createVirtualRegister(RC);
15614   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15615   const X86RegisterInfo *RegInfo =
15616     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15617   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15618   unsigned SP = RegInfo->getStackRegister();
15619
15620   MachineInstrBuilder MIB;
15621
15622   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15623   const int64_t SPOffset = 2 * PVT.getStoreSize();
15624
15625   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15626   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15627
15628   // Reload FP
15629   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15630   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15631     MIB.addOperand(MI->getOperand(i));
15632   MIB.setMemRefs(MMOBegin, MMOEnd);
15633   // Reload IP
15634   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15635   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15636     if (i == X86::AddrDisp)
15637       MIB.addDisp(MI->getOperand(i), LabelOffset);
15638     else
15639       MIB.addOperand(MI->getOperand(i));
15640   }
15641   MIB.setMemRefs(MMOBegin, MMOEnd);
15642   // Reload SP
15643   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15644   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15645     if (i == X86::AddrDisp)
15646       MIB.addDisp(MI->getOperand(i), SPOffset);
15647     else
15648       MIB.addOperand(MI->getOperand(i));
15649   }
15650   MIB.setMemRefs(MMOBegin, MMOEnd);
15651   // Jump
15652   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15653
15654   MI->eraseFromParent();
15655   return MBB;
15656 }
15657
15658 MachineBasicBlock *
15659 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15660                                                MachineBasicBlock *BB) const {
15661   switch (MI->getOpcode()) {
15662   default: llvm_unreachable("Unexpected instr type to insert");
15663   case X86::TAILJMPd64:
15664   case X86::TAILJMPr64:
15665   case X86::TAILJMPm64:
15666     llvm_unreachable("TAILJMP64 would not be touched here.");
15667   case X86::TCRETURNdi64:
15668   case X86::TCRETURNri64:
15669   case X86::TCRETURNmi64:
15670     return BB;
15671   case X86::WIN_ALLOCA:
15672     return EmitLoweredWinAlloca(MI, BB);
15673   case X86::SEG_ALLOCA_32:
15674     return EmitLoweredSegAlloca(MI, BB, false);
15675   case X86::SEG_ALLOCA_64:
15676     return EmitLoweredSegAlloca(MI, BB, true);
15677   case X86::TLSCall_32:
15678   case X86::TLSCall_64:
15679     return EmitLoweredTLSCall(MI, BB);
15680   case X86::CMOV_GR8:
15681   case X86::CMOV_FR32:
15682   case X86::CMOV_FR64:
15683   case X86::CMOV_V4F32:
15684   case X86::CMOV_V2F64:
15685   case X86::CMOV_V2I64:
15686   case X86::CMOV_V8F32:
15687   case X86::CMOV_V4F64:
15688   case X86::CMOV_V4I64:
15689   case X86::CMOV_GR16:
15690   case X86::CMOV_GR32:
15691   case X86::CMOV_RFP32:
15692   case X86::CMOV_RFP64:
15693   case X86::CMOV_RFP80:
15694     return EmitLoweredSelect(MI, BB);
15695
15696   case X86::FP32_TO_INT16_IN_MEM:
15697   case X86::FP32_TO_INT32_IN_MEM:
15698   case X86::FP32_TO_INT64_IN_MEM:
15699   case X86::FP64_TO_INT16_IN_MEM:
15700   case X86::FP64_TO_INT32_IN_MEM:
15701   case X86::FP64_TO_INT64_IN_MEM:
15702   case X86::FP80_TO_INT16_IN_MEM:
15703   case X86::FP80_TO_INT32_IN_MEM:
15704   case X86::FP80_TO_INT64_IN_MEM: {
15705     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15706     DebugLoc DL = MI->getDebugLoc();
15707
15708     // Change the floating point control register to use "round towards zero"
15709     // mode when truncating to an integer value.
15710     MachineFunction *F = BB->getParent();
15711     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
15712     addFrameReference(BuildMI(*BB, MI, DL,
15713                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
15714
15715     // Load the old value of the high byte of the control word...
15716     unsigned OldCW =
15717       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
15718     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
15719                       CWFrameIdx);
15720
15721     // Set the high part to be round to zero...
15722     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
15723       .addImm(0xC7F);
15724
15725     // Reload the modified control word now...
15726     addFrameReference(BuildMI(*BB, MI, DL,
15727                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15728
15729     // Restore the memory image of control word to original value
15730     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
15731       .addReg(OldCW);
15732
15733     // Get the X86 opcode to use.
15734     unsigned Opc;
15735     switch (MI->getOpcode()) {
15736     default: llvm_unreachable("illegal opcode!");
15737     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15738     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15739     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15740     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15741     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15742     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
15743     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15744     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15745     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
15746     }
15747
15748     X86AddressMode AM;
15749     MachineOperand &Op = MI->getOperand(0);
15750     if (Op.isReg()) {
15751       AM.BaseType = X86AddressMode::RegBase;
15752       AM.Base.Reg = Op.getReg();
15753     } else {
15754       AM.BaseType = X86AddressMode::FrameIndexBase;
15755       AM.Base.FrameIndex = Op.getIndex();
15756     }
15757     Op = MI->getOperand(1);
15758     if (Op.isImm())
15759       AM.Scale = Op.getImm();
15760     Op = MI->getOperand(2);
15761     if (Op.isImm())
15762       AM.IndexReg = Op.getImm();
15763     Op = MI->getOperand(3);
15764     if (Op.isGlobal()) {
15765       AM.GV = Op.getGlobal();
15766     } else {
15767       AM.Disp = Op.getImm();
15768     }
15769     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
15770                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
15771
15772     // Reload the original control word now.
15773     addFrameReference(BuildMI(*BB, MI, DL,
15774                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15775
15776     MI->eraseFromParent();   // The pseudo instruction is gone now.
15777     return BB;
15778   }
15779     // String/text processing lowering.
15780   case X86::PCMPISTRM128REG:
15781   case X86::VPCMPISTRM128REG:
15782   case X86::PCMPISTRM128MEM:
15783   case X86::VPCMPISTRM128MEM:
15784   case X86::PCMPESTRM128REG:
15785   case X86::VPCMPESTRM128REG:
15786   case X86::PCMPESTRM128MEM:
15787   case X86::VPCMPESTRM128MEM:
15788     assert(Subtarget->hasSSE42() &&
15789            "Target must have SSE4.2 or AVX features enabled");
15790     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
15791
15792   // String/text processing lowering.
15793   case X86::PCMPISTRIREG:
15794   case X86::VPCMPISTRIREG:
15795   case X86::PCMPISTRIMEM:
15796   case X86::VPCMPISTRIMEM:
15797   case X86::PCMPESTRIREG:
15798   case X86::VPCMPESTRIREG:
15799   case X86::PCMPESTRIMEM:
15800   case X86::VPCMPESTRIMEM:
15801     assert(Subtarget->hasSSE42() &&
15802            "Target must have SSE4.2 or AVX features enabled");
15803     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
15804
15805   // Thread synchronization.
15806   case X86::MONITOR:
15807     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
15808
15809   // xbegin
15810   case X86::XBEGIN:
15811     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
15812
15813   // Atomic Lowering.
15814   case X86::ATOMAND8:
15815   case X86::ATOMAND16:
15816   case X86::ATOMAND32:
15817   case X86::ATOMAND64:
15818     // Fall through
15819   case X86::ATOMOR8:
15820   case X86::ATOMOR16:
15821   case X86::ATOMOR32:
15822   case X86::ATOMOR64:
15823     // Fall through
15824   case X86::ATOMXOR16:
15825   case X86::ATOMXOR8:
15826   case X86::ATOMXOR32:
15827   case X86::ATOMXOR64:
15828     // Fall through
15829   case X86::ATOMNAND8:
15830   case X86::ATOMNAND16:
15831   case X86::ATOMNAND32:
15832   case X86::ATOMNAND64:
15833     // Fall through
15834   case X86::ATOMMAX8:
15835   case X86::ATOMMAX16:
15836   case X86::ATOMMAX32:
15837   case X86::ATOMMAX64:
15838     // Fall through
15839   case X86::ATOMMIN8:
15840   case X86::ATOMMIN16:
15841   case X86::ATOMMIN32:
15842   case X86::ATOMMIN64:
15843     // Fall through
15844   case X86::ATOMUMAX8:
15845   case X86::ATOMUMAX16:
15846   case X86::ATOMUMAX32:
15847   case X86::ATOMUMAX64:
15848     // Fall through
15849   case X86::ATOMUMIN8:
15850   case X86::ATOMUMIN16:
15851   case X86::ATOMUMIN32:
15852   case X86::ATOMUMIN64:
15853     return EmitAtomicLoadArith(MI, BB);
15854
15855   // This group does 64-bit operations on a 32-bit host.
15856   case X86::ATOMAND6432:
15857   case X86::ATOMOR6432:
15858   case X86::ATOMXOR6432:
15859   case X86::ATOMNAND6432:
15860   case X86::ATOMADD6432:
15861   case X86::ATOMSUB6432:
15862   case X86::ATOMMAX6432:
15863   case X86::ATOMMIN6432:
15864   case X86::ATOMUMAX6432:
15865   case X86::ATOMUMIN6432:
15866   case X86::ATOMSWAP6432:
15867     return EmitAtomicLoadArith6432(MI, BB);
15868
15869   case X86::VASTART_SAVE_XMM_REGS:
15870     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
15871
15872   case X86::VAARG_64:
15873     return EmitVAARG64WithCustomInserter(MI, BB);
15874
15875   case X86::EH_SjLj_SetJmp32:
15876   case X86::EH_SjLj_SetJmp64:
15877     return emitEHSjLjSetJmp(MI, BB);
15878
15879   case X86::EH_SjLj_LongJmp32:
15880   case X86::EH_SjLj_LongJmp64:
15881     return emitEHSjLjLongJmp(MI, BB);
15882   }
15883 }
15884
15885 //===----------------------------------------------------------------------===//
15886 //                           X86 Optimization Hooks
15887 //===----------------------------------------------------------------------===//
15888
15889 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
15890                                                        APInt &KnownZero,
15891                                                        APInt &KnownOne,
15892                                                        const SelectionDAG &DAG,
15893                                                        unsigned Depth) const {
15894   unsigned BitWidth = KnownZero.getBitWidth();
15895   unsigned Opc = Op.getOpcode();
15896   assert((Opc >= ISD::BUILTIN_OP_END ||
15897           Opc == ISD::INTRINSIC_WO_CHAIN ||
15898           Opc == ISD::INTRINSIC_W_CHAIN ||
15899           Opc == ISD::INTRINSIC_VOID) &&
15900          "Should use MaskedValueIsZero if you don't know whether Op"
15901          " is a target node!");
15902
15903   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
15904   switch (Opc) {
15905   default: break;
15906   case X86ISD::ADD:
15907   case X86ISD::SUB:
15908   case X86ISD::ADC:
15909   case X86ISD::SBB:
15910   case X86ISD::SMUL:
15911   case X86ISD::UMUL:
15912   case X86ISD::INC:
15913   case X86ISD::DEC:
15914   case X86ISD::OR:
15915   case X86ISD::XOR:
15916   case X86ISD::AND:
15917     // These nodes' second result is a boolean.
15918     if (Op.getResNo() == 0)
15919       break;
15920     // Fallthrough
15921   case X86ISD::SETCC:
15922     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
15923     break;
15924   case ISD::INTRINSIC_WO_CHAIN: {
15925     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15926     unsigned NumLoBits = 0;
15927     switch (IntId) {
15928     default: break;
15929     case Intrinsic::x86_sse_movmsk_ps:
15930     case Intrinsic::x86_avx_movmsk_ps_256:
15931     case Intrinsic::x86_sse2_movmsk_pd:
15932     case Intrinsic::x86_avx_movmsk_pd_256:
15933     case Intrinsic::x86_mmx_pmovmskb:
15934     case Intrinsic::x86_sse2_pmovmskb_128:
15935     case Intrinsic::x86_avx2_pmovmskb: {
15936       // High bits of movmskp{s|d}, pmovmskb are known zero.
15937       switch (IntId) {
15938         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
15939         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
15940         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
15941         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
15942         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
15943         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
15944         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
15945         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
15946       }
15947       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
15948       break;
15949     }
15950     }
15951     break;
15952   }
15953   }
15954 }
15955
15956 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
15957                                                          unsigned Depth) const {
15958   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
15959   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
15960     return Op.getValueType().getScalarType().getSizeInBits();
15961
15962   // Fallback case.
15963   return 1;
15964 }
15965
15966 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
15967 /// node is a GlobalAddress + offset.
15968 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
15969                                        const GlobalValue* &GA,
15970                                        int64_t &Offset) const {
15971   if (N->getOpcode() == X86ISD::Wrapper) {
15972     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
15973       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
15974       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
15975       return true;
15976     }
15977   }
15978   return TargetLowering::isGAPlusOffset(N, GA, Offset);
15979 }
15980
15981 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
15982 /// same as extracting the high 128-bit part of 256-bit vector and then
15983 /// inserting the result into the low part of a new 256-bit vector
15984 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
15985   EVT VT = SVOp->getValueType(0);
15986   unsigned NumElems = VT.getVectorNumElements();
15987
15988   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
15989   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
15990     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
15991         SVOp->getMaskElt(j) >= 0)
15992       return false;
15993
15994   return true;
15995 }
15996
15997 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
15998 /// same as extracting the low 128-bit part of 256-bit vector and then
15999 /// inserting the result into the high part of a new 256-bit vector
16000 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16001   EVT VT = SVOp->getValueType(0);
16002   unsigned NumElems = VT.getVectorNumElements();
16003
16004   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16005   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16006     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16007         SVOp->getMaskElt(j) >= 0)
16008       return false;
16009
16010   return true;
16011 }
16012
16013 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16014 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16015                                         TargetLowering::DAGCombinerInfo &DCI,
16016                                         const X86Subtarget* Subtarget) {
16017   SDLoc dl(N);
16018   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16019   SDValue V1 = SVOp->getOperand(0);
16020   SDValue V2 = SVOp->getOperand(1);
16021   EVT VT = SVOp->getValueType(0);
16022   unsigned NumElems = VT.getVectorNumElements();
16023
16024   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16025       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16026     //
16027     //                   0,0,0,...
16028     //                      |
16029     //    V      UNDEF    BUILD_VECTOR    UNDEF
16030     //     \      /           \           /
16031     //  CONCAT_VECTOR         CONCAT_VECTOR
16032     //         \                  /
16033     //          \                /
16034     //          RESULT: V + zero extended
16035     //
16036     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16037         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16038         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16039       return SDValue();
16040
16041     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16042       return SDValue();
16043
16044     // To match the shuffle mask, the first half of the mask should
16045     // be exactly the first vector, and all the rest a splat with the
16046     // first element of the second one.
16047     for (unsigned i = 0; i != NumElems/2; ++i)
16048       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16049           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16050         return SDValue();
16051
16052     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16053     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16054       if (Ld->hasNUsesOfValue(1, 0)) {
16055         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16056         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16057         SDValue ResNode =
16058           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16059                                   array_lengthof(Ops),
16060                                   Ld->getMemoryVT(),
16061                                   Ld->getPointerInfo(),
16062                                   Ld->getAlignment(),
16063                                   false/*isVolatile*/, true/*ReadMem*/,
16064                                   false/*WriteMem*/);
16065
16066         // Make sure the newly-created LOAD is in the same position as Ld in
16067         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16068         // and update uses of Ld's output chain to use the TokenFactor.
16069         if (Ld->hasAnyUseOfValue(1)) {
16070           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16071                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16072           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16073           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16074                                  SDValue(ResNode.getNode(), 1));
16075         }
16076
16077         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16078       }
16079     }
16080
16081     // Emit a zeroed vector and insert the desired subvector on its
16082     // first half.
16083     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16084     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16085     return DCI.CombineTo(N, InsV);
16086   }
16087
16088   //===--------------------------------------------------------------------===//
16089   // Combine some shuffles into subvector extracts and inserts:
16090   //
16091
16092   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16093   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16094     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16095     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16096     return DCI.CombineTo(N, InsV);
16097   }
16098
16099   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16100   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16101     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16102     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16103     return DCI.CombineTo(N, InsV);
16104   }
16105
16106   return SDValue();
16107 }
16108
16109 /// PerformShuffleCombine - Performs several different shuffle combines.
16110 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16111                                      TargetLowering::DAGCombinerInfo &DCI,
16112                                      const X86Subtarget *Subtarget) {
16113   SDLoc dl(N);
16114   EVT VT = N->getValueType(0);
16115
16116   // Don't create instructions with illegal types after legalize types has run.
16117   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16118   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16119     return SDValue();
16120
16121   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16122   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16123       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16124     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16125
16126   // Only handle 128 wide vector from here on.
16127   if (!VT.is128BitVector())
16128     return SDValue();
16129
16130   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16131   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16132   // consecutive, non-overlapping, and in the right order.
16133   SmallVector<SDValue, 16> Elts;
16134   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16135     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16136
16137   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
16138 }
16139
16140 /// PerformTruncateCombine - Converts truncate operation to
16141 /// a sequence of vector shuffle operations.
16142 /// It is possible when we truncate 256-bit vector to 128-bit vector
16143 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16144                                       TargetLowering::DAGCombinerInfo &DCI,
16145                                       const X86Subtarget *Subtarget)  {
16146   return SDValue();
16147 }
16148
16149 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16150 /// specific shuffle of a load can be folded into a single element load.
16151 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16152 /// shuffles have been customed lowered so we need to handle those here.
16153 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16154                                          TargetLowering::DAGCombinerInfo &DCI) {
16155   if (DCI.isBeforeLegalizeOps())
16156     return SDValue();
16157
16158   SDValue InVec = N->getOperand(0);
16159   SDValue EltNo = N->getOperand(1);
16160
16161   if (!isa<ConstantSDNode>(EltNo))
16162     return SDValue();
16163
16164   EVT VT = InVec.getValueType();
16165
16166   bool HasShuffleIntoBitcast = false;
16167   if (InVec.getOpcode() == ISD::BITCAST) {
16168     // Don't duplicate a load with other uses.
16169     if (!InVec.hasOneUse())
16170       return SDValue();
16171     EVT BCVT = InVec.getOperand(0).getValueType();
16172     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16173       return SDValue();
16174     InVec = InVec.getOperand(0);
16175     HasShuffleIntoBitcast = true;
16176   }
16177
16178   if (!isTargetShuffle(InVec.getOpcode()))
16179     return SDValue();
16180
16181   // Don't duplicate a load with other uses.
16182   if (!InVec.hasOneUse())
16183     return SDValue();
16184
16185   SmallVector<int, 16> ShuffleMask;
16186   bool UnaryShuffle;
16187   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16188                             UnaryShuffle))
16189     return SDValue();
16190
16191   // Select the input vector, guarding against out of range extract vector.
16192   unsigned NumElems = VT.getVectorNumElements();
16193   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16194   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16195   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16196                                          : InVec.getOperand(1);
16197
16198   // If inputs to shuffle are the same for both ops, then allow 2 uses
16199   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16200
16201   if (LdNode.getOpcode() == ISD::BITCAST) {
16202     // Don't duplicate a load with other uses.
16203     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16204       return SDValue();
16205
16206     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16207     LdNode = LdNode.getOperand(0);
16208   }
16209
16210   if (!ISD::isNormalLoad(LdNode.getNode()))
16211     return SDValue();
16212
16213   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16214
16215   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16216     return SDValue();
16217
16218   if (HasShuffleIntoBitcast) {
16219     // If there's a bitcast before the shuffle, check if the load type and
16220     // alignment is valid.
16221     unsigned Align = LN0->getAlignment();
16222     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16223     unsigned NewAlign = TLI.getDataLayout()->
16224       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16225
16226     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16227       return SDValue();
16228   }
16229
16230   // All checks match so transform back to vector_shuffle so that DAG combiner
16231   // can finish the job
16232   SDLoc dl(N);
16233
16234   // Create shuffle node taking into account the case that its a unary shuffle
16235   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16236   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16237                                  InVec.getOperand(0), Shuffle,
16238                                  &ShuffleMask[0]);
16239   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16240   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16241                      EltNo);
16242 }
16243
16244 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16245 /// generation and convert it from being a bunch of shuffles and extracts
16246 /// to a simple store and scalar loads to extract the elements.
16247 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16248                                          TargetLowering::DAGCombinerInfo &DCI) {
16249   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16250   if (NewOp.getNode())
16251     return NewOp;
16252
16253   SDValue InputVector = N->getOperand(0);
16254   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16255   // from mmx to v2i32 has a single usage.
16256   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16257       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16258       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16259     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16260                        N->getValueType(0),
16261                        InputVector.getNode()->getOperand(0));
16262
16263   // Only operate on vectors of 4 elements, where the alternative shuffling
16264   // gets to be more expensive.
16265   if (InputVector.getValueType() != MVT::v4i32)
16266     return SDValue();
16267
16268   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16269   // single use which is a sign-extend or zero-extend, and all elements are
16270   // used.
16271   SmallVector<SDNode *, 4> Uses;
16272   unsigned ExtractedElements = 0;
16273   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16274        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16275     if (UI.getUse().getResNo() != InputVector.getResNo())
16276       return SDValue();
16277
16278     SDNode *Extract = *UI;
16279     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16280       return SDValue();
16281
16282     if (Extract->getValueType(0) != MVT::i32)
16283       return SDValue();
16284     if (!Extract->hasOneUse())
16285       return SDValue();
16286     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16287         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16288       return SDValue();
16289     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16290       return SDValue();
16291
16292     // Record which element was extracted.
16293     ExtractedElements |=
16294       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16295
16296     Uses.push_back(Extract);
16297   }
16298
16299   // If not all the elements were used, this may not be worthwhile.
16300   if (ExtractedElements != 15)
16301     return SDValue();
16302
16303   // Ok, we've now decided to do the transformation.
16304   SDLoc dl(InputVector);
16305
16306   // Store the value to a temporary stack slot.
16307   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16308   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16309                             MachinePointerInfo(), false, false, 0);
16310
16311   // Replace each use (extract) with a load of the appropriate element.
16312   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16313        UE = Uses.end(); UI != UE; ++UI) {
16314     SDNode *Extract = *UI;
16315
16316     // cOMpute the element's address.
16317     SDValue Idx = Extract->getOperand(1);
16318     unsigned EltSize =
16319         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16320     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16321     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16322     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16323
16324     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16325                                      StackPtr, OffsetVal);
16326
16327     // Load the scalar.
16328     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16329                                      ScalarAddr, MachinePointerInfo(),
16330                                      false, false, false, 0);
16331
16332     // Replace the exact with the load.
16333     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16334   }
16335
16336   // The replacement was made in place; don't return anything.
16337   return SDValue();
16338 }
16339
16340 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16341 static unsigned matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS,
16342                                    SDValue RHS, SelectionDAG &DAG,
16343                                    const X86Subtarget *Subtarget) {
16344   if (!VT.isVector())
16345     return 0;
16346
16347   switch (VT.getSimpleVT().SimpleTy) {
16348   default: return 0;
16349   case MVT::v32i8:
16350   case MVT::v16i16:
16351   case MVT::v8i32:
16352     if (!Subtarget->hasAVX2())
16353       return 0;
16354   case MVT::v16i8:
16355   case MVT::v8i16:
16356   case MVT::v4i32:
16357     if (!Subtarget->hasSSE2())
16358       return 0;
16359   }
16360
16361   // SSE2 has only a small subset of the operations.
16362   bool hasUnsigned = Subtarget->hasSSE41() ||
16363                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16364   bool hasSigned = Subtarget->hasSSE41() ||
16365                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16366
16367   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16368
16369   // Check for x CC y ? x : y.
16370   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16371       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16372     switch (CC) {
16373     default: break;
16374     case ISD::SETULT:
16375     case ISD::SETULE:
16376       return hasUnsigned ? X86ISD::UMIN : 0;
16377     case ISD::SETUGT:
16378     case ISD::SETUGE:
16379       return hasUnsigned ? X86ISD::UMAX : 0;
16380     case ISD::SETLT:
16381     case ISD::SETLE:
16382       return hasSigned ? X86ISD::SMIN : 0;
16383     case ISD::SETGT:
16384     case ISD::SETGE:
16385       return hasSigned ? X86ISD::SMAX : 0;
16386     }
16387   // Check for x CC y ? y : x -- a min/max with reversed arms.
16388   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16389              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16390     switch (CC) {
16391     default: break;
16392     case ISD::SETULT:
16393     case ISD::SETULE:
16394       return hasUnsigned ? X86ISD::UMAX : 0;
16395     case ISD::SETUGT:
16396     case ISD::SETUGE:
16397       return hasUnsigned ? X86ISD::UMIN : 0;
16398     case ISD::SETLT:
16399     case ISD::SETLE:
16400       return hasSigned ? X86ISD::SMAX : 0;
16401     case ISD::SETGT:
16402     case ISD::SETGE:
16403       return hasSigned ? X86ISD::SMIN : 0;
16404     }
16405   }
16406
16407   return 0;
16408 }
16409
16410 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16411 /// nodes.
16412 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16413                                     TargetLowering::DAGCombinerInfo &DCI,
16414                                     const X86Subtarget *Subtarget) {
16415   SDLoc DL(N);
16416   SDValue Cond = N->getOperand(0);
16417   // Get the LHS/RHS of the select.
16418   SDValue LHS = N->getOperand(1);
16419   SDValue RHS = N->getOperand(2);
16420   EVT VT = LHS.getValueType();
16421
16422   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16423   // instructions match the semantics of the common C idiom x<y?x:y but not
16424   // x<=y?x:y, because of how they handle negative zero (which can be
16425   // ignored in unsafe-math mode).
16426   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16427       VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
16428       (Subtarget->hasSSE2() ||
16429        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16430     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16431
16432     unsigned Opcode = 0;
16433     // Check for x CC y ? x : y.
16434     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16435         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16436       switch (CC) {
16437       default: break;
16438       case ISD::SETULT:
16439         // Converting this to a min would handle NaNs incorrectly, and swapping
16440         // the operands would cause it to handle comparisons between positive
16441         // and negative zero incorrectly.
16442         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16443           if (!DAG.getTarget().Options.UnsafeFPMath &&
16444               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16445             break;
16446           std::swap(LHS, RHS);
16447         }
16448         Opcode = X86ISD::FMIN;
16449         break;
16450       case ISD::SETOLE:
16451         // Converting this to a min would handle comparisons between positive
16452         // and negative zero incorrectly.
16453         if (!DAG.getTarget().Options.UnsafeFPMath &&
16454             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16455           break;
16456         Opcode = X86ISD::FMIN;
16457         break;
16458       case ISD::SETULE:
16459         // Converting this to a min would handle both negative zeros and NaNs
16460         // incorrectly, but we can swap the operands to fix both.
16461         std::swap(LHS, RHS);
16462       case ISD::SETOLT:
16463       case ISD::SETLT:
16464       case ISD::SETLE:
16465         Opcode = X86ISD::FMIN;
16466         break;
16467
16468       case ISD::SETOGE:
16469         // Converting this to a max would handle comparisons between positive
16470         // and negative zero incorrectly.
16471         if (!DAG.getTarget().Options.UnsafeFPMath &&
16472             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16473           break;
16474         Opcode = X86ISD::FMAX;
16475         break;
16476       case ISD::SETUGT:
16477         // Converting this to a max would handle NaNs incorrectly, and swapping
16478         // the operands would cause it to handle comparisons between positive
16479         // and negative zero incorrectly.
16480         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16481           if (!DAG.getTarget().Options.UnsafeFPMath &&
16482               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16483             break;
16484           std::swap(LHS, RHS);
16485         }
16486         Opcode = X86ISD::FMAX;
16487         break;
16488       case ISD::SETUGE:
16489         // Converting this to a max would handle both negative zeros and NaNs
16490         // incorrectly, but we can swap the operands to fix both.
16491         std::swap(LHS, RHS);
16492       case ISD::SETOGT:
16493       case ISD::SETGT:
16494       case ISD::SETGE:
16495         Opcode = X86ISD::FMAX;
16496         break;
16497       }
16498     // Check for x CC y ? y : x -- a min/max with reversed arms.
16499     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16500                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16501       switch (CC) {
16502       default: break;
16503       case ISD::SETOGE:
16504         // Converting this to a min would handle comparisons between positive
16505         // and negative zero incorrectly, and swapping the operands would
16506         // cause it to handle NaNs incorrectly.
16507         if (!DAG.getTarget().Options.UnsafeFPMath &&
16508             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16509           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16510             break;
16511           std::swap(LHS, RHS);
16512         }
16513         Opcode = X86ISD::FMIN;
16514         break;
16515       case ISD::SETUGT:
16516         // Converting this to a min would handle NaNs incorrectly.
16517         if (!DAG.getTarget().Options.UnsafeFPMath &&
16518             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16519           break;
16520         Opcode = X86ISD::FMIN;
16521         break;
16522       case ISD::SETUGE:
16523         // Converting this to a min would handle both negative zeros and NaNs
16524         // incorrectly, but we can swap the operands to fix both.
16525         std::swap(LHS, RHS);
16526       case ISD::SETOGT:
16527       case ISD::SETGT:
16528       case ISD::SETGE:
16529         Opcode = X86ISD::FMIN;
16530         break;
16531
16532       case ISD::SETULT:
16533         // Converting this to a max would handle NaNs incorrectly.
16534         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16535           break;
16536         Opcode = X86ISD::FMAX;
16537         break;
16538       case ISD::SETOLE:
16539         // Converting this to a max would handle comparisons between positive
16540         // and negative zero incorrectly, and swapping the operands would
16541         // cause it to handle NaNs incorrectly.
16542         if (!DAG.getTarget().Options.UnsafeFPMath &&
16543             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16544           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16545             break;
16546           std::swap(LHS, RHS);
16547         }
16548         Opcode = X86ISD::FMAX;
16549         break;
16550       case ISD::SETULE:
16551         // Converting this to a max would handle both negative zeros and NaNs
16552         // incorrectly, but we can swap the operands to fix both.
16553         std::swap(LHS, RHS);
16554       case ISD::SETOLT:
16555       case ISD::SETLT:
16556       case ISD::SETLE:
16557         Opcode = X86ISD::FMAX;
16558         break;
16559       }
16560     }
16561
16562     if (Opcode)
16563       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16564   }
16565
16566   if (Subtarget->hasAVX512() && VT.isVector() &&
16567       Cond.getValueType().getVectorElementType() == MVT::i1) {
16568     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16569     // lowering on AVX-512. In this case we convert it to
16570     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16571     // The same situation for all 128 and 256-bit vectors of i8 and i16
16572     EVT OpVT = LHS.getValueType();
16573     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16574         (OpVT.getVectorElementType() == MVT::i8 ||
16575          OpVT.getVectorElementType() == MVT::i16)) {
16576       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16577       DCI.AddToWorklist(Cond.getNode());
16578       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16579     }
16580     else
16581       return SDValue();
16582   }
16583   // If this is a select between two integer constants, try to do some
16584   // optimizations.
16585   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16586     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16587       // Don't do this for crazy integer types.
16588       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16589         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16590         // so that TrueC (the true value) is larger than FalseC.
16591         bool NeedsCondInvert = false;
16592
16593         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16594             // Efficiently invertible.
16595             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16596              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16597               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16598           NeedsCondInvert = true;
16599           std::swap(TrueC, FalseC);
16600         }
16601
16602         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16603         if (FalseC->getAPIntValue() == 0 &&
16604             TrueC->getAPIntValue().isPowerOf2()) {
16605           if (NeedsCondInvert) // Invert the condition if needed.
16606             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16607                                DAG.getConstant(1, Cond.getValueType()));
16608
16609           // Zero extend the condition if needed.
16610           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16611
16612           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16613           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16614                              DAG.getConstant(ShAmt, MVT::i8));
16615         }
16616
16617         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16618         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16619           if (NeedsCondInvert) // Invert the condition if needed.
16620             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16621                                DAG.getConstant(1, Cond.getValueType()));
16622
16623           // Zero extend the condition if needed.
16624           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16625                              FalseC->getValueType(0), Cond);
16626           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16627                              SDValue(FalseC, 0));
16628         }
16629
16630         // Optimize cases that will turn into an LEA instruction.  This requires
16631         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16632         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16633           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16634           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16635
16636           bool isFastMultiplier = false;
16637           if (Diff < 10) {
16638             switch ((unsigned char)Diff) {
16639               default: break;
16640               case 1:  // result = add base, cond
16641               case 2:  // result = lea base(    , cond*2)
16642               case 3:  // result = lea base(cond, cond*2)
16643               case 4:  // result = lea base(    , cond*4)
16644               case 5:  // result = lea base(cond, cond*4)
16645               case 8:  // result = lea base(    , cond*8)
16646               case 9:  // result = lea base(cond, cond*8)
16647                 isFastMultiplier = true;
16648                 break;
16649             }
16650           }
16651
16652           if (isFastMultiplier) {
16653             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16654             if (NeedsCondInvert) // Invert the condition if needed.
16655               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16656                                  DAG.getConstant(1, Cond.getValueType()));
16657
16658             // Zero extend the condition if needed.
16659             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16660                                Cond);
16661             // Scale the condition by the difference.
16662             if (Diff != 1)
16663               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16664                                  DAG.getConstant(Diff, Cond.getValueType()));
16665
16666             // Add the base if non-zero.
16667             if (FalseC->getAPIntValue() != 0)
16668               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16669                                  SDValue(FalseC, 0));
16670             return Cond;
16671           }
16672         }
16673       }
16674   }
16675
16676   // Canonicalize max and min:
16677   // (x > y) ? x : y -> (x >= y) ? x : y
16678   // (x < y) ? x : y -> (x <= y) ? x : y
16679   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16680   // the need for an extra compare
16681   // against zero. e.g.
16682   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16683   // subl   %esi, %edi
16684   // testl  %edi, %edi
16685   // movl   $0, %eax
16686   // cmovgl %edi, %eax
16687   // =>
16688   // xorl   %eax, %eax
16689   // subl   %esi, $edi
16690   // cmovsl %eax, %edi
16691   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16692       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16693       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16694     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16695     switch (CC) {
16696     default: break;
16697     case ISD::SETLT:
16698     case ISD::SETGT: {
16699       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
16700       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
16701                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
16702       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16703     }
16704     }
16705   }
16706
16707   // Match VSELECTs into subs with unsigned saturation.
16708   if (!DCI.isBeforeLegalize() &&
16709       N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16710       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16711       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16712        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16713     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16714
16715     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16716     // left side invert the predicate to simplify logic below.
16717     SDValue Other;
16718     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16719       Other = RHS;
16720       CC = ISD::getSetCCInverse(CC, true);
16721     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16722       Other = LHS;
16723     }
16724
16725     if (Other.getNode() && Other->getNumOperands() == 2 &&
16726         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16727       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16728       SDValue CondRHS = Cond->getOperand(1);
16729
16730       // Look for a general sub with unsigned saturation first.
16731       // x >= y ? x-y : 0 --> subus x, y
16732       // x >  y ? x-y : 0 --> subus x, y
16733       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16734           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16735         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16736
16737       // If the RHS is a constant we have to reverse the const canonicalization.
16738       // x > C-1 ? x+-C : 0 --> subus x, C
16739       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16740           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16741         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16742         if (CondRHS.getConstantOperandVal(0) == -A-1)
16743           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
16744                              DAG.getConstant(-A, VT));
16745       }
16746
16747       // Another special case: If C was a sign bit, the sub has been
16748       // canonicalized into a xor.
16749       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16750       //        it's safe to decanonicalize the xor?
16751       // x s< 0 ? x^C : 0 --> subus x, C
16752       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16753           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16754           isSplatVector(OpRHS.getNode())) {
16755         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16756         if (A.isSignBit())
16757           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16758       }
16759     }
16760   }
16761
16762   // Try to match a min/max vector operation.
16763   if (!DCI.isBeforeLegalize() &&
16764       N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC)
16765     if (unsigned Op = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget))
16766       return DAG.getNode(Op, DL, N->getValueType(0), LHS, RHS);
16767
16768   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16769   if (!DCI.isBeforeLegalize() && N->getOpcode() == ISD::VSELECT &&
16770       Cond.getOpcode() == ISD::SETCC) {
16771
16772     assert(Cond.getValueType().isVector() &&
16773            "vector select expects a vector selector!");
16774
16775     EVT IntVT = Cond.getValueType();
16776     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16777     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16778
16779     if (!TValIsAllOnes && !FValIsAllZeros) {
16780       // Try invert the condition if true value is not all 1s and false value
16781       // is not all 0s.
16782       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16783       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16784
16785       if (TValIsAllZeros || FValIsAllOnes) {
16786         SDValue CC = Cond.getOperand(2);
16787         ISD::CondCode NewCC =
16788           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16789                                Cond.getOperand(0).getValueType().isInteger());
16790         Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16791         std::swap(LHS, RHS);
16792         TValIsAllOnes = FValIsAllOnes;
16793         FValIsAllZeros = TValIsAllZeros;
16794       }
16795     }
16796
16797     if (TValIsAllOnes || FValIsAllZeros) {
16798       SDValue Ret;
16799
16800       if (TValIsAllOnes && FValIsAllZeros)
16801         Ret = Cond;
16802       else if (TValIsAllOnes)
16803         Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16804                           DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16805       else if (FValIsAllZeros)
16806         Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16807                           DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16808
16809       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16810     }
16811   }
16812
16813   // If we know that this node is legal then we know that it is going to be
16814   // matched by one of the SSE/AVX BLEND instructions. These instructions only
16815   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16816   // to simplify previous instructions.
16817   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16818   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
16819       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
16820     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
16821
16822     // Don't optimize vector selects that map to mask-registers.
16823     if (BitWidth == 1)
16824       return SDValue();
16825
16826     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16827     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16828
16829     APInt KnownZero, KnownOne;
16830     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16831                                           DCI.isBeforeLegalizeOps());
16832     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16833         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16834       DCI.CommitTargetLoweringOpt(TLO);
16835   }
16836
16837   return SDValue();
16838 }
16839
16840 // Check whether a boolean test is testing a boolean value generated by
16841 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16842 // code.
16843 //
16844 // Simplify the following patterns:
16845 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16846 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16847 // to (Op EFLAGS Cond)
16848 //
16849 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16850 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16851 // to (Op EFLAGS !Cond)
16852 //
16853 // where Op could be BRCOND or CMOV.
16854 //
16855 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
16856   // Quit if not CMP and SUB with its value result used.
16857   if (Cmp.getOpcode() != X86ISD::CMP &&
16858       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16859       return SDValue();
16860
16861   // Quit if not used as a boolean value.
16862   if (CC != X86::COND_E && CC != X86::COND_NE)
16863     return SDValue();
16864
16865   // Check CMP operands. One of them should be 0 or 1 and the other should be
16866   // an SetCC or extended from it.
16867   SDValue Op1 = Cmp.getOperand(0);
16868   SDValue Op2 = Cmp.getOperand(1);
16869
16870   SDValue SetCC;
16871   const ConstantSDNode* C = 0;
16872   bool needOppositeCond = (CC == X86::COND_E);
16873   bool checkAgainstTrue = false; // Is it a comparison against 1?
16874
16875   if ((C = dyn_cast<ConstantSDNode>(Op1)))
16876     SetCC = Op2;
16877   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16878     SetCC = Op1;
16879   else // Quit if all operands are not constants.
16880     return SDValue();
16881
16882   if (C->getZExtValue() == 1) {
16883     needOppositeCond = !needOppositeCond;
16884     checkAgainstTrue = true;
16885   } else if (C->getZExtValue() != 0)
16886     // Quit if the constant is neither 0 or 1.
16887     return SDValue();
16888
16889   bool truncatedToBoolWithAnd = false;
16890   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16891   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16892          SetCC.getOpcode() == ISD::TRUNCATE ||
16893          SetCC.getOpcode() == ISD::AND) {
16894     if (SetCC.getOpcode() == ISD::AND) {
16895       int OpIdx = -1;
16896       ConstantSDNode *CS;
16897       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16898           CS->getZExtValue() == 1)
16899         OpIdx = 1;
16900       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16901           CS->getZExtValue() == 1)
16902         OpIdx = 0;
16903       if (OpIdx == -1)
16904         break;
16905       SetCC = SetCC.getOperand(OpIdx);
16906       truncatedToBoolWithAnd = true;
16907     } else
16908       SetCC = SetCC.getOperand(0);
16909   }
16910
16911   switch (SetCC.getOpcode()) {
16912   case X86ISD::SETCC_CARRY:
16913     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16914     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16915     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16916     // truncated to i1 using 'and'.
16917     if (checkAgainstTrue && !truncatedToBoolWithAnd)
16918       break;
16919     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16920            "Invalid use of SETCC_CARRY!");
16921     // FALL THROUGH
16922   case X86ISD::SETCC:
16923     // Set the condition code or opposite one if necessary.
16924     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
16925     if (needOppositeCond)
16926       CC = X86::GetOppositeBranchCondition(CC);
16927     return SetCC.getOperand(1);
16928   case X86ISD::CMOV: {
16929     // Check whether false/true value has canonical one, i.e. 0 or 1.
16930     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
16931     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
16932     // Quit if true value is not a constant.
16933     if (!TVal)
16934       return SDValue();
16935     // Quit if false value is not a constant.
16936     if (!FVal) {
16937       SDValue Op = SetCC.getOperand(0);
16938       // Skip 'zext' or 'trunc' node.
16939       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
16940           Op.getOpcode() == ISD::TRUNCATE)
16941         Op = Op.getOperand(0);
16942       // A special case for rdrand/rdseed, where 0 is set if false cond is
16943       // found.
16944       if ((Op.getOpcode() != X86ISD::RDRAND &&
16945            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
16946         return SDValue();
16947     }
16948     // Quit if false value is not the constant 0 or 1.
16949     bool FValIsFalse = true;
16950     if (FVal && FVal->getZExtValue() != 0) {
16951       if (FVal->getZExtValue() != 1)
16952         return SDValue();
16953       // If FVal is 1, opposite cond is needed.
16954       needOppositeCond = !needOppositeCond;
16955       FValIsFalse = false;
16956     }
16957     // Quit if TVal is not the constant opposite of FVal.
16958     if (FValIsFalse && TVal->getZExtValue() != 1)
16959       return SDValue();
16960     if (!FValIsFalse && TVal->getZExtValue() != 0)
16961       return SDValue();
16962     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
16963     if (needOppositeCond)
16964       CC = X86::GetOppositeBranchCondition(CC);
16965     return SetCC.getOperand(3);
16966   }
16967   }
16968
16969   return SDValue();
16970 }
16971
16972 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
16973 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
16974                                   TargetLowering::DAGCombinerInfo &DCI,
16975                                   const X86Subtarget *Subtarget) {
16976   SDLoc DL(N);
16977
16978   // If the flag operand isn't dead, don't touch this CMOV.
16979   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
16980     return SDValue();
16981
16982   SDValue FalseOp = N->getOperand(0);
16983   SDValue TrueOp = N->getOperand(1);
16984   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
16985   SDValue Cond = N->getOperand(3);
16986
16987   if (CC == X86::COND_E || CC == X86::COND_NE) {
16988     switch (Cond.getOpcode()) {
16989     default: break;
16990     case X86ISD::BSR:
16991     case X86ISD::BSF:
16992       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
16993       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
16994         return (CC == X86::COND_E) ? FalseOp : TrueOp;
16995     }
16996   }
16997
16998   SDValue Flags;
16999
17000   Flags = checkBoolTestSetCCCombine(Cond, CC);
17001   if (Flags.getNode() &&
17002       // Extra check as FCMOV only supports a subset of X86 cond.
17003       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17004     SDValue Ops[] = { FalseOp, TrueOp,
17005                       DAG.getConstant(CC, MVT::i8), Flags };
17006     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17007                        Ops, array_lengthof(Ops));
17008   }
17009
17010   // If this is a select between two integer constants, try to do some
17011   // optimizations.  Note that the operands are ordered the opposite of SELECT
17012   // operands.
17013   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17014     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17015       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17016       // larger than FalseC (the false value).
17017       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17018         CC = X86::GetOppositeBranchCondition(CC);
17019         std::swap(TrueC, FalseC);
17020         std::swap(TrueOp, FalseOp);
17021       }
17022
17023       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17024       // This is efficient for any integer data type (including i8/i16) and
17025       // shift amount.
17026       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17027         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17028                            DAG.getConstant(CC, MVT::i8), Cond);
17029
17030         // Zero extend the condition if needed.
17031         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17032
17033         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17034         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17035                            DAG.getConstant(ShAmt, MVT::i8));
17036         if (N->getNumValues() == 2)  // Dead flag value?
17037           return DCI.CombineTo(N, Cond, SDValue());
17038         return Cond;
17039       }
17040
17041       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17042       // for any integer data type, including i8/i16.
17043       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17044         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17045                            DAG.getConstant(CC, MVT::i8), Cond);
17046
17047         // Zero extend the condition if needed.
17048         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17049                            FalseC->getValueType(0), Cond);
17050         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17051                            SDValue(FalseC, 0));
17052
17053         if (N->getNumValues() == 2)  // Dead flag value?
17054           return DCI.CombineTo(N, Cond, SDValue());
17055         return Cond;
17056       }
17057
17058       // Optimize cases that will turn into an LEA instruction.  This requires
17059       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17060       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17061         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17062         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17063
17064         bool isFastMultiplier = false;
17065         if (Diff < 10) {
17066           switch ((unsigned char)Diff) {
17067           default: break;
17068           case 1:  // result = add base, cond
17069           case 2:  // result = lea base(    , cond*2)
17070           case 3:  // result = lea base(cond, cond*2)
17071           case 4:  // result = lea base(    , cond*4)
17072           case 5:  // result = lea base(cond, cond*4)
17073           case 8:  // result = lea base(    , cond*8)
17074           case 9:  // result = lea base(cond, cond*8)
17075             isFastMultiplier = true;
17076             break;
17077           }
17078         }
17079
17080         if (isFastMultiplier) {
17081           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17082           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17083                              DAG.getConstant(CC, MVT::i8), Cond);
17084           // Zero extend the condition if needed.
17085           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17086                              Cond);
17087           // Scale the condition by the difference.
17088           if (Diff != 1)
17089             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17090                                DAG.getConstant(Diff, Cond.getValueType()));
17091
17092           // Add the base if non-zero.
17093           if (FalseC->getAPIntValue() != 0)
17094             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17095                                SDValue(FalseC, 0));
17096           if (N->getNumValues() == 2)  // Dead flag value?
17097             return DCI.CombineTo(N, Cond, SDValue());
17098           return Cond;
17099         }
17100       }
17101     }
17102   }
17103
17104   // Handle these cases:
17105   //   (select (x != c), e, c) -> select (x != c), e, x),
17106   //   (select (x == c), c, e) -> select (x == c), x, e)
17107   // where the c is an integer constant, and the "select" is the combination
17108   // of CMOV and CMP.
17109   //
17110   // The rationale for this change is that the conditional-move from a constant
17111   // needs two instructions, however, conditional-move from a register needs
17112   // only one instruction.
17113   //
17114   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17115   //  some instruction-combining opportunities. This opt needs to be
17116   //  postponed as late as possible.
17117   //
17118   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17119     // the DCI.xxxx conditions are provided to postpone the optimization as
17120     // late as possible.
17121
17122     ConstantSDNode *CmpAgainst = 0;
17123     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17124         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17125         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17126
17127       if (CC == X86::COND_NE &&
17128           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17129         CC = X86::GetOppositeBranchCondition(CC);
17130         std::swap(TrueOp, FalseOp);
17131       }
17132
17133       if (CC == X86::COND_E &&
17134           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17135         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17136                           DAG.getConstant(CC, MVT::i8), Cond };
17137         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17138                            array_lengthof(Ops));
17139       }
17140     }
17141   }
17142
17143   return SDValue();
17144 }
17145
17146 /// PerformMulCombine - Optimize a single multiply with constant into two
17147 /// in order to implement it with two cheaper instructions, e.g.
17148 /// LEA + SHL, LEA + LEA.
17149 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17150                                  TargetLowering::DAGCombinerInfo &DCI) {
17151   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17152     return SDValue();
17153
17154   EVT VT = N->getValueType(0);
17155   if (VT != MVT::i64)
17156     return SDValue();
17157
17158   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17159   if (!C)
17160     return SDValue();
17161   uint64_t MulAmt = C->getZExtValue();
17162   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17163     return SDValue();
17164
17165   uint64_t MulAmt1 = 0;
17166   uint64_t MulAmt2 = 0;
17167   if ((MulAmt % 9) == 0) {
17168     MulAmt1 = 9;
17169     MulAmt2 = MulAmt / 9;
17170   } else if ((MulAmt % 5) == 0) {
17171     MulAmt1 = 5;
17172     MulAmt2 = MulAmt / 5;
17173   } else if ((MulAmt % 3) == 0) {
17174     MulAmt1 = 3;
17175     MulAmt2 = MulAmt / 3;
17176   }
17177   if (MulAmt2 &&
17178       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17179     SDLoc DL(N);
17180
17181     if (isPowerOf2_64(MulAmt2) &&
17182         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17183       // If second multiplifer is pow2, issue it first. We want the multiply by
17184       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17185       // is an add.
17186       std::swap(MulAmt1, MulAmt2);
17187
17188     SDValue NewMul;
17189     if (isPowerOf2_64(MulAmt1))
17190       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17191                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17192     else
17193       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17194                            DAG.getConstant(MulAmt1, VT));
17195
17196     if (isPowerOf2_64(MulAmt2))
17197       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17198                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17199     else
17200       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17201                            DAG.getConstant(MulAmt2, VT));
17202
17203     // Do not add new nodes to DAG combiner worklist.
17204     DCI.CombineTo(N, NewMul, false);
17205   }
17206   return SDValue();
17207 }
17208
17209 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17210   SDValue N0 = N->getOperand(0);
17211   SDValue N1 = N->getOperand(1);
17212   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17213   EVT VT = N0.getValueType();
17214
17215   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17216   // since the result of setcc_c is all zero's or all ones.
17217   if (VT.isInteger() && !VT.isVector() &&
17218       N1C && N0.getOpcode() == ISD::AND &&
17219       N0.getOperand(1).getOpcode() == ISD::Constant) {
17220     SDValue N00 = N0.getOperand(0);
17221     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17222         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17223           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17224          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17225       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17226       APInt ShAmt = N1C->getAPIntValue();
17227       Mask = Mask.shl(ShAmt);
17228       if (Mask != 0)
17229         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17230                            N00, DAG.getConstant(Mask, VT));
17231     }
17232   }
17233
17234   // Hardware support for vector shifts is sparse which makes us scalarize the
17235   // vector operations in many cases. Also, on sandybridge ADD is faster than
17236   // shl.
17237   // (shl V, 1) -> add V,V
17238   if (isSplatVector(N1.getNode())) {
17239     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17240     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17241     // We shift all of the values by one. In many cases we do not have
17242     // hardware support for this operation. This is better expressed as an ADD
17243     // of two values.
17244     if (N1C && (1 == N1C->getZExtValue())) {
17245       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17246     }
17247   }
17248
17249   return SDValue();
17250 }
17251
17252 /// \brief Returns a vector of 0s if the node in input is a vector logical
17253 /// shift by a constant amount which is known to be bigger than or equal 
17254 /// to the vector element size in bits.
17255 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17256                                       const X86Subtarget *Subtarget) {
17257   EVT VT = N->getValueType(0);
17258
17259   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17260       (!Subtarget->hasInt256() ||
17261        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17262     return SDValue();
17263
17264   SDValue Amt = N->getOperand(1);
17265   SDLoc DL(N);
17266   if (isSplatVector(Amt.getNode())) {
17267     SDValue SclrAmt = Amt->getOperand(0);
17268     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17269       APInt ShiftAmt = C->getAPIntValue();
17270       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17271
17272       // SSE2/AVX2 logical shifts always return a vector of 0s
17273       // if the shift amount is bigger than or equal to 
17274       // the element size. The constant shift amount will be
17275       // encoded as a 8-bit immediate.
17276       if (ShiftAmt.trunc(8).uge(MaxAmount))
17277         return getZeroVector(VT, Subtarget, DAG, DL);
17278     }
17279   }
17280
17281   return SDValue();
17282 }
17283
17284 /// PerformShiftCombine - Combine shifts.
17285 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17286                                    TargetLowering::DAGCombinerInfo &DCI,
17287                                    const X86Subtarget *Subtarget) {
17288   if (N->getOpcode() == ISD::SHL) {
17289     SDValue V = PerformSHLCombine(N, DAG);
17290     if (V.getNode()) return V;
17291   }
17292
17293   if (N->getOpcode() != ISD::SRA) {
17294     // Try to fold this logical shift into a zero vector.
17295     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17296     if (V.getNode()) return V;
17297   }
17298
17299   return SDValue();
17300 }
17301
17302 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17303 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17304 // and friends.  Likewise for OR -> CMPNEQSS.
17305 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17306                             TargetLowering::DAGCombinerInfo &DCI,
17307                             const X86Subtarget *Subtarget) {
17308   unsigned opcode;
17309
17310   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17311   // we're requiring SSE2 for both.
17312   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17313     SDValue N0 = N->getOperand(0);
17314     SDValue N1 = N->getOperand(1);
17315     SDValue CMP0 = N0->getOperand(1);
17316     SDValue CMP1 = N1->getOperand(1);
17317     SDLoc DL(N);
17318
17319     // The SETCCs should both refer to the same CMP.
17320     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17321       return SDValue();
17322
17323     SDValue CMP00 = CMP0->getOperand(0);
17324     SDValue CMP01 = CMP0->getOperand(1);
17325     EVT     VT    = CMP00.getValueType();
17326
17327     if (VT == MVT::f32 || VT == MVT::f64) {
17328       bool ExpectingFlags = false;
17329       // Check for any users that want flags:
17330       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17331            !ExpectingFlags && UI != UE; ++UI)
17332         switch (UI->getOpcode()) {
17333         default:
17334         case ISD::BR_CC:
17335         case ISD::BRCOND:
17336         case ISD::SELECT:
17337           ExpectingFlags = true;
17338           break;
17339         case ISD::CopyToReg:
17340         case ISD::SIGN_EXTEND:
17341         case ISD::ZERO_EXTEND:
17342         case ISD::ANY_EXTEND:
17343           break;
17344         }
17345
17346       if (!ExpectingFlags) {
17347         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17348         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17349
17350         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17351           X86::CondCode tmp = cc0;
17352           cc0 = cc1;
17353           cc1 = tmp;
17354         }
17355
17356         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17357             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17358           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17359           X86ISD::NodeType NTOperator = is64BitFP ?
17360             X86ISD::FSETCCsd : X86ISD::FSETCCss;
17361           // FIXME: need symbolic constants for these magic numbers.
17362           // See X86ATTInstPrinter.cpp:printSSECC().
17363           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17364           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17365                                               DAG.getConstant(x86cc, MVT::i8));
17366           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17367                                               OnesOrZeroesF);
17368           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17369                                       DAG.getConstant(1, MVT::i32));
17370           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17371           return OneBitOfTruth;
17372         }
17373       }
17374     }
17375   }
17376   return SDValue();
17377 }
17378
17379 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17380 /// so it can be folded inside ANDNP.
17381 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17382   EVT VT = N->getValueType(0);
17383
17384   // Match direct AllOnes for 128 and 256-bit vectors
17385   if (ISD::isBuildVectorAllOnes(N))
17386     return true;
17387
17388   // Look through a bit convert.
17389   if (N->getOpcode() == ISD::BITCAST)
17390     N = N->getOperand(0).getNode();
17391
17392   // Sometimes the operand may come from a insert_subvector building a 256-bit
17393   // allones vector
17394   if (VT.is256BitVector() &&
17395       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17396     SDValue V1 = N->getOperand(0);
17397     SDValue V2 = N->getOperand(1);
17398
17399     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17400         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17401         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17402         ISD::isBuildVectorAllOnes(V2.getNode()))
17403       return true;
17404   }
17405
17406   return false;
17407 }
17408
17409 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17410 // register. In most cases we actually compare or select YMM-sized registers
17411 // and mixing the two types creates horrible code. This method optimizes
17412 // some of the transition sequences.
17413 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17414                                  TargetLowering::DAGCombinerInfo &DCI,
17415                                  const X86Subtarget *Subtarget) {
17416   EVT VT = N->getValueType(0);
17417   if (!VT.is256BitVector())
17418     return SDValue();
17419
17420   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17421           N->getOpcode() == ISD::ZERO_EXTEND ||
17422           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17423
17424   SDValue Narrow = N->getOperand(0);
17425   EVT NarrowVT = Narrow->getValueType(0);
17426   if (!NarrowVT.is128BitVector())
17427     return SDValue();
17428
17429   if (Narrow->getOpcode() != ISD::XOR &&
17430       Narrow->getOpcode() != ISD::AND &&
17431       Narrow->getOpcode() != ISD::OR)
17432     return SDValue();
17433
17434   SDValue N0  = Narrow->getOperand(0);
17435   SDValue N1  = Narrow->getOperand(1);
17436   SDLoc DL(Narrow);
17437
17438   // The Left side has to be a trunc.
17439   if (N0.getOpcode() != ISD::TRUNCATE)
17440     return SDValue();
17441
17442   // The type of the truncated inputs.
17443   EVT WideVT = N0->getOperand(0)->getValueType(0);
17444   if (WideVT != VT)
17445     return SDValue();
17446
17447   // The right side has to be a 'trunc' or a constant vector.
17448   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17449   bool RHSConst = (isSplatVector(N1.getNode()) &&
17450                    isa<ConstantSDNode>(N1->getOperand(0)));
17451   if (!RHSTrunc && !RHSConst)
17452     return SDValue();
17453
17454   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17455
17456   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17457     return SDValue();
17458
17459   // Set N0 and N1 to hold the inputs to the new wide operation.
17460   N0 = N0->getOperand(0);
17461   if (RHSConst) {
17462     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17463                      N1->getOperand(0));
17464     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17465     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17466   } else if (RHSTrunc) {
17467     N1 = N1->getOperand(0);
17468   }
17469
17470   // Generate the wide operation.
17471   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17472   unsigned Opcode = N->getOpcode();
17473   switch (Opcode) {
17474   case ISD::ANY_EXTEND:
17475     return Op;
17476   case ISD::ZERO_EXTEND: {
17477     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17478     APInt Mask = APInt::getAllOnesValue(InBits);
17479     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17480     return DAG.getNode(ISD::AND, DL, VT,
17481                        Op, DAG.getConstant(Mask, VT));
17482   }
17483   case ISD::SIGN_EXTEND:
17484     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17485                        Op, DAG.getValueType(NarrowVT));
17486   default:
17487     llvm_unreachable("Unexpected opcode");
17488   }
17489 }
17490
17491 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17492                                  TargetLowering::DAGCombinerInfo &DCI,
17493                                  const X86Subtarget *Subtarget) {
17494   EVT VT = N->getValueType(0);
17495   if (DCI.isBeforeLegalizeOps())
17496     return SDValue();
17497
17498   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17499   if (R.getNode())
17500     return R;
17501
17502   // Create BLSI, BLSR, and BZHI instructions
17503   // BLSI is X & (-X)
17504   // BLSR is X & (X-1)
17505   // BZHI is X & ((1 << Y) - 1)
17506   if (VT == MVT::i32 || VT == MVT::i64) {
17507     SDValue N0 = N->getOperand(0);
17508     SDValue N1 = N->getOperand(1);
17509     SDLoc DL(N);
17510
17511     if (Subtarget->hasBMI()) {
17512       // Check LHS for neg
17513       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17514           isZero(N0.getOperand(0)))
17515         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17516
17517       // Check RHS for neg
17518       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17519           isZero(N1.getOperand(0)))
17520         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17521
17522       // Check LHS for X-1
17523       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17524           isAllOnes(N0.getOperand(1)))
17525         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17526
17527       // Check RHS for X-1
17528       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17529           isAllOnes(N1.getOperand(1)))
17530         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17531     }
17532
17533     if (Subtarget->hasBMI2()) {
17534       // Check for (and (add (shl 1, Y), -1), X)
17535       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17536         SDValue N00 = N0.getOperand(0);
17537         if (N00.getOpcode() == ISD::SHL) {
17538           SDValue N001 = N00.getOperand(1);
17539           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17540           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17541           if (C && C->getZExtValue() == 1)
17542             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17543         }
17544       }
17545
17546       // Check for (and X, (add (shl 1, Y), -1))
17547       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17548         SDValue N10 = N1.getOperand(0);
17549         if (N10.getOpcode() == ISD::SHL) {
17550           SDValue N101 = N10.getOperand(1);
17551           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17552           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17553           if (C && C->getZExtValue() == 1)
17554             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17555         }
17556       }
17557     }
17558
17559     return SDValue();
17560   }
17561
17562   // Want to form ANDNP nodes:
17563   // 1) In the hopes of then easily combining them with OR and AND nodes
17564   //    to form PBLEND/PSIGN.
17565   // 2) To match ANDN packed intrinsics
17566   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17567     return SDValue();
17568
17569   SDValue N0 = N->getOperand(0);
17570   SDValue N1 = N->getOperand(1);
17571   SDLoc DL(N);
17572
17573   // Check LHS for vnot
17574   if (N0.getOpcode() == ISD::XOR &&
17575       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17576       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17577     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17578
17579   // Check RHS for vnot
17580   if (N1.getOpcode() == ISD::XOR &&
17581       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17582       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17583     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17584
17585   return SDValue();
17586 }
17587
17588 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17589                                 TargetLowering::DAGCombinerInfo &DCI,
17590                                 const X86Subtarget *Subtarget) {
17591   EVT VT = N->getValueType(0);
17592   if (DCI.isBeforeLegalizeOps())
17593     return SDValue();
17594
17595   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17596   if (R.getNode())
17597     return R;
17598
17599   SDValue N0 = N->getOperand(0);
17600   SDValue N1 = N->getOperand(1);
17601
17602   // look for psign/blend
17603   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17604     if (!Subtarget->hasSSSE3() ||
17605         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17606       return SDValue();
17607
17608     // Canonicalize pandn to RHS
17609     if (N0.getOpcode() == X86ISD::ANDNP)
17610       std::swap(N0, N1);
17611     // or (and (m, y), (pandn m, x))
17612     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17613       SDValue Mask = N1.getOperand(0);
17614       SDValue X    = N1.getOperand(1);
17615       SDValue Y;
17616       if (N0.getOperand(0) == Mask)
17617         Y = N0.getOperand(1);
17618       if (N0.getOperand(1) == Mask)
17619         Y = N0.getOperand(0);
17620
17621       // Check to see if the mask appeared in both the AND and ANDNP and
17622       if (!Y.getNode())
17623         return SDValue();
17624
17625       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17626       // Look through mask bitcast.
17627       if (Mask.getOpcode() == ISD::BITCAST)
17628         Mask = Mask.getOperand(0);
17629       if (X.getOpcode() == ISD::BITCAST)
17630         X = X.getOperand(0);
17631       if (Y.getOpcode() == ISD::BITCAST)
17632         Y = Y.getOperand(0);
17633
17634       EVT MaskVT = Mask.getValueType();
17635
17636       // Validate that the Mask operand is a vector sra node.
17637       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17638       // there is no psrai.b
17639       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17640       unsigned SraAmt = ~0;
17641       if (Mask.getOpcode() == ISD::SRA) {
17642         SDValue Amt = Mask.getOperand(1);
17643         if (isSplatVector(Amt.getNode())) {
17644           SDValue SclrAmt = Amt->getOperand(0);
17645           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17646             SraAmt = C->getZExtValue();
17647         }
17648       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17649         SDValue SraC = Mask.getOperand(1);
17650         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
17651       }
17652       if ((SraAmt + 1) != EltBits)
17653         return SDValue();
17654
17655       SDLoc DL(N);
17656
17657       // Now we know we at least have a plendvb with the mask val.  See if
17658       // we can form a psignb/w/d.
17659       // psign = x.type == y.type == mask.type && y = sub(0, x);
17660       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17661           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
17662           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17663         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17664                "Unsupported VT for PSIGN");
17665         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
17666         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17667       }
17668       // PBLENDVB only available on SSE 4.1
17669       if (!Subtarget->hasSSE41())
17670         return SDValue();
17671
17672       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17673
17674       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17675       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17676       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
17677       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
17678       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17679     }
17680   }
17681
17682   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17683     return SDValue();
17684
17685   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
17686   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17687     std::swap(N0, N1);
17688   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17689     return SDValue();
17690   if (!N0.hasOneUse() || !N1.hasOneUse())
17691     return SDValue();
17692
17693   SDValue ShAmt0 = N0.getOperand(1);
17694   if (ShAmt0.getValueType() != MVT::i8)
17695     return SDValue();
17696   SDValue ShAmt1 = N1.getOperand(1);
17697   if (ShAmt1.getValueType() != MVT::i8)
17698     return SDValue();
17699   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17700     ShAmt0 = ShAmt0.getOperand(0);
17701   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17702     ShAmt1 = ShAmt1.getOperand(0);
17703
17704   SDLoc DL(N);
17705   unsigned Opc = X86ISD::SHLD;
17706   SDValue Op0 = N0.getOperand(0);
17707   SDValue Op1 = N1.getOperand(0);
17708   if (ShAmt0.getOpcode() == ISD::SUB) {
17709     Opc = X86ISD::SHRD;
17710     std::swap(Op0, Op1);
17711     std::swap(ShAmt0, ShAmt1);
17712   }
17713
17714   unsigned Bits = VT.getSizeInBits();
17715   if (ShAmt1.getOpcode() == ISD::SUB) {
17716     SDValue Sum = ShAmt1.getOperand(0);
17717     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
17718       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17719       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17720         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17721       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
17722         return DAG.getNode(Opc, DL, VT,
17723                            Op0, Op1,
17724                            DAG.getNode(ISD::TRUNCATE, DL,
17725                                        MVT::i8, ShAmt0));
17726     }
17727   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17728     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17729     if (ShAmt0C &&
17730         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
17731       return DAG.getNode(Opc, DL, VT,
17732                          N0.getOperand(0), N1.getOperand(0),
17733                          DAG.getNode(ISD::TRUNCATE, DL,
17734                                        MVT::i8, ShAmt0));
17735   }
17736
17737   return SDValue();
17738 }
17739
17740 // Generate NEG and CMOV for integer abs.
17741 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17742   EVT VT = N->getValueType(0);
17743
17744   // Since X86 does not have CMOV for 8-bit integer, we don't convert
17745   // 8-bit integer abs to NEG and CMOV.
17746   if (VT.isInteger() && VT.getSizeInBits() == 8)
17747     return SDValue();
17748
17749   SDValue N0 = N->getOperand(0);
17750   SDValue N1 = N->getOperand(1);
17751   SDLoc DL(N);
17752
17753   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17754   // and change it to SUB and CMOV.
17755   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17756       N0.getOpcode() == ISD::ADD &&
17757       N0.getOperand(1) == N1 &&
17758       N1.getOpcode() == ISD::SRA &&
17759       N1.getOperand(0) == N0.getOperand(0))
17760     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17761       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17762         // Generate SUB & CMOV.
17763         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17764                                   DAG.getConstant(0, VT), N0.getOperand(0));
17765
17766         SDValue Ops[] = { N0.getOperand(0), Neg,
17767                           DAG.getConstant(X86::COND_GE, MVT::i8),
17768                           SDValue(Neg.getNode(), 1) };
17769         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17770                            Ops, array_lengthof(Ops));
17771       }
17772   return SDValue();
17773 }
17774
17775 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
17776 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17777                                  TargetLowering::DAGCombinerInfo &DCI,
17778                                  const X86Subtarget *Subtarget) {
17779   EVT VT = N->getValueType(0);
17780   if (DCI.isBeforeLegalizeOps())
17781     return SDValue();
17782
17783   if (Subtarget->hasCMov()) {
17784     SDValue RV = performIntegerAbsCombine(N, DAG);
17785     if (RV.getNode())
17786       return RV;
17787   }
17788
17789   // Try forming BMI if it is available.
17790   if (!Subtarget->hasBMI())
17791     return SDValue();
17792
17793   if (VT != MVT::i32 && VT != MVT::i64)
17794     return SDValue();
17795
17796   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17797
17798   // Create BLSMSK instructions by finding X ^ (X-1)
17799   SDValue N0 = N->getOperand(0);
17800   SDValue N1 = N->getOperand(1);
17801   SDLoc DL(N);
17802
17803   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17804       isAllOnes(N0.getOperand(1)))
17805     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17806
17807   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17808       isAllOnes(N1.getOperand(1)))
17809     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17810
17811   return SDValue();
17812 }
17813
17814 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17815 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
17816                                   TargetLowering::DAGCombinerInfo &DCI,
17817                                   const X86Subtarget *Subtarget) {
17818   LoadSDNode *Ld = cast<LoadSDNode>(N);
17819   EVT RegVT = Ld->getValueType(0);
17820   EVT MemVT = Ld->getMemoryVT();
17821   SDLoc dl(Ld);
17822   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17823   unsigned RegSz = RegVT.getSizeInBits();
17824
17825   // On Sandybridge unaligned 256bit loads are inefficient.
17826   ISD::LoadExtType Ext = Ld->getExtensionType();
17827   unsigned Alignment = Ld->getAlignment();
17828   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
17829   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
17830       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
17831     unsigned NumElems = RegVT.getVectorNumElements();
17832     if (NumElems < 2)
17833       return SDValue();
17834
17835     SDValue Ptr = Ld->getBasePtr();
17836     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17837
17838     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17839                                   NumElems/2);
17840     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17841                                 Ld->getPointerInfo(), Ld->isVolatile(),
17842                                 Ld->isNonTemporal(), Ld->isInvariant(),
17843                                 Alignment);
17844     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17845     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17846                                 Ld->getPointerInfo(), Ld->isVolatile(),
17847                                 Ld->isNonTemporal(), Ld->isInvariant(),
17848                                 std::min(16U, Alignment));
17849     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17850                              Load1.getValue(1),
17851                              Load2.getValue(1));
17852
17853     SDValue NewVec = DAG.getUNDEF(RegVT);
17854     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17855     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17856     return DCI.CombineTo(N, NewVec, TF, true);
17857   }
17858
17859   // If this is a vector EXT Load then attempt to optimize it using a
17860   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17861   // expansion is still better than scalar code.
17862   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17863   // emit a shuffle and a arithmetic shift.
17864   // TODO: It is possible to support ZExt by zeroing the undef values
17865   // during the shuffle phase or after the shuffle.
17866   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17867       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
17868     assert(MemVT != RegVT && "Cannot extend to the same type");
17869     assert(MemVT.isVector() && "Must load a vector from memory");
17870
17871     unsigned NumElems = RegVT.getVectorNumElements();
17872     unsigned MemSz = MemVT.getSizeInBits();
17873     assert(RegSz > MemSz && "Register size must be greater than the mem size");
17874
17875     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17876       return SDValue();
17877
17878     // All sizes must be a power of two.
17879     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17880       return SDValue();
17881
17882     // Attempt to load the original value using scalar loads.
17883     // Find the largest scalar type that divides the total loaded size.
17884     MVT SclrLoadTy = MVT::i8;
17885     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17886          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17887       MVT Tp = (MVT::SimpleValueType)tp;
17888       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
17889         SclrLoadTy = Tp;
17890       }
17891     }
17892
17893     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17894     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17895         (64 <= MemSz))
17896       SclrLoadTy = MVT::f64;
17897
17898     // Calculate the number of scalar loads that we need to perform
17899     // in order to load our vector from memory.
17900     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
17901     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17902       return SDValue();
17903
17904     unsigned loadRegZize = RegSz;
17905     if (Ext == ISD::SEXTLOAD && RegSz == 256)
17906       loadRegZize /= 2;
17907
17908     // Represent our vector as a sequence of elements which are the
17909     // largest scalar that we can load.
17910     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
17911       loadRegZize/SclrLoadTy.getSizeInBits());
17912
17913     // Represent the data using the same element type that is stored in
17914     // memory. In practice, we ''widen'' MemVT.
17915     EVT WideVecVT =
17916           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17917                        loadRegZize/MemVT.getScalarType().getSizeInBits());
17918
17919     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
17920       "Invalid vector type");
17921
17922     // We can't shuffle using an illegal type.
17923     if (!TLI.isTypeLegal(WideVecVT))
17924       return SDValue();
17925
17926     SmallVector<SDValue, 8> Chains;
17927     SDValue Ptr = Ld->getBasePtr();
17928     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
17929                                         TLI.getPointerTy());
17930     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
17931
17932     for (unsigned i = 0; i < NumLoads; ++i) {
17933       // Perform a single load.
17934       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
17935                                        Ptr, Ld->getPointerInfo(),
17936                                        Ld->isVolatile(), Ld->isNonTemporal(),
17937                                        Ld->isInvariant(), Ld->getAlignment());
17938       Chains.push_back(ScalarLoad.getValue(1));
17939       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
17940       // another round of DAGCombining.
17941       if (i == 0)
17942         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
17943       else
17944         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
17945                           ScalarLoad, DAG.getIntPtrConstant(i));
17946
17947       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17948     }
17949
17950     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
17951                                Chains.size());
17952
17953     // Bitcast the loaded value to a vector of the original element type, in
17954     // the size of the target vector type.
17955     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
17956     unsigned SizeRatio = RegSz/MemSz;
17957
17958     if (Ext == ISD::SEXTLOAD) {
17959       // If we have SSE4.1 we can directly emit a VSEXT node.
17960       if (Subtarget->hasSSE41()) {
17961         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
17962         return DCI.CombineTo(N, Sext, TF, true);
17963       }
17964
17965       // Otherwise we'll shuffle the small elements in the high bits of the
17966       // larger type and perform an arithmetic shift. If the shift is not legal
17967       // it's better to scalarize.
17968       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
17969         return SDValue();
17970
17971       // Redistribute the loaded elements into the different locations.
17972       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
17973       for (unsigned i = 0; i != NumElems; ++i)
17974         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
17975
17976       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
17977                                            DAG.getUNDEF(WideVecVT),
17978                                            &ShuffleVec[0]);
17979
17980       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
17981
17982       // Build the arithmetic shift.
17983       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
17984                      MemVT.getVectorElementType().getSizeInBits();
17985       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
17986                           DAG.getConstant(Amt, RegVT));
17987
17988       return DCI.CombineTo(N, Shuff, TF, true);
17989     }
17990
17991     // Redistribute the loaded elements into the different locations.
17992     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
17993     for (unsigned i = 0; i != NumElems; ++i)
17994       ShuffleVec[i*SizeRatio] = i;
17995
17996     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
17997                                          DAG.getUNDEF(WideVecVT),
17998                                          &ShuffleVec[0]);
17999
18000     // Bitcast to the requested type.
18001     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18002     // Replace the original load with the new sequence
18003     // and return the new chain.
18004     return DCI.CombineTo(N, Shuff, TF, true);
18005   }
18006
18007   return SDValue();
18008 }
18009
18010 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18011 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18012                                    const X86Subtarget *Subtarget) {
18013   StoreSDNode *St = cast<StoreSDNode>(N);
18014   EVT VT = St->getValue().getValueType();
18015   EVT StVT = St->getMemoryVT();
18016   SDLoc dl(St);
18017   SDValue StoredVal = St->getOperand(1);
18018   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18019
18020   // If we are saving a concatenation of two XMM registers, perform two stores.
18021   // On Sandy Bridge, 256-bit memory operations are executed by two
18022   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18023   // memory  operation.
18024   unsigned Alignment = St->getAlignment();
18025   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18026   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18027       StVT == VT && !IsAligned) {
18028     unsigned NumElems = VT.getVectorNumElements();
18029     if (NumElems < 2)
18030       return SDValue();
18031
18032     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18033     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18034
18035     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18036     SDValue Ptr0 = St->getBasePtr();
18037     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18038
18039     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18040                                 St->getPointerInfo(), St->isVolatile(),
18041                                 St->isNonTemporal(), Alignment);
18042     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18043                                 St->getPointerInfo(), St->isVolatile(),
18044                                 St->isNonTemporal(),
18045                                 std::min(16U, Alignment));
18046     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18047   }
18048
18049   // Optimize trunc store (of multiple scalars) to shuffle and store.
18050   // First, pack all of the elements in one place. Next, store to memory
18051   // in fewer chunks.
18052   if (St->isTruncatingStore() && VT.isVector()) {
18053     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18054     unsigned NumElems = VT.getVectorNumElements();
18055     assert(StVT != VT && "Cannot truncate to the same type");
18056     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18057     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18058
18059     // From, To sizes and ElemCount must be pow of two
18060     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18061     // We are going to use the original vector elt for storing.
18062     // Accumulated smaller vector elements must be a multiple of the store size.
18063     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18064
18065     unsigned SizeRatio  = FromSz / ToSz;
18066
18067     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18068
18069     // Create a type on which we perform the shuffle
18070     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18071             StVT.getScalarType(), NumElems*SizeRatio);
18072
18073     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18074
18075     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18076     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18077     for (unsigned i = 0; i != NumElems; ++i)
18078       ShuffleVec[i] = i * SizeRatio;
18079
18080     // Can't shuffle using an illegal type.
18081     if (!TLI.isTypeLegal(WideVecVT))
18082       return SDValue();
18083
18084     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18085                                          DAG.getUNDEF(WideVecVT),
18086                                          &ShuffleVec[0]);
18087     // At this point all of the data is stored at the bottom of the
18088     // register. We now need to save it to mem.
18089
18090     // Find the largest store unit
18091     MVT StoreType = MVT::i8;
18092     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18093          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18094       MVT Tp = (MVT::SimpleValueType)tp;
18095       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18096         StoreType = Tp;
18097     }
18098
18099     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18100     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18101         (64 <= NumElems * ToSz))
18102       StoreType = MVT::f64;
18103
18104     // Bitcast the original vector into a vector of store-size units
18105     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18106             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18107     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18108     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18109     SmallVector<SDValue, 8> Chains;
18110     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18111                                         TLI.getPointerTy());
18112     SDValue Ptr = St->getBasePtr();
18113
18114     // Perform one or more big stores into memory.
18115     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18116       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18117                                    StoreType, ShuffWide,
18118                                    DAG.getIntPtrConstant(i));
18119       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18120                                 St->getPointerInfo(), St->isVolatile(),
18121                                 St->isNonTemporal(), St->getAlignment());
18122       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18123       Chains.push_back(Ch);
18124     }
18125
18126     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18127                                Chains.size());
18128   }
18129
18130   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18131   // the FP state in cases where an emms may be missing.
18132   // A preferable solution to the general problem is to figure out the right
18133   // places to insert EMMS.  This qualifies as a quick hack.
18134
18135   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18136   if (VT.getSizeInBits() != 64)
18137     return SDValue();
18138
18139   const Function *F = DAG.getMachineFunction().getFunction();
18140   bool NoImplicitFloatOps = F->getAttributes().
18141     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18142   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18143                      && Subtarget->hasSSE2();
18144   if ((VT.isVector() ||
18145        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18146       isa<LoadSDNode>(St->getValue()) &&
18147       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18148       St->getChain().hasOneUse() && !St->isVolatile()) {
18149     SDNode* LdVal = St->getValue().getNode();
18150     LoadSDNode *Ld = 0;
18151     int TokenFactorIndex = -1;
18152     SmallVector<SDValue, 8> Ops;
18153     SDNode* ChainVal = St->getChain().getNode();
18154     // Must be a store of a load.  We currently handle two cases:  the load
18155     // is a direct child, and it's under an intervening TokenFactor.  It is
18156     // possible to dig deeper under nested TokenFactors.
18157     if (ChainVal == LdVal)
18158       Ld = cast<LoadSDNode>(St->getChain());
18159     else if (St->getValue().hasOneUse() &&
18160              ChainVal->getOpcode() == ISD::TokenFactor) {
18161       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18162         if (ChainVal->getOperand(i).getNode() == LdVal) {
18163           TokenFactorIndex = i;
18164           Ld = cast<LoadSDNode>(St->getValue());
18165         } else
18166           Ops.push_back(ChainVal->getOperand(i));
18167       }
18168     }
18169
18170     if (!Ld || !ISD::isNormalLoad(Ld))
18171       return SDValue();
18172
18173     // If this is not the MMX case, i.e. we are just turning i64 load/store
18174     // into f64 load/store, avoid the transformation if there are multiple
18175     // uses of the loaded value.
18176     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18177       return SDValue();
18178
18179     SDLoc LdDL(Ld);
18180     SDLoc StDL(N);
18181     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18182     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18183     // pair instead.
18184     if (Subtarget->is64Bit() || F64IsLegal) {
18185       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18186       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18187                                   Ld->getPointerInfo(), Ld->isVolatile(),
18188                                   Ld->isNonTemporal(), Ld->isInvariant(),
18189                                   Ld->getAlignment());
18190       SDValue NewChain = NewLd.getValue(1);
18191       if (TokenFactorIndex != -1) {
18192         Ops.push_back(NewChain);
18193         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18194                                Ops.size());
18195       }
18196       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18197                           St->getPointerInfo(),
18198                           St->isVolatile(), St->isNonTemporal(),
18199                           St->getAlignment());
18200     }
18201
18202     // Otherwise, lower to two pairs of 32-bit loads / stores.
18203     SDValue LoAddr = Ld->getBasePtr();
18204     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18205                                  DAG.getConstant(4, MVT::i32));
18206
18207     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18208                                Ld->getPointerInfo(),
18209                                Ld->isVolatile(), Ld->isNonTemporal(),
18210                                Ld->isInvariant(), Ld->getAlignment());
18211     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18212                                Ld->getPointerInfo().getWithOffset(4),
18213                                Ld->isVolatile(), Ld->isNonTemporal(),
18214                                Ld->isInvariant(),
18215                                MinAlign(Ld->getAlignment(), 4));
18216
18217     SDValue NewChain = LoLd.getValue(1);
18218     if (TokenFactorIndex != -1) {
18219       Ops.push_back(LoLd);
18220       Ops.push_back(HiLd);
18221       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18222                              Ops.size());
18223     }
18224
18225     LoAddr = St->getBasePtr();
18226     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18227                          DAG.getConstant(4, MVT::i32));
18228
18229     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18230                                 St->getPointerInfo(),
18231                                 St->isVolatile(), St->isNonTemporal(),
18232                                 St->getAlignment());
18233     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18234                                 St->getPointerInfo().getWithOffset(4),
18235                                 St->isVolatile(),
18236                                 St->isNonTemporal(),
18237                                 MinAlign(St->getAlignment(), 4));
18238     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18239   }
18240   return SDValue();
18241 }
18242
18243 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18244 /// and return the operands for the horizontal operation in LHS and RHS.  A
18245 /// horizontal operation performs the binary operation on successive elements
18246 /// of its first operand, then on successive elements of its second operand,
18247 /// returning the resulting values in a vector.  For example, if
18248 ///   A = < float a0, float a1, float a2, float a3 >
18249 /// and
18250 ///   B = < float b0, float b1, float b2, float b3 >
18251 /// then the result of doing a horizontal operation on A and B is
18252 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18253 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18254 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18255 /// set to A, RHS to B, and the routine returns 'true'.
18256 /// Note that the binary operation should have the property that if one of the
18257 /// operands is UNDEF then the result is UNDEF.
18258 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18259   // Look for the following pattern: if
18260   //   A = < float a0, float a1, float a2, float a3 >
18261   //   B = < float b0, float b1, float b2, float b3 >
18262   // and
18263   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18264   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18265   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18266   // which is A horizontal-op B.
18267
18268   // At least one of the operands should be a vector shuffle.
18269   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18270       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18271     return false;
18272
18273   MVT VT = LHS.getSimpleValueType();
18274
18275   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18276          "Unsupported vector type for horizontal add/sub");
18277
18278   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18279   // operate independently on 128-bit lanes.
18280   unsigned NumElts = VT.getVectorNumElements();
18281   unsigned NumLanes = VT.getSizeInBits()/128;
18282   unsigned NumLaneElts = NumElts / NumLanes;
18283   assert((NumLaneElts % 2 == 0) &&
18284          "Vector type should have an even number of elements in each lane");
18285   unsigned HalfLaneElts = NumLaneElts/2;
18286
18287   // View LHS in the form
18288   //   LHS = VECTOR_SHUFFLE A, B, LMask
18289   // If LHS is not a shuffle then pretend it is the shuffle
18290   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18291   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18292   // type VT.
18293   SDValue A, B;
18294   SmallVector<int, 16> LMask(NumElts);
18295   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18296     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18297       A = LHS.getOperand(0);
18298     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18299       B = LHS.getOperand(1);
18300     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18301     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18302   } else {
18303     if (LHS.getOpcode() != ISD::UNDEF)
18304       A = LHS;
18305     for (unsigned i = 0; i != NumElts; ++i)
18306       LMask[i] = i;
18307   }
18308
18309   // Likewise, view RHS in the form
18310   //   RHS = VECTOR_SHUFFLE C, D, RMask
18311   SDValue C, D;
18312   SmallVector<int, 16> RMask(NumElts);
18313   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18314     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18315       C = RHS.getOperand(0);
18316     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18317       D = RHS.getOperand(1);
18318     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18319     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18320   } else {
18321     if (RHS.getOpcode() != ISD::UNDEF)
18322       C = RHS;
18323     for (unsigned i = 0; i != NumElts; ++i)
18324       RMask[i] = i;
18325   }
18326
18327   // Check that the shuffles are both shuffling the same vectors.
18328   if (!(A == C && B == D) && !(A == D && B == C))
18329     return false;
18330
18331   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18332   if (!A.getNode() && !B.getNode())
18333     return false;
18334
18335   // If A and B occur in reverse order in RHS, then "swap" them (which means
18336   // rewriting the mask).
18337   if (A != C)
18338     CommuteVectorShuffleMask(RMask, NumElts);
18339
18340   // At this point LHS and RHS are equivalent to
18341   //   LHS = VECTOR_SHUFFLE A, B, LMask
18342   //   RHS = VECTOR_SHUFFLE A, B, RMask
18343   // Check that the masks correspond to performing a horizontal operation.
18344   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18345     for (unsigned i = 0; i != NumLaneElts; ++i) {
18346       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18347
18348       // Ignore any UNDEF components.
18349       if (LIdx < 0 || RIdx < 0 ||
18350           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18351           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18352         continue;
18353
18354       // Check that successive elements are being operated on.  If not, this is
18355       // not a horizontal operation.
18356       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18357       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18358       if (!(LIdx == Index && RIdx == Index + 1) &&
18359           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18360         return false;
18361     }
18362   }
18363
18364   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18365   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18366   return true;
18367 }
18368
18369 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18370 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18371                                   const X86Subtarget *Subtarget) {
18372   EVT VT = N->getValueType(0);
18373   SDValue LHS = N->getOperand(0);
18374   SDValue RHS = N->getOperand(1);
18375
18376   // Try to synthesize horizontal adds from adds of shuffles.
18377   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18378        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18379       isHorizontalBinOp(LHS, RHS, true))
18380     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18381   return SDValue();
18382 }
18383
18384 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18385 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18386                                   const X86Subtarget *Subtarget) {
18387   EVT VT = N->getValueType(0);
18388   SDValue LHS = N->getOperand(0);
18389   SDValue RHS = N->getOperand(1);
18390
18391   // Try to synthesize horizontal subs from subs of shuffles.
18392   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18393        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18394       isHorizontalBinOp(LHS, RHS, false))
18395     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18396   return SDValue();
18397 }
18398
18399 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18400 /// X86ISD::FXOR nodes.
18401 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18402   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18403   // F[X]OR(0.0, x) -> x
18404   // F[X]OR(x, 0.0) -> x
18405   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18406     if (C->getValueAPF().isPosZero())
18407       return N->getOperand(1);
18408   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18409     if (C->getValueAPF().isPosZero())
18410       return N->getOperand(0);
18411   return SDValue();
18412 }
18413
18414 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18415 /// X86ISD::FMAX nodes.
18416 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18417   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18418
18419   // Only perform optimizations if UnsafeMath is used.
18420   if (!DAG.getTarget().Options.UnsafeFPMath)
18421     return SDValue();
18422
18423   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18424   // into FMINC and FMAXC, which are Commutative operations.
18425   unsigned NewOp = 0;
18426   switch (N->getOpcode()) {
18427     default: llvm_unreachable("unknown opcode");
18428     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18429     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18430   }
18431
18432   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18433                      N->getOperand(0), N->getOperand(1));
18434 }
18435
18436 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18437 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18438   // FAND(0.0, x) -> 0.0
18439   // FAND(x, 0.0) -> 0.0
18440   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18441     if (C->getValueAPF().isPosZero())
18442       return N->getOperand(0);
18443   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18444     if (C->getValueAPF().isPosZero())
18445       return N->getOperand(1);
18446   return SDValue();
18447 }
18448
18449 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18450 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18451   // FANDN(x, 0.0) -> 0.0
18452   // FANDN(0.0, x) -> x
18453   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18454     if (C->getValueAPF().isPosZero())
18455       return N->getOperand(1);
18456   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18457     if (C->getValueAPF().isPosZero())
18458       return N->getOperand(1);
18459   return SDValue();
18460 }
18461
18462 static SDValue PerformBTCombine(SDNode *N,
18463                                 SelectionDAG &DAG,
18464                                 TargetLowering::DAGCombinerInfo &DCI) {
18465   // BT ignores high bits in the bit index operand.
18466   SDValue Op1 = N->getOperand(1);
18467   if (Op1.hasOneUse()) {
18468     unsigned BitWidth = Op1.getValueSizeInBits();
18469     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18470     APInt KnownZero, KnownOne;
18471     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18472                                           !DCI.isBeforeLegalizeOps());
18473     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18474     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18475         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18476       DCI.CommitTargetLoweringOpt(TLO);
18477   }
18478   return SDValue();
18479 }
18480
18481 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18482   SDValue Op = N->getOperand(0);
18483   if (Op.getOpcode() == ISD::BITCAST)
18484     Op = Op.getOperand(0);
18485   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18486   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18487       VT.getVectorElementType().getSizeInBits() ==
18488       OpVT.getVectorElementType().getSizeInBits()) {
18489     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18490   }
18491   return SDValue();
18492 }
18493
18494 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18495                                                const X86Subtarget *Subtarget) {
18496   EVT VT = N->getValueType(0);
18497   if (!VT.isVector())
18498     return SDValue();
18499
18500   SDValue N0 = N->getOperand(0);
18501   SDValue N1 = N->getOperand(1);
18502   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18503   SDLoc dl(N);
18504
18505   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18506   // both SSE and AVX2 since there is no sign-extended shift right
18507   // operation on a vector with 64-bit elements.
18508   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18509   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18510   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18511       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18512     SDValue N00 = N0.getOperand(0);
18513
18514     // EXTLOAD has a better solution on AVX2,
18515     // it may be replaced with X86ISD::VSEXT node.
18516     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18517       if (!ISD::isNormalLoad(N00.getNode()))
18518         return SDValue();
18519
18520     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18521         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18522                                   N00, N1);
18523       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18524     }
18525   }
18526   return SDValue();
18527 }
18528
18529 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18530                                   TargetLowering::DAGCombinerInfo &DCI,
18531                                   const X86Subtarget *Subtarget) {
18532   if (!DCI.isBeforeLegalizeOps())
18533     return SDValue();
18534
18535   if (!Subtarget->hasFp256())
18536     return SDValue();
18537
18538   EVT VT = N->getValueType(0);
18539   if (VT.isVector() && VT.getSizeInBits() == 256) {
18540     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18541     if (R.getNode())
18542       return R;
18543   }
18544
18545   return SDValue();
18546 }
18547
18548 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18549                                  const X86Subtarget* Subtarget) {
18550   SDLoc dl(N);
18551   EVT VT = N->getValueType(0);
18552
18553   // Let legalize expand this if it isn't a legal type yet.
18554   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18555     return SDValue();
18556
18557   EVT ScalarVT = VT.getScalarType();
18558   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18559       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18560     return SDValue();
18561
18562   SDValue A = N->getOperand(0);
18563   SDValue B = N->getOperand(1);
18564   SDValue C = N->getOperand(2);
18565
18566   bool NegA = (A.getOpcode() == ISD::FNEG);
18567   bool NegB = (B.getOpcode() == ISD::FNEG);
18568   bool NegC = (C.getOpcode() == ISD::FNEG);
18569
18570   // Negative multiplication when NegA xor NegB
18571   bool NegMul = (NegA != NegB);
18572   if (NegA)
18573     A = A.getOperand(0);
18574   if (NegB)
18575     B = B.getOperand(0);
18576   if (NegC)
18577     C = C.getOperand(0);
18578
18579   unsigned Opcode;
18580   if (!NegMul)
18581     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18582   else
18583     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18584
18585   return DAG.getNode(Opcode, dl, VT, A, B, C);
18586 }
18587
18588 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18589                                   TargetLowering::DAGCombinerInfo &DCI,
18590                                   const X86Subtarget *Subtarget) {
18591   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18592   //           (and (i32 x86isd::setcc_carry), 1)
18593   // This eliminates the zext. This transformation is necessary because
18594   // ISD::SETCC is always legalized to i8.
18595   SDLoc dl(N);
18596   SDValue N0 = N->getOperand(0);
18597   EVT VT = N->getValueType(0);
18598
18599   if (N0.getOpcode() == ISD::AND &&
18600       N0.hasOneUse() &&
18601       N0.getOperand(0).hasOneUse()) {
18602     SDValue N00 = N0.getOperand(0);
18603     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18604       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18605       if (!C || C->getZExtValue() != 1)
18606         return SDValue();
18607       return DAG.getNode(ISD::AND, dl, VT,
18608                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18609                                      N00.getOperand(0), N00.getOperand(1)),
18610                          DAG.getConstant(1, VT));
18611     }
18612   }
18613
18614   if (VT.is256BitVector()) {
18615     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18616     if (R.getNode())
18617       return R;
18618   }
18619
18620   return SDValue();
18621 }
18622
18623 // Optimize x == -y --> x+y == 0
18624 //          x != -y --> x+y != 0
18625 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18626   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18627   SDValue LHS = N->getOperand(0);
18628   SDValue RHS = N->getOperand(1);
18629
18630   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18631     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18632       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
18633         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18634                                    LHS.getValueType(), RHS, LHS.getOperand(1));
18635         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18636                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18637       }
18638   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18639     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18640       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
18641         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18642                                    RHS.getValueType(), LHS, RHS.getOperand(1));
18643         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18644                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18645       }
18646   return SDValue();
18647 }
18648
18649 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18650 // as "sbb reg,reg", since it can be extended without zext and produces
18651 // an all-ones bit which is more useful than 0/1 in some cases.
18652 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
18653   return DAG.getNode(ISD::AND, DL, MVT::i8,
18654                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18655                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18656                      DAG.getConstant(1, MVT::i8));
18657 }
18658
18659 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
18660 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18661                                    TargetLowering::DAGCombinerInfo &DCI,
18662                                    const X86Subtarget *Subtarget) {
18663   SDLoc DL(N);
18664   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18665   SDValue EFLAGS = N->getOperand(1);
18666
18667   if (CC == X86::COND_A) {
18668     // Try to convert COND_A into COND_B in an attempt to facilitate
18669     // materializing "setb reg".
18670     //
18671     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18672     // cannot take an immediate as its first operand.
18673     //
18674     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
18675         EFLAGS.getValueType().isInteger() &&
18676         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
18677       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
18678                                    EFLAGS.getNode()->getVTList(),
18679                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18680       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18681       return MaterializeSETB(DL, NewEFLAGS, DAG);
18682     }
18683   }
18684
18685   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18686   // a zext and produces an all-ones bit which is more useful than 0/1 in some
18687   // cases.
18688   if (CC == X86::COND_B)
18689     return MaterializeSETB(DL, EFLAGS, DAG);
18690
18691   SDValue Flags;
18692
18693   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18694   if (Flags.getNode()) {
18695     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18696     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18697   }
18698
18699   return SDValue();
18700 }
18701
18702 // Optimize branch condition evaluation.
18703 //
18704 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18705                                     TargetLowering::DAGCombinerInfo &DCI,
18706                                     const X86Subtarget *Subtarget) {
18707   SDLoc DL(N);
18708   SDValue Chain = N->getOperand(0);
18709   SDValue Dest = N->getOperand(1);
18710   SDValue EFLAGS = N->getOperand(3);
18711   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18712
18713   SDValue Flags;
18714
18715   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18716   if (Flags.getNode()) {
18717     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18718     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18719                        Flags);
18720   }
18721
18722   return SDValue();
18723 }
18724
18725 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18726                                         const X86TargetLowering *XTLI) {
18727   SDValue Op0 = N->getOperand(0);
18728   EVT InVT = Op0->getValueType(0);
18729
18730   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
18731   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
18732     SDLoc dl(N);
18733     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
18734     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18735     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18736   }
18737
18738   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18739   // a 32-bit target where SSE doesn't support i64->FP operations.
18740   if (Op0.getOpcode() == ISD::LOAD) {
18741     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18742     EVT VT = Ld->getValueType(0);
18743     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18744         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18745         !XTLI->getSubtarget()->is64Bit() &&
18746         !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
18747       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18748                                           Ld->getChain(), Op0, DAG);
18749       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18750       return FILDChain;
18751     }
18752   }
18753   return SDValue();
18754 }
18755
18756 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18757 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18758                                  X86TargetLowering::DAGCombinerInfo &DCI) {
18759   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18760   // the result is either zero or one (depending on the input carry bit).
18761   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18762   if (X86::isZeroNode(N->getOperand(0)) &&
18763       X86::isZeroNode(N->getOperand(1)) &&
18764       // We don't have a good way to replace an EFLAGS use, so only do this when
18765       // dead right now.
18766       SDValue(N, 1).use_empty()) {
18767     SDLoc DL(N);
18768     EVT VT = N->getValueType(0);
18769     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18770     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18771                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18772                                            DAG.getConstant(X86::COND_B,MVT::i8),
18773                                            N->getOperand(2)),
18774                                DAG.getConstant(1, VT));
18775     return DCI.CombineTo(N, Res1, CarryOut);
18776   }
18777
18778   return SDValue();
18779 }
18780
18781 // fold (add Y, (sete  X, 0)) -> adc  0, Y
18782 //      (add Y, (setne X, 0)) -> sbb -1, Y
18783 //      (sub (sete  X, 0), Y) -> sbb  0, Y
18784 //      (sub (setne X, 0), Y) -> adc -1, Y
18785 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
18786   SDLoc DL(N);
18787
18788   // Look through ZExts.
18789   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18790   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18791     return SDValue();
18792
18793   SDValue SetCC = Ext.getOperand(0);
18794   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18795     return SDValue();
18796
18797   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18798   if (CC != X86::COND_E && CC != X86::COND_NE)
18799     return SDValue();
18800
18801   SDValue Cmp = SetCC.getOperand(1);
18802   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
18803       !X86::isZeroNode(Cmp.getOperand(1)) ||
18804       !Cmp.getOperand(0).getValueType().isInteger())
18805     return SDValue();
18806
18807   SDValue CmpOp0 = Cmp.getOperand(0);
18808   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18809                                DAG.getConstant(1, CmpOp0.getValueType()));
18810
18811   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18812   if (CC == X86::COND_NE)
18813     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18814                        DL, OtherVal.getValueType(), OtherVal,
18815                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18816   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18817                      DL, OtherVal.getValueType(), OtherVal,
18818                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18819 }
18820
18821 /// PerformADDCombine - Do target-specific dag combines on integer adds.
18822 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18823                                  const X86Subtarget *Subtarget) {
18824   EVT VT = N->getValueType(0);
18825   SDValue Op0 = N->getOperand(0);
18826   SDValue Op1 = N->getOperand(1);
18827
18828   // Try to synthesize horizontal adds from adds of shuffles.
18829   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18830        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18831       isHorizontalBinOp(Op0, Op1, true))
18832     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
18833
18834   return OptimizeConditionalInDecrement(N, DAG);
18835 }
18836
18837 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18838                                  const X86Subtarget *Subtarget) {
18839   SDValue Op0 = N->getOperand(0);
18840   SDValue Op1 = N->getOperand(1);
18841
18842   // X86 can't encode an immediate LHS of a sub. See if we can push the
18843   // negation into a preceding instruction.
18844   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
18845     // If the RHS of the sub is a XOR with one use and a constant, invert the
18846     // immediate. Then add one to the LHS of the sub so we can turn
18847     // X-Y -> X+~Y+1, saving one register.
18848     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18849         isa<ConstantSDNode>(Op1.getOperand(1))) {
18850       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
18851       EVT VT = Op0.getValueType();
18852       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
18853                                    Op1.getOperand(0),
18854                                    DAG.getConstant(~XorC, VT));
18855       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
18856                          DAG.getConstant(C->getAPIntValue()+1, VT));
18857     }
18858   }
18859
18860   // Try to synthesize horizontal adds from adds of shuffles.
18861   EVT VT = N->getValueType(0);
18862   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18863        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18864       isHorizontalBinOp(Op0, Op1, true))
18865     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
18866
18867   return OptimizeConditionalInDecrement(N, DAG);
18868 }
18869
18870 /// performVZEXTCombine - Performs build vector combines
18871 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18872                                         TargetLowering::DAGCombinerInfo &DCI,
18873                                         const X86Subtarget *Subtarget) {
18874   // (vzext (bitcast (vzext (x)) -> (vzext x)
18875   SDValue In = N->getOperand(0);
18876   while (In.getOpcode() == ISD::BITCAST)
18877     In = In.getOperand(0);
18878
18879   if (In.getOpcode() != X86ISD::VZEXT)
18880     return SDValue();
18881
18882   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
18883                      In.getOperand(0));
18884 }
18885
18886 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
18887                                              DAGCombinerInfo &DCI) const {
18888   SelectionDAG &DAG = DCI.DAG;
18889   switch (N->getOpcode()) {
18890   default: break;
18891   case ISD::EXTRACT_VECTOR_ELT:
18892     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
18893   case ISD::VSELECT:
18894   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
18895   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
18896   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
18897   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
18898   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
18899   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
18900   case ISD::SHL:
18901   case ISD::SRA:
18902   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
18903   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
18904   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
18905   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
18906   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
18907   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
18908   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
18909   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
18910   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
18911   case X86ISD::FXOR:
18912   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
18913   case X86ISD::FMIN:
18914   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
18915   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
18916   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
18917   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
18918   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
18919   case ISD::ANY_EXTEND:
18920   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
18921   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
18922   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
18923   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
18924   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
18925   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
18926   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
18927   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
18928   case X86ISD::SHUFP:       // Handle all target specific shuffles
18929   case X86ISD::PALIGNR:
18930   case X86ISD::UNPCKH:
18931   case X86ISD::UNPCKL:
18932   case X86ISD::MOVHLPS:
18933   case X86ISD::MOVLHPS:
18934   case X86ISD::PSHUFD:
18935   case X86ISD::PSHUFHW:
18936   case X86ISD::PSHUFLW:
18937   case X86ISD::MOVSS:
18938   case X86ISD::MOVSD:
18939   case X86ISD::VPERMILP:
18940   case X86ISD::VPERM2X128:
18941   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
18942   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
18943   }
18944
18945   return SDValue();
18946 }
18947
18948 /// isTypeDesirableForOp - Return true if the target has native support for
18949 /// the specified value type and it is 'desirable' to use the type for the
18950 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
18951 /// instruction encodings are longer and some i16 instructions are slow.
18952 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
18953   if (!isTypeLegal(VT))
18954     return false;
18955   if (VT != MVT::i16)
18956     return true;
18957
18958   switch (Opc) {
18959   default:
18960     return true;
18961   case ISD::LOAD:
18962   case ISD::SIGN_EXTEND:
18963   case ISD::ZERO_EXTEND:
18964   case ISD::ANY_EXTEND:
18965   case ISD::SHL:
18966   case ISD::SRL:
18967   case ISD::SUB:
18968   case ISD::ADD:
18969   case ISD::MUL:
18970   case ISD::AND:
18971   case ISD::OR:
18972   case ISD::XOR:
18973     return false;
18974   }
18975 }
18976
18977 /// IsDesirableToPromoteOp - This method query the target whether it is
18978 /// beneficial for dag combiner to promote the specified node. If true, it
18979 /// should return the desired promotion type by reference.
18980 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
18981   EVT VT = Op.getValueType();
18982   if (VT != MVT::i16)
18983     return false;
18984
18985   bool Promote = false;
18986   bool Commute = false;
18987   switch (Op.getOpcode()) {
18988   default: break;
18989   case ISD::LOAD: {
18990     LoadSDNode *LD = cast<LoadSDNode>(Op);
18991     // If the non-extending load has a single use and it's not live out, then it
18992     // might be folded.
18993     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
18994                                                      Op.hasOneUse()*/) {
18995       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
18996              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
18997         // The only case where we'd want to promote LOAD (rather then it being
18998         // promoted as an operand is when it's only use is liveout.
18999         if (UI->getOpcode() != ISD::CopyToReg)
19000           return false;
19001       }
19002     }
19003     Promote = true;
19004     break;
19005   }
19006   case ISD::SIGN_EXTEND:
19007   case ISD::ZERO_EXTEND:
19008   case ISD::ANY_EXTEND:
19009     Promote = true;
19010     break;
19011   case ISD::SHL:
19012   case ISD::SRL: {
19013     SDValue N0 = Op.getOperand(0);
19014     // Look out for (store (shl (load), x)).
19015     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19016       return false;
19017     Promote = true;
19018     break;
19019   }
19020   case ISD::ADD:
19021   case ISD::MUL:
19022   case ISD::AND:
19023   case ISD::OR:
19024   case ISD::XOR:
19025     Commute = true;
19026     // fallthrough
19027   case ISD::SUB: {
19028     SDValue N0 = Op.getOperand(0);
19029     SDValue N1 = Op.getOperand(1);
19030     if (!Commute && MayFoldLoad(N1))
19031       return false;
19032     // Avoid disabling potential load folding opportunities.
19033     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19034       return false;
19035     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19036       return false;
19037     Promote = true;
19038   }
19039   }
19040
19041   PVT = MVT::i32;
19042   return Promote;
19043 }
19044
19045 //===----------------------------------------------------------------------===//
19046 //                           X86 Inline Assembly Support
19047 //===----------------------------------------------------------------------===//
19048
19049 namespace {
19050   // Helper to match a string separated by whitespace.
19051   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19052     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19053
19054     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19055       StringRef piece(*args[i]);
19056       if (!s.startswith(piece)) // Check if the piece matches.
19057         return false;
19058
19059       s = s.substr(piece.size());
19060       StringRef::size_type pos = s.find_first_not_of(" \t");
19061       if (pos == 0) // We matched a prefix.
19062         return false;
19063
19064       s = s.substr(pos);
19065     }
19066
19067     return s.empty();
19068   }
19069   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19070 }
19071
19072 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19073   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19074
19075   std::string AsmStr = IA->getAsmString();
19076
19077   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19078   if (!Ty || Ty->getBitWidth() % 16 != 0)
19079     return false;
19080
19081   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19082   SmallVector<StringRef, 4> AsmPieces;
19083   SplitString(AsmStr, AsmPieces, ";\n");
19084
19085   switch (AsmPieces.size()) {
19086   default: return false;
19087   case 1:
19088     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19089     // we will turn this bswap into something that will be lowered to logical
19090     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19091     // lower so don't worry about this.
19092     // bswap $0
19093     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19094         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19095         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19096         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19097         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19098         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19099       // No need to check constraints, nothing other than the equivalent of
19100       // "=r,0" would be valid here.
19101       return IntrinsicLowering::LowerToByteSwap(CI);
19102     }
19103
19104     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19105     if (CI->getType()->isIntegerTy(16) &&
19106         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19107         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19108          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19109       AsmPieces.clear();
19110       const std::string &ConstraintsStr = IA->getConstraintString();
19111       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19112       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19113       if (AsmPieces.size() == 4 &&
19114           AsmPieces[0] == "~{cc}" &&
19115           AsmPieces[1] == "~{dirflag}" &&
19116           AsmPieces[2] == "~{flags}" &&
19117           AsmPieces[3] == "~{fpsr}")
19118       return IntrinsicLowering::LowerToByteSwap(CI);
19119     }
19120     break;
19121   case 3:
19122     if (CI->getType()->isIntegerTy(32) &&
19123         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19124         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19125         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19126         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19127       AsmPieces.clear();
19128       const std::string &ConstraintsStr = IA->getConstraintString();
19129       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19130       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19131       if (AsmPieces.size() == 4 &&
19132           AsmPieces[0] == "~{cc}" &&
19133           AsmPieces[1] == "~{dirflag}" &&
19134           AsmPieces[2] == "~{flags}" &&
19135           AsmPieces[3] == "~{fpsr}")
19136         return IntrinsicLowering::LowerToByteSwap(CI);
19137     }
19138
19139     if (CI->getType()->isIntegerTy(64)) {
19140       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19141       if (Constraints.size() >= 2 &&
19142           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19143           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19144         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19145         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19146             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19147             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19148           return IntrinsicLowering::LowerToByteSwap(CI);
19149       }
19150     }
19151     break;
19152   }
19153   return false;
19154 }
19155
19156 /// getConstraintType - Given a constraint letter, return the type of
19157 /// constraint it is for this target.
19158 X86TargetLowering::ConstraintType
19159 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19160   if (Constraint.size() == 1) {
19161     switch (Constraint[0]) {
19162     case 'R':
19163     case 'q':
19164     case 'Q':
19165     case 'f':
19166     case 't':
19167     case 'u':
19168     case 'y':
19169     case 'x':
19170     case 'Y':
19171     case 'l':
19172       return C_RegisterClass;
19173     case 'a':
19174     case 'b':
19175     case 'c':
19176     case 'd':
19177     case 'S':
19178     case 'D':
19179     case 'A':
19180       return C_Register;
19181     case 'I':
19182     case 'J':
19183     case 'K':
19184     case 'L':
19185     case 'M':
19186     case 'N':
19187     case 'G':
19188     case 'C':
19189     case 'e':
19190     case 'Z':
19191       return C_Other;
19192     default:
19193       break;
19194     }
19195   }
19196   return TargetLowering::getConstraintType(Constraint);
19197 }
19198
19199 /// Examine constraint type and operand type and determine a weight value.
19200 /// This object must already have been set up with the operand type
19201 /// and the current alternative constraint selected.
19202 TargetLowering::ConstraintWeight
19203   X86TargetLowering::getSingleConstraintMatchWeight(
19204     AsmOperandInfo &info, const char *constraint) const {
19205   ConstraintWeight weight = CW_Invalid;
19206   Value *CallOperandVal = info.CallOperandVal;
19207     // If we don't have a value, we can't do a match,
19208     // but allow it at the lowest weight.
19209   if (CallOperandVal == NULL)
19210     return CW_Default;
19211   Type *type = CallOperandVal->getType();
19212   // Look at the constraint type.
19213   switch (*constraint) {
19214   default:
19215     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19216   case 'R':
19217   case 'q':
19218   case 'Q':
19219   case 'a':
19220   case 'b':
19221   case 'c':
19222   case 'd':
19223   case 'S':
19224   case 'D':
19225   case 'A':
19226     if (CallOperandVal->getType()->isIntegerTy())
19227       weight = CW_SpecificReg;
19228     break;
19229   case 'f':
19230   case 't':
19231   case 'u':
19232     if (type->isFloatingPointTy())
19233       weight = CW_SpecificReg;
19234     break;
19235   case 'y':
19236     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19237       weight = CW_SpecificReg;
19238     break;
19239   case 'x':
19240   case 'Y':
19241     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19242         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19243       weight = CW_Register;
19244     break;
19245   case 'I':
19246     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19247       if (C->getZExtValue() <= 31)
19248         weight = CW_Constant;
19249     }
19250     break;
19251   case 'J':
19252     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19253       if (C->getZExtValue() <= 63)
19254         weight = CW_Constant;
19255     }
19256     break;
19257   case 'K':
19258     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19259       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19260         weight = CW_Constant;
19261     }
19262     break;
19263   case 'L':
19264     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19265       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19266         weight = CW_Constant;
19267     }
19268     break;
19269   case 'M':
19270     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19271       if (C->getZExtValue() <= 3)
19272         weight = CW_Constant;
19273     }
19274     break;
19275   case 'N':
19276     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19277       if (C->getZExtValue() <= 0xff)
19278         weight = CW_Constant;
19279     }
19280     break;
19281   case 'G':
19282   case 'C':
19283     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19284       weight = CW_Constant;
19285     }
19286     break;
19287   case 'e':
19288     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19289       if ((C->getSExtValue() >= -0x80000000LL) &&
19290           (C->getSExtValue() <= 0x7fffffffLL))
19291         weight = CW_Constant;
19292     }
19293     break;
19294   case 'Z':
19295     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19296       if (C->getZExtValue() <= 0xffffffff)
19297         weight = CW_Constant;
19298     }
19299     break;
19300   }
19301   return weight;
19302 }
19303
19304 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19305 /// with another that has more specific requirements based on the type of the
19306 /// corresponding operand.
19307 const char *X86TargetLowering::
19308 LowerXConstraint(EVT ConstraintVT) const {
19309   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19310   // 'f' like normal targets.
19311   if (ConstraintVT.isFloatingPoint()) {
19312     if (Subtarget->hasSSE2())
19313       return "Y";
19314     if (Subtarget->hasSSE1())
19315       return "x";
19316   }
19317
19318   return TargetLowering::LowerXConstraint(ConstraintVT);
19319 }
19320
19321 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19322 /// vector.  If it is invalid, don't add anything to Ops.
19323 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19324                                                      std::string &Constraint,
19325                                                      std::vector<SDValue>&Ops,
19326                                                      SelectionDAG &DAG) const {
19327   SDValue Result(0, 0);
19328
19329   // Only support length 1 constraints for now.
19330   if (Constraint.length() > 1) return;
19331
19332   char ConstraintLetter = Constraint[0];
19333   switch (ConstraintLetter) {
19334   default: break;
19335   case 'I':
19336     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19337       if (C->getZExtValue() <= 31) {
19338         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19339         break;
19340       }
19341     }
19342     return;
19343   case 'J':
19344     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19345       if (C->getZExtValue() <= 63) {
19346         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19347         break;
19348       }
19349     }
19350     return;
19351   case 'K':
19352     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19353       if (isInt<8>(C->getSExtValue())) {
19354         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19355         break;
19356       }
19357     }
19358     return;
19359   case 'N':
19360     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19361       if (C->getZExtValue() <= 255) {
19362         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19363         break;
19364       }
19365     }
19366     return;
19367   case 'e': {
19368     // 32-bit signed value
19369     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19370       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19371                                            C->getSExtValue())) {
19372         // Widen to 64 bits here to get it sign extended.
19373         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19374         break;
19375       }
19376     // FIXME gcc accepts some relocatable values here too, but only in certain
19377     // memory models; it's complicated.
19378     }
19379     return;
19380   }
19381   case 'Z': {
19382     // 32-bit unsigned value
19383     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19384       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19385                                            C->getZExtValue())) {
19386         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19387         break;
19388       }
19389     }
19390     // FIXME gcc accepts some relocatable values here too, but only in certain
19391     // memory models; it's complicated.
19392     return;
19393   }
19394   case 'i': {
19395     // Literal immediates are always ok.
19396     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19397       // Widen to 64 bits here to get it sign extended.
19398       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19399       break;
19400     }
19401
19402     // In any sort of PIC mode addresses need to be computed at runtime by
19403     // adding in a register or some sort of table lookup.  These can't
19404     // be used as immediates.
19405     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19406       return;
19407
19408     // If we are in non-pic codegen mode, we allow the address of a global (with
19409     // an optional displacement) to be used with 'i'.
19410     GlobalAddressSDNode *GA = 0;
19411     int64_t Offset = 0;
19412
19413     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19414     while (1) {
19415       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19416         Offset += GA->getOffset();
19417         break;
19418       } else if (Op.getOpcode() == ISD::ADD) {
19419         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19420           Offset += C->getZExtValue();
19421           Op = Op.getOperand(0);
19422           continue;
19423         }
19424       } else if (Op.getOpcode() == ISD::SUB) {
19425         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19426           Offset += -C->getZExtValue();
19427           Op = Op.getOperand(0);
19428           continue;
19429         }
19430       }
19431
19432       // Otherwise, this isn't something we can handle, reject it.
19433       return;
19434     }
19435
19436     const GlobalValue *GV = GA->getGlobal();
19437     // If we require an extra load to get this address, as in PIC mode, we
19438     // can't accept it.
19439     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19440                                                         getTargetMachine())))
19441       return;
19442
19443     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19444                                         GA->getValueType(0), Offset);
19445     break;
19446   }
19447   }
19448
19449   if (Result.getNode()) {
19450     Ops.push_back(Result);
19451     return;
19452   }
19453   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19454 }
19455
19456 std::pair<unsigned, const TargetRegisterClass*>
19457 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19458                                                 MVT VT) const {
19459   // First, see if this is a constraint that directly corresponds to an LLVM
19460   // register class.
19461   if (Constraint.size() == 1) {
19462     // GCC Constraint Letters
19463     switch (Constraint[0]) {
19464     default: break;
19465       // TODO: Slight differences here in allocation order and leaving
19466       // RIP in the class. Do they matter any more here than they do
19467       // in the normal allocation?
19468     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19469       if (Subtarget->is64Bit()) {
19470         if (VT == MVT::i32 || VT == MVT::f32)
19471           return std::make_pair(0U, &X86::GR32RegClass);
19472         if (VT == MVT::i16)
19473           return std::make_pair(0U, &X86::GR16RegClass);
19474         if (VT == MVT::i8 || VT == MVT::i1)
19475           return std::make_pair(0U, &X86::GR8RegClass);
19476         if (VT == MVT::i64 || VT == MVT::f64)
19477           return std::make_pair(0U, &X86::GR64RegClass);
19478         break;
19479       }
19480       // 32-bit fallthrough
19481     case 'Q':   // Q_REGS
19482       if (VT == MVT::i32 || VT == MVT::f32)
19483         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19484       if (VT == MVT::i16)
19485         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19486       if (VT == MVT::i8 || VT == MVT::i1)
19487         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19488       if (VT == MVT::i64)
19489         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19490       break;
19491     case 'r':   // GENERAL_REGS
19492     case 'l':   // INDEX_REGS
19493       if (VT == MVT::i8 || VT == MVT::i1)
19494         return std::make_pair(0U, &X86::GR8RegClass);
19495       if (VT == MVT::i16)
19496         return std::make_pair(0U, &X86::GR16RegClass);
19497       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19498         return std::make_pair(0U, &X86::GR32RegClass);
19499       return std::make_pair(0U, &X86::GR64RegClass);
19500     case 'R':   // LEGACY_REGS
19501       if (VT == MVT::i8 || VT == MVT::i1)
19502         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19503       if (VT == MVT::i16)
19504         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19505       if (VT == MVT::i32 || !Subtarget->is64Bit())
19506         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19507       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19508     case 'f':  // FP Stack registers.
19509       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19510       // value to the correct fpstack register class.
19511       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19512         return std::make_pair(0U, &X86::RFP32RegClass);
19513       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19514         return std::make_pair(0U, &X86::RFP64RegClass);
19515       return std::make_pair(0U, &X86::RFP80RegClass);
19516     case 'y':   // MMX_REGS if MMX allowed.
19517       if (!Subtarget->hasMMX()) break;
19518       return std::make_pair(0U, &X86::VR64RegClass);
19519     case 'Y':   // SSE_REGS if SSE2 allowed
19520       if (!Subtarget->hasSSE2()) break;
19521       // FALL THROUGH.
19522     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19523       if (!Subtarget->hasSSE1()) break;
19524
19525       switch (VT.SimpleTy) {
19526       default: break;
19527       // Scalar SSE types.
19528       case MVT::f32:
19529       case MVT::i32:
19530         return std::make_pair(0U, &X86::FR32RegClass);
19531       case MVT::f64:
19532       case MVT::i64:
19533         return std::make_pair(0U, &X86::FR64RegClass);
19534       // Vector types.
19535       case MVT::v16i8:
19536       case MVT::v8i16:
19537       case MVT::v4i32:
19538       case MVT::v2i64:
19539       case MVT::v4f32:
19540       case MVT::v2f64:
19541         return std::make_pair(0U, &X86::VR128RegClass);
19542       // AVX types.
19543       case MVT::v32i8:
19544       case MVT::v16i16:
19545       case MVT::v8i32:
19546       case MVT::v4i64:
19547       case MVT::v8f32:
19548       case MVT::v4f64:
19549         return std::make_pair(0U, &X86::VR256RegClass);
19550       case MVT::v8f64:
19551       case MVT::v16f32:
19552       case MVT::v16i32:
19553       case MVT::v8i64:
19554         return std::make_pair(0U, &X86::VR512RegClass);
19555       }
19556       break;
19557     }
19558   }
19559
19560   // Use the default implementation in TargetLowering to convert the register
19561   // constraint into a member of a register class.
19562   std::pair<unsigned, const TargetRegisterClass*> Res;
19563   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19564
19565   // Not found as a standard register?
19566   if (Res.second == 0) {
19567     // Map st(0) -> st(7) -> ST0
19568     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19569         tolower(Constraint[1]) == 's' &&
19570         tolower(Constraint[2]) == 't' &&
19571         Constraint[3] == '(' &&
19572         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19573         Constraint[5] == ')' &&
19574         Constraint[6] == '}') {
19575
19576       Res.first = X86::ST0+Constraint[4]-'0';
19577       Res.second = &X86::RFP80RegClass;
19578       return Res;
19579     }
19580
19581     // GCC allows "st(0)" to be called just plain "st".
19582     if (StringRef("{st}").equals_lower(Constraint)) {
19583       Res.first = X86::ST0;
19584       Res.second = &X86::RFP80RegClass;
19585       return Res;
19586     }
19587
19588     // flags -> EFLAGS
19589     if (StringRef("{flags}").equals_lower(Constraint)) {
19590       Res.first = X86::EFLAGS;
19591       Res.second = &X86::CCRRegClass;
19592       return Res;
19593     }
19594
19595     // 'A' means EAX + EDX.
19596     if (Constraint == "A") {
19597       Res.first = X86::EAX;
19598       Res.second = &X86::GR32_ADRegClass;
19599       return Res;
19600     }
19601     return Res;
19602   }
19603
19604   // Otherwise, check to see if this is a register class of the wrong value
19605   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19606   // turn into {ax},{dx}.
19607   if (Res.second->hasType(VT))
19608     return Res;   // Correct type already, nothing to do.
19609
19610   // All of the single-register GCC register classes map their values onto
19611   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
19612   // really want an 8-bit or 32-bit register, map to the appropriate register
19613   // class and return the appropriate register.
19614   if (Res.second == &X86::GR16RegClass) {
19615     if (VT == MVT::i8 || VT == MVT::i1) {
19616       unsigned DestReg = 0;
19617       switch (Res.first) {
19618       default: break;
19619       case X86::AX: DestReg = X86::AL; break;
19620       case X86::DX: DestReg = X86::DL; break;
19621       case X86::CX: DestReg = X86::CL; break;
19622       case X86::BX: DestReg = X86::BL; break;
19623       }
19624       if (DestReg) {
19625         Res.first = DestReg;
19626         Res.second = &X86::GR8RegClass;
19627       }
19628     } else if (VT == MVT::i32 || VT == MVT::f32) {
19629       unsigned DestReg = 0;
19630       switch (Res.first) {
19631       default: break;
19632       case X86::AX: DestReg = X86::EAX; break;
19633       case X86::DX: DestReg = X86::EDX; break;
19634       case X86::CX: DestReg = X86::ECX; break;
19635       case X86::BX: DestReg = X86::EBX; break;
19636       case X86::SI: DestReg = X86::ESI; break;
19637       case X86::DI: DestReg = X86::EDI; break;
19638       case X86::BP: DestReg = X86::EBP; break;
19639       case X86::SP: DestReg = X86::ESP; break;
19640       }
19641       if (DestReg) {
19642         Res.first = DestReg;
19643         Res.second = &X86::GR32RegClass;
19644       }
19645     } else if (VT == MVT::i64 || VT == MVT::f64) {
19646       unsigned DestReg = 0;
19647       switch (Res.first) {
19648       default: break;
19649       case X86::AX: DestReg = X86::RAX; break;
19650       case X86::DX: DestReg = X86::RDX; break;
19651       case X86::CX: DestReg = X86::RCX; break;
19652       case X86::BX: DestReg = X86::RBX; break;
19653       case X86::SI: DestReg = X86::RSI; break;
19654       case X86::DI: DestReg = X86::RDI; break;
19655       case X86::BP: DestReg = X86::RBP; break;
19656       case X86::SP: DestReg = X86::RSP; break;
19657       }
19658       if (DestReg) {
19659         Res.first = DestReg;
19660         Res.second = &X86::GR64RegClass;
19661       }
19662     }
19663   } else if (Res.second == &X86::FR32RegClass ||
19664              Res.second == &X86::FR64RegClass ||
19665              Res.second == &X86::VR128RegClass ||
19666              Res.second == &X86::VR256RegClass ||
19667              Res.second == &X86::FR32XRegClass ||
19668              Res.second == &X86::FR64XRegClass ||
19669              Res.second == &X86::VR128XRegClass ||
19670              Res.second == &X86::VR256XRegClass ||
19671              Res.second == &X86::VR512RegClass) {
19672     // Handle references to XMM physical registers that got mapped into the
19673     // wrong class.  This can happen with constraints like {xmm0} where the
19674     // target independent register mapper will just pick the first match it can
19675     // find, ignoring the required type.
19676
19677     if (VT == MVT::f32 || VT == MVT::i32)
19678       Res.second = &X86::FR32RegClass;
19679     else if (VT == MVT::f64 || VT == MVT::i64)
19680       Res.second = &X86::FR64RegClass;
19681     else if (X86::VR128RegClass.hasType(VT))
19682       Res.second = &X86::VR128RegClass;
19683     else if (X86::VR256RegClass.hasType(VT))
19684       Res.second = &X86::VR256RegClass;
19685     else if (X86::VR512RegClass.hasType(VT))
19686       Res.second = &X86::VR512RegClass;
19687   }
19688
19689   return Res;
19690 }