AVX-512: Added SHIFT instructions.
[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
1449   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1450   // handle type legalization for these operations here.
1451   //
1452   // FIXME: We really should do custom legalization for addition and
1453   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1454   // than generic legalization for 64-bit multiplication-with-overflow, though.
1455   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1456     // Add/Sub/Mul with overflow operations are custom lowered.
1457     MVT VT = IntVTs[i];
1458     setOperationAction(ISD::SADDO, VT, Custom);
1459     setOperationAction(ISD::UADDO, VT, Custom);
1460     setOperationAction(ISD::SSUBO, VT, Custom);
1461     setOperationAction(ISD::USUBO, VT, Custom);
1462     setOperationAction(ISD::SMULO, VT, Custom);
1463     setOperationAction(ISD::UMULO, VT, Custom);
1464   }
1465
1466   // There are no 8-bit 3-address imul/mul instructions
1467   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1468   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1469
1470   if (!Subtarget->is64Bit()) {
1471     // These libcalls are not available in 32-bit.
1472     setLibcallName(RTLIB::SHL_I128, 0);
1473     setLibcallName(RTLIB::SRL_I128, 0);
1474     setLibcallName(RTLIB::SRA_I128, 0);
1475   }
1476
1477   // Combine sin / cos into one node or libcall if possible.
1478   if (Subtarget->hasSinCos()) {
1479     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1480     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1481     if (Subtarget->isTargetDarwin()) {
1482       // For MacOSX, we don't want to the normal expansion of a libcall to
1483       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1484       // traffic.
1485       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1486       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1487     }
1488   }
1489
1490   // We have target-specific dag combine patterns for the following nodes:
1491   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1492   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1493   setTargetDAGCombine(ISD::VSELECT);
1494   setTargetDAGCombine(ISD::SELECT);
1495   setTargetDAGCombine(ISD::SHL);
1496   setTargetDAGCombine(ISD::SRA);
1497   setTargetDAGCombine(ISD::SRL);
1498   setTargetDAGCombine(ISD::OR);
1499   setTargetDAGCombine(ISD::AND);
1500   setTargetDAGCombine(ISD::ADD);
1501   setTargetDAGCombine(ISD::FADD);
1502   setTargetDAGCombine(ISD::FSUB);
1503   setTargetDAGCombine(ISD::FMA);
1504   setTargetDAGCombine(ISD::SUB);
1505   setTargetDAGCombine(ISD::LOAD);
1506   setTargetDAGCombine(ISD::STORE);
1507   setTargetDAGCombine(ISD::ZERO_EXTEND);
1508   setTargetDAGCombine(ISD::ANY_EXTEND);
1509   setTargetDAGCombine(ISD::SIGN_EXTEND);
1510   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1511   setTargetDAGCombine(ISD::TRUNCATE);
1512   setTargetDAGCombine(ISD::SINT_TO_FP);
1513   setTargetDAGCombine(ISD::SETCC);
1514   if (Subtarget->is64Bit())
1515     setTargetDAGCombine(ISD::MUL);
1516   setTargetDAGCombine(ISD::XOR);
1517
1518   computeRegisterProperties();
1519
1520   // On Darwin, -Os means optimize for size without hurting performance,
1521   // do not reduce the limit.
1522   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1523   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1524   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1525   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1526   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1527   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1528   setPrefLoopAlignment(4); // 2^4 bytes.
1529
1530   // Predictable cmov don't hurt on atom because it's in-order.
1531   PredictableSelectIsExpensive = !Subtarget->isAtom();
1532
1533   setPrefFunctionAlignment(4); // 2^4 bytes.
1534 }
1535
1536 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1537   if (!VT.isVector()) return MVT::i8;
1538   return VT.changeVectorElementTypeToInteger();
1539 }
1540
1541 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1542 /// the desired ByVal argument alignment.
1543 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1544   if (MaxAlign == 16)
1545     return;
1546   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1547     if (VTy->getBitWidth() == 128)
1548       MaxAlign = 16;
1549   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1550     unsigned EltAlign = 0;
1551     getMaxByValAlign(ATy->getElementType(), EltAlign);
1552     if (EltAlign > MaxAlign)
1553       MaxAlign = EltAlign;
1554   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1555     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1556       unsigned EltAlign = 0;
1557       getMaxByValAlign(STy->getElementType(i), EltAlign);
1558       if (EltAlign > MaxAlign)
1559         MaxAlign = EltAlign;
1560       if (MaxAlign == 16)
1561         break;
1562     }
1563   }
1564 }
1565
1566 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1567 /// function arguments in the caller parameter area. For X86, aggregates
1568 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1569 /// are at 4-byte boundaries.
1570 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1571   if (Subtarget->is64Bit()) {
1572     // Max of 8 and alignment of type.
1573     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1574     if (TyAlign > 8)
1575       return TyAlign;
1576     return 8;
1577   }
1578
1579   unsigned Align = 4;
1580   if (Subtarget->hasSSE1())
1581     getMaxByValAlign(Ty, Align);
1582   return Align;
1583 }
1584
1585 /// getOptimalMemOpType - Returns the target specific optimal type for load
1586 /// and store operations as a result of memset, memcpy, and memmove
1587 /// lowering. If DstAlign is zero that means it's safe to destination
1588 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1589 /// means there isn't a need to check it against alignment requirement,
1590 /// probably because the source does not need to be loaded. If 'IsMemset' is
1591 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1592 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1593 /// source is constant so it does not need to be loaded.
1594 /// It returns EVT::Other if the type should be determined using generic
1595 /// target-independent logic.
1596 EVT
1597 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1598                                        unsigned DstAlign, unsigned SrcAlign,
1599                                        bool IsMemset, bool ZeroMemset,
1600                                        bool MemcpyStrSrc,
1601                                        MachineFunction &MF) const {
1602   const Function *F = MF.getFunction();
1603   if ((!IsMemset || ZeroMemset) &&
1604       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1605                                        Attribute::NoImplicitFloat)) {
1606     if (Size >= 16 &&
1607         (Subtarget->isUnalignedMemAccessFast() ||
1608          ((DstAlign == 0 || DstAlign >= 16) &&
1609           (SrcAlign == 0 || SrcAlign >= 16)))) {
1610       if (Size >= 32) {
1611         if (Subtarget->hasInt256())
1612           return MVT::v8i32;
1613         if (Subtarget->hasFp256())
1614           return MVT::v8f32;
1615       }
1616       if (Subtarget->hasSSE2())
1617         return MVT::v4i32;
1618       if (Subtarget->hasSSE1())
1619         return MVT::v4f32;
1620     } else if (!MemcpyStrSrc && Size >= 8 &&
1621                !Subtarget->is64Bit() &&
1622                Subtarget->hasSSE2()) {
1623       // Do not use f64 to lower memcpy if source is string constant. It's
1624       // better to use i32 to avoid the loads.
1625       return MVT::f64;
1626     }
1627   }
1628   if (Subtarget->is64Bit() && Size >= 8)
1629     return MVT::i64;
1630   return MVT::i32;
1631 }
1632
1633 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1634   if (VT == MVT::f32)
1635     return X86ScalarSSEf32;
1636   else if (VT == MVT::f64)
1637     return X86ScalarSSEf64;
1638   return true;
1639 }
1640
1641 bool
1642 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1643   if (Fast)
1644     *Fast = Subtarget->isUnalignedMemAccessFast();
1645   return true;
1646 }
1647
1648 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1649 /// current function.  The returned value is a member of the
1650 /// MachineJumpTableInfo::JTEntryKind enum.
1651 unsigned X86TargetLowering::getJumpTableEncoding() const {
1652   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1653   // symbol.
1654   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1655       Subtarget->isPICStyleGOT())
1656     return MachineJumpTableInfo::EK_Custom32;
1657
1658   // Otherwise, use the normal jump table encoding heuristics.
1659   return TargetLowering::getJumpTableEncoding();
1660 }
1661
1662 const MCExpr *
1663 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1664                                              const MachineBasicBlock *MBB,
1665                                              unsigned uid,MCContext &Ctx) const{
1666   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1667          Subtarget->isPICStyleGOT());
1668   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1669   // entries.
1670   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1671                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1672 }
1673
1674 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1675 /// jumptable.
1676 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1677                                                     SelectionDAG &DAG) const {
1678   if (!Subtarget->is64Bit())
1679     // This doesn't have SDLoc associated with it, but is not really the
1680     // same as a Register.
1681     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1682   return Table;
1683 }
1684
1685 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1686 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1687 /// MCExpr.
1688 const MCExpr *X86TargetLowering::
1689 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1690                              MCContext &Ctx) const {
1691   // X86-64 uses RIP relative addressing based on the jump table label.
1692   if (Subtarget->isPICStyleRIPRel())
1693     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1694
1695   // Otherwise, the reference is relative to the PIC base.
1696   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1697 }
1698
1699 // FIXME: Why this routine is here? Move to RegInfo!
1700 std::pair<const TargetRegisterClass*, uint8_t>
1701 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1702   const TargetRegisterClass *RRC = 0;
1703   uint8_t Cost = 1;
1704   switch (VT.SimpleTy) {
1705   default:
1706     return TargetLowering::findRepresentativeClass(VT);
1707   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1708     RRC = Subtarget->is64Bit() ?
1709       (const TargetRegisterClass*)&X86::GR64RegClass :
1710       (const TargetRegisterClass*)&X86::GR32RegClass;
1711     break;
1712   case MVT::x86mmx:
1713     RRC = &X86::VR64RegClass;
1714     break;
1715   case MVT::f32: case MVT::f64:
1716   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1717   case MVT::v4f32: case MVT::v2f64:
1718   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1719   case MVT::v4f64:
1720     RRC = &X86::VR128RegClass;
1721     break;
1722   }
1723   return std::make_pair(RRC, Cost);
1724 }
1725
1726 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1727                                                unsigned &Offset) const {
1728   if (!Subtarget->isTargetLinux())
1729     return false;
1730
1731   if (Subtarget->is64Bit()) {
1732     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1733     Offset = 0x28;
1734     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1735       AddressSpace = 256;
1736     else
1737       AddressSpace = 257;
1738   } else {
1739     // %gs:0x14 on i386
1740     Offset = 0x14;
1741     AddressSpace = 256;
1742   }
1743   return true;
1744 }
1745
1746 //===----------------------------------------------------------------------===//
1747 //               Return Value Calling Convention Implementation
1748 //===----------------------------------------------------------------------===//
1749
1750 #include "X86GenCallingConv.inc"
1751
1752 bool
1753 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1754                                   MachineFunction &MF, bool isVarArg,
1755                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1756                         LLVMContext &Context) const {
1757   SmallVector<CCValAssign, 16> RVLocs;
1758   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1759                  RVLocs, Context);
1760   return CCInfo.CheckReturn(Outs, RetCC_X86);
1761 }
1762
1763 SDValue
1764 X86TargetLowering::LowerReturn(SDValue Chain,
1765                                CallingConv::ID CallConv, bool isVarArg,
1766                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1767                                const SmallVectorImpl<SDValue> &OutVals,
1768                                SDLoc dl, SelectionDAG &DAG) const {
1769   MachineFunction &MF = DAG.getMachineFunction();
1770   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1771
1772   SmallVector<CCValAssign, 16> RVLocs;
1773   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1774                  RVLocs, *DAG.getContext());
1775   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1776
1777   SDValue Flag;
1778   SmallVector<SDValue, 6> RetOps;
1779   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1780   // Operand #1 = Bytes To Pop
1781   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1782                    MVT::i16));
1783
1784   // Copy the result values into the output registers.
1785   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1786     CCValAssign &VA = RVLocs[i];
1787     assert(VA.isRegLoc() && "Can only return in registers!");
1788     SDValue ValToCopy = OutVals[i];
1789     EVT ValVT = ValToCopy.getValueType();
1790
1791     // Promote values to the appropriate types
1792     if (VA.getLocInfo() == CCValAssign::SExt)
1793       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1794     else if (VA.getLocInfo() == CCValAssign::ZExt)
1795       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1796     else if (VA.getLocInfo() == CCValAssign::AExt)
1797       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1798     else if (VA.getLocInfo() == CCValAssign::BCvt)
1799       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1800
1801     // If this is x86-64, and we disabled SSE, we can't return FP values,
1802     // or SSE or MMX vectors.
1803     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1804          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1805           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1806       report_fatal_error("SSE register return with SSE disabled");
1807     }
1808     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1809     // llvm-gcc has never done it right and no one has noticed, so this
1810     // should be OK for now.
1811     if (ValVT == MVT::f64 &&
1812         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1813       report_fatal_error("SSE2 register return with SSE2 disabled");
1814
1815     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1816     // the RET instruction and handled by the FP Stackifier.
1817     if (VA.getLocReg() == X86::ST0 ||
1818         VA.getLocReg() == X86::ST1) {
1819       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1820       // change the value to the FP stack register class.
1821       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1822         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1823       RetOps.push_back(ValToCopy);
1824       // Don't emit a copytoreg.
1825       continue;
1826     }
1827
1828     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1829     // which is returned in RAX / RDX.
1830     if (Subtarget->is64Bit()) {
1831       if (ValVT == MVT::x86mmx) {
1832         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1833           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1834           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1835                                   ValToCopy);
1836           // If we don't have SSE2 available, convert to v4f32 so the generated
1837           // register is legal.
1838           if (!Subtarget->hasSSE2())
1839             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1840         }
1841       }
1842     }
1843
1844     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1845     Flag = Chain.getValue(1);
1846     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1847   }
1848
1849   // The x86-64 ABIs require that for returning structs by value we copy
1850   // the sret argument into %rax/%eax (depending on ABI) for the return.
1851   // Win32 requires us to put the sret argument to %eax as well.
1852   // We saved the argument into a virtual register in the entry block,
1853   // so now we copy the value out and into %rax/%eax.
1854   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1855       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1856     MachineFunction &MF = DAG.getMachineFunction();
1857     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1858     unsigned Reg = FuncInfo->getSRetReturnReg();
1859     assert(Reg &&
1860            "SRetReturnReg should have been set in LowerFormalArguments().");
1861     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1862
1863     unsigned RetValReg
1864         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1865           X86::RAX : X86::EAX;
1866     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1867     Flag = Chain.getValue(1);
1868
1869     // RAX/EAX now acts like a return value.
1870     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1871   }
1872
1873   RetOps[0] = Chain;  // Update chain.
1874
1875   // Add the flag if we have it.
1876   if (Flag.getNode())
1877     RetOps.push_back(Flag);
1878
1879   return DAG.getNode(X86ISD::RET_FLAG, dl,
1880                      MVT::Other, &RetOps[0], RetOps.size());
1881 }
1882
1883 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1884   if (N->getNumValues() != 1)
1885     return false;
1886   if (!N->hasNUsesOfValue(1, 0))
1887     return false;
1888
1889   SDValue TCChain = Chain;
1890   SDNode *Copy = *N->use_begin();
1891   if (Copy->getOpcode() == ISD::CopyToReg) {
1892     // If the copy has a glue operand, we conservatively assume it isn't safe to
1893     // perform a tail call.
1894     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1895       return false;
1896     TCChain = Copy->getOperand(0);
1897   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1898     return false;
1899
1900   bool HasRet = false;
1901   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1902        UI != UE; ++UI) {
1903     if (UI->getOpcode() != X86ISD::RET_FLAG)
1904       return false;
1905     HasRet = true;
1906   }
1907
1908   if (!HasRet)
1909     return false;
1910
1911   Chain = TCChain;
1912   return true;
1913 }
1914
1915 MVT
1916 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1917                                             ISD::NodeType ExtendKind) const {
1918   MVT ReturnMVT;
1919   // TODO: Is this also valid on 32-bit?
1920   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1921     ReturnMVT = MVT::i8;
1922   else
1923     ReturnMVT = MVT::i32;
1924
1925   MVT MinVT = getRegisterType(ReturnMVT);
1926   return VT.bitsLT(MinVT) ? MinVT : VT;
1927 }
1928
1929 /// LowerCallResult - Lower the result values of a call into the
1930 /// appropriate copies out of appropriate physical registers.
1931 ///
1932 SDValue
1933 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1934                                    CallingConv::ID CallConv, bool isVarArg,
1935                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1936                                    SDLoc dl, SelectionDAG &DAG,
1937                                    SmallVectorImpl<SDValue> &InVals) const {
1938
1939   // Assign locations to each value returned by this call.
1940   SmallVector<CCValAssign, 16> RVLocs;
1941   bool Is64Bit = Subtarget->is64Bit();
1942   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1943                  getTargetMachine(), RVLocs, *DAG.getContext());
1944   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1945
1946   // Copy all of the result registers out of their specified physreg.
1947   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1948     CCValAssign &VA = RVLocs[i];
1949     EVT CopyVT = VA.getValVT();
1950
1951     // If this is x86-64, and we disabled SSE, we can't return FP values
1952     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1953         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1954       report_fatal_error("SSE register return with SSE disabled");
1955     }
1956
1957     SDValue Val;
1958
1959     // If this is a call to a function that returns an fp value on the floating
1960     // point stack, we must guarantee the value is popped from the stack, so
1961     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1962     // if the return value is not used. We use the FpPOP_RETVAL instruction
1963     // instead.
1964     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1965       // If we prefer to use the value in xmm registers, copy it out as f80 and
1966       // use a truncate to move it from fp stack reg to xmm reg.
1967       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1968       SDValue Ops[] = { Chain, InFlag };
1969       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1970                                          MVT::Other, MVT::Glue, Ops), 1);
1971       Val = Chain.getValue(0);
1972
1973       // Round the f80 to the right size, which also moves it to the appropriate
1974       // xmm register.
1975       if (CopyVT != VA.getValVT())
1976         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1977                           // This truncation won't change the value.
1978                           DAG.getIntPtrConstant(1));
1979     } else {
1980       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1981                                  CopyVT, InFlag).getValue(1);
1982       Val = Chain.getValue(0);
1983     }
1984     InFlag = Chain.getValue(2);
1985     InVals.push_back(Val);
1986   }
1987
1988   return Chain;
1989 }
1990
1991 //===----------------------------------------------------------------------===//
1992 //                C & StdCall & Fast Calling Convention implementation
1993 //===----------------------------------------------------------------------===//
1994 //  StdCall calling convention seems to be standard for many Windows' API
1995 //  routines and around. It differs from C calling convention just a little:
1996 //  callee should clean up the stack, not caller. Symbols should be also
1997 //  decorated in some fancy way :) It doesn't support any vector arguments.
1998 //  For info on fast calling convention see Fast Calling Convention (tail call)
1999 //  implementation LowerX86_32FastCCCallTo.
2000
2001 /// CallIsStructReturn - Determines whether a call uses struct return
2002 /// semantics.
2003 enum StructReturnType {
2004   NotStructReturn,
2005   RegStructReturn,
2006   StackStructReturn
2007 };
2008 static StructReturnType
2009 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2010   if (Outs.empty())
2011     return NotStructReturn;
2012
2013   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2014   if (!Flags.isSRet())
2015     return NotStructReturn;
2016   if (Flags.isInReg())
2017     return RegStructReturn;
2018   return StackStructReturn;
2019 }
2020
2021 /// ArgsAreStructReturn - Determines whether a function uses struct
2022 /// return semantics.
2023 static StructReturnType
2024 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2025   if (Ins.empty())
2026     return NotStructReturn;
2027
2028   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2029   if (!Flags.isSRet())
2030     return NotStructReturn;
2031   if (Flags.isInReg())
2032     return RegStructReturn;
2033   return StackStructReturn;
2034 }
2035
2036 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2037 /// by "Src" to address "Dst" with size and alignment information specified by
2038 /// the specific parameter attribute. The copy will be passed as a byval
2039 /// function parameter.
2040 static SDValue
2041 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2042                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2043                           SDLoc dl) {
2044   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2045
2046   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2047                        /*isVolatile*/false, /*AlwaysInline=*/true,
2048                        MachinePointerInfo(), MachinePointerInfo());
2049 }
2050
2051 /// IsTailCallConvention - Return true if the calling convention is one that
2052 /// supports tail call optimization.
2053 static bool IsTailCallConvention(CallingConv::ID CC) {
2054   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2055           CC == CallingConv::HiPE);
2056 }
2057
2058 /// \brief Return true if the calling convention is a C calling convention.
2059 static bool IsCCallConvention(CallingConv::ID CC) {
2060   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2061           CC == CallingConv::X86_64_SysV);
2062 }
2063
2064 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2065   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2066     return false;
2067
2068   CallSite CS(CI);
2069   CallingConv::ID CalleeCC = CS.getCallingConv();
2070   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2071     return false;
2072
2073   return true;
2074 }
2075
2076 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2077 /// a tailcall target by changing its ABI.
2078 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2079                                    bool GuaranteedTailCallOpt) {
2080   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2081 }
2082
2083 SDValue
2084 X86TargetLowering::LowerMemArgument(SDValue Chain,
2085                                     CallingConv::ID CallConv,
2086                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2087                                     SDLoc dl, SelectionDAG &DAG,
2088                                     const CCValAssign &VA,
2089                                     MachineFrameInfo *MFI,
2090                                     unsigned i) const {
2091   // Create the nodes corresponding to a load from this parameter slot.
2092   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2093   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2094                               getTargetMachine().Options.GuaranteedTailCallOpt);
2095   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2096   EVT ValVT;
2097
2098   // If value is passed by pointer we have address passed instead of the value
2099   // itself.
2100   if (VA.getLocInfo() == CCValAssign::Indirect)
2101     ValVT = VA.getLocVT();
2102   else
2103     ValVT = VA.getValVT();
2104
2105   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2106   // changed with more analysis.
2107   // In case of tail call optimization mark all arguments mutable. Since they
2108   // could be overwritten by lowering of arguments in case of a tail call.
2109   if (Flags.isByVal()) {
2110     unsigned Bytes = Flags.getByValSize();
2111     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2112     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2113     return DAG.getFrameIndex(FI, getPointerTy());
2114   } else {
2115     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2116                                     VA.getLocMemOffset(), isImmutable);
2117     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2118     return DAG.getLoad(ValVT, dl, Chain, FIN,
2119                        MachinePointerInfo::getFixedStack(FI),
2120                        false, false, false, 0);
2121   }
2122 }
2123
2124 SDValue
2125 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2126                                         CallingConv::ID CallConv,
2127                                         bool isVarArg,
2128                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2129                                         SDLoc dl,
2130                                         SelectionDAG &DAG,
2131                                         SmallVectorImpl<SDValue> &InVals)
2132                                           const {
2133   MachineFunction &MF = DAG.getMachineFunction();
2134   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2135
2136   const Function* Fn = MF.getFunction();
2137   if (Fn->hasExternalLinkage() &&
2138       Subtarget->isTargetCygMing() &&
2139       Fn->getName() == "main")
2140     FuncInfo->setForceFramePointer(true);
2141
2142   MachineFrameInfo *MFI = MF.getFrameInfo();
2143   bool Is64Bit = Subtarget->is64Bit();
2144   bool IsWindows = Subtarget->isTargetWindows();
2145   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2146
2147   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2148          "Var args not supported with calling convention fastcc, ghc or hipe");
2149
2150   // Assign locations to all of the incoming arguments.
2151   SmallVector<CCValAssign, 16> ArgLocs;
2152   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2153                  ArgLocs, *DAG.getContext());
2154
2155   // Allocate shadow area for Win64
2156   if (IsWin64)
2157     CCInfo.AllocateStack(32, 8);
2158
2159   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2160
2161   unsigned LastVal = ~0U;
2162   SDValue ArgValue;
2163   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2164     CCValAssign &VA = ArgLocs[i];
2165     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2166     // places.
2167     assert(VA.getValNo() != LastVal &&
2168            "Don't support value assigned to multiple locs yet");
2169     (void)LastVal;
2170     LastVal = VA.getValNo();
2171
2172     if (VA.isRegLoc()) {
2173       EVT RegVT = VA.getLocVT();
2174       const TargetRegisterClass *RC;
2175       if (RegVT == MVT::i32)
2176         RC = &X86::GR32RegClass;
2177       else if (Is64Bit && RegVT == MVT::i64)
2178         RC = &X86::GR64RegClass;
2179       else if (RegVT == MVT::f32)
2180         RC = &X86::FR32RegClass;
2181       else if (RegVT == MVT::f64)
2182         RC = &X86::FR64RegClass;
2183       else if (RegVT.is512BitVector())
2184         RC = &X86::VR512RegClass;
2185       else if (RegVT.is256BitVector())
2186         RC = &X86::VR256RegClass;
2187       else if (RegVT.is128BitVector())
2188         RC = &X86::VR128RegClass;
2189       else if (RegVT == MVT::x86mmx)
2190         RC = &X86::VR64RegClass;
2191       else if (RegVT == MVT::v8i1)
2192         RC = &X86::VK8RegClass;
2193       else if (RegVT == MVT::v16i1)
2194         RC = &X86::VK16RegClass;
2195       else
2196         llvm_unreachable("Unknown argument type!");
2197
2198       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2199       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2200
2201       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2202       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2203       // right size.
2204       if (VA.getLocInfo() == CCValAssign::SExt)
2205         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2206                                DAG.getValueType(VA.getValVT()));
2207       else if (VA.getLocInfo() == CCValAssign::ZExt)
2208         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2209                                DAG.getValueType(VA.getValVT()));
2210       else if (VA.getLocInfo() == CCValAssign::BCvt)
2211         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2212
2213       if (VA.isExtInLoc()) {
2214         // Handle MMX values passed in XMM regs.
2215         if (RegVT.isVector())
2216           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2217         else
2218           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2219       }
2220     } else {
2221       assert(VA.isMemLoc());
2222       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2223     }
2224
2225     // If value is passed via pointer - do a load.
2226     if (VA.getLocInfo() == CCValAssign::Indirect)
2227       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2228                              MachinePointerInfo(), false, false, false, 0);
2229
2230     InVals.push_back(ArgValue);
2231   }
2232
2233   // The x86-64 ABIs require that for returning structs by value we copy
2234   // the sret argument into %rax/%eax (depending on ABI) for the return.
2235   // Win32 requires us to put the sret argument to %eax as well.
2236   // Save the argument into a virtual register so that we can access it
2237   // from the return points.
2238   if (MF.getFunction()->hasStructRetAttr() &&
2239       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2240     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2241     unsigned Reg = FuncInfo->getSRetReturnReg();
2242     if (!Reg) {
2243       MVT PtrTy = getPointerTy();
2244       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2245       FuncInfo->setSRetReturnReg(Reg);
2246     }
2247     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2248     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2249   }
2250
2251   unsigned StackSize = CCInfo.getNextStackOffset();
2252   // Align stack specially for tail calls.
2253   if (FuncIsMadeTailCallSafe(CallConv,
2254                              MF.getTarget().Options.GuaranteedTailCallOpt))
2255     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2256
2257   // If the function takes variable number of arguments, make a frame index for
2258   // the start of the first vararg value... for expansion of llvm.va_start.
2259   if (isVarArg) {
2260     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2261                     CallConv != CallingConv::X86_ThisCall)) {
2262       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2263     }
2264     if (Is64Bit) {
2265       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2266
2267       // FIXME: We should really autogenerate these arrays
2268       static const uint16_t GPR64ArgRegsWin64[] = {
2269         X86::RCX, X86::RDX, X86::R8,  X86::R9
2270       };
2271       static const uint16_t GPR64ArgRegs64Bit[] = {
2272         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2273       };
2274       static const uint16_t XMMArgRegs64Bit[] = {
2275         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2276         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2277       };
2278       const uint16_t *GPR64ArgRegs;
2279       unsigned NumXMMRegs = 0;
2280
2281       if (IsWin64) {
2282         // The XMM registers which might contain var arg parameters are shadowed
2283         // in their paired GPR.  So we only need to save the GPR to their home
2284         // slots.
2285         TotalNumIntRegs = 4;
2286         GPR64ArgRegs = GPR64ArgRegsWin64;
2287       } else {
2288         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2289         GPR64ArgRegs = GPR64ArgRegs64Bit;
2290
2291         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2292                                                 TotalNumXMMRegs);
2293       }
2294       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2295                                                        TotalNumIntRegs);
2296
2297       bool NoImplicitFloatOps = Fn->getAttributes().
2298         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2299       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2300              "SSE register cannot be used when SSE is disabled!");
2301       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2302                NoImplicitFloatOps) &&
2303              "SSE register cannot be used when SSE is disabled!");
2304       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2305           !Subtarget->hasSSE1())
2306         // Kernel mode asks for SSE to be disabled, so don't push them
2307         // on the stack.
2308         TotalNumXMMRegs = 0;
2309
2310       if (IsWin64) {
2311         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2312         // Get to the caller-allocated home save location.  Add 8 to account
2313         // for the return address.
2314         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2315         FuncInfo->setRegSaveFrameIndex(
2316           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2317         // Fixup to set vararg frame on shadow area (4 x i64).
2318         if (NumIntRegs < 4)
2319           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2320       } else {
2321         // For X86-64, if there are vararg parameters that are passed via
2322         // registers, then we must store them to their spots on the stack so
2323         // they may be loaded by deferencing the result of va_next.
2324         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2325         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2326         FuncInfo->setRegSaveFrameIndex(
2327           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2328                                false));
2329       }
2330
2331       // Store the integer parameter registers.
2332       SmallVector<SDValue, 8> MemOps;
2333       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2334                                         getPointerTy());
2335       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2336       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2337         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2338                                   DAG.getIntPtrConstant(Offset));
2339         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2340                                      &X86::GR64RegClass);
2341         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2342         SDValue Store =
2343           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2344                        MachinePointerInfo::getFixedStack(
2345                          FuncInfo->getRegSaveFrameIndex(), Offset),
2346                        false, false, 0);
2347         MemOps.push_back(Store);
2348         Offset += 8;
2349       }
2350
2351       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2352         // Now store the XMM (fp + vector) parameter registers.
2353         SmallVector<SDValue, 11> SaveXMMOps;
2354         SaveXMMOps.push_back(Chain);
2355
2356         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2357         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2358         SaveXMMOps.push_back(ALVal);
2359
2360         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2361                                FuncInfo->getRegSaveFrameIndex()));
2362         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2363                                FuncInfo->getVarArgsFPOffset()));
2364
2365         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2366           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2367                                        &X86::VR128RegClass);
2368           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2369           SaveXMMOps.push_back(Val);
2370         }
2371         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2372                                      MVT::Other,
2373                                      &SaveXMMOps[0], SaveXMMOps.size()));
2374       }
2375
2376       if (!MemOps.empty())
2377         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2378                             &MemOps[0], MemOps.size());
2379     }
2380   }
2381
2382   // Some CCs need callee pop.
2383   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2384                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2385     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2386   } else {
2387     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2388     // If this is an sret function, the return should pop the hidden pointer.
2389     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2390         argsAreStructReturn(Ins) == StackStructReturn)
2391       FuncInfo->setBytesToPopOnReturn(4);
2392   }
2393
2394   if (!Is64Bit) {
2395     // RegSaveFrameIndex is X86-64 only.
2396     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2397     if (CallConv == CallingConv::X86_FastCall ||
2398         CallConv == CallingConv::X86_ThisCall)
2399       // fastcc functions can't have varargs.
2400       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2401   }
2402
2403   FuncInfo->setArgumentStackSize(StackSize);
2404
2405   return Chain;
2406 }
2407
2408 SDValue
2409 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2410                                     SDValue StackPtr, SDValue Arg,
2411                                     SDLoc dl, SelectionDAG &DAG,
2412                                     const CCValAssign &VA,
2413                                     ISD::ArgFlagsTy Flags) const {
2414   unsigned LocMemOffset = VA.getLocMemOffset();
2415   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2416   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2417   if (Flags.isByVal())
2418     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2419
2420   return DAG.getStore(Chain, dl, Arg, PtrOff,
2421                       MachinePointerInfo::getStack(LocMemOffset),
2422                       false, false, 0);
2423 }
2424
2425 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2426 /// optimization is performed and it is required.
2427 SDValue
2428 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2429                                            SDValue &OutRetAddr, SDValue Chain,
2430                                            bool IsTailCall, bool Is64Bit,
2431                                            int FPDiff, SDLoc dl) const {
2432   // Adjust the Return address stack slot.
2433   EVT VT = getPointerTy();
2434   OutRetAddr = getReturnAddressFrameIndex(DAG);
2435
2436   // Load the "old" Return address.
2437   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2438                            false, false, false, 0);
2439   return SDValue(OutRetAddr.getNode(), 1);
2440 }
2441
2442 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2443 /// optimization is performed and it is required (FPDiff!=0).
2444 static SDValue
2445 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2446                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2447                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2448   // Store the return address to the appropriate stack slot.
2449   if (!FPDiff) return Chain;
2450   // Calculate the new stack slot for the return address.
2451   int NewReturnAddrFI =
2452     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2453                                          false);
2454   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2455   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2456                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2457                        false, false, 0);
2458   return Chain;
2459 }
2460
2461 SDValue
2462 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2463                              SmallVectorImpl<SDValue> &InVals) const {
2464   SelectionDAG &DAG                     = CLI.DAG;
2465   SDLoc &dl                             = CLI.DL;
2466   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2467   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2468   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2469   SDValue Chain                         = CLI.Chain;
2470   SDValue Callee                        = CLI.Callee;
2471   CallingConv::ID CallConv              = CLI.CallConv;
2472   bool &isTailCall                      = CLI.IsTailCall;
2473   bool isVarArg                         = CLI.IsVarArg;
2474
2475   MachineFunction &MF = DAG.getMachineFunction();
2476   bool Is64Bit        = Subtarget->is64Bit();
2477   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2478   bool IsWindows      = Subtarget->isTargetWindows();
2479   StructReturnType SR = callIsStructReturn(Outs);
2480   bool IsSibcall      = false;
2481
2482   if (MF.getTarget().Options.DisableTailCalls)
2483     isTailCall = false;
2484
2485   if (isTailCall) {
2486     // Check if it's really possible to do a tail call.
2487     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2488                     isVarArg, SR != NotStructReturn,
2489                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2490                     Outs, OutVals, Ins, DAG);
2491
2492     // Sibcalls are automatically detected tailcalls which do not require
2493     // ABI changes.
2494     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2495       IsSibcall = true;
2496
2497     if (isTailCall)
2498       ++NumTailCalls;
2499   }
2500
2501   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2502          "Var args not supported with calling convention fastcc, ghc or hipe");
2503
2504   // Analyze operands of the call, assigning locations to each operand.
2505   SmallVector<CCValAssign, 16> ArgLocs;
2506   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2507                  ArgLocs, *DAG.getContext());
2508
2509   // Allocate shadow area for Win64
2510   if (IsWin64)
2511     CCInfo.AllocateStack(32, 8);
2512
2513   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2514
2515   // Get a count of how many bytes are to be pushed on the stack.
2516   unsigned NumBytes = CCInfo.getNextStackOffset();
2517   if (IsSibcall)
2518     // This is a sibcall. The memory operands are available in caller's
2519     // own caller's stack.
2520     NumBytes = 0;
2521   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2522            IsTailCallConvention(CallConv))
2523     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2524
2525   int FPDiff = 0;
2526   if (isTailCall && !IsSibcall) {
2527     // Lower arguments at fp - stackoffset + fpdiff.
2528     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2529     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2530
2531     FPDiff = NumBytesCallerPushed - NumBytes;
2532
2533     // Set the delta of movement of the returnaddr stackslot.
2534     // But only set if delta is greater than previous delta.
2535     if (FPDiff < X86Info->getTCReturnAddrDelta())
2536       X86Info->setTCReturnAddrDelta(FPDiff);
2537   }
2538
2539   if (!IsSibcall)
2540     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2541                                  dl);
2542
2543   SDValue RetAddrFrIdx;
2544   // Load return address for tail calls.
2545   if (isTailCall && FPDiff)
2546     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2547                                     Is64Bit, FPDiff, dl);
2548
2549   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2550   SmallVector<SDValue, 8> MemOpChains;
2551   SDValue StackPtr;
2552
2553   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2554   // of tail call optimization arguments are handle later.
2555   const X86RegisterInfo *RegInfo =
2556     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2557   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2558     CCValAssign &VA = ArgLocs[i];
2559     EVT RegVT = VA.getLocVT();
2560     SDValue Arg = OutVals[i];
2561     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2562     bool isByVal = Flags.isByVal();
2563
2564     // Promote the value if needed.
2565     switch (VA.getLocInfo()) {
2566     default: llvm_unreachable("Unknown loc info!");
2567     case CCValAssign::Full: break;
2568     case CCValAssign::SExt:
2569       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2570       break;
2571     case CCValAssign::ZExt:
2572       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2573       break;
2574     case CCValAssign::AExt:
2575       if (RegVT.is128BitVector()) {
2576         // Special case: passing MMX values in XMM registers.
2577         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2578         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2579         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2580       } else
2581         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2582       break;
2583     case CCValAssign::BCvt:
2584       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2585       break;
2586     case CCValAssign::Indirect: {
2587       // Store the argument.
2588       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2589       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2590       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2591                            MachinePointerInfo::getFixedStack(FI),
2592                            false, false, 0);
2593       Arg = SpillSlot;
2594       break;
2595     }
2596     }
2597
2598     if (VA.isRegLoc()) {
2599       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2600       if (isVarArg && IsWin64) {
2601         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2602         // shadow reg if callee is a varargs function.
2603         unsigned ShadowReg = 0;
2604         switch (VA.getLocReg()) {
2605         case X86::XMM0: ShadowReg = X86::RCX; break;
2606         case X86::XMM1: ShadowReg = X86::RDX; break;
2607         case X86::XMM2: ShadowReg = X86::R8; break;
2608         case X86::XMM3: ShadowReg = X86::R9; break;
2609         }
2610         if (ShadowReg)
2611           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2612       }
2613     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2614       assert(VA.isMemLoc());
2615       if (StackPtr.getNode() == 0)
2616         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2617                                       getPointerTy());
2618       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2619                                              dl, DAG, VA, Flags));
2620     }
2621   }
2622
2623   if (!MemOpChains.empty())
2624     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2625                         &MemOpChains[0], MemOpChains.size());
2626
2627   if (Subtarget->isPICStyleGOT()) {
2628     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2629     // GOT pointer.
2630     if (!isTailCall) {
2631       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2632                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2633     } else {
2634       // If we are tail calling and generating PIC/GOT style code load the
2635       // address of the callee into ECX. The value in ecx is used as target of
2636       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2637       // for tail calls on PIC/GOT architectures. Normally we would just put the
2638       // address of GOT into ebx and then call target@PLT. But for tail calls
2639       // ebx would be restored (since ebx is callee saved) before jumping to the
2640       // target@PLT.
2641
2642       // Note: The actual moving to ECX is done further down.
2643       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2644       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2645           !G->getGlobal()->hasProtectedVisibility())
2646         Callee = LowerGlobalAddress(Callee, DAG);
2647       else if (isa<ExternalSymbolSDNode>(Callee))
2648         Callee = LowerExternalSymbol(Callee, DAG);
2649     }
2650   }
2651
2652   if (Is64Bit && isVarArg && !IsWin64) {
2653     // From AMD64 ABI document:
2654     // For calls that may call functions that use varargs or stdargs
2655     // (prototype-less calls or calls to functions containing ellipsis (...) in
2656     // the declaration) %al is used as hidden argument to specify the number
2657     // of SSE registers used. The contents of %al do not need to match exactly
2658     // the number of registers, but must be an ubound on the number of SSE
2659     // registers used and is in the range 0 - 8 inclusive.
2660
2661     // Count the number of XMM registers allocated.
2662     static const uint16_t XMMArgRegs[] = {
2663       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2664       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2665     };
2666     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2667     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2668            && "SSE registers cannot be used when SSE is disabled");
2669
2670     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2671                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2672   }
2673
2674   // For tail calls lower the arguments to the 'real' stack slot.
2675   if (isTailCall) {
2676     // Force all the incoming stack arguments to be loaded from the stack
2677     // before any new outgoing arguments are stored to the stack, because the
2678     // outgoing stack slots may alias the incoming argument stack slots, and
2679     // the alias isn't otherwise explicit. This is slightly more conservative
2680     // than necessary, because it means that each store effectively depends
2681     // on every argument instead of just those arguments it would clobber.
2682     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2683
2684     SmallVector<SDValue, 8> MemOpChains2;
2685     SDValue FIN;
2686     int FI = 0;
2687     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2688       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2689         CCValAssign &VA = ArgLocs[i];
2690         if (VA.isRegLoc())
2691           continue;
2692         assert(VA.isMemLoc());
2693         SDValue Arg = OutVals[i];
2694         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2695         // Create frame index.
2696         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2697         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2698         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2699         FIN = DAG.getFrameIndex(FI, getPointerTy());
2700
2701         if (Flags.isByVal()) {
2702           // Copy relative to framepointer.
2703           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2704           if (StackPtr.getNode() == 0)
2705             StackPtr = DAG.getCopyFromReg(Chain, dl,
2706                                           RegInfo->getStackRegister(),
2707                                           getPointerTy());
2708           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2709
2710           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2711                                                            ArgChain,
2712                                                            Flags, DAG, dl));
2713         } else {
2714           // Store relative to framepointer.
2715           MemOpChains2.push_back(
2716             DAG.getStore(ArgChain, dl, Arg, FIN,
2717                          MachinePointerInfo::getFixedStack(FI),
2718                          false, false, 0));
2719         }
2720       }
2721     }
2722
2723     if (!MemOpChains2.empty())
2724       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2725                           &MemOpChains2[0], MemOpChains2.size());
2726
2727     // Store the return address to the appropriate stack slot.
2728     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2729                                      getPointerTy(), RegInfo->getSlotSize(),
2730                                      FPDiff, dl);
2731   }
2732
2733   // Build a sequence of copy-to-reg nodes chained together with token chain
2734   // and flag operands which copy the outgoing args into registers.
2735   SDValue InFlag;
2736   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2737     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2738                              RegsToPass[i].second, InFlag);
2739     InFlag = Chain.getValue(1);
2740   }
2741
2742   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2743     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2744     // In the 64-bit large code model, we have to make all calls
2745     // through a register, since the call instruction's 32-bit
2746     // pc-relative offset may not be large enough to hold the whole
2747     // address.
2748   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2749     // If the callee is a GlobalAddress node (quite common, every direct call
2750     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2751     // it.
2752
2753     // We should use extra load for direct calls to dllimported functions in
2754     // non-JIT mode.
2755     const GlobalValue *GV = G->getGlobal();
2756     if (!GV->hasDLLImportLinkage()) {
2757       unsigned char OpFlags = 0;
2758       bool ExtraLoad = false;
2759       unsigned WrapperKind = ISD::DELETED_NODE;
2760
2761       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2762       // external symbols most go through the PLT in PIC mode.  If the symbol
2763       // has hidden or protected visibility, or if it is static or local, then
2764       // we don't need to use the PLT - we can directly call it.
2765       if (Subtarget->isTargetELF() &&
2766           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2767           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2768         OpFlags = X86II::MO_PLT;
2769       } else if (Subtarget->isPICStyleStubAny() &&
2770                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2771                  (!Subtarget->getTargetTriple().isMacOSX() ||
2772                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2773         // PC-relative references to external symbols should go through $stub,
2774         // unless we're building with the leopard linker or later, which
2775         // automatically synthesizes these stubs.
2776         OpFlags = X86II::MO_DARWIN_STUB;
2777       } else if (Subtarget->isPICStyleRIPRel() &&
2778                  isa<Function>(GV) &&
2779                  cast<Function>(GV)->getAttributes().
2780                    hasAttribute(AttributeSet::FunctionIndex,
2781                                 Attribute::NonLazyBind)) {
2782         // If the function is marked as non-lazy, generate an indirect call
2783         // which loads from the GOT directly. This avoids runtime overhead
2784         // at the cost of eager binding (and one extra byte of encoding).
2785         OpFlags = X86II::MO_GOTPCREL;
2786         WrapperKind = X86ISD::WrapperRIP;
2787         ExtraLoad = true;
2788       }
2789
2790       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2791                                           G->getOffset(), OpFlags);
2792
2793       // Add a wrapper if needed.
2794       if (WrapperKind != ISD::DELETED_NODE)
2795         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2796       // Add extra indirection if needed.
2797       if (ExtraLoad)
2798         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2799                              MachinePointerInfo::getGOT(),
2800                              false, false, false, 0);
2801     }
2802   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2803     unsigned char OpFlags = 0;
2804
2805     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2806     // external symbols should go through the PLT.
2807     if (Subtarget->isTargetELF() &&
2808         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2809       OpFlags = X86II::MO_PLT;
2810     } else if (Subtarget->isPICStyleStubAny() &&
2811                (!Subtarget->getTargetTriple().isMacOSX() ||
2812                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2813       // PC-relative references to external symbols should go through $stub,
2814       // unless we're building with the leopard linker or later, which
2815       // automatically synthesizes these stubs.
2816       OpFlags = X86II::MO_DARWIN_STUB;
2817     }
2818
2819     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2820                                          OpFlags);
2821   }
2822
2823   // Returns a chain & a flag for retval copy to use.
2824   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2825   SmallVector<SDValue, 8> Ops;
2826
2827   if (!IsSibcall && isTailCall) {
2828     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2829                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2830     InFlag = Chain.getValue(1);
2831   }
2832
2833   Ops.push_back(Chain);
2834   Ops.push_back(Callee);
2835
2836   if (isTailCall)
2837     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2838
2839   // Add argument registers to the end of the list so that they are known live
2840   // into the call.
2841   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2842     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2843                                   RegsToPass[i].second.getValueType()));
2844
2845   // Add a register mask operand representing the call-preserved registers.
2846   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2847   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2848   assert(Mask && "Missing call preserved mask for calling convention");
2849   Ops.push_back(DAG.getRegisterMask(Mask));
2850
2851   if (InFlag.getNode())
2852     Ops.push_back(InFlag);
2853
2854   if (isTailCall) {
2855     // We used to do:
2856     //// If this is the first return lowered for this function, add the regs
2857     //// to the liveout set for the function.
2858     // This isn't right, although it's probably harmless on x86; liveouts
2859     // should be computed from returns not tail calls.  Consider a void
2860     // function making a tail call to a function returning int.
2861     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2862   }
2863
2864   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2865   InFlag = Chain.getValue(1);
2866
2867   // Create the CALLSEQ_END node.
2868   unsigned NumBytesForCalleeToPush;
2869   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2870                        getTargetMachine().Options.GuaranteedTailCallOpt))
2871     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2872   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2873            SR == StackStructReturn)
2874     // If this is a call to a struct-return function, the callee
2875     // pops the hidden struct pointer, so we have to push it back.
2876     // This is common for Darwin/X86, Linux & Mingw32 targets.
2877     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2878     NumBytesForCalleeToPush = 4;
2879   else
2880     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2881
2882   // Returns a flag for retval copy to use.
2883   if (!IsSibcall) {
2884     Chain = DAG.getCALLSEQ_END(Chain,
2885                                DAG.getIntPtrConstant(NumBytes, true),
2886                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2887                                                      true),
2888                                InFlag, dl);
2889     InFlag = Chain.getValue(1);
2890   }
2891
2892   // Handle result values, copying them out of physregs into vregs that we
2893   // return.
2894   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2895                          Ins, dl, DAG, InVals);
2896 }
2897
2898 //===----------------------------------------------------------------------===//
2899 //                Fast Calling Convention (tail call) implementation
2900 //===----------------------------------------------------------------------===//
2901
2902 //  Like std call, callee cleans arguments, convention except that ECX is
2903 //  reserved for storing the tail called function address. Only 2 registers are
2904 //  free for argument passing (inreg). Tail call optimization is performed
2905 //  provided:
2906 //                * tailcallopt is enabled
2907 //                * caller/callee are fastcc
2908 //  On X86_64 architecture with GOT-style position independent code only local
2909 //  (within module) calls are supported at the moment.
2910 //  To keep the stack aligned according to platform abi the function
2911 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2912 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2913 //  If a tail called function callee has more arguments than the caller the
2914 //  caller needs to make sure that there is room to move the RETADDR to. This is
2915 //  achieved by reserving an area the size of the argument delta right after the
2916 //  original REtADDR, but before the saved framepointer or the spilled registers
2917 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2918 //  stack layout:
2919 //    arg1
2920 //    arg2
2921 //    RETADDR
2922 //    [ new RETADDR
2923 //      move area ]
2924 //    (possible EBP)
2925 //    ESI
2926 //    EDI
2927 //    local1 ..
2928
2929 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2930 /// for a 16 byte align requirement.
2931 unsigned
2932 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2933                                                SelectionDAG& DAG) const {
2934   MachineFunction &MF = DAG.getMachineFunction();
2935   const TargetMachine &TM = MF.getTarget();
2936   const X86RegisterInfo *RegInfo =
2937     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2938   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2939   unsigned StackAlignment = TFI.getStackAlignment();
2940   uint64_t AlignMask = StackAlignment - 1;
2941   int64_t Offset = StackSize;
2942   unsigned SlotSize = RegInfo->getSlotSize();
2943   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2944     // Number smaller than 12 so just add the difference.
2945     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2946   } else {
2947     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2948     Offset = ((~AlignMask) & Offset) + StackAlignment +
2949       (StackAlignment-SlotSize);
2950   }
2951   return Offset;
2952 }
2953
2954 /// MatchingStackOffset - Return true if the given stack call argument is
2955 /// already available in the same position (relatively) of the caller's
2956 /// incoming argument stack.
2957 static
2958 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2959                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2960                          const X86InstrInfo *TII) {
2961   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2962   int FI = INT_MAX;
2963   if (Arg.getOpcode() == ISD::CopyFromReg) {
2964     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2965     if (!TargetRegisterInfo::isVirtualRegister(VR))
2966       return false;
2967     MachineInstr *Def = MRI->getVRegDef(VR);
2968     if (!Def)
2969       return false;
2970     if (!Flags.isByVal()) {
2971       if (!TII->isLoadFromStackSlot(Def, FI))
2972         return false;
2973     } else {
2974       unsigned Opcode = Def->getOpcode();
2975       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2976           Def->getOperand(1).isFI()) {
2977         FI = Def->getOperand(1).getIndex();
2978         Bytes = Flags.getByValSize();
2979       } else
2980         return false;
2981     }
2982   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2983     if (Flags.isByVal())
2984       // ByVal argument is passed in as a pointer but it's now being
2985       // dereferenced. e.g.
2986       // define @foo(%struct.X* %A) {
2987       //   tail call @bar(%struct.X* byval %A)
2988       // }
2989       return false;
2990     SDValue Ptr = Ld->getBasePtr();
2991     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2992     if (!FINode)
2993       return false;
2994     FI = FINode->getIndex();
2995   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
2996     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
2997     FI = FINode->getIndex();
2998     Bytes = Flags.getByValSize();
2999   } else
3000     return false;
3001
3002   assert(FI != INT_MAX);
3003   if (!MFI->isFixedObjectIndex(FI))
3004     return false;
3005   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3006 }
3007
3008 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3009 /// for tail call optimization. Targets which want to do tail call
3010 /// optimization should implement this function.
3011 bool
3012 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3013                                                      CallingConv::ID CalleeCC,
3014                                                      bool isVarArg,
3015                                                      bool isCalleeStructRet,
3016                                                      bool isCallerStructRet,
3017                                                      Type *RetTy,
3018                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3019                                     const SmallVectorImpl<SDValue> &OutVals,
3020                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3021                                                      SelectionDAG &DAG) const {
3022   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3023     return false;
3024
3025   // If -tailcallopt is specified, make fastcc functions tail-callable.
3026   const MachineFunction &MF = DAG.getMachineFunction();
3027   const Function *CallerF = MF.getFunction();
3028
3029   // If the function return type is x86_fp80 and the callee return type is not,
3030   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3031   // perform a tailcall optimization here.
3032   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3033     return false;
3034
3035   CallingConv::ID CallerCC = CallerF->getCallingConv();
3036   bool CCMatch = CallerCC == CalleeCC;
3037   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3038   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3039
3040   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3041     if (IsTailCallConvention(CalleeCC) && CCMatch)
3042       return true;
3043     return false;
3044   }
3045
3046   // Look for obvious safe cases to perform tail call optimization that do not
3047   // require ABI changes. This is what gcc calls sibcall.
3048
3049   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3050   // emit a special epilogue.
3051   const X86RegisterInfo *RegInfo =
3052     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3053   if (RegInfo->needsStackRealignment(MF))
3054     return false;
3055
3056   // Also avoid sibcall optimization if either caller or callee uses struct
3057   // return semantics.
3058   if (isCalleeStructRet || isCallerStructRet)
3059     return false;
3060
3061   // An stdcall caller is expected to clean up its arguments; the callee
3062   // isn't going to do that.
3063   if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
3064     return false;
3065
3066   // Do not sibcall optimize vararg calls unless all arguments are passed via
3067   // registers.
3068   if (isVarArg && !Outs.empty()) {
3069
3070     // Optimizing for varargs on Win64 is unlikely to be safe without
3071     // additional testing.
3072     if (IsCalleeWin64 || IsCallerWin64)
3073       return false;
3074
3075     SmallVector<CCValAssign, 16> ArgLocs;
3076     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3077                    getTargetMachine(), ArgLocs, *DAG.getContext());
3078
3079     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3080     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3081       if (!ArgLocs[i].isRegLoc())
3082         return false;
3083   }
3084
3085   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3086   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3087   // this into a sibcall.
3088   bool Unused = false;
3089   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3090     if (!Ins[i].Used) {
3091       Unused = true;
3092       break;
3093     }
3094   }
3095   if (Unused) {
3096     SmallVector<CCValAssign, 16> RVLocs;
3097     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3098                    getTargetMachine(), RVLocs, *DAG.getContext());
3099     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3100     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3101       CCValAssign &VA = RVLocs[i];
3102       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3103         return false;
3104     }
3105   }
3106
3107   // If the calling conventions do not match, then we'd better make sure the
3108   // results are returned in the same way as what the caller expects.
3109   if (!CCMatch) {
3110     SmallVector<CCValAssign, 16> RVLocs1;
3111     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3112                     getTargetMachine(), RVLocs1, *DAG.getContext());
3113     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3114
3115     SmallVector<CCValAssign, 16> RVLocs2;
3116     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3117                     getTargetMachine(), RVLocs2, *DAG.getContext());
3118     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3119
3120     if (RVLocs1.size() != RVLocs2.size())
3121       return false;
3122     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3123       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3124         return false;
3125       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3126         return false;
3127       if (RVLocs1[i].isRegLoc()) {
3128         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3129           return false;
3130       } else {
3131         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3132           return false;
3133       }
3134     }
3135   }
3136
3137   // If the callee takes no arguments then go on to check the results of the
3138   // call.
3139   if (!Outs.empty()) {
3140     // Check if stack adjustment is needed. For now, do not do this if any
3141     // argument is passed on the stack.
3142     SmallVector<CCValAssign, 16> ArgLocs;
3143     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3144                    getTargetMachine(), ArgLocs, *DAG.getContext());
3145
3146     // Allocate shadow area for Win64
3147     if (IsCalleeWin64)
3148       CCInfo.AllocateStack(32, 8);
3149
3150     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3151     if (CCInfo.getNextStackOffset()) {
3152       MachineFunction &MF = DAG.getMachineFunction();
3153       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3154         return false;
3155
3156       // Check if the arguments are already laid out in the right way as
3157       // the caller's fixed stack objects.
3158       MachineFrameInfo *MFI = MF.getFrameInfo();
3159       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3160       const X86InstrInfo *TII =
3161         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3162       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3163         CCValAssign &VA = ArgLocs[i];
3164         SDValue Arg = OutVals[i];
3165         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3166         if (VA.getLocInfo() == CCValAssign::Indirect)
3167           return false;
3168         if (!VA.isRegLoc()) {
3169           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3170                                    MFI, MRI, TII))
3171             return false;
3172         }
3173       }
3174     }
3175
3176     // If the tailcall address may be in a register, then make sure it's
3177     // possible to register allocate for it. In 32-bit, the call address can
3178     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3179     // callee-saved registers are restored. These happen to be the same
3180     // registers used to pass 'inreg' arguments so watch out for those.
3181     if (!Subtarget->is64Bit() &&
3182         ((!isa<GlobalAddressSDNode>(Callee) &&
3183           !isa<ExternalSymbolSDNode>(Callee)) ||
3184          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3185       unsigned NumInRegs = 0;
3186       // In PIC we need an extra register to formulate the address computation
3187       // for the callee.
3188       unsigned MaxInRegs =
3189           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3190
3191       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3192         CCValAssign &VA = ArgLocs[i];
3193         if (!VA.isRegLoc())
3194           continue;
3195         unsigned Reg = VA.getLocReg();
3196         switch (Reg) {
3197         default: break;
3198         case X86::EAX: case X86::EDX: case X86::ECX:
3199           if (++NumInRegs == MaxInRegs)
3200             return false;
3201           break;
3202         }
3203       }
3204     }
3205   }
3206
3207   return true;
3208 }
3209
3210 FastISel *
3211 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3212                                   const TargetLibraryInfo *libInfo) const {
3213   return X86::createFastISel(funcInfo, libInfo);
3214 }
3215
3216 //===----------------------------------------------------------------------===//
3217 //                           Other Lowering Hooks
3218 //===----------------------------------------------------------------------===//
3219
3220 static bool MayFoldLoad(SDValue Op) {
3221   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3222 }
3223
3224 static bool MayFoldIntoStore(SDValue Op) {
3225   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3226 }
3227
3228 static bool isTargetShuffle(unsigned Opcode) {
3229   switch(Opcode) {
3230   default: return false;
3231   case X86ISD::PSHUFD:
3232   case X86ISD::PSHUFHW:
3233   case X86ISD::PSHUFLW:
3234   case X86ISD::SHUFP:
3235   case X86ISD::PALIGNR:
3236   case X86ISD::MOVLHPS:
3237   case X86ISD::MOVLHPD:
3238   case X86ISD::MOVHLPS:
3239   case X86ISD::MOVLPS:
3240   case X86ISD::MOVLPD:
3241   case X86ISD::MOVSHDUP:
3242   case X86ISD::MOVSLDUP:
3243   case X86ISD::MOVDDUP:
3244   case X86ISD::MOVSS:
3245   case X86ISD::MOVSD:
3246   case X86ISD::UNPCKL:
3247   case X86ISD::UNPCKH:
3248   case X86ISD::VPERMILP:
3249   case X86ISD::VPERM2X128:
3250   case X86ISD::VPERMI:
3251     return true;
3252   }
3253 }
3254
3255 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3256                                     SDValue V1, SelectionDAG &DAG) {
3257   switch(Opc) {
3258   default: llvm_unreachable("Unknown x86 shuffle node");
3259   case X86ISD::MOVSHDUP:
3260   case X86ISD::MOVSLDUP:
3261   case X86ISD::MOVDDUP:
3262     return DAG.getNode(Opc, dl, VT, V1);
3263   }
3264 }
3265
3266 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3267                                     SDValue V1, unsigned TargetMask,
3268                                     SelectionDAG &DAG) {
3269   switch(Opc) {
3270   default: llvm_unreachable("Unknown x86 shuffle node");
3271   case X86ISD::PSHUFD:
3272   case X86ISD::PSHUFHW:
3273   case X86ISD::PSHUFLW:
3274   case X86ISD::VPERMILP:
3275   case X86ISD::VPERMI:
3276     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3277   }
3278 }
3279
3280 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3281                                     SDValue V1, SDValue V2, unsigned TargetMask,
3282                                     SelectionDAG &DAG) {
3283   switch(Opc) {
3284   default: llvm_unreachable("Unknown x86 shuffle node");
3285   case X86ISD::PALIGNR:
3286   case X86ISD::SHUFP:
3287   case X86ISD::VPERM2X128:
3288     return DAG.getNode(Opc, dl, VT, V1, V2,
3289                        DAG.getConstant(TargetMask, MVT::i8));
3290   }
3291 }
3292
3293 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3294                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3295   switch(Opc) {
3296   default: llvm_unreachable("Unknown x86 shuffle node");
3297   case X86ISD::MOVLHPS:
3298   case X86ISD::MOVLHPD:
3299   case X86ISD::MOVHLPS:
3300   case X86ISD::MOVLPS:
3301   case X86ISD::MOVLPD:
3302   case X86ISD::MOVSS:
3303   case X86ISD::MOVSD:
3304   case X86ISD::UNPCKL:
3305   case X86ISD::UNPCKH:
3306     return DAG.getNode(Opc, dl, VT, V1, V2);
3307   }
3308 }
3309
3310 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3311   MachineFunction &MF = DAG.getMachineFunction();
3312   const X86RegisterInfo *RegInfo =
3313     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3314   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3315   int ReturnAddrIndex = FuncInfo->getRAIndex();
3316
3317   if (ReturnAddrIndex == 0) {
3318     // Set up a frame object for the return address.
3319     unsigned SlotSize = RegInfo->getSlotSize();
3320     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3321                                                            -(int64_t)SlotSize,
3322                                                            false);
3323     FuncInfo->setRAIndex(ReturnAddrIndex);
3324   }
3325
3326   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3327 }
3328
3329 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3330                                        bool hasSymbolicDisplacement) {
3331   // Offset should fit into 32 bit immediate field.
3332   if (!isInt<32>(Offset))
3333     return false;
3334
3335   // If we don't have a symbolic displacement - we don't have any extra
3336   // restrictions.
3337   if (!hasSymbolicDisplacement)
3338     return true;
3339
3340   // FIXME: Some tweaks might be needed for medium code model.
3341   if (M != CodeModel::Small && M != CodeModel::Kernel)
3342     return false;
3343
3344   // For small code model we assume that latest object is 16MB before end of 31
3345   // bits boundary. We may also accept pretty large negative constants knowing
3346   // that all objects are in the positive half of address space.
3347   if (M == CodeModel::Small && Offset < 16*1024*1024)
3348     return true;
3349
3350   // For kernel code model we know that all object resist in the negative half
3351   // of 32bits address space. We may not accept negative offsets, since they may
3352   // be just off and we may accept pretty large positive ones.
3353   if (M == CodeModel::Kernel && Offset > 0)
3354     return true;
3355
3356   return false;
3357 }
3358
3359 /// isCalleePop - Determines whether the callee is required to pop its
3360 /// own arguments. Callee pop is necessary to support tail calls.
3361 bool X86::isCalleePop(CallingConv::ID CallingConv,
3362                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3363   if (IsVarArg)
3364     return false;
3365
3366   switch (CallingConv) {
3367   default:
3368     return false;
3369   case CallingConv::X86_StdCall:
3370     return !is64Bit;
3371   case CallingConv::X86_FastCall:
3372     return !is64Bit;
3373   case CallingConv::X86_ThisCall:
3374     return !is64Bit;
3375   case CallingConv::Fast:
3376     return TailCallOpt;
3377   case CallingConv::GHC:
3378     return TailCallOpt;
3379   case CallingConv::HiPE:
3380     return TailCallOpt;
3381   }
3382 }
3383
3384 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3385 /// specific condition code, returning the condition code and the LHS/RHS of the
3386 /// comparison to make.
3387 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3388                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3389   if (!isFP) {
3390     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3391       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3392         // X > -1   -> X == 0, jump !sign.
3393         RHS = DAG.getConstant(0, RHS.getValueType());
3394         return X86::COND_NS;
3395       }
3396       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3397         // X < 0   -> X == 0, jump on sign.
3398         return X86::COND_S;
3399       }
3400       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3401         // X < 1   -> X <= 0
3402         RHS = DAG.getConstant(0, RHS.getValueType());
3403         return X86::COND_LE;
3404       }
3405     }
3406
3407     switch (SetCCOpcode) {
3408     default: llvm_unreachable("Invalid integer condition!");
3409     case ISD::SETEQ:  return X86::COND_E;
3410     case ISD::SETGT:  return X86::COND_G;
3411     case ISD::SETGE:  return X86::COND_GE;
3412     case ISD::SETLT:  return X86::COND_L;
3413     case ISD::SETLE:  return X86::COND_LE;
3414     case ISD::SETNE:  return X86::COND_NE;
3415     case ISD::SETULT: return X86::COND_B;
3416     case ISD::SETUGT: return X86::COND_A;
3417     case ISD::SETULE: return X86::COND_BE;
3418     case ISD::SETUGE: return X86::COND_AE;
3419     }
3420   }
3421
3422   // First determine if it is required or is profitable to flip the operands.
3423
3424   // If LHS is a foldable load, but RHS is not, flip the condition.
3425   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3426       !ISD::isNON_EXTLoad(RHS.getNode())) {
3427     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3428     std::swap(LHS, RHS);
3429   }
3430
3431   switch (SetCCOpcode) {
3432   default: break;
3433   case ISD::SETOLT:
3434   case ISD::SETOLE:
3435   case ISD::SETUGT:
3436   case ISD::SETUGE:
3437     std::swap(LHS, RHS);
3438     break;
3439   }
3440
3441   // On a floating point condition, the flags are set as follows:
3442   // ZF  PF  CF   op
3443   //  0 | 0 | 0 | X > Y
3444   //  0 | 0 | 1 | X < Y
3445   //  1 | 0 | 0 | X == Y
3446   //  1 | 1 | 1 | unordered
3447   switch (SetCCOpcode) {
3448   default: llvm_unreachable("Condcode should be pre-legalized away");
3449   case ISD::SETUEQ:
3450   case ISD::SETEQ:   return X86::COND_E;
3451   case ISD::SETOLT:              // flipped
3452   case ISD::SETOGT:
3453   case ISD::SETGT:   return X86::COND_A;
3454   case ISD::SETOLE:              // flipped
3455   case ISD::SETOGE:
3456   case ISD::SETGE:   return X86::COND_AE;
3457   case ISD::SETUGT:              // flipped
3458   case ISD::SETULT:
3459   case ISD::SETLT:   return X86::COND_B;
3460   case ISD::SETUGE:              // flipped
3461   case ISD::SETULE:
3462   case ISD::SETLE:   return X86::COND_BE;
3463   case ISD::SETONE:
3464   case ISD::SETNE:   return X86::COND_NE;
3465   case ISD::SETUO:   return X86::COND_P;
3466   case ISD::SETO:    return X86::COND_NP;
3467   case ISD::SETOEQ:
3468   case ISD::SETUNE:  return X86::COND_INVALID;
3469   }
3470 }
3471
3472 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3473 /// code. Current x86 isa includes the following FP cmov instructions:
3474 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3475 static bool hasFPCMov(unsigned X86CC) {
3476   switch (X86CC) {
3477   default:
3478     return false;
3479   case X86::COND_B:
3480   case X86::COND_BE:
3481   case X86::COND_E:
3482   case X86::COND_P:
3483   case X86::COND_A:
3484   case X86::COND_AE:
3485   case X86::COND_NE:
3486   case X86::COND_NP:
3487     return true;
3488   }
3489 }
3490
3491 /// isFPImmLegal - Returns true if the target can instruction select the
3492 /// specified FP immediate natively. If false, the legalizer will
3493 /// materialize the FP immediate as a load from a constant pool.
3494 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3495   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3496     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3497       return true;
3498   }
3499   return false;
3500 }
3501
3502 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3503 /// the specified range (L, H].
3504 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3505   return (Val < 0) || (Val >= Low && Val < Hi);
3506 }
3507
3508 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3509 /// specified value.
3510 static bool isUndefOrEqual(int Val, int CmpVal) {
3511   return (Val < 0 || Val == CmpVal);
3512 }
3513
3514 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3515 /// from position Pos and ending in Pos+Size, falls within the specified
3516 /// sequential range (L, L+Pos]. or is undef.
3517 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3518                                        unsigned Pos, unsigned Size, int Low) {
3519   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3520     if (!isUndefOrEqual(Mask[i], Low))
3521       return false;
3522   return true;
3523 }
3524
3525 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3526 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3527 /// the second operand.
3528 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3529   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3530     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3531   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3532     return (Mask[0] < 2 && Mask[1] < 2);
3533   return false;
3534 }
3535
3536 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3537 /// is suitable for input to PSHUFHW.
3538 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3539   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3540     return false;
3541
3542   // Lower quadword copied in order or undef.
3543   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3544     return false;
3545
3546   // Upper quadword shuffled.
3547   for (unsigned i = 4; i != 8; ++i)
3548     if (!isUndefOrInRange(Mask[i], 4, 8))
3549       return false;
3550
3551   if (VT == MVT::v16i16) {
3552     // Lower quadword copied in order or undef.
3553     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3554       return false;
3555
3556     // Upper quadword shuffled.
3557     for (unsigned i = 12; i != 16; ++i)
3558       if (!isUndefOrInRange(Mask[i], 12, 16))
3559         return false;
3560   }
3561
3562   return true;
3563 }
3564
3565 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3566 /// is suitable for input to PSHUFLW.
3567 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3568   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3569     return false;
3570
3571   // Upper quadword copied in order.
3572   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3573     return false;
3574
3575   // Lower quadword shuffled.
3576   for (unsigned i = 0; i != 4; ++i)
3577     if (!isUndefOrInRange(Mask[i], 0, 4))
3578       return false;
3579
3580   if (VT == MVT::v16i16) {
3581     // Upper quadword copied in order.
3582     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3583       return false;
3584
3585     // Lower quadword shuffled.
3586     for (unsigned i = 8; i != 12; ++i)
3587       if (!isUndefOrInRange(Mask[i], 8, 12))
3588         return false;
3589   }
3590
3591   return true;
3592 }
3593
3594 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3595 /// is suitable for input to PALIGNR.
3596 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3597                           const X86Subtarget *Subtarget) {
3598   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3599       (VT.is256BitVector() && !Subtarget->hasInt256()))
3600     return false;
3601
3602   unsigned NumElts = VT.getVectorNumElements();
3603   unsigned NumLanes = VT.getSizeInBits()/128;
3604   unsigned NumLaneElts = NumElts/NumLanes;
3605
3606   // Do not handle 64-bit element shuffles with palignr.
3607   if (NumLaneElts == 2)
3608     return false;
3609
3610   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3611     unsigned i;
3612     for (i = 0; i != NumLaneElts; ++i) {
3613       if (Mask[i+l] >= 0)
3614         break;
3615     }
3616
3617     // Lane is all undef, go to next lane
3618     if (i == NumLaneElts)
3619       continue;
3620
3621     int Start = Mask[i+l];
3622
3623     // Make sure its in this lane in one of the sources
3624     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3625         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3626       return false;
3627
3628     // If not lane 0, then we must match lane 0
3629     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3630       return false;
3631
3632     // Correct second source to be contiguous with first source
3633     if (Start >= (int)NumElts)
3634       Start -= NumElts - NumLaneElts;
3635
3636     // Make sure we're shifting in the right direction.
3637     if (Start <= (int)(i+l))
3638       return false;
3639
3640     Start -= i;
3641
3642     // Check the rest of the elements to see if they are consecutive.
3643     for (++i; i != NumLaneElts; ++i) {
3644       int Idx = Mask[i+l];
3645
3646       // Make sure its in this lane
3647       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3648           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3649         return false;
3650
3651       // If not lane 0, then we must match lane 0
3652       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3653         return false;
3654
3655       if (Idx >= (int)NumElts)
3656         Idx -= NumElts - NumLaneElts;
3657
3658       if (!isUndefOrEqual(Idx, Start+i))
3659         return false;
3660
3661     }
3662   }
3663
3664   return true;
3665 }
3666
3667 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3668 /// the two vector operands have swapped position.
3669 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3670                                      unsigned NumElems) {
3671   for (unsigned i = 0; i != NumElems; ++i) {
3672     int idx = Mask[i];
3673     if (idx < 0)
3674       continue;
3675     else if (idx < (int)NumElems)
3676       Mask[i] = idx + NumElems;
3677     else
3678       Mask[i] = idx - NumElems;
3679   }
3680 }
3681
3682 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3683 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3684 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3685 /// reverse of what x86 shuffles want.
3686 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool HasFp256,
3687                         bool Commuted = false) {
3688   if (!HasFp256 && VT.is256BitVector())
3689     return false;
3690
3691   unsigned NumElems = VT.getVectorNumElements();
3692   unsigned NumLanes = VT.getSizeInBits()/128;
3693   unsigned NumLaneElems = NumElems/NumLanes;
3694
3695   if (NumLaneElems != 2 && NumLaneElems != 4)
3696     return false;
3697
3698   // VSHUFPSY divides the resulting vector into 4 chunks.
3699   // The sources are also splitted into 4 chunks, and each destination
3700   // chunk must come from a different source chunk.
3701   //
3702   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3703   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3704   //
3705   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3706   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3707   //
3708   // VSHUFPDY divides the resulting vector into 4 chunks.
3709   // The sources are also splitted into 4 chunks, and each destination
3710   // chunk must come from a different source chunk.
3711   //
3712   //  SRC1 =>      X3       X2       X1       X0
3713   //  SRC2 =>      Y3       Y2       Y1       Y0
3714   //
3715   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3716   //
3717   unsigned HalfLaneElems = NumLaneElems/2;
3718   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3719     for (unsigned i = 0; i != NumLaneElems; ++i) {
3720       int Idx = Mask[i+l];
3721       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3722       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3723         return false;
3724       // For VSHUFPSY, the mask of the second half must be the same as the
3725       // first but with the appropriate offsets. This works in the same way as
3726       // VPERMILPS works with masks.
3727       if (NumElems != 8 || l == 0 || Mask[i] < 0)
3728         continue;
3729       if (!isUndefOrEqual(Idx, Mask[i]+l))
3730         return false;
3731     }
3732   }
3733
3734   return true;
3735 }
3736
3737 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3738 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3739 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3740   if (!VT.is128BitVector())
3741     return false;
3742
3743   unsigned NumElems = VT.getVectorNumElements();
3744
3745   if (NumElems != 4)
3746     return false;
3747
3748   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3749   return isUndefOrEqual(Mask[0], 6) &&
3750          isUndefOrEqual(Mask[1], 7) &&
3751          isUndefOrEqual(Mask[2], 2) &&
3752          isUndefOrEqual(Mask[3], 3);
3753 }
3754
3755 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3756 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3757 /// <2, 3, 2, 3>
3758 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3759   if (!VT.is128BitVector())
3760     return false;
3761
3762   unsigned NumElems = VT.getVectorNumElements();
3763
3764   if (NumElems != 4)
3765     return false;
3766
3767   return isUndefOrEqual(Mask[0], 2) &&
3768          isUndefOrEqual(Mask[1], 3) &&
3769          isUndefOrEqual(Mask[2], 2) &&
3770          isUndefOrEqual(Mask[3], 3);
3771 }
3772
3773 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3774 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3775 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3776   if (!VT.is128BitVector())
3777     return false;
3778
3779   unsigned NumElems = VT.getVectorNumElements();
3780
3781   if (NumElems != 2 && NumElems != 4)
3782     return false;
3783
3784   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3785     if (!isUndefOrEqual(Mask[i], i + NumElems))
3786       return false;
3787
3788   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3789     if (!isUndefOrEqual(Mask[i], i))
3790       return false;
3791
3792   return true;
3793 }
3794
3795 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3796 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3797 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3798   if (!VT.is128BitVector())
3799     return false;
3800
3801   unsigned NumElems = VT.getVectorNumElements();
3802
3803   if (NumElems != 2 && NumElems != 4)
3804     return false;
3805
3806   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3807     if (!isUndefOrEqual(Mask[i], i))
3808       return false;
3809
3810   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3811     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3812       return false;
3813
3814   return true;
3815 }
3816
3817 //
3818 // Some special combinations that can be optimized.
3819 //
3820 static
3821 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3822                                SelectionDAG &DAG) {
3823   MVT VT = SVOp->getSimpleValueType(0);
3824   SDLoc dl(SVOp);
3825
3826   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3827     return SDValue();
3828
3829   ArrayRef<int> Mask = SVOp->getMask();
3830
3831   // These are the special masks that may be optimized.
3832   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3833   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3834   bool MatchEvenMask = true;
3835   bool MatchOddMask  = true;
3836   for (int i=0; i<8; ++i) {
3837     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3838       MatchEvenMask = false;
3839     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3840       MatchOddMask = false;
3841   }
3842
3843   if (!MatchEvenMask && !MatchOddMask)
3844     return SDValue();
3845
3846   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3847
3848   SDValue Op0 = SVOp->getOperand(0);
3849   SDValue Op1 = SVOp->getOperand(1);
3850
3851   if (MatchEvenMask) {
3852     // Shift the second operand right to 32 bits.
3853     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3854     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3855   } else {
3856     // Shift the first operand left to 32 bits.
3857     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3858     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3859   }
3860   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3861   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3862 }
3863
3864 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3865 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3866 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3867                          bool HasInt256, bool V2IsSplat = false) {
3868
3869   if (VT.is512BitVector())
3870     return false;
3871   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3872          "Unsupported vector type for unpckh");
3873
3874   unsigned NumElts = VT.getVectorNumElements();
3875   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
3876       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3877     return false;
3878
3879   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3880   // independently on 128-bit lanes.
3881   unsigned NumLanes = VT.getSizeInBits()/128;
3882   unsigned NumLaneElts = NumElts/NumLanes;
3883
3884   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3885     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3886       int BitI  = Mask[l+i];
3887       int BitI1 = Mask[l+i+1];
3888       if (!isUndefOrEqual(BitI, j))
3889         return false;
3890       if (V2IsSplat) {
3891         if (!isUndefOrEqual(BitI1, NumElts))
3892           return false;
3893       } else {
3894         if (!isUndefOrEqual(BitI1, j + NumElts))
3895           return false;
3896       }
3897     }
3898   }
3899
3900   return true;
3901 }
3902
3903 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3904 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3905 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3906                          bool HasInt256, bool V2IsSplat = false) {
3907   unsigned NumElts = VT.getVectorNumElements();
3908
3909   if (VT.is512BitVector())
3910     return false;
3911   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3912          "Unsupported vector type for unpckh");
3913
3914   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
3915       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3916     return false;
3917
3918   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3919   // independently on 128-bit lanes.
3920   unsigned NumLanes = VT.getSizeInBits()/128;
3921   unsigned NumLaneElts = NumElts/NumLanes;
3922
3923   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3924     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3925       int BitI  = Mask[l+i];
3926       int BitI1 = Mask[l+i+1];
3927       if (!isUndefOrEqual(BitI, j))
3928         return false;
3929       if (V2IsSplat) {
3930         if (isUndefOrEqual(BitI1, NumElts))
3931           return false;
3932       } else {
3933         if (!isUndefOrEqual(BitI1, j+NumElts))
3934           return false;
3935       }
3936     }
3937   }
3938   return true;
3939 }
3940
3941 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3942 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3943 /// <0, 0, 1, 1>
3944 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3945   unsigned NumElts = VT.getVectorNumElements();
3946   bool Is256BitVec = VT.is256BitVector();
3947
3948   if (VT.is512BitVector())
3949     return false;
3950   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3951          "Unsupported vector type for unpckh");
3952
3953   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
3954       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3955     return false;
3956
3957   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3958   // FIXME: Need a better way to get rid of this, there's no latency difference
3959   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3960   // the former later. We should also remove the "_undef" special mask.
3961   if (NumElts == 4 && Is256BitVec)
3962     return false;
3963
3964   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3965   // independently on 128-bit lanes.
3966   unsigned NumLanes = VT.getSizeInBits()/128;
3967   unsigned NumLaneElts = NumElts/NumLanes;
3968
3969   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
3970     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3971       int BitI  = Mask[l+i];
3972       int BitI1 = Mask[l+i+1];
3973
3974       if (!isUndefOrEqual(BitI, j))
3975         return false;
3976       if (!isUndefOrEqual(BitI1, j))
3977         return false;
3978     }
3979   }
3980
3981   return true;
3982 }
3983
3984 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3985 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3986 /// <2, 2, 3, 3>
3987 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3988   unsigned NumElts = VT.getVectorNumElements();
3989
3990   if (VT.is512BitVector())
3991     return false;
3992
3993   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3994          "Unsupported vector type for unpckh");
3995
3996   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
3997       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3998     return false;
3999
4000   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4001   // independently on 128-bit lanes.
4002   unsigned NumLanes = VT.getSizeInBits()/128;
4003   unsigned NumLaneElts = NumElts/NumLanes;
4004
4005   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4006     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4007       int BitI  = Mask[l+i];
4008       int BitI1 = Mask[l+i+1];
4009       if (!isUndefOrEqual(BitI, j))
4010         return false;
4011       if (!isUndefOrEqual(BitI1, j))
4012         return false;
4013     }
4014   }
4015   return true;
4016 }
4017
4018 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4019 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4020 /// MOVSD, and MOVD, i.e. setting the lowest element.
4021 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4022   if (VT.getVectorElementType().getSizeInBits() < 32)
4023     return false;
4024   if (!VT.is128BitVector())
4025     return false;
4026
4027   unsigned NumElts = VT.getVectorNumElements();
4028
4029   if (!isUndefOrEqual(Mask[0], NumElts))
4030     return false;
4031
4032   for (unsigned i = 1; i != NumElts; ++i)
4033     if (!isUndefOrEqual(Mask[i], i))
4034       return false;
4035
4036   return true;
4037 }
4038
4039 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4040 /// as permutations between 128-bit chunks or halves. As an example: this
4041 /// shuffle bellow:
4042 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4043 /// The first half comes from the second half of V1 and the second half from the
4044 /// the second half of V2.
4045 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4046   if (!HasFp256 || !VT.is256BitVector())
4047     return false;
4048
4049   // The shuffle result is divided into half A and half B. In total the two
4050   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4051   // B must come from C, D, E or F.
4052   unsigned HalfSize = VT.getVectorNumElements()/2;
4053   bool MatchA = false, MatchB = false;
4054
4055   // Check if A comes from one of C, D, E, F.
4056   for (unsigned Half = 0; Half != 4; ++Half) {
4057     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4058       MatchA = true;
4059       break;
4060     }
4061   }
4062
4063   // Check if B comes from one of C, D, E, F.
4064   for (unsigned Half = 0; Half != 4; ++Half) {
4065     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4066       MatchB = true;
4067       break;
4068     }
4069   }
4070
4071   return MatchA && MatchB;
4072 }
4073
4074 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4075 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4076 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4077   MVT VT = SVOp->getSimpleValueType(0);
4078
4079   unsigned HalfSize = VT.getVectorNumElements()/2;
4080
4081   unsigned FstHalf = 0, SndHalf = 0;
4082   for (unsigned i = 0; i < HalfSize; ++i) {
4083     if (SVOp->getMaskElt(i) > 0) {
4084       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4085       break;
4086     }
4087   }
4088   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4089     if (SVOp->getMaskElt(i) > 0) {
4090       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4091       break;
4092     }
4093   }
4094
4095   return (FstHalf | (SndHalf << 4));
4096 }
4097
4098 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4099 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4100   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4101   if (EltSize < 32)
4102     return false;
4103
4104   unsigned NumElts = VT.getVectorNumElements();
4105   Imm8 = 0;
4106   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4107     for (unsigned i = 0; i != NumElts; ++i) {
4108       if (Mask[i] < 0)
4109         continue;
4110       Imm8 |= Mask[i] << (i*2);
4111     }
4112     return true;
4113   }
4114
4115   unsigned LaneSize = 4;
4116   SmallVector<int, 4> MaskVal(LaneSize, -1);
4117
4118   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4119     for (unsigned i = 0; i != LaneSize; ++i) {
4120       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4121         return false;
4122       if (Mask[i+l] < 0)
4123         continue;
4124       if (MaskVal[i] < 0) {
4125         MaskVal[i] = Mask[i+l] - l;
4126         Imm8 |= MaskVal[i] << (i*2);
4127         continue;
4128       }
4129       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4130         return false;
4131     }
4132   }
4133   return true;
4134 }
4135
4136 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4137 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4138 /// Note that VPERMIL mask matching is different depending whether theunderlying
4139 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4140 /// to the same elements of the low, but to the higher half of the source.
4141 /// In VPERMILPD the two lanes could be shuffled independently of each other
4142 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4143 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4144   if (!HasFp256)
4145     return false;
4146
4147   unsigned NumElts = VT.getVectorNumElements();
4148   // Only match 256-bit with 32/64-bit types
4149   if (!VT.is256BitVector() || (NumElts != 4 && NumElts != 8))
4150     return false;
4151
4152   unsigned NumLanes = VT.getSizeInBits()/128;
4153   unsigned LaneSize = NumElts/NumLanes;
4154   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4155     for (unsigned i = 0; i != LaneSize; ++i) {
4156       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4157         return false;
4158       if (NumElts != 8 || l == 0)
4159         continue;
4160       // VPERMILPS handling
4161       if (Mask[i] < 0)
4162         continue;
4163       if (!isUndefOrEqual(Mask[i+l], Mask[i]+l))
4164         return false;
4165     }
4166   }
4167
4168   return true;
4169 }
4170
4171 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4172 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4173 /// element of vector 2 and the other elements to come from vector 1 in order.
4174 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4175                                bool V2IsSplat = false, bool V2IsUndef = false) {
4176   if (!VT.is128BitVector())
4177     return false;
4178
4179   unsigned NumOps = VT.getVectorNumElements();
4180   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4181     return false;
4182
4183   if (!isUndefOrEqual(Mask[0], 0))
4184     return false;
4185
4186   for (unsigned i = 1; i != NumOps; ++i)
4187     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4188           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4189           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4190       return false;
4191
4192   return true;
4193 }
4194
4195 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4196 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4197 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4198 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4199                            const X86Subtarget *Subtarget) {
4200   if (!Subtarget->hasSSE3())
4201     return false;
4202
4203   unsigned NumElems = VT.getVectorNumElements();
4204
4205   if ((VT.is128BitVector() && NumElems != 4) ||
4206       (VT.is256BitVector() && NumElems != 8) ||
4207       (VT.is512BitVector() && NumElems != 16))
4208     return false;
4209
4210   // "i+1" is the value the indexed mask element must have
4211   for (unsigned i = 0; i != NumElems; i += 2)
4212     if (!isUndefOrEqual(Mask[i], i+1) ||
4213         !isUndefOrEqual(Mask[i+1], i+1))
4214       return false;
4215
4216   return true;
4217 }
4218
4219 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4220 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4221 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4222 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4223                            const X86Subtarget *Subtarget) {
4224   if (!Subtarget->hasSSE3())
4225     return false;
4226
4227   unsigned NumElems = VT.getVectorNumElements();
4228
4229   if ((VT.is128BitVector() && NumElems != 4) ||
4230       (VT.is256BitVector() && NumElems != 8) ||
4231       (VT.is512BitVector() && NumElems != 16))
4232     return false;
4233
4234   // "i" is the value the indexed mask element must have
4235   for (unsigned i = 0; i != NumElems; i += 2)
4236     if (!isUndefOrEqual(Mask[i], i) ||
4237         !isUndefOrEqual(Mask[i+1], i))
4238       return false;
4239
4240   return true;
4241 }
4242
4243 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4244 /// specifies a shuffle of elements that is suitable for input to 256-bit
4245 /// version of MOVDDUP.
4246 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4247   if (!HasFp256 || !VT.is256BitVector())
4248     return false;
4249
4250   unsigned NumElts = VT.getVectorNumElements();
4251   if (NumElts != 4)
4252     return false;
4253
4254   for (unsigned i = 0; i != NumElts/2; ++i)
4255     if (!isUndefOrEqual(Mask[i], 0))
4256       return false;
4257   for (unsigned i = NumElts/2; i != NumElts; ++i)
4258     if (!isUndefOrEqual(Mask[i], NumElts/2))
4259       return false;
4260   return true;
4261 }
4262
4263 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4264 /// specifies a shuffle of elements that is suitable for input to 128-bit
4265 /// version of MOVDDUP.
4266 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4267   if (!VT.is128BitVector())
4268     return false;
4269
4270   unsigned e = VT.getVectorNumElements() / 2;
4271   for (unsigned i = 0; i != e; ++i)
4272     if (!isUndefOrEqual(Mask[i], i))
4273       return false;
4274   for (unsigned i = 0; i != e; ++i)
4275     if (!isUndefOrEqual(Mask[e+i], i))
4276       return false;
4277   return true;
4278 }
4279
4280 /// isVEXTRACTIndex - Return true if the specified
4281 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4282 /// suitable for instruction that extract 128 or 256 bit vectors
4283 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4284   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4285   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4286     return false;
4287
4288   // The index should be aligned on a vecWidth-bit boundary.
4289   uint64_t Index =
4290     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4291
4292   MVT VT = N->getSimpleValueType(0);
4293   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4294   bool Result = (Index * ElSize) % vecWidth == 0;
4295
4296   return Result;
4297 }
4298
4299 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4300 /// operand specifies a subvector insert that is suitable for input to
4301 /// insertion of 128 or 256-bit subvectors
4302 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4303   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4304   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4305     return false;
4306   // The index should be aligned on a vecWidth-bit boundary.
4307   uint64_t Index =
4308     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4309
4310   MVT VT = N->getSimpleValueType(0);
4311   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4312   bool Result = (Index * ElSize) % vecWidth == 0;
4313
4314   return Result;
4315 }
4316
4317 bool X86::isVINSERT128Index(SDNode *N) {
4318   return isVINSERTIndex(N, 128);
4319 }
4320
4321 bool X86::isVINSERT256Index(SDNode *N) {
4322   return isVINSERTIndex(N, 256);
4323 }
4324
4325 bool X86::isVEXTRACT128Index(SDNode *N) {
4326   return isVEXTRACTIndex(N, 128);
4327 }
4328
4329 bool X86::isVEXTRACT256Index(SDNode *N) {
4330   return isVEXTRACTIndex(N, 256);
4331 }
4332
4333 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4334 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4335 /// Handles 128-bit and 256-bit.
4336 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4337   MVT VT = N->getSimpleValueType(0);
4338
4339   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4340          "Unsupported vector type for PSHUF/SHUFP");
4341
4342   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4343   // independently on 128-bit lanes.
4344   unsigned NumElts = VT.getVectorNumElements();
4345   unsigned NumLanes = VT.getSizeInBits()/128;
4346   unsigned NumLaneElts = NumElts/NumLanes;
4347
4348   assert((NumLaneElts == 2 || NumLaneElts == 4) &&
4349          "Only supports 2 or 4 elements per lane");
4350
4351   unsigned Shift = (NumLaneElts == 4) ? 1 : 0;
4352   unsigned Mask = 0;
4353   for (unsigned i = 0; i != NumElts; ++i) {
4354     int Elt = N->getMaskElt(i);
4355     if (Elt < 0) continue;
4356     Elt &= NumLaneElts - 1;
4357     unsigned ShAmt = (i << Shift) % 8;
4358     Mask |= Elt << ShAmt;
4359   }
4360
4361   return Mask;
4362 }
4363
4364 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4365 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4366 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4367   MVT VT = N->getSimpleValueType(0);
4368
4369   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4370          "Unsupported vector type for PSHUFHW");
4371
4372   unsigned NumElts = VT.getVectorNumElements();
4373
4374   unsigned Mask = 0;
4375   for (unsigned l = 0; l != NumElts; l += 8) {
4376     // 8 nodes per lane, but we only care about the last 4.
4377     for (unsigned i = 0; i < 4; ++i) {
4378       int Elt = N->getMaskElt(l+i+4);
4379       if (Elt < 0) continue;
4380       Elt &= 0x3; // only 2-bits.
4381       Mask |= Elt << (i * 2);
4382     }
4383   }
4384
4385   return Mask;
4386 }
4387
4388 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4389 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4390 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4391   MVT VT = N->getSimpleValueType(0);
4392
4393   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4394          "Unsupported vector type for PSHUFHW");
4395
4396   unsigned NumElts = VT.getVectorNumElements();
4397
4398   unsigned Mask = 0;
4399   for (unsigned l = 0; l != NumElts; l += 8) {
4400     // 8 nodes per lane, but we only care about the first 4.
4401     for (unsigned i = 0; i < 4; ++i) {
4402       int Elt = N->getMaskElt(l+i);
4403       if (Elt < 0) continue;
4404       Elt &= 0x3; // only 2-bits
4405       Mask |= Elt << (i * 2);
4406     }
4407   }
4408
4409   return Mask;
4410 }
4411
4412 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4413 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4414 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4415   MVT VT = SVOp->getSimpleValueType(0);
4416   unsigned EltSize = VT.getVectorElementType().getSizeInBits() >> 3;
4417
4418   unsigned NumElts = VT.getVectorNumElements();
4419   unsigned NumLanes = VT.getSizeInBits()/128;
4420   unsigned NumLaneElts = NumElts/NumLanes;
4421
4422   int Val = 0;
4423   unsigned i;
4424   for (i = 0; i != NumElts; ++i) {
4425     Val = SVOp->getMaskElt(i);
4426     if (Val >= 0)
4427       break;
4428   }
4429   if (Val >= (int)NumElts)
4430     Val -= NumElts - NumLaneElts;
4431
4432   assert(Val - i > 0 && "PALIGNR imm should be positive");
4433   return (Val - i) * EltSize;
4434 }
4435
4436 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4437   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4438   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4439     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4440
4441   uint64_t Index =
4442     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4443
4444   MVT VecVT = N->getOperand(0).getSimpleValueType();
4445   MVT ElVT = VecVT.getVectorElementType();
4446
4447   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4448   return Index / NumElemsPerChunk;
4449 }
4450
4451 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4452   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4453   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4454     llvm_unreachable("Illegal insert subvector for VINSERT");
4455
4456   uint64_t Index =
4457     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4458
4459   MVT VecVT = N->getSimpleValueType(0);
4460   MVT ElVT = VecVT.getVectorElementType();
4461
4462   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4463   return Index / NumElemsPerChunk;
4464 }
4465
4466 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4467 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4468 /// and VINSERTI128 instructions.
4469 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4470   return getExtractVEXTRACTImmediate(N, 128);
4471 }
4472
4473 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4474 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4475 /// and VINSERTI64x4 instructions.
4476 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4477   return getExtractVEXTRACTImmediate(N, 256);
4478 }
4479
4480 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4481 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4482 /// and VINSERTI128 instructions.
4483 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4484   return getInsertVINSERTImmediate(N, 128);
4485 }
4486
4487 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4488 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4489 /// and VINSERTI64x4 instructions.
4490 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4491   return getInsertVINSERTImmediate(N, 256);
4492 }
4493
4494 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4495 /// constant +0.0.
4496 bool X86::isZeroNode(SDValue Elt) {
4497   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4498     return CN->isNullValue();
4499   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4500     return CFP->getValueAPF().isPosZero();
4501   return false;
4502 }
4503
4504 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4505 /// their permute mask.
4506 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4507                                     SelectionDAG &DAG) {
4508   MVT VT = SVOp->getSimpleValueType(0);
4509   unsigned NumElems = VT.getVectorNumElements();
4510   SmallVector<int, 8> MaskVec;
4511
4512   for (unsigned i = 0; i != NumElems; ++i) {
4513     int Idx = SVOp->getMaskElt(i);
4514     if (Idx >= 0) {
4515       if (Idx < (int)NumElems)
4516         Idx += NumElems;
4517       else
4518         Idx -= NumElems;
4519     }
4520     MaskVec.push_back(Idx);
4521   }
4522   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4523                               SVOp->getOperand(0), &MaskVec[0]);
4524 }
4525
4526 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4527 /// match movhlps. The lower half elements should come from upper half of
4528 /// V1 (and in order), and the upper half elements should come from the upper
4529 /// half of V2 (and in order).
4530 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4531   if (!VT.is128BitVector())
4532     return false;
4533   if (VT.getVectorNumElements() != 4)
4534     return false;
4535   for (unsigned i = 0, e = 2; i != e; ++i)
4536     if (!isUndefOrEqual(Mask[i], i+2))
4537       return false;
4538   for (unsigned i = 2; i != 4; ++i)
4539     if (!isUndefOrEqual(Mask[i], i+4))
4540       return false;
4541   return true;
4542 }
4543
4544 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4545 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4546 /// required.
4547 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4548   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4549     return false;
4550   N = N->getOperand(0).getNode();
4551   if (!ISD::isNON_EXTLoad(N))
4552     return false;
4553   if (LD)
4554     *LD = cast<LoadSDNode>(N);
4555   return true;
4556 }
4557
4558 // Test whether the given value is a vector value which will be legalized
4559 // into a load.
4560 static bool WillBeConstantPoolLoad(SDNode *N) {
4561   if (N->getOpcode() != ISD::BUILD_VECTOR)
4562     return false;
4563
4564   // Check for any non-constant elements.
4565   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4566     switch (N->getOperand(i).getNode()->getOpcode()) {
4567     case ISD::UNDEF:
4568     case ISD::ConstantFP:
4569     case ISD::Constant:
4570       break;
4571     default:
4572       return false;
4573     }
4574
4575   // Vectors of all-zeros and all-ones are materialized with special
4576   // instructions rather than being loaded.
4577   return !ISD::isBuildVectorAllZeros(N) &&
4578          !ISD::isBuildVectorAllOnes(N);
4579 }
4580
4581 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4582 /// match movlp{s|d}. The lower half elements should come from lower half of
4583 /// V1 (and in order), and the upper half elements should come from the upper
4584 /// half of V2 (and in order). And since V1 will become the source of the
4585 /// MOVLP, it must be either a vector load or a scalar load to vector.
4586 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4587                                ArrayRef<int> Mask, MVT VT) {
4588   if (!VT.is128BitVector())
4589     return false;
4590
4591   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4592     return false;
4593   // Is V2 is a vector load, don't do this transformation. We will try to use
4594   // load folding shufps op.
4595   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4596     return false;
4597
4598   unsigned NumElems = VT.getVectorNumElements();
4599
4600   if (NumElems != 2 && NumElems != 4)
4601     return false;
4602   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4603     if (!isUndefOrEqual(Mask[i], i))
4604       return false;
4605   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4606     if (!isUndefOrEqual(Mask[i], i+NumElems))
4607       return false;
4608   return true;
4609 }
4610
4611 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4612 /// all the same.
4613 static bool isSplatVector(SDNode *N) {
4614   if (N->getOpcode() != ISD::BUILD_VECTOR)
4615     return false;
4616
4617   SDValue SplatValue = N->getOperand(0);
4618   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4619     if (N->getOperand(i) != SplatValue)
4620       return false;
4621   return true;
4622 }
4623
4624 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4625 /// to an zero vector.
4626 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4627 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4628   SDValue V1 = N->getOperand(0);
4629   SDValue V2 = N->getOperand(1);
4630   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4631   for (unsigned i = 0; i != NumElems; ++i) {
4632     int Idx = N->getMaskElt(i);
4633     if (Idx >= (int)NumElems) {
4634       unsigned Opc = V2.getOpcode();
4635       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4636         continue;
4637       if (Opc != ISD::BUILD_VECTOR ||
4638           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4639         return false;
4640     } else if (Idx >= 0) {
4641       unsigned Opc = V1.getOpcode();
4642       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4643         continue;
4644       if (Opc != ISD::BUILD_VECTOR ||
4645           !X86::isZeroNode(V1.getOperand(Idx)))
4646         return false;
4647     }
4648   }
4649   return true;
4650 }
4651
4652 /// getZeroVector - Returns a vector of specified type with all zero elements.
4653 ///
4654 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4655                              SelectionDAG &DAG, SDLoc dl) {
4656   assert(VT.isVector() && "Expected a vector type");
4657
4658   // Always build SSE zero vectors as <4 x i32> bitcasted
4659   // to their dest type. This ensures they get CSE'd.
4660   SDValue Vec;
4661   if (VT.is128BitVector()) {  // SSE
4662     if (Subtarget->hasSSE2()) {  // SSE2
4663       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4664       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4665     } else { // SSE1
4666       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4667       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4668     }
4669   } else if (VT.is256BitVector()) { // AVX
4670     if (Subtarget->hasInt256()) { // AVX2
4671       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4672       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4673       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4674                         array_lengthof(Ops));
4675     } else {
4676       // 256-bit logic and arithmetic instructions in AVX are all
4677       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4678       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4679       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4680       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4681                         array_lengthof(Ops));
4682     }
4683   } else
4684     llvm_unreachable("Unexpected vector type");
4685
4686   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4687 }
4688
4689 /// getOnesVector - Returns a vector of specified type with all bits set.
4690 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4691 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4692 /// Then bitcast to their original type, ensuring they get CSE'd.
4693 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4694                              SDLoc dl) {
4695   assert(VT.isVector() && "Expected a vector type");
4696
4697   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4698   SDValue Vec;
4699   if (VT.is256BitVector()) {
4700     if (HasInt256) { // AVX2
4701       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4702       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4703                         array_lengthof(Ops));
4704     } else { // AVX
4705       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4706       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4707     }
4708   } else if (VT.is128BitVector()) {
4709     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4710   } else
4711     llvm_unreachable("Unexpected vector type");
4712
4713   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4714 }
4715
4716 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4717 /// that point to V2 points to its first element.
4718 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4719   for (unsigned i = 0; i != NumElems; ++i) {
4720     if (Mask[i] > (int)NumElems) {
4721       Mask[i] = NumElems;
4722     }
4723   }
4724 }
4725
4726 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4727 /// operation of specified width.
4728 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4729                        SDValue V2) {
4730   unsigned NumElems = VT.getVectorNumElements();
4731   SmallVector<int, 8> Mask;
4732   Mask.push_back(NumElems);
4733   for (unsigned i = 1; i != NumElems; ++i)
4734     Mask.push_back(i);
4735   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4736 }
4737
4738 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4739 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4740                           SDValue V2) {
4741   unsigned NumElems = VT.getVectorNumElements();
4742   SmallVector<int, 8> Mask;
4743   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4744     Mask.push_back(i);
4745     Mask.push_back(i + NumElems);
4746   }
4747   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4748 }
4749
4750 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4751 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4752                           SDValue V2) {
4753   unsigned NumElems = VT.getVectorNumElements();
4754   SmallVector<int, 8> Mask;
4755   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4756     Mask.push_back(i + Half);
4757     Mask.push_back(i + NumElems + Half);
4758   }
4759   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4760 }
4761
4762 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4763 // a generic shuffle instruction because the target has no such instructions.
4764 // Generate shuffles which repeat i16 and i8 several times until they can be
4765 // represented by v4f32 and then be manipulated by target suported shuffles.
4766 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4767   MVT VT = V.getSimpleValueType();
4768   int NumElems = VT.getVectorNumElements();
4769   SDLoc dl(V);
4770
4771   while (NumElems > 4) {
4772     if (EltNo < NumElems/2) {
4773       V = getUnpackl(DAG, dl, VT, V, V);
4774     } else {
4775       V = getUnpackh(DAG, dl, VT, V, V);
4776       EltNo -= NumElems/2;
4777     }
4778     NumElems >>= 1;
4779   }
4780   return V;
4781 }
4782
4783 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4784 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4785   MVT VT = V.getSimpleValueType();
4786   SDLoc dl(V);
4787
4788   if (VT.is128BitVector()) {
4789     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4790     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4791     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4792                              &SplatMask[0]);
4793   } else if (VT.is256BitVector()) {
4794     // To use VPERMILPS to splat scalars, the second half of indicies must
4795     // refer to the higher part, which is a duplication of the lower one,
4796     // because VPERMILPS can only handle in-lane permutations.
4797     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4798                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4799
4800     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4801     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4802                              &SplatMask[0]);
4803   } else
4804     llvm_unreachable("Vector size not supported");
4805
4806   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4807 }
4808
4809 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4810 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4811   MVT SrcVT = SV->getSimpleValueType(0);
4812   SDValue V1 = SV->getOperand(0);
4813   SDLoc dl(SV);
4814
4815   int EltNo = SV->getSplatIndex();
4816   int NumElems = SrcVT.getVectorNumElements();
4817   bool Is256BitVec = SrcVT.is256BitVector();
4818
4819   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4820          "Unknown how to promote splat for type");
4821
4822   // Extract the 128-bit part containing the splat element and update
4823   // the splat element index when it refers to the higher register.
4824   if (Is256BitVec) {
4825     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4826     if (EltNo >= NumElems/2)
4827       EltNo -= NumElems/2;
4828   }
4829
4830   // All i16 and i8 vector types can't be used directly by a generic shuffle
4831   // instruction because the target has no such instruction. Generate shuffles
4832   // which repeat i16 and i8 several times until they fit in i32, and then can
4833   // be manipulated by target suported shuffles.
4834   MVT EltVT = SrcVT.getVectorElementType();
4835   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4836     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4837
4838   // Recreate the 256-bit vector and place the same 128-bit vector
4839   // into the low and high part. This is necessary because we want
4840   // to use VPERM* to shuffle the vectors
4841   if (Is256BitVec) {
4842     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4843   }
4844
4845   return getLegalSplat(DAG, V1, EltNo);
4846 }
4847
4848 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4849 /// vector of zero or undef vector.  This produces a shuffle where the low
4850 /// element of V2 is swizzled into the zero/undef vector, landing at element
4851 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4852 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4853                                            bool IsZero,
4854                                            const X86Subtarget *Subtarget,
4855                                            SelectionDAG &DAG) {
4856   MVT VT = V2.getSimpleValueType();
4857   SDValue V1 = IsZero
4858     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4859   unsigned NumElems = VT.getVectorNumElements();
4860   SmallVector<int, 16> MaskVec;
4861   for (unsigned i = 0; i != NumElems; ++i)
4862     // If this is the insertion idx, put the low elt of V2 here.
4863     MaskVec.push_back(i == Idx ? NumElems : i);
4864   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4865 }
4866
4867 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4868 /// target specific opcode. Returns true if the Mask could be calculated.
4869 /// Sets IsUnary to true if only uses one source.
4870 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4871                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4872   unsigned NumElems = VT.getVectorNumElements();
4873   SDValue ImmN;
4874
4875   IsUnary = false;
4876   switch(N->getOpcode()) {
4877   case X86ISD::SHUFP:
4878     ImmN = N->getOperand(N->getNumOperands()-1);
4879     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4880     break;
4881   case X86ISD::UNPCKH:
4882     DecodeUNPCKHMask(VT, Mask);
4883     break;
4884   case X86ISD::UNPCKL:
4885     DecodeUNPCKLMask(VT, Mask);
4886     break;
4887   case X86ISD::MOVHLPS:
4888     DecodeMOVHLPSMask(NumElems, Mask);
4889     break;
4890   case X86ISD::MOVLHPS:
4891     DecodeMOVLHPSMask(NumElems, Mask);
4892     break;
4893   case X86ISD::PALIGNR:
4894     ImmN = N->getOperand(N->getNumOperands()-1);
4895     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4896     break;
4897   case X86ISD::PSHUFD:
4898   case X86ISD::VPERMILP:
4899     ImmN = N->getOperand(N->getNumOperands()-1);
4900     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4901     IsUnary = true;
4902     break;
4903   case X86ISD::PSHUFHW:
4904     ImmN = N->getOperand(N->getNumOperands()-1);
4905     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4906     IsUnary = true;
4907     break;
4908   case X86ISD::PSHUFLW:
4909     ImmN = N->getOperand(N->getNumOperands()-1);
4910     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4911     IsUnary = true;
4912     break;
4913   case X86ISD::VPERMI:
4914     ImmN = N->getOperand(N->getNumOperands()-1);
4915     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4916     IsUnary = true;
4917     break;
4918   case X86ISD::MOVSS:
4919   case X86ISD::MOVSD: {
4920     // The index 0 always comes from the first element of the second source,
4921     // this is why MOVSS and MOVSD are used in the first place. The other
4922     // elements come from the other positions of the first source vector
4923     Mask.push_back(NumElems);
4924     for (unsigned i = 1; i != NumElems; ++i) {
4925       Mask.push_back(i);
4926     }
4927     break;
4928   }
4929   case X86ISD::VPERM2X128:
4930     ImmN = N->getOperand(N->getNumOperands()-1);
4931     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4932     if (Mask.empty()) return false;
4933     break;
4934   case X86ISD::MOVDDUP:
4935   case X86ISD::MOVLHPD:
4936   case X86ISD::MOVLPD:
4937   case X86ISD::MOVLPS:
4938   case X86ISD::MOVSHDUP:
4939   case X86ISD::MOVSLDUP:
4940     // Not yet implemented
4941     return false;
4942   default: llvm_unreachable("unknown target shuffle node");
4943   }
4944
4945   return true;
4946 }
4947
4948 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4949 /// element of the result of the vector shuffle.
4950 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4951                                    unsigned Depth) {
4952   if (Depth == 6)
4953     return SDValue();  // Limit search depth.
4954
4955   SDValue V = SDValue(N, 0);
4956   EVT VT = V.getValueType();
4957   unsigned Opcode = V.getOpcode();
4958
4959   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4960   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4961     int Elt = SV->getMaskElt(Index);
4962
4963     if (Elt < 0)
4964       return DAG.getUNDEF(VT.getVectorElementType());
4965
4966     unsigned NumElems = VT.getVectorNumElements();
4967     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4968                                          : SV->getOperand(1);
4969     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
4970   }
4971
4972   // Recurse into target specific vector shuffles to find scalars.
4973   if (isTargetShuffle(Opcode)) {
4974     MVT ShufVT = V.getSimpleValueType();
4975     unsigned NumElems = ShufVT.getVectorNumElements();
4976     SmallVector<int, 16> ShuffleMask;
4977     bool IsUnary;
4978
4979     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
4980       return SDValue();
4981
4982     int Elt = ShuffleMask[Index];
4983     if (Elt < 0)
4984       return DAG.getUNDEF(ShufVT.getVectorElementType());
4985
4986     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
4987                                          : N->getOperand(1);
4988     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
4989                                Depth+1);
4990   }
4991
4992   // Actual nodes that may contain scalar elements
4993   if (Opcode == ISD::BITCAST) {
4994     V = V.getOperand(0);
4995     EVT SrcVT = V.getValueType();
4996     unsigned NumElems = VT.getVectorNumElements();
4997
4998     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4999       return SDValue();
5000   }
5001
5002   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5003     return (Index == 0) ? V.getOperand(0)
5004                         : DAG.getUNDEF(VT.getVectorElementType());
5005
5006   if (V.getOpcode() == ISD::BUILD_VECTOR)
5007     return V.getOperand(Index);
5008
5009   return SDValue();
5010 }
5011
5012 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5013 /// shuffle operation which come from a consecutively from a zero. The
5014 /// search can start in two different directions, from left or right.
5015 /// We count undefs as zeros until PreferredNum is reached.
5016 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5017                                          unsigned NumElems, bool ZerosFromLeft,
5018                                          SelectionDAG &DAG,
5019                                          unsigned PreferredNum = -1U) {
5020   unsigned NumZeros = 0;
5021   for (unsigned i = 0; i != NumElems; ++i) {
5022     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5023     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5024     if (!Elt.getNode())
5025       break;
5026
5027     if (X86::isZeroNode(Elt))
5028       ++NumZeros;
5029     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5030       NumZeros = std::min(NumZeros + 1, PreferredNum);
5031     else
5032       break;
5033   }
5034
5035   return NumZeros;
5036 }
5037
5038 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5039 /// correspond consecutively to elements from one of the vector operands,
5040 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5041 static
5042 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5043                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5044                               unsigned NumElems, unsigned &OpNum) {
5045   bool SeenV1 = false;
5046   bool SeenV2 = false;
5047
5048   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5049     int Idx = SVOp->getMaskElt(i);
5050     // Ignore undef indicies
5051     if (Idx < 0)
5052       continue;
5053
5054     if (Idx < (int)NumElems)
5055       SeenV1 = true;
5056     else
5057       SeenV2 = true;
5058
5059     // Only accept consecutive elements from the same vector
5060     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5061       return false;
5062   }
5063
5064   OpNum = SeenV1 ? 0 : 1;
5065   return true;
5066 }
5067
5068 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5069 /// logical left shift of a vector.
5070 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5071                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5072   unsigned NumElems =
5073     SVOp->getSimpleValueType(0).getVectorNumElements();
5074   unsigned NumZeros = getNumOfConsecutiveZeros(
5075       SVOp, NumElems, false /* check zeros from right */, DAG,
5076       SVOp->getMaskElt(0));
5077   unsigned OpSrc;
5078
5079   if (!NumZeros)
5080     return false;
5081
5082   // Considering the elements in the mask that are not consecutive zeros,
5083   // check if they consecutively come from only one of the source vectors.
5084   //
5085   //               V1 = {X, A, B, C}     0
5086   //                         \  \  \    /
5087   //   vector_shuffle V1, V2 <1, 2, 3, X>
5088   //
5089   if (!isShuffleMaskConsecutive(SVOp,
5090             0,                   // Mask Start Index
5091             NumElems-NumZeros,   // Mask End Index(exclusive)
5092             NumZeros,            // Where to start looking in the src vector
5093             NumElems,            // Number of elements in vector
5094             OpSrc))              // Which source operand ?
5095     return false;
5096
5097   isLeft = false;
5098   ShAmt = NumZeros;
5099   ShVal = SVOp->getOperand(OpSrc);
5100   return true;
5101 }
5102
5103 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5104 /// logical left shift of a vector.
5105 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5106                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5107   unsigned NumElems =
5108     SVOp->getSimpleValueType(0).getVectorNumElements();
5109   unsigned NumZeros = getNumOfConsecutiveZeros(
5110       SVOp, NumElems, true /* check zeros from left */, DAG,
5111       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5112   unsigned OpSrc;
5113
5114   if (!NumZeros)
5115     return false;
5116
5117   // Considering the elements in the mask that are not consecutive zeros,
5118   // check if they consecutively come from only one of the source vectors.
5119   //
5120   //                           0    { A, B, X, X } = V2
5121   //                          / \    /  /
5122   //   vector_shuffle V1, V2 <X, X, 4, 5>
5123   //
5124   if (!isShuffleMaskConsecutive(SVOp,
5125             NumZeros,     // Mask Start Index
5126             NumElems,     // Mask End Index(exclusive)
5127             0,            // Where to start looking in the src vector
5128             NumElems,     // Number of elements in vector
5129             OpSrc))       // Which source operand ?
5130     return false;
5131
5132   isLeft = true;
5133   ShAmt = NumZeros;
5134   ShVal = SVOp->getOperand(OpSrc);
5135   return true;
5136 }
5137
5138 /// isVectorShift - Returns true if the shuffle can be implemented as a
5139 /// logical left or right shift of a vector.
5140 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5141                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5142   // Although the logic below support any bitwidth size, there are no
5143   // shift instructions which handle more than 128-bit vectors.
5144   if (!SVOp->getSimpleValueType(0).is128BitVector())
5145     return false;
5146
5147   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5148       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5149     return true;
5150
5151   return false;
5152 }
5153
5154 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5155 ///
5156 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5157                                        unsigned NumNonZero, unsigned NumZero,
5158                                        SelectionDAG &DAG,
5159                                        const X86Subtarget* Subtarget,
5160                                        const TargetLowering &TLI) {
5161   if (NumNonZero > 8)
5162     return SDValue();
5163
5164   SDLoc dl(Op);
5165   SDValue V(0, 0);
5166   bool First = true;
5167   for (unsigned i = 0; i < 16; ++i) {
5168     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5169     if (ThisIsNonZero && First) {
5170       if (NumZero)
5171         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5172       else
5173         V = DAG.getUNDEF(MVT::v8i16);
5174       First = false;
5175     }
5176
5177     if ((i & 1) != 0) {
5178       SDValue ThisElt(0, 0), LastElt(0, 0);
5179       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5180       if (LastIsNonZero) {
5181         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5182                               MVT::i16, Op.getOperand(i-1));
5183       }
5184       if (ThisIsNonZero) {
5185         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5186         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5187                               ThisElt, DAG.getConstant(8, MVT::i8));
5188         if (LastIsNonZero)
5189           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5190       } else
5191         ThisElt = LastElt;
5192
5193       if (ThisElt.getNode())
5194         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5195                         DAG.getIntPtrConstant(i/2));
5196     }
5197   }
5198
5199   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5200 }
5201
5202 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5203 ///
5204 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5205                                      unsigned NumNonZero, unsigned NumZero,
5206                                      SelectionDAG &DAG,
5207                                      const X86Subtarget* Subtarget,
5208                                      const TargetLowering &TLI) {
5209   if (NumNonZero > 4)
5210     return SDValue();
5211
5212   SDLoc dl(Op);
5213   SDValue V(0, 0);
5214   bool First = true;
5215   for (unsigned i = 0; i < 8; ++i) {
5216     bool isNonZero = (NonZeros & (1 << i)) != 0;
5217     if (isNonZero) {
5218       if (First) {
5219         if (NumZero)
5220           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5221         else
5222           V = DAG.getUNDEF(MVT::v8i16);
5223         First = false;
5224       }
5225       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5226                       MVT::v8i16, V, Op.getOperand(i),
5227                       DAG.getIntPtrConstant(i));
5228     }
5229   }
5230
5231   return V;
5232 }
5233
5234 /// getVShift - Return a vector logical shift node.
5235 ///
5236 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5237                          unsigned NumBits, SelectionDAG &DAG,
5238                          const TargetLowering &TLI, SDLoc dl) {
5239   assert(VT.is128BitVector() && "Unknown type for VShift");
5240   EVT ShVT = MVT::v2i64;
5241   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5242   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5243   return DAG.getNode(ISD::BITCAST, dl, VT,
5244                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5245                              DAG.getConstant(NumBits,
5246                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5247 }
5248
5249 static SDValue
5250 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5251
5252   // Check if the scalar load can be widened into a vector load. And if
5253   // the address is "base + cst" see if the cst can be "absorbed" into
5254   // the shuffle mask.
5255   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5256     SDValue Ptr = LD->getBasePtr();
5257     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5258       return SDValue();
5259     EVT PVT = LD->getValueType(0);
5260     if (PVT != MVT::i32 && PVT != MVT::f32)
5261       return SDValue();
5262
5263     int FI = -1;
5264     int64_t Offset = 0;
5265     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5266       FI = FINode->getIndex();
5267       Offset = 0;
5268     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5269                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5270       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5271       Offset = Ptr.getConstantOperandVal(1);
5272       Ptr = Ptr.getOperand(0);
5273     } else {
5274       return SDValue();
5275     }
5276
5277     // FIXME: 256-bit vector instructions don't require a strict alignment,
5278     // improve this code to support it better.
5279     unsigned RequiredAlign = VT.getSizeInBits()/8;
5280     SDValue Chain = LD->getChain();
5281     // Make sure the stack object alignment is at least 16 or 32.
5282     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5283     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5284       if (MFI->isFixedObjectIndex(FI)) {
5285         // Can't change the alignment. FIXME: It's possible to compute
5286         // the exact stack offset and reference FI + adjust offset instead.
5287         // If someone *really* cares about this. That's the way to implement it.
5288         return SDValue();
5289       } else {
5290         MFI->setObjectAlignment(FI, RequiredAlign);
5291       }
5292     }
5293
5294     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5295     // Ptr + (Offset & ~15).
5296     if (Offset < 0)
5297       return SDValue();
5298     if ((Offset % RequiredAlign) & 3)
5299       return SDValue();
5300     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5301     if (StartOffset)
5302       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5303                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5304
5305     int EltNo = (Offset - StartOffset) >> 2;
5306     unsigned NumElems = VT.getVectorNumElements();
5307
5308     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5309     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5310                              LD->getPointerInfo().getWithOffset(StartOffset),
5311                              false, false, false, 0);
5312
5313     SmallVector<int, 8> Mask;
5314     for (unsigned i = 0; i != NumElems; ++i)
5315       Mask.push_back(EltNo);
5316
5317     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5318   }
5319
5320   return SDValue();
5321 }
5322
5323 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5324 /// vector of type 'VT', see if the elements can be replaced by a single large
5325 /// load which has the same value as a build_vector whose operands are 'elts'.
5326 ///
5327 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5328 ///
5329 /// FIXME: we'd also like to handle the case where the last elements are zero
5330 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5331 /// There's even a handy isZeroNode for that purpose.
5332 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5333                                         SDLoc &DL, SelectionDAG &DAG) {
5334   EVT EltVT = VT.getVectorElementType();
5335   unsigned NumElems = Elts.size();
5336
5337   LoadSDNode *LDBase = NULL;
5338   unsigned LastLoadedElt = -1U;
5339
5340   // For each element in the initializer, see if we've found a load or an undef.
5341   // If we don't find an initial load element, or later load elements are
5342   // non-consecutive, bail out.
5343   for (unsigned i = 0; i < NumElems; ++i) {
5344     SDValue Elt = Elts[i];
5345
5346     if (!Elt.getNode() ||
5347         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5348       return SDValue();
5349     if (!LDBase) {
5350       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5351         return SDValue();
5352       LDBase = cast<LoadSDNode>(Elt.getNode());
5353       LastLoadedElt = i;
5354       continue;
5355     }
5356     if (Elt.getOpcode() == ISD::UNDEF)
5357       continue;
5358
5359     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5360     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5361       return SDValue();
5362     LastLoadedElt = i;
5363   }
5364
5365   // If we have found an entire vector of loads and undefs, then return a large
5366   // load of the entire vector width starting at the base pointer.  If we found
5367   // consecutive loads for the low half, generate a vzext_load node.
5368   if (LastLoadedElt == NumElems - 1) {
5369     SDValue NewLd = SDValue();
5370     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5371       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5372                           LDBase->getPointerInfo(),
5373                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5374                           LDBase->isInvariant(), 0);
5375     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5376                         LDBase->getPointerInfo(),
5377                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5378                         LDBase->isInvariant(), LDBase->getAlignment());
5379
5380     if (LDBase->hasAnyUseOfValue(1)) {
5381       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5382                                      SDValue(LDBase, 1),
5383                                      SDValue(NewLd.getNode(), 1));
5384       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5385       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5386                              SDValue(NewLd.getNode(), 1));
5387     }
5388
5389     return NewLd;
5390   }
5391   if (NumElems == 4 && LastLoadedElt == 1 &&
5392       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5393     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5394     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5395     SDValue ResNode =
5396         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5397                                 array_lengthof(Ops), MVT::i64,
5398                                 LDBase->getPointerInfo(),
5399                                 LDBase->getAlignment(),
5400                                 false/*isVolatile*/, true/*ReadMem*/,
5401                                 false/*WriteMem*/);
5402
5403     // Make sure the newly-created LOAD is in the same position as LDBase in
5404     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5405     // update uses of LDBase's output chain to use the TokenFactor.
5406     if (LDBase->hasAnyUseOfValue(1)) {
5407       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5408                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5409       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5410       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5411                              SDValue(ResNode.getNode(), 1));
5412     }
5413
5414     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5415   }
5416   return SDValue();
5417 }
5418
5419 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5420 /// to generate a splat value for the following cases:
5421 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5422 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5423 /// a scalar load, or a constant.
5424 /// The VBROADCAST node is returned when a pattern is found,
5425 /// or SDValue() otherwise.
5426 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5427                                     SelectionDAG &DAG) {
5428   if (!Subtarget->hasFp256())
5429     return SDValue();
5430
5431   MVT VT = Op.getSimpleValueType();
5432   SDLoc dl(Op);
5433
5434   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5435          "Unsupported vector type for broadcast.");
5436
5437   SDValue Ld;
5438   bool ConstSplatVal;
5439
5440   switch (Op.getOpcode()) {
5441     default:
5442       // Unknown pattern found.
5443       return SDValue();
5444
5445     case ISD::BUILD_VECTOR: {
5446       // The BUILD_VECTOR node must be a splat.
5447       if (!isSplatVector(Op.getNode()))
5448         return SDValue();
5449
5450       Ld = Op.getOperand(0);
5451       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5452                      Ld.getOpcode() == ISD::ConstantFP);
5453
5454       // The suspected load node has several users. Make sure that all
5455       // of its users are from the BUILD_VECTOR node.
5456       // Constants may have multiple users.
5457       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5458         return SDValue();
5459       break;
5460     }
5461
5462     case ISD::VECTOR_SHUFFLE: {
5463       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5464
5465       // Shuffles must have a splat mask where the first element is
5466       // broadcasted.
5467       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5468         return SDValue();
5469
5470       SDValue Sc = Op.getOperand(0);
5471       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5472           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5473
5474         if (!Subtarget->hasInt256())
5475           return SDValue();
5476
5477         // Use the register form of the broadcast instruction available on AVX2.
5478         if (VT.getSizeInBits() >= 256)
5479           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5480         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5481       }
5482
5483       Ld = Sc.getOperand(0);
5484       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5485                        Ld.getOpcode() == ISD::ConstantFP);
5486
5487       // The scalar_to_vector node and the suspected
5488       // load node must have exactly one user.
5489       // Constants may have multiple users.
5490
5491       // AVX-512 has register version of the broadcast
5492       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5493         Ld.getValueType().getSizeInBits() >= 32;
5494       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5495           !hasRegVer))
5496         return SDValue();
5497       break;
5498     }
5499   }
5500
5501   bool IsGE256 = (VT.getSizeInBits() >= 256);
5502
5503   // Handle the broadcasting a single constant scalar from the constant pool
5504   // into a vector. On Sandybridge it is still better to load a constant vector
5505   // from the constant pool and not to broadcast it from a scalar.
5506   if (ConstSplatVal && Subtarget->hasInt256()) {
5507     EVT CVT = Ld.getValueType();
5508     assert(!CVT.isVector() && "Must not broadcast a vector type");
5509     unsigned ScalarSize = CVT.getSizeInBits();
5510
5511     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5512       const Constant *C = 0;
5513       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5514         C = CI->getConstantIntValue();
5515       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5516         C = CF->getConstantFPValue();
5517
5518       assert(C && "Invalid constant type");
5519
5520       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5521       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5522       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5523       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5524                        MachinePointerInfo::getConstantPool(),
5525                        false, false, false, Alignment);
5526
5527       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5528     }
5529   }
5530
5531   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5532   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5533
5534   // Handle AVX2 in-register broadcasts.
5535   if (!IsLoad && Subtarget->hasInt256() &&
5536       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5537     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5538
5539   // The scalar source must be a normal load.
5540   if (!IsLoad)
5541     return SDValue();
5542
5543   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5544     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5545
5546   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5547   // double since there is no vbroadcastsd xmm
5548   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5549     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5550       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5551   }
5552
5553   // Unsupported broadcast.
5554   return SDValue();
5555 }
5556
5557 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5558   MVT VT = Op.getSimpleValueType();
5559
5560   // Skip if insert_vec_elt is not supported.
5561   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5562   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5563     return SDValue();
5564
5565   SDLoc DL(Op);
5566   unsigned NumElems = Op.getNumOperands();
5567
5568   SDValue VecIn1;
5569   SDValue VecIn2;
5570   SmallVector<unsigned, 4> InsertIndices;
5571   SmallVector<int, 8> Mask(NumElems, -1);
5572
5573   for (unsigned i = 0; i != NumElems; ++i) {
5574     unsigned Opc = Op.getOperand(i).getOpcode();
5575
5576     if (Opc == ISD::UNDEF)
5577       continue;
5578
5579     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5580       // Quit if more than 1 elements need inserting.
5581       if (InsertIndices.size() > 1)
5582         return SDValue();
5583
5584       InsertIndices.push_back(i);
5585       continue;
5586     }
5587
5588     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5589     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5590
5591     // Quit if extracted from vector of different type.
5592     if (ExtractedFromVec.getValueType() != VT)
5593       return SDValue();
5594
5595     // Quit if non-constant index.
5596     if (!isa<ConstantSDNode>(ExtIdx))
5597       return SDValue();
5598
5599     if (VecIn1.getNode() == 0)
5600       VecIn1 = ExtractedFromVec;
5601     else if (VecIn1 != ExtractedFromVec) {
5602       if (VecIn2.getNode() == 0)
5603         VecIn2 = ExtractedFromVec;
5604       else if (VecIn2 != ExtractedFromVec)
5605         // Quit if more than 2 vectors to shuffle
5606         return SDValue();
5607     }
5608
5609     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5610
5611     if (ExtractedFromVec == VecIn1)
5612       Mask[i] = Idx;
5613     else if (ExtractedFromVec == VecIn2)
5614       Mask[i] = Idx + NumElems;
5615   }
5616
5617   if (VecIn1.getNode() == 0)
5618     return SDValue();
5619
5620   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5621   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5622   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5623     unsigned Idx = InsertIndices[i];
5624     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5625                      DAG.getIntPtrConstant(Idx));
5626   }
5627
5628   return NV;
5629 }
5630
5631 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5632 SDValue
5633 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5634
5635   MVT VT = Op.getSimpleValueType();
5636   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5637          "Unexpected type in LowerBUILD_VECTORvXi1!");
5638
5639   SDLoc dl(Op);
5640   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5641     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5642     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5643                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5644     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5645                        Ops, VT.getVectorNumElements());
5646   }
5647
5648   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5649     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5650     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5651                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5652     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5653                        Ops, VT.getVectorNumElements());
5654   }
5655
5656   bool AllContants = true;
5657   uint64_t Immediate = 0;
5658   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5659     SDValue In = Op.getOperand(idx);
5660     if (In.getOpcode() == ISD::UNDEF)
5661       continue;
5662     if (!isa<ConstantSDNode>(In)) {
5663       AllContants = false;
5664       break;
5665     }
5666     if (cast<ConstantSDNode>(In)->getZExtValue())
5667       Immediate |= (1ULL << idx);
5668   }
5669
5670   if (AllContants) {
5671     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5672       DAG.getConstant(Immediate, MVT::i16));
5673     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5674                        DAG.getIntPtrConstant(0));
5675   }
5676
5677   if (!isSplatVector(Op.getNode()))
5678     llvm_unreachable("Unsupported predicate operation");
5679
5680   SDValue In = Op.getOperand(0);
5681   SDValue EFLAGS, X86CC;
5682   if (In.getOpcode() == ISD::SETCC) {
5683     SDValue Op0 = In.getOperand(0);
5684     SDValue Op1 = In.getOperand(1);
5685     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5686     bool isFP = Op1.getValueType().isFloatingPoint();
5687     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5688
5689     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5690
5691     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5692     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5693     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5694   } else if (In.getOpcode() == X86ISD::SETCC) {
5695     X86CC = In.getOperand(0);
5696     EFLAGS = In.getOperand(1);
5697   } else {
5698     // The algorithm:
5699     //   Bit1 = In & 0x1
5700     //   if (Bit1 != 0)
5701     //     ZF = 0
5702     //   else
5703     //     ZF = 1
5704     //   if (ZF == 0)
5705     //     res = allOnes ### CMOVNE -1, %res
5706     //   else
5707     //     res = allZero
5708     MVT InVT = In.getSimpleValueType();
5709     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5710     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5711     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5712   }
5713
5714   if (VT == MVT::v16i1) {
5715     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5716     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5717     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5718           Cst0, Cst1, X86CC, EFLAGS);
5719     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5720   }
5721
5722   if (VT == MVT::v8i1) {
5723     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5724     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5725     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5726           Cst0, Cst1, X86CC, EFLAGS);
5727     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5728     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5729   }
5730   llvm_unreachable("Unsupported predicate operation");
5731 }
5732
5733 SDValue
5734 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5735   SDLoc dl(Op);
5736
5737   MVT VT = Op.getSimpleValueType();
5738   MVT ExtVT = VT.getVectorElementType();
5739   unsigned NumElems = Op.getNumOperands();
5740
5741   // Generate vectors for predicate vectors.
5742   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5743     return LowerBUILD_VECTORvXi1(Op, DAG);
5744
5745   // Vectors containing all zeros can be matched by pxor and xorps later
5746   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5747     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5748     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5749     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5750       return Op;
5751
5752     return getZeroVector(VT, Subtarget, DAG, dl);
5753   }
5754
5755   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5756   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5757   // vpcmpeqd on 256-bit vectors.
5758   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5759     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5760       return Op;
5761
5762     return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5763   }
5764
5765   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5766   if (Broadcast.getNode())
5767     return Broadcast;
5768
5769   unsigned EVTBits = ExtVT.getSizeInBits();
5770
5771   unsigned NumZero  = 0;
5772   unsigned NumNonZero = 0;
5773   unsigned NonZeros = 0;
5774   bool IsAllConstants = true;
5775   SmallSet<SDValue, 8> Values;
5776   for (unsigned i = 0; i < NumElems; ++i) {
5777     SDValue Elt = Op.getOperand(i);
5778     if (Elt.getOpcode() == ISD::UNDEF)
5779       continue;
5780     Values.insert(Elt);
5781     if (Elt.getOpcode() != ISD::Constant &&
5782         Elt.getOpcode() != ISD::ConstantFP)
5783       IsAllConstants = false;
5784     if (X86::isZeroNode(Elt))
5785       NumZero++;
5786     else {
5787       NonZeros |= (1 << i);
5788       NumNonZero++;
5789     }
5790   }
5791
5792   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5793   if (NumNonZero == 0)
5794     return DAG.getUNDEF(VT);
5795
5796   // Special case for single non-zero, non-undef, element.
5797   if (NumNonZero == 1) {
5798     unsigned Idx = countTrailingZeros(NonZeros);
5799     SDValue Item = Op.getOperand(Idx);
5800
5801     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5802     // the value are obviously zero, truncate the value to i32 and do the
5803     // insertion that way.  Only do this if the value is non-constant or if the
5804     // value is a constant being inserted into element 0.  It is cheaper to do
5805     // a constant pool load than it is to do a movd + shuffle.
5806     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5807         (!IsAllConstants || Idx == 0)) {
5808       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5809         // Handle SSE only.
5810         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5811         EVT VecVT = MVT::v4i32;
5812         unsigned VecElts = 4;
5813
5814         // Truncate the value (which may itself be a constant) to i32, and
5815         // convert it to a vector with movd (S2V+shuffle to zero extend).
5816         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5817         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5818         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5819
5820         // Now we have our 32-bit value zero extended in the low element of
5821         // a vector.  If Idx != 0, swizzle it into place.
5822         if (Idx != 0) {
5823           SmallVector<int, 4> Mask;
5824           Mask.push_back(Idx);
5825           for (unsigned i = 1; i != VecElts; ++i)
5826             Mask.push_back(i);
5827           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5828                                       &Mask[0]);
5829         }
5830         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5831       }
5832     }
5833
5834     // If we have a constant or non-constant insertion into the low element of
5835     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5836     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5837     // depending on what the source datatype is.
5838     if (Idx == 0) {
5839       if (NumZero == 0)
5840         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5841
5842       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5843           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5844         if (VT.is256BitVector()) {
5845           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5846           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5847                              Item, DAG.getIntPtrConstant(0));
5848         }
5849         assert(VT.is128BitVector() && "Expected an SSE value type!");
5850         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5851         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5852         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5853       }
5854
5855       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5856         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5857         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5858         if (VT.is256BitVector()) {
5859           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5860           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5861         } else {
5862           assert(VT.is128BitVector() && "Expected an SSE value type!");
5863           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5864         }
5865         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5866       }
5867     }
5868
5869     // Is it a vector logical left shift?
5870     if (NumElems == 2 && Idx == 1 &&
5871         X86::isZeroNode(Op.getOperand(0)) &&
5872         !X86::isZeroNode(Op.getOperand(1))) {
5873       unsigned NumBits = VT.getSizeInBits();
5874       return getVShift(true, VT,
5875                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5876                                    VT, Op.getOperand(1)),
5877                        NumBits/2, DAG, *this, dl);
5878     }
5879
5880     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5881       return SDValue();
5882
5883     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5884     // is a non-constant being inserted into an element other than the low one,
5885     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5886     // movd/movss) to move this into the low element, then shuffle it into
5887     // place.
5888     if (EVTBits == 32) {
5889       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5890
5891       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5892       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5893       SmallVector<int, 8> MaskVec;
5894       for (unsigned i = 0; i != NumElems; ++i)
5895         MaskVec.push_back(i == Idx ? 0 : 1);
5896       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5897     }
5898   }
5899
5900   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5901   if (Values.size() == 1) {
5902     if (EVTBits == 32) {
5903       // Instead of a shuffle like this:
5904       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5905       // Check if it's possible to issue this instead.
5906       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5907       unsigned Idx = countTrailingZeros(NonZeros);
5908       SDValue Item = Op.getOperand(Idx);
5909       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5910         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5911     }
5912     return SDValue();
5913   }
5914
5915   // A vector full of immediates; various special cases are already
5916   // handled, so this is best done with a single constant-pool load.
5917   if (IsAllConstants)
5918     return SDValue();
5919
5920   // For AVX-length vectors, build the individual 128-bit pieces and use
5921   // shuffles to put them in place.
5922   if (VT.is256BitVector()) {
5923     SmallVector<SDValue, 32> V;
5924     for (unsigned i = 0; i != NumElems; ++i)
5925       V.push_back(Op.getOperand(i));
5926
5927     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5928
5929     // Build both the lower and upper subvector.
5930     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5931     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5932                                 NumElems/2);
5933
5934     // Recreate the wider vector with the lower and upper part.
5935     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5936   }
5937
5938   // Let legalizer expand 2-wide build_vectors.
5939   if (EVTBits == 64) {
5940     if (NumNonZero == 1) {
5941       // One half is zero or undef.
5942       unsigned Idx = countTrailingZeros(NonZeros);
5943       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5944                                  Op.getOperand(Idx));
5945       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5946     }
5947     return SDValue();
5948   }
5949
5950   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5951   if (EVTBits == 8 && NumElems == 16) {
5952     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5953                                         Subtarget, *this);
5954     if (V.getNode()) return V;
5955   }
5956
5957   if (EVTBits == 16 && NumElems == 8) {
5958     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
5959                                       Subtarget, *this);
5960     if (V.getNode()) return V;
5961   }
5962
5963   // If element VT is == 32 bits, turn it into a number of shuffles.
5964   SmallVector<SDValue, 8> V(NumElems);
5965   if (NumElems == 4 && NumZero > 0) {
5966     for (unsigned i = 0; i < 4; ++i) {
5967       bool isZero = !(NonZeros & (1 << i));
5968       if (isZero)
5969         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
5970       else
5971         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5972     }
5973
5974     for (unsigned i = 0; i < 2; ++i) {
5975       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5976         default: break;
5977         case 0:
5978           V[i] = V[i*2];  // Must be a zero vector.
5979           break;
5980         case 1:
5981           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
5982           break;
5983         case 2:
5984           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
5985           break;
5986         case 3:
5987           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
5988           break;
5989       }
5990     }
5991
5992     bool Reverse1 = (NonZeros & 0x3) == 2;
5993     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5994     int MaskVec[] = {
5995       Reverse1 ? 1 : 0,
5996       Reverse1 ? 0 : 1,
5997       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
5998       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
5999     };
6000     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6001   }
6002
6003   if (Values.size() > 1 && VT.is128BitVector()) {
6004     // Check for a build vector of consecutive loads.
6005     for (unsigned i = 0; i < NumElems; ++i)
6006       V[i] = Op.getOperand(i);
6007
6008     // Check for elements which are consecutive loads.
6009     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
6010     if (LD.getNode())
6011       return LD;
6012
6013     // Check for a build vector from mostly shuffle plus few inserting.
6014     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6015     if (Sh.getNode())
6016       return Sh;
6017
6018     // For SSE 4.1, use insertps to put the high elements into the low element.
6019     if (getSubtarget()->hasSSE41()) {
6020       SDValue Result;
6021       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6022         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6023       else
6024         Result = DAG.getUNDEF(VT);
6025
6026       for (unsigned i = 1; i < NumElems; ++i) {
6027         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6028         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6029                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6030       }
6031       return Result;
6032     }
6033
6034     // Otherwise, expand into a number of unpckl*, start by extending each of
6035     // our (non-undef) elements to the full vector width with the element in the
6036     // bottom slot of the vector (which generates no code for SSE).
6037     for (unsigned i = 0; i < NumElems; ++i) {
6038       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6039         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6040       else
6041         V[i] = DAG.getUNDEF(VT);
6042     }
6043
6044     // Next, we iteratively mix elements, e.g. for v4f32:
6045     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6046     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6047     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6048     unsigned EltStride = NumElems >> 1;
6049     while (EltStride != 0) {
6050       for (unsigned i = 0; i < EltStride; ++i) {
6051         // If V[i+EltStride] is undef and this is the first round of mixing,
6052         // then it is safe to just drop this shuffle: V[i] is already in the
6053         // right place, the one element (since it's the first round) being
6054         // inserted as undef can be dropped.  This isn't safe for successive
6055         // rounds because they will permute elements within both vectors.
6056         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6057             EltStride == NumElems/2)
6058           continue;
6059
6060         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6061       }
6062       EltStride >>= 1;
6063     }
6064     return V[0];
6065   }
6066   return SDValue();
6067 }
6068
6069 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6070 // to create 256-bit vectors from two other 128-bit ones.
6071 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6072   SDLoc dl(Op);
6073   MVT ResVT = Op.getSimpleValueType();
6074
6075   assert((ResVT.is256BitVector() ||
6076           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6077
6078   SDValue V1 = Op.getOperand(0);
6079   SDValue V2 = Op.getOperand(1);
6080   unsigned NumElems = ResVT.getVectorNumElements();
6081   if(ResVT.is256BitVector())
6082     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6083
6084   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6085 }
6086
6087 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6088   assert(Op.getNumOperands() == 2);
6089
6090   // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
6091   // from two other 128-bit ones.
6092   return LowerAVXCONCAT_VECTORS(Op, DAG);
6093 }
6094
6095 // Try to lower a shuffle node into a simple blend instruction.
6096 static SDValue
6097 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6098                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6099   SDValue V1 = SVOp->getOperand(0);
6100   SDValue V2 = SVOp->getOperand(1);
6101   SDLoc dl(SVOp);
6102   MVT VT = SVOp->getSimpleValueType(0);
6103   MVT EltVT = VT.getVectorElementType();
6104   unsigned NumElems = VT.getVectorNumElements();
6105
6106   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6107     return SDValue();
6108   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6109     return SDValue();
6110
6111   // Check the mask for BLEND and build the value.
6112   unsigned MaskValue = 0;
6113   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6114   unsigned NumLanes = (NumElems-1)/8 + 1;
6115   unsigned NumElemsInLane = NumElems / NumLanes;
6116
6117   // Blend for v16i16 should be symetric for the both lanes.
6118   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6119
6120     int SndLaneEltIdx = (NumLanes == 2) ?
6121       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6122     int EltIdx = SVOp->getMaskElt(i);
6123
6124     if ((EltIdx < 0 || EltIdx == (int)i) &&
6125         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6126       continue;
6127
6128     if (((unsigned)EltIdx == (i + NumElems)) &&
6129         (SndLaneEltIdx < 0 ||
6130          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6131       MaskValue |= (1<<i);
6132     else
6133       return SDValue();
6134   }
6135
6136   // Convert i32 vectors to floating point if it is not AVX2.
6137   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6138   MVT BlendVT = VT;
6139   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6140     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6141                                NumElems);
6142     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6143     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6144   }
6145
6146   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6147                             DAG.getConstant(MaskValue, MVT::i32));
6148   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6149 }
6150
6151 // v8i16 shuffles - Prefer shuffles in the following order:
6152 // 1. [all]   pshuflw, pshufhw, optional move
6153 // 2. [ssse3] 1 x pshufb
6154 // 3. [ssse3] 2 x pshufb + 1 x por
6155 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6156 static SDValue
6157 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6158                          SelectionDAG &DAG) {
6159   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6160   SDValue V1 = SVOp->getOperand(0);
6161   SDValue V2 = SVOp->getOperand(1);
6162   SDLoc dl(SVOp);
6163   SmallVector<int, 8> MaskVals;
6164
6165   // Determine if more than 1 of the words in each of the low and high quadwords
6166   // of the result come from the same quadword of one of the two inputs.  Undef
6167   // mask values count as coming from any quadword, for better codegen.
6168   unsigned LoQuad[] = { 0, 0, 0, 0 };
6169   unsigned HiQuad[] = { 0, 0, 0, 0 };
6170   std::bitset<4> InputQuads;
6171   for (unsigned i = 0; i < 8; ++i) {
6172     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6173     int EltIdx = SVOp->getMaskElt(i);
6174     MaskVals.push_back(EltIdx);
6175     if (EltIdx < 0) {
6176       ++Quad[0];
6177       ++Quad[1];
6178       ++Quad[2];
6179       ++Quad[3];
6180       continue;
6181     }
6182     ++Quad[EltIdx / 4];
6183     InputQuads.set(EltIdx / 4);
6184   }
6185
6186   int BestLoQuad = -1;
6187   unsigned MaxQuad = 1;
6188   for (unsigned i = 0; i < 4; ++i) {
6189     if (LoQuad[i] > MaxQuad) {
6190       BestLoQuad = i;
6191       MaxQuad = LoQuad[i];
6192     }
6193   }
6194
6195   int BestHiQuad = -1;
6196   MaxQuad = 1;
6197   for (unsigned i = 0; i < 4; ++i) {
6198     if (HiQuad[i] > MaxQuad) {
6199       BestHiQuad = i;
6200       MaxQuad = HiQuad[i];
6201     }
6202   }
6203
6204   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6205   // of the two input vectors, shuffle them into one input vector so only a
6206   // single pshufb instruction is necessary. If There are more than 2 input
6207   // quads, disable the next transformation since it does not help SSSE3.
6208   bool V1Used = InputQuads[0] || InputQuads[1];
6209   bool V2Used = InputQuads[2] || InputQuads[3];
6210   if (Subtarget->hasSSSE3()) {
6211     if (InputQuads.count() == 2 && V1Used && V2Used) {
6212       BestLoQuad = InputQuads[0] ? 0 : 1;
6213       BestHiQuad = InputQuads[2] ? 2 : 3;
6214     }
6215     if (InputQuads.count() > 2) {
6216       BestLoQuad = -1;
6217       BestHiQuad = -1;
6218     }
6219   }
6220
6221   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6222   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6223   // words from all 4 input quadwords.
6224   SDValue NewV;
6225   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6226     int MaskV[] = {
6227       BestLoQuad < 0 ? 0 : BestLoQuad,
6228       BestHiQuad < 0 ? 1 : BestHiQuad
6229     };
6230     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6231                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6232                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6233     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6234
6235     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6236     // source words for the shuffle, to aid later transformations.
6237     bool AllWordsInNewV = true;
6238     bool InOrder[2] = { true, true };
6239     for (unsigned i = 0; i != 8; ++i) {
6240       int idx = MaskVals[i];
6241       if (idx != (int)i)
6242         InOrder[i/4] = false;
6243       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6244         continue;
6245       AllWordsInNewV = false;
6246       break;
6247     }
6248
6249     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6250     if (AllWordsInNewV) {
6251       for (int i = 0; i != 8; ++i) {
6252         int idx = MaskVals[i];
6253         if (idx < 0)
6254           continue;
6255         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6256         if ((idx != i) && idx < 4)
6257           pshufhw = false;
6258         if ((idx != i) && idx > 3)
6259           pshuflw = false;
6260       }
6261       V1 = NewV;
6262       V2Used = false;
6263       BestLoQuad = 0;
6264       BestHiQuad = 1;
6265     }
6266
6267     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6268     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6269     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6270       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6271       unsigned TargetMask = 0;
6272       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6273                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6274       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6275       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6276                              getShufflePSHUFLWImmediate(SVOp);
6277       V1 = NewV.getOperand(0);
6278       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6279     }
6280   }
6281
6282   // Promote splats to a larger type which usually leads to more efficient code.
6283   // FIXME: Is this true if pshufb is available?
6284   if (SVOp->isSplat())
6285     return PromoteSplat(SVOp, DAG);
6286
6287   // If we have SSSE3, and all words of the result are from 1 input vector,
6288   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6289   // is present, fall back to case 4.
6290   if (Subtarget->hasSSSE3()) {
6291     SmallVector<SDValue,16> pshufbMask;
6292
6293     // If we have elements from both input vectors, set the high bit of the
6294     // shuffle mask element to zero out elements that come from V2 in the V1
6295     // mask, and elements that come from V1 in the V2 mask, so that the two
6296     // results can be OR'd together.
6297     bool TwoInputs = V1Used && V2Used;
6298     for (unsigned i = 0; i != 8; ++i) {
6299       int EltIdx = MaskVals[i] * 2;
6300       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6301       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6302       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6303       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6304     }
6305     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6306     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6307                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6308                                  MVT::v16i8, &pshufbMask[0], 16));
6309     if (!TwoInputs)
6310       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6311
6312     // Calculate the shuffle mask for the second input, shuffle it, and
6313     // OR it with the first shuffled input.
6314     pshufbMask.clear();
6315     for (unsigned i = 0; i != 8; ++i) {
6316       int EltIdx = MaskVals[i] * 2;
6317       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6318       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6319       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6320       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6321     }
6322     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6323     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6324                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6325                                  MVT::v16i8, &pshufbMask[0], 16));
6326     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6327     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6328   }
6329
6330   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6331   // and update MaskVals with new element order.
6332   std::bitset<8> InOrder;
6333   if (BestLoQuad >= 0) {
6334     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6335     for (int i = 0; i != 4; ++i) {
6336       int idx = MaskVals[i];
6337       if (idx < 0) {
6338         InOrder.set(i);
6339       } else if ((idx / 4) == BestLoQuad) {
6340         MaskV[i] = idx & 3;
6341         InOrder.set(i);
6342       }
6343     }
6344     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6345                                 &MaskV[0]);
6346
6347     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6348       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6349       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6350                                   NewV.getOperand(0),
6351                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6352     }
6353   }
6354
6355   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6356   // and update MaskVals with the new element order.
6357   if (BestHiQuad >= 0) {
6358     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6359     for (unsigned i = 4; i != 8; ++i) {
6360       int idx = MaskVals[i];
6361       if (idx < 0) {
6362         InOrder.set(i);
6363       } else if ((idx / 4) == BestHiQuad) {
6364         MaskV[i] = (idx & 3) + 4;
6365         InOrder.set(i);
6366       }
6367     }
6368     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6369                                 &MaskV[0]);
6370
6371     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6372       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6373       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6374                                   NewV.getOperand(0),
6375                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6376     }
6377   }
6378
6379   // In case BestHi & BestLo were both -1, which means each quadword has a word
6380   // from each of the four input quadwords, calculate the InOrder bitvector now
6381   // before falling through to the insert/extract cleanup.
6382   if (BestLoQuad == -1 && BestHiQuad == -1) {
6383     NewV = V1;
6384     for (int i = 0; i != 8; ++i)
6385       if (MaskVals[i] < 0 || MaskVals[i] == i)
6386         InOrder.set(i);
6387   }
6388
6389   // The other elements are put in the right place using pextrw and pinsrw.
6390   for (unsigned i = 0; i != 8; ++i) {
6391     if (InOrder[i])
6392       continue;
6393     int EltIdx = MaskVals[i];
6394     if (EltIdx < 0)
6395       continue;
6396     SDValue ExtOp = (EltIdx < 8) ?
6397       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6398                   DAG.getIntPtrConstant(EltIdx)) :
6399       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6400                   DAG.getIntPtrConstant(EltIdx - 8));
6401     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6402                        DAG.getIntPtrConstant(i));
6403   }
6404   return NewV;
6405 }
6406
6407 // v16i8 shuffles - Prefer shuffles in the following order:
6408 // 1. [ssse3] 1 x pshufb
6409 // 2. [ssse3] 2 x pshufb + 1 x por
6410 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6411 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6412                                         const X86Subtarget* Subtarget,
6413                                         SelectionDAG &DAG) {
6414   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6415   SDValue V1 = SVOp->getOperand(0);
6416   SDValue V2 = SVOp->getOperand(1);
6417   SDLoc dl(SVOp);
6418   ArrayRef<int> MaskVals = SVOp->getMask();
6419
6420   // Promote splats to a larger type which usually leads to more efficient code.
6421   // FIXME: Is this true if pshufb is available?
6422   if (SVOp->isSplat())
6423     return PromoteSplat(SVOp, DAG);
6424
6425   // If we have SSSE3, case 1 is generated when all result bytes come from
6426   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6427   // present, fall back to case 3.
6428
6429   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6430   if (Subtarget->hasSSSE3()) {
6431     SmallVector<SDValue,16> pshufbMask;
6432
6433     // If all result elements are from one input vector, then only translate
6434     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6435     //
6436     // Otherwise, we have elements from both input vectors, and must zero out
6437     // elements that come from V2 in the first mask, and V1 in the second mask
6438     // so that we can OR them together.
6439     for (unsigned i = 0; i != 16; ++i) {
6440       int EltIdx = MaskVals[i];
6441       if (EltIdx < 0 || EltIdx >= 16)
6442         EltIdx = 0x80;
6443       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6444     }
6445     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6446                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6447                                  MVT::v16i8, &pshufbMask[0], 16));
6448
6449     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6450     // the 2nd operand if it's undefined or zero.
6451     if (V2.getOpcode() == ISD::UNDEF ||
6452         ISD::isBuildVectorAllZeros(V2.getNode()))
6453       return V1;
6454
6455     // Calculate the shuffle mask for the second input, shuffle it, and
6456     // OR it with the first shuffled input.
6457     pshufbMask.clear();
6458     for (unsigned i = 0; i != 16; ++i) {
6459       int EltIdx = MaskVals[i];
6460       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6461       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6462     }
6463     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6464                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6465                                  MVT::v16i8, &pshufbMask[0], 16));
6466     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6467   }
6468
6469   // No SSSE3 - Calculate in place words and then fix all out of place words
6470   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6471   // the 16 different words that comprise the two doublequadword input vectors.
6472   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6473   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6474   SDValue NewV = V1;
6475   for (int i = 0; i != 8; ++i) {
6476     int Elt0 = MaskVals[i*2];
6477     int Elt1 = MaskVals[i*2+1];
6478
6479     // This word of the result is all undef, skip it.
6480     if (Elt0 < 0 && Elt1 < 0)
6481       continue;
6482
6483     // This word of the result is already in the correct place, skip it.
6484     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6485       continue;
6486
6487     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6488     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6489     SDValue InsElt;
6490
6491     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6492     // using a single extract together, load it and store it.
6493     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6494       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6495                            DAG.getIntPtrConstant(Elt1 / 2));
6496       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6497                         DAG.getIntPtrConstant(i));
6498       continue;
6499     }
6500
6501     // If Elt1 is defined, extract it from the appropriate source.  If the
6502     // source byte is not also odd, shift the extracted word left 8 bits
6503     // otherwise clear the bottom 8 bits if we need to do an or.
6504     if (Elt1 >= 0) {
6505       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6506                            DAG.getIntPtrConstant(Elt1 / 2));
6507       if ((Elt1 & 1) == 0)
6508         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6509                              DAG.getConstant(8,
6510                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6511       else if (Elt0 >= 0)
6512         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6513                              DAG.getConstant(0xFF00, MVT::i16));
6514     }
6515     // If Elt0 is defined, extract it from the appropriate source.  If the
6516     // source byte is not also even, shift the extracted word right 8 bits. If
6517     // Elt1 was also defined, OR the extracted values together before
6518     // inserting them in the result.
6519     if (Elt0 >= 0) {
6520       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6521                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6522       if ((Elt0 & 1) != 0)
6523         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6524                               DAG.getConstant(8,
6525                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6526       else if (Elt1 >= 0)
6527         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6528                              DAG.getConstant(0x00FF, MVT::i16));
6529       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6530                          : InsElt0;
6531     }
6532     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6533                        DAG.getIntPtrConstant(i));
6534   }
6535   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6536 }
6537
6538 // v32i8 shuffles - Translate to VPSHUFB if possible.
6539 static
6540 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6541                                  const X86Subtarget *Subtarget,
6542                                  SelectionDAG &DAG) {
6543   MVT VT = SVOp->getSimpleValueType(0);
6544   SDValue V1 = SVOp->getOperand(0);
6545   SDValue V2 = SVOp->getOperand(1);
6546   SDLoc dl(SVOp);
6547   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6548
6549   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6550   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6551   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6552
6553   // VPSHUFB may be generated if
6554   // (1) one of input vector is undefined or zeroinitializer.
6555   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6556   // And (2) the mask indexes don't cross the 128-bit lane.
6557   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6558       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6559     return SDValue();
6560
6561   if (V1IsAllZero && !V2IsAllZero) {
6562     CommuteVectorShuffleMask(MaskVals, 32);
6563     V1 = V2;
6564   }
6565   SmallVector<SDValue, 32> pshufbMask;
6566   for (unsigned i = 0; i != 32; i++) {
6567     int EltIdx = MaskVals[i];
6568     if (EltIdx < 0 || EltIdx >= 32)
6569       EltIdx = 0x80;
6570     else {
6571       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6572         // Cross lane is not allowed.
6573         return SDValue();
6574       EltIdx &= 0xf;
6575     }
6576     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6577   }
6578   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6579                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6580                                   MVT::v32i8, &pshufbMask[0], 32));
6581 }
6582
6583 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6584 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6585 /// done when every pair / quad of shuffle mask elements point to elements in
6586 /// the right sequence. e.g.
6587 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6588 static
6589 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6590                                  SelectionDAG &DAG) {
6591   MVT VT = SVOp->getSimpleValueType(0);
6592   SDLoc dl(SVOp);
6593   unsigned NumElems = VT.getVectorNumElements();
6594   MVT NewVT;
6595   unsigned Scale;
6596   switch (VT.SimpleTy) {
6597   default: llvm_unreachable("Unexpected!");
6598   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6599   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6600   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6601   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6602   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6603   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6604   }
6605
6606   SmallVector<int, 8> MaskVec;
6607   for (unsigned i = 0; i != NumElems; i += Scale) {
6608     int StartIdx = -1;
6609     for (unsigned j = 0; j != Scale; ++j) {
6610       int EltIdx = SVOp->getMaskElt(i+j);
6611       if (EltIdx < 0)
6612         continue;
6613       if (StartIdx < 0)
6614         StartIdx = (EltIdx / Scale);
6615       if (EltIdx != (int)(StartIdx*Scale + j))
6616         return SDValue();
6617     }
6618     MaskVec.push_back(StartIdx);
6619   }
6620
6621   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6622   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6623   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6624 }
6625
6626 /// getVZextMovL - Return a zero-extending vector move low node.
6627 ///
6628 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6629                             SDValue SrcOp, SelectionDAG &DAG,
6630                             const X86Subtarget *Subtarget, SDLoc dl) {
6631   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6632     LoadSDNode *LD = NULL;
6633     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6634       LD = dyn_cast<LoadSDNode>(SrcOp);
6635     if (!LD) {
6636       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6637       // instead.
6638       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6639       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6640           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6641           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6642           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6643         // PR2108
6644         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6645         return DAG.getNode(ISD::BITCAST, dl, VT,
6646                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6647                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6648                                                    OpVT,
6649                                                    SrcOp.getOperand(0)
6650                                                           .getOperand(0))));
6651       }
6652     }
6653   }
6654
6655   return DAG.getNode(ISD::BITCAST, dl, VT,
6656                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6657                                  DAG.getNode(ISD::BITCAST, dl,
6658                                              OpVT, SrcOp)));
6659 }
6660
6661 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6662 /// which could not be matched by any known target speficic shuffle
6663 static SDValue
6664 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6665
6666   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6667   if (NewOp.getNode())
6668     return NewOp;
6669
6670   MVT VT = SVOp->getSimpleValueType(0);
6671
6672   unsigned NumElems = VT.getVectorNumElements();
6673   unsigned NumLaneElems = NumElems / 2;
6674
6675   SDLoc dl(SVOp);
6676   MVT EltVT = VT.getVectorElementType();
6677   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6678   SDValue Output[2];
6679
6680   SmallVector<int, 16> Mask;
6681   for (unsigned l = 0; l < 2; ++l) {
6682     // Build a shuffle mask for the output, discovering on the fly which
6683     // input vectors to use as shuffle operands (recorded in InputUsed).
6684     // If building a suitable shuffle vector proves too hard, then bail
6685     // out with UseBuildVector set.
6686     bool UseBuildVector = false;
6687     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6688     unsigned LaneStart = l * NumLaneElems;
6689     for (unsigned i = 0; i != NumLaneElems; ++i) {
6690       // The mask element.  This indexes into the input.
6691       int Idx = SVOp->getMaskElt(i+LaneStart);
6692       if (Idx < 0) {
6693         // the mask element does not index into any input vector.
6694         Mask.push_back(-1);
6695         continue;
6696       }
6697
6698       // The input vector this mask element indexes into.
6699       int Input = Idx / NumLaneElems;
6700
6701       // Turn the index into an offset from the start of the input vector.
6702       Idx -= Input * NumLaneElems;
6703
6704       // Find or create a shuffle vector operand to hold this input.
6705       unsigned OpNo;
6706       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6707         if (InputUsed[OpNo] == Input)
6708           // This input vector is already an operand.
6709           break;
6710         if (InputUsed[OpNo] < 0) {
6711           // Create a new operand for this input vector.
6712           InputUsed[OpNo] = Input;
6713           break;
6714         }
6715       }
6716
6717       if (OpNo >= array_lengthof(InputUsed)) {
6718         // More than two input vectors used!  Give up on trying to create a
6719         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6720         UseBuildVector = true;
6721         break;
6722       }
6723
6724       // Add the mask index for the new shuffle vector.
6725       Mask.push_back(Idx + OpNo * NumLaneElems);
6726     }
6727
6728     if (UseBuildVector) {
6729       SmallVector<SDValue, 16> SVOps;
6730       for (unsigned i = 0; i != NumLaneElems; ++i) {
6731         // The mask element.  This indexes into the input.
6732         int Idx = SVOp->getMaskElt(i+LaneStart);
6733         if (Idx < 0) {
6734           SVOps.push_back(DAG.getUNDEF(EltVT));
6735           continue;
6736         }
6737
6738         // The input vector this mask element indexes into.
6739         int Input = Idx / NumElems;
6740
6741         // Turn the index into an offset from the start of the input vector.
6742         Idx -= Input * NumElems;
6743
6744         // Extract the vector element by hand.
6745         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6746                                     SVOp->getOperand(Input),
6747                                     DAG.getIntPtrConstant(Idx)));
6748       }
6749
6750       // Construct the output using a BUILD_VECTOR.
6751       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6752                               SVOps.size());
6753     } else if (InputUsed[0] < 0) {
6754       // No input vectors were used! The result is undefined.
6755       Output[l] = DAG.getUNDEF(NVT);
6756     } else {
6757       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6758                                         (InputUsed[0] % 2) * NumLaneElems,
6759                                         DAG, dl);
6760       // If only one input was used, use an undefined vector for the other.
6761       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6762         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6763                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6764       // At least one input vector was used. Create a new shuffle vector.
6765       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6766     }
6767
6768     Mask.clear();
6769   }
6770
6771   // Concatenate the result back
6772   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6773 }
6774
6775 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6776 /// 4 elements, and match them with several different shuffle types.
6777 static SDValue
6778 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6779   SDValue V1 = SVOp->getOperand(0);
6780   SDValue V2 = SVOp->getOperand(1);
6781   SDLoc dl(SVOp);
6782   MVT VT = SVOp->getSimpleValueType(0);
6783
6784   assert(VT.is128BitVector() && "Unsupported vector size");
6785
6786   std::pair<int, int> Locs[4];
6787   int Mask1[] = { -1, -1, -1, -1 };
6788   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6789
6790   unsigned NumHi = 0;
6791   unsigned NumLo = 0;
6792   for (unsigned i = 0; i != 4; ++i) {
6793     int Idx = PermMask[i];
6794     if (Idx < 0) {
6795       Locs[i] = std::make_pair(-1, -1);
6796     } else {
6797       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6798       if (Idx < 4) {
6799         Locs[i] = std::make_pair(0, NumLo);
6800         Mask1[NumLo] = Idx;
6801         NumLo++;
6802       } else {
6803         Locs[i] = std::make_pair(1, NumHi);
6804         if (2+NumHi < 4)
6805           Mask1[2+NumHi] = Idx;
6806         NumHi++;
6807       }
6808     }
6809   }
6810
6811   if (NumLo <= 2 && NumHi <= 2) {
6812     // If no more than two elements come from either vector. This can be
6813     // implemented with two shuffles. First shuffle gather the elements.
6814     // The second shuffle, which takes the first shuffle as both of its
6815     // vector operands, put the elements into the right order.
6816     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6817
6818     int Mask2[] = { -1, -1, -1, -1 };
6819
6820     for (unsigned i = 0; i != 4; ++i)
6821       if (Locs[i].first != -1) {
6822         unsigned Idx = (i < 2) ? 0 : 4;
6823         Idx += Locs[i].first * 2 + Locs[i].second;
6824         Mask2[i] = Idx;
6825       }
6826
6827     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6828   }
6829
6830   if (NumLo == 3 || NumHi == 3) {
6831     // Otherwise, we must have three elements from one vector, call it X, and
6832     // one element from the other, call it Y.  First, use a shufps to build an
6833     // intermediate vector with the one element from Y and the element from X
6834     // that will be in the same half in the final destination (the indexes don't
6835     // matter). Then, use a shufps to build the final vector, taking the half
6836     // containing the element from Y from the intermediate, and the other half
6837     // from X.
6838     if (NumHi == 3) {
6839       // Normalize it so the 3 elements come from V1.
6840       CommuteVectorShuffleMask(PermMask, 4);
6841       std::swap(V1, V2);
6842     }
6843
6844     // Find the element from V2.
6845     unsigned HiIndex;
6846     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6847       int Val = PermMask[HiIndex];
6848       if (Val < 0)
6849         continue;
6850       if (Val >= 4)
6851         break;
6852     }
6853
6854     Mask1[0] = PermMask[HiIndex];
6855     Mask1[1] = -1;
6856     Mask1[2] = PermMask[HiIndex^1];
6857     Mask1[3] = -1;
6858     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6859
6860     if (HiIndex >= 2) {
6861       Mask1[0] = PermMask[0];
6862       Mask1[1] = PermMask[1];
6863       Mask1[2] = HiIndex & 1 ? 6 : 4;
6864       Mask1[3] = HiIndex & 1 ? 4 : 6;
6865       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6866     }
6867
6868     Mask1[0] = HiIndex & 1 ? 2 : 0;
6869     Mask1[1] = HiIndex & 1 ? 0 : 2;
6870     Mask1[2] = PermMask[2];
6871     Mask1[3] = PermMask[3];
6872     if (Mask1[2] >= 0)
6873       Mask1[2] += 4;
6874     if (Mask1[3] >= 0)
6875       Mask1[3] += 4;
6876     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6877   }
6878
6879   // Break it into (shuffle shuffle_hi, shuffle_lo).
6880   int LoMask[] = { -1, -1, -1, -1 };
6881   int HiMask[] = { -1, -1, -1, -1 };
6882
6883   int *MaskPtr = LoMask;
6884   unsigned MaskIdx = 0;
6885   unsigned LoIdx = 0;
6886   unsigned HiIdx = 2;
6887   for (unsigned i = 0; i != 4; ++i) {
6888     if (i == 2) {
6889       MaskPtr = HiMask;
6890       MaskIdx = 1;
6891       LoIdx = 0;
6892       HiIdx = 2;
6893     }
6894     int Idx = PermMask[i];
6895     if (Idx < 0) {
6896       Locs[i] = std::make_pair(-1, -1);
6897     } else if (Idx < 4) {
6898       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6899       MaskPtr[LoIdx] = Idx;
6900       LoIdx++;
6901     } else {
6902       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6903       MaskPtr[HiIdx] = Idx;
6904       HiIdx++;
6905     }
6906   }
6907
6908   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6909   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6910   int MaskOps[] = { -1, -1, -1, -1 };
6911   for (unsigned i = 0; i != 4; ++i)
6912     if (Locs[i].first != -1)
6913       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6914   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6915 }
6916
6917 static bool MayFoldVectorLoad(SDValue V) {
6918   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6919     V = V.getOperand(0);
6920
6921   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6922     V = V.getOperand(0);
6923   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6924       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6925     // BUILD_VECTOR (load), undef
6926     V = V.getOperand(0);
6927
6928   return MayFoldLoad(V);
6929 }
6930
6931 static
6932 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
6933   MVT VT = Op.getSimpleValueType();
6934
6935   // Canonizalize to v2f64.
6936   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6937   return DAG.getNode(ISD::BITCAST, dl, VT,
6938                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6939                                           V1, DAG));
6940 }
6941
6942 static
6943 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
6944                         bool HasSSE2) {
6945   SDValue V1 = Op.getOperand(0);
6946   SDValue V2 = Op.getOperand(1);
6947   MVT VT = Op.getSimpleValueType();
6948
6949   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6950
6951   if (HasSSE2 && VT == MVT::v2f64)
6952     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6953
6954   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6955   return DAG.getNode(ISD::BITCAST, dl, VT,
6956                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6957                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6958                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
6959 }
6960
6961 static
6962 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
6963   SDValue V1 = Op.getOperand(0);
6964   SDValue V2 = Op.getOperand(1);
6965   MVT VT = Op.getSimpleValueType();
6966
6967   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6968          "unsupported shuffle type");
6969
6970   if (V2.getOpcode() == ISD::UNDEF)
6971     V2 = V1;
6972
6973   // v4i32 or v4f32
6974   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6975 }
6976
6977 static
6978 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6979   SDValue V1 = Op.getOperand(0);
6980   SDValue V2 = Op.getOperand(1);
6981   MVT VT = Op.getSimpleValueType();
6982   unsigned NumElems = VT.getVectorNumElements();
6983
6984   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6985   // operand of these instructions is only memory, so check if there's a
6986   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6987   // same masks.
6988   bool CanFoldLoad = false;
6989
6990   // Trivial case, when V2 comes from a load.
6991   if (MayFoldVectorLoad(V2))
6992     CanFoldLoad = true;
6993
6994   // When V1 is a load, it can be folded later into a store in isel, example:
6995   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6996   //    turns into:
6997   //  (MOVLPSmr addr:$src1, VR128:$src2)
6998   // So, recognize this potential and also use MOVLPS or MOVLPD
6999   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7000     CanFoldLoad = true;
7001
7002   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7003   if (CanFoldLoad) {
7004     if (HasSSE2 && NumElems == 2)
7005       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7006
7007     if (NumElems == 4)
7008       // If we don't care about the second element, proceed to use movss.
7009       if (SVOp->getMaskElt(1) != -1)
7010         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7011   }
7012
7013   // movl and movlp will both match v2i64, but v2i64 is never matched by
7014   // movl earlier because we make it strict to avoid messing with the movlp load
7015   // folding logic (see the code above getMOVLP call). Match it here then,
7016   // this is horrible, but will stay like this until we move all shuffle
7017   // matching to x86 specific nodes. Note that for the 1st condition all
7018   // types are matched with movsd.
7019   if (HasSSE2) {
7020     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7021     // as to remove this logic from here, as much as possible
7022     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7023       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7024     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7025   }
7026
7027   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7028
7029   // Invert the operand order and use SHUFPS to match it.
7030   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7031                               getShuffleSHUFImmediate(SVOp), DAG);
7032 }
7033
7034 // Reduce a vector shuffle to zext.
7035 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7036                                     SelectionDAG &DAG) {
7037   // PMOVZX is only available from SSE41.
7038   if (!Subtarget->hasSSE41())
7039     return SDValue();
7040
7041   MVT VT = Op.getSimpleValueType();
7042
7043   // Only AVX2 support 256-bit vector integer extending.
7044   if (!Subtarget->hasInt256() && VT.is256BitVector())
7045     return SDValue();
7046
7047   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7048   SDLoc DL(Op);
7049   SDValue V1 = Op.getOperand(0);
7050   SDValue V2 = Op.getOperand(1);
7051   unsigned NumElems = VT.getVectorNumElements();
7052
7053   // Extending is an unary operation and the element type of the source vector
7054   // won't be equal to or larger than i64.
7055   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7056       VT.getVectorElementType() == MVT::i64)
7057     return SDValue();
7058
7059   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7060   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7061   while ((1U << Shift) < NumElems) {
7062     if (SVOp->getMaskElt(1U << Shift) == 1)
7063       break;
7064     Shift += 1;
7065     // The maximal ratio is 8, i.e. from i8 to i64.
7066     if (Shift > 3)
7067       return SDValue();
7068   }
7069
7070   // Check the shuffle mask.
7071   unsigned Mask = (1U << Shift) - 1;
7072   for (unsigned i = 0; i != NumElems; ++i) {
7073     int EltIdx = SVOp->getMaskElt(i);
7074     if ((i & Mask) != 0 && EltIdx != -1)
7075       return SDValue();
7076     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7077       return SDValue();
7078   }
7079
7080   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7081   MVT NeVT = MVT::getIntegerVT(NBits);
7082   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7083
7084   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7085     return SDValue();
7086
7087   // Simplify the operand as it's prepared to be fed into shuffle.
7088   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7089   if (V1.getOpcode() == ISD::BITCAST &&
7090       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7091       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7092       V1.getOperand(0).getOperand(0)
7093         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7094     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7095     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7096     ConstantSDNode *CIdx =
7097       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7098     // If it's foldable, i.e. normal load with single use, we will let code
7099     // selection to fold it. Otherwise, we will short the conversion sequence.
7100     if (CIdx && CIdx->getZExtValue() == 0 &&
7101         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7102       MVT FullVT = V.getSimpleValueType();
7103       MVT V1VT = V1.getSimpleValueType();
7104       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7105         // The "ext_vec_elt" node is wider than the result node.
7106         // In this case we should extract subvector from V.
7107         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7108         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7109         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7110                                         FullVT.getVectorNumElements()/Ratio);
7111         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7112                         DAG.getIntPtrConstant(0));
7113       }
7114       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7115     }
7116   }
7117
7118   return DAG.getNode(ISD::BITCAST, DL, VT,
7119                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7120 }
7121
7122 static SDValue
7123 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7124                        SelectionDAG &DAG) {
7125   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7126   MVT VT = Op.getSimpleValueType();
7127   SDLoc dl(Op);
7128   SDValue V1 = Op.getOperand(0);
7129   SDValue V2 = Op.getOperand(1);
7130
7131   if (isZeroShuffle(SVOp))
7132     return getZeroVector(VT, Subtarget, DAG, dl);
7133
7134   // Handle splat operations
7135   if (SVOp->isSplat()) {
7136     // Use vbroadcast whenever the splat comes from a foldable load
7137     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7138     if (Broadcast.getNode())
7139       return Broadcast;
7140   }
7141
7142   // Check integer expanding shuffles.
7143   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7144   if (NewOp.getNode())
7145     return NewOp;
7146
7147   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7148   // do it!
7149   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7150       VT == MVT::v16i16 || VT == MVT::v32i8) {
7151     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7152     if (NewOp.getNode())
7153       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7154   } else if ((VT == MVT::v4i32 ||
7155              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7156     // FIXME: Figure out a cleaner way to do this.
7157     // Try to make use of movq to zero out the top part.
7158     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7159       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7160       if (NewOp.getNode()) {
7161         MVT NewVT = NewOp.getSimpleValueType();
7162         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7163                                NewVT, true, false))
7164           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7165                               DAG, Subtarget, dl);
7166       }
7167     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7168       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7169       if (NewOp.getNode()) {
7170         MVT NewVT = NewOp.getSimpleValueType();
7171         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7172           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7173                               DAG, Subtarget, dl);
7174       }
7175     }
7176   }
7177   return SDValue();
7178 }
7179
7180 SDValue
7181 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7182   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7183   SDValue V1 = Op.getOperand(0);
7184   SDValue V2 = Op.getOperand(1);
7185   MVT VT = Op.getSimpleValueType();
7186   SDLoc dl(Op);
7187   unsigned NumElems = VT.getVectorNumElements();
7188   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7189   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7190   bool V1IsSplat = false;
7191   bool V2IsSplat = false;
7192   bool HasSSE2 = Subtarget->hasSSE2();
7193   bool HasFp256    = Subtarget->hasFp256();
7194   bool HasInt256   = Subtarget->hasInt256();
7195   MachineFunction &MF = DAG.getMachineFunction();
7196   bool OptForSize = MF.getFunction()->getAttributes().
7197     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7198
7199   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7200
7201   if (V1IsUndef && V2IsUndef)
7202     return DAG.getUNDEF(VT);
7203
7204   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7205
7206   // Vector shuffle lowering takes 3 steps:
7207   //
7208   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7209   //    narrowing and commutation of operands should be handled.
7210   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7211   //    shuffle nodes.
7212   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7213   //    so the shuffle can be broken into other shuffles and the legalizer can
7214   //    try the lowering again.
7215   //
7216   // The general idea is that no vector_shuffle operation should be left to
7217   // be matched during isel, all of them must be converted to a target specific
7218   // node here.
7219
7220   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7221   // narrowing and commutation of operands should be handled. The actual code
7222   // doesn't include all of those, work in progress...
7223   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7224   if (NewOp.getNode())
7225     return NewOp;
7226
7227   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7228
7229   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7230   // unpckh_undef). Only use pshufd if speed is more important than size.
7231   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7232     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7233   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7234     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7235
7236   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7237       V2IsUndef && MayFoldVectorLoad(V1))
7238     return getMOVDDup(Op, dl, V1, DAG);
7239
7240   if (isMOVHLPS_v_undef_Mask(M, VT))
7241     return getMOVHighToLow(Op, dl, DAG);
7242
7243   // Use to match splats
7244   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7245       (VT == MVT::v2f64 || VT == MVT::v2i64))
7246     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7247
7248   if (isPSHUFDMask(M, VT)) {
7249     // The actual implementation will match the mask in the if above and then
7250     // during isel it can match several different instructions, not only pshufd
7251     // as its name says, sad but true, emulate the behavior for now...
7252     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7253       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7254
7255     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7256
7257     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7258       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7259
7260     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7261       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7262                                   DAG);
7263
7264     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7265                                 TargetMask, DAG);
7266   }
7267
7268   if (isPALIGNRMask(M, VT, Subtarget))
7269     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7270                                 getShufflePALIGNRImmediate(SVOp),
7271                                 DAG);
7272
7273   // Check if this can be converted into a logical shift.
7274   bool isLeft = false;
7275   unsigned ShAmt = 0;
7276   SDValue ShVal;
7277   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7278   if (isShift && ShVal.hasOneUse()) {
7279     // If the shifted value has multiple uses, it may be cheaper to use
7280     // v_set0 + movlhps or movhlps, etc.
7281     MVT EltVT = VT.getVectorElementType();
7282     ShAmt *= EltVT.getSizeInBits();
7283     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7284   }
7285
7286   if (isMOVLMask(M, VT)) {
7287     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7288       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7289     if (!isMOVLPMask(M, VT)) {
7290       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7291         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7292
7293       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7294         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7295     }
7296   }
7297
7298   // FIXME: fold these into legal mask.
7299   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7300     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7301
7302   if (isMOVHLPSMask(M, VT))
7303     return getMOVHighToLow(Op, dl, DAG);
7304
7305   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7306     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7307
7308   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7309     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7310
7311   if (isMOVLPMask(M, VT))
7312     return getMOVLP(Op, dl, DAG, HasSSE2);
7313
7314   if (ShouldXformToMOVHLPS(M, VT) ||
7315       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7316     return CommuteVectorShuffle(SVOp, DAG);
7317
7318   if (isShift) {
7319     // No better options. Use a vshldq / vsrldq.
7320     MVT EltVT = VT.getVectorElementType();
7321     ShAmt *= EltVT.getSizeInBits();
7322     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7323   }
7324
7325   bool Commuted = false;
7326   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7327   // 1,1,1,1 -> v8i16 though.
7328   V1IsSplat = isSplatVector(V1.getNode());
7329   V2IsSplat = isSplatVector(V2.getNode());
7330
7331   // Canonicalize the splat or undef, if present, to be on the RHS.
7332   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7333     CommuteVectorShuffleMask(M, NumElems);
7334     std::swap(V1, V2);
7335     std::swap(V1IsSplat, V2IsSplat);
7336     Commuted = true;
7337   }
7338
7339   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7340     // Shuffling low element of v1 into undef, just return v1.
7341     if (V2IsUndef)
7342       return V1;
7343     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7344     // the instruction selector will not match, so get a canonical MOVL with
7345     // swapped operands to undo the commute.
7346     return getMOVL(DAG, dl, VT, V2, V1);
7347   }
7348
7349   if (isUNPCKLMask(M, VT, HasInt256))
7350     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7351
7352   if (isUNPCKHMask(M, VT, HasInt256))
7353     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7354
7355   if (V2IsSplat) {
7356     // Normalize mask so all entries that point to V2 points to its first
7357     // element then try to match unpck{h|l} again. If match, return a
7358     // new vector_shuffle with the corrected mask.p
7359     SmallVector<int, 8> NewMask(M.begin(), M.end());
7360     NormalizeMask(NewMask, NumElems);
7361     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7362       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7363     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7364       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7365   }
7366
7367   if (Commuted) {
7368     // Commute is back and try unpck* again.
7369     // FIXME: this seems wrong.
7370     CommuteVectorShuffleMask(M, NumElems);
7371     std::swap(V1, V2);
7372     std::swap(V1IsSplat, V2IsSplat);
7373     Commuted = false;
7374
7375     if (isUNPCKLMask(M, VT, HasInt256))
7376       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7377
7378     if (isUNPCKHMask(M, VT, HasInt256))
7379       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7380   }
7381
7382   // Normalize the node to match x86 shuffle ops if needed
7383   if (!V2IsUndef && (isSHUFPMask(M, VT, HasFp256, /* Commuted */ true)))
7384     return CommuteVectorShuffle(SVOp, DAG);
7385
7386   // The checks below are all present in isShuffleMaskLegal, but they are
7387   // inlined here right now to enable us to directly emit target specific
7388   // nodes, and remove one by one until they don't return Op anymore.
7389
7390   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7391       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7392     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7393       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7394   }
7395
7396   if (isPSHUFHWMask(M, VT, HasInt256))
7397     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7398                                 getShufflePSHUFHWImmediate(SVOp),
7399                                 DAG);
7400
7401   if (isPSHUFLWMask(M, VT, HasInt256))
7402     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7403                                 getShufflePSHUFLWImmediate(SVOp),
7404                                 DAG);
7405
7406   if (isSHUFPMask(M, VT, HasFp256))
7407     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7408                                 getShuffleSHUFImmediate(SVOp), DAG);
7409
7410   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7411     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7412   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7413     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7414
7415   //===--------------------------------------------------------------------===//
7416   // Generate target specific nodes for 128 or 256-bit shuffles only
7417   // supported in the AVX instruction set.
7418   //
7419
7420   // Handle VMOVDDUPY permutations
7421   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7422     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7423
7424   // Handle VPERMILPS/D* permutations
7425   if (isVPERMILPMask(M, VT, HasFp256)) {
7426     if (HasInt256 && VT == MVT::v8i32)
7427       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7428                                   getShuffleSHUFImmediate(SVOp), DAG);
7429     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7430                                 getShuffleSHUFImmediate(SVOp), DAG);
7431   }
7432
7433   // Handle VPERM2F128/VPERM2I128 permutations
7434   if (isVPERM2X128Mask(M, VT, HasFp256))
7435     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7436                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7437
7438   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7439   if (BlendOp.getNode())
7440     return BlendOp;
7441
7442   unsigned Imm8;
7443   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7444     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7445
7446   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7447       VT.is512BitVector()) {
7448     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7449     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7450     SmallVector<SDValue, 16> permclMask;
7451     for (unsigned i = 0; i != NumElems; ++i) {
7452       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7453     }
7454
7455     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7456                                 &permclMask[0], NumElems);
7457     if (V2IsUndef)
7458       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7459       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7460                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7461     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7462                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7463   }
7464
7465   //===--------------------------------------------------------------------===//
7466   // Since no target specific shuffle was selected for this generic one,
7467   // lower it into other known shuffles. FIXME: this isn't true yet, but
7468   // this is the plan.
7469   //
7470
7471   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7472   if (VT == MVT::v8i16) {
7473     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7474     if (NewOp.getNode())
7475       return NewOp;
7476   }
7477
7478   if (VT == MVT::v16i8) {
7479     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7480     if (NewOp.getNode())
7481       return NewOp;
7482   }
7483
7484   if (VT == MVT::v32i8) {
7485     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7486     if (NewOp.getNode())
7487       return NewOp;
7488   }
7489
7490   // Handle all 128-bit wide vectors with 4 elements, and match them with
7491   // several different shuffle types.
7492   if (NumElems == 4 && VT.is128BitVector())
7493     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7494
7495   // Handle general 256-bit shuffles
7496   if (VT.is256BitVector())
7497     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7498
7499   return SDValue();
7500 }
7501
7502 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7503   MVT VT = Op.getSimpleValueType();
7504   SDLoc dl(Op);
7505
7506   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7507     return SDValue();
7508
7509   if (VT.getSizeInBits() == 8) {
7510     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7511                                   Op.getOperand(0), Op.getOperand(1));
7512     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7513                                   DAG.getValueType(VT));
7514     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7515   }
7516
7517   if (VT.getSizeInBits() == 16) {
7518     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7519     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7520     if (Idx == 0)
7521       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7522                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7523                                      DAG.getNode(ISD::BITCAST, dl,
7524                                                  MVT::v4i32,
7525                                                  Op.getOperand(0)),
7526                                      Op.getOperand(1)));
7527     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7528                                   Op.getOperand(0), Op.getOperand(1));
7529     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7530                                   DAG.getValueType(VT));
7531     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7532   }
7533
7534   if (VT == MVT::f32) {
7535     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7536     // the result back to FR32 register. It's only worth matching if the
7537     // result has a single use which is a store or a bitcast to i32.  And in
7538     // the case of a store, it's not worth it if the index is a constant 0,
7539     // because a MOVSSmr can be used instead, which is smaller and faster.
7540     if (!Op.hasOneUse())
7541       return SDValue();
7542     SDNode *User = *Op.getNode()->use_begin();
7543     if ((User->getOpcode() != ISD::STORE ||
7544          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7545           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7546         (User->getOpcode() != ISD::BITCAST ||
7547          User->getValueType(0) != MVT::i32))
7548       return SDValue();
7549     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7550                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7551                                               Op.getOperand(0)),
7552                                               Op.getOperand(1));
7553     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7554   }
7555
7556   if (VT == MVT::i32 || VT == MVT::i64) {
7557     // ExtractPS/pextrq works with constant index.
7558     if (isa<ConstantSDNode>(Op.getOperand(1)))
7559       return Op;
7560   }
7561   return SDValue();
7562 }
7563
7564 SDValue
7565 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7566                                            SelectionDAG &DAG) const {
7567   SDLoc dl(Op);
7568   if (!isa<ConstantSDNode>(Op.getOperand(1)))
7569     return SDValue();
7570
7571   SDValue Vec = Op.getOperand(0);
7572   MVT VecVT = Vec.getSimpleValueType();
7573
7574   // If this is a 256-bit vector result, first extract the 128-bit vector and
7575   // then extract the element from the 128-bit vector.
7576   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7577     SDValue Idx = Op.getOperand(1);
7578     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7579
7580     // Get the 128-bit vector.
7581     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7582     MVT EltVT = VecVT.getVectorElementType();
7583
7584     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7585
7586     //if (IdxVal >= NumElems/2)
7587     //  IdxVal -= NumElems/2;
7588     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7589     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7590                        DAG.getConstant(IdxVal, MVT::i32));
7591   }
7592
7593   assert(VecVT.is128BitVector() && "Unexpected vector length");
7594
7595   if (Subtarget->hasSSE41()) {
7596     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7597     if (Res.getNode())
7598       return Res;
7599   }
7600
7601   MVT VT = Op.getSimpleValueType();
7602   // TODO: handle v16i8.
7603   if (VT.getSizeInBits() == 16) {
7604     SDValue Vec = Op.getOperand(0);
7605     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7606     if (Idx == 0)
7607       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7608                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7609                                      DAG.getNode(ISD::BITCAST, dl,
7610                                                  MVT::v4i32, Vec),
7611                                      Op.getOperand(1)));
7612     // Transform it so it match pextrw which produces a 32-bit result.
7613     MVT EltVT = MVT::i32;
7614     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7615                                   Op.getOperand(0), Op.getOperand(1));
7616     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7617                                   DAG.getValueType(VT));
7618     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7619   }
7620
7621   if (VT.getSizeInBits() == 32) {
7622     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7623     if (Idx == 0)
7624       return Op;
7625
7626     // SHUFPS the element to the lowest double word, then movss.
7627     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7628     MVT VVT = Op.getOperand(0).getSimpleValueType();
7629     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7630                                        DAG.getUNDEF(VVT), Mask);
7631     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7632                        DAG.getIntPtrConstant(0));
7633   }
7634
7635   if (VT.getSizeInBits() == 64) {
7636     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7637     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7638     //        to match extract_elt for f64.
7639     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7640     if (Idx == 0)
7641       return Op;
7642
7643     // UNPCKHPD the element to the lowest double word, then movsd.
7644     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7645     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7646     int Mask[2] = { 1, -1 };
7647     MVT VVT = Op.getOperand(0).getSimpleValueType();
7648     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7649                                        DAG.getUNDEF(VVT), Mask);
7650     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7651                        DAG.getIntPtrConstant(0));
7652   }
7653
7654   return SDValue();
7655 }
7656
7657 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7658   MVT VT = Op.getSimpleValueType();
7659   MVT EltVT = VT.getVectorElementType();
7660   SDLoc dl(Op);
7661
7662   SDValue N0 = Op.getOperand(0);
7663   SDValue N1 = Op.getOperand(1);
7664   SDValue N2 = Op.getOperand(2);
7665
7666   if (!VT.is128BitVector())
7667     return SDValue();
7668
7669   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7670       isa<ConstantSDNode>(N2)) {
7671     unsigned Opc;
7672     if (VT == MVT::v8i16)
7673       Opc = X86ISD::PINSRW;
7674     else if (VT == MVT::v16i8)
7675       Opc = X86ISD::PINSRB;
7676     else
7677       Opc = X86ISD::PINSRB;
7678
7679     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7680     // argument.
7681     if (N1.getValueType() != MVT::i32)
7682       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7683     if (N2.getValueType() != MVT::i32)
7684       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7685     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7686   }
7687
7688   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7689     // Bits [7:6] of the constant are the source select.  This will always be
7690     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7691     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7692     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7693     // Bits [5:4] of the constant are the destination select.  This is the
7694     //  value of the incoming immediate.
7695     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7696     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7697     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7698     // Create this as a scalar to vector..
7699     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7700     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7701   }
7702
7703   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7704     // PINSR* works with constant index.
7705     return Op;
7706   }
7707   return SDValue();
7708 }
7709
7710 SDValue
7711 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7712   MVT VT = Op.getSimpleValueType();
7713   MVT EltVT = VT.getVectorElementType();
7714
7715   SDLoc dl(Op);
7716   SDValue N0 = Op.getOperand(0);
7717   SDValue N1 = Op.getOperand(1);
7718   SDValue N2 = Op.getOperand(2);
7719
7720   // If this is a 256-bit vector result, first extract the 128-bit vector,
7721   // insert the element into the extracted half and then place it back.
7722   if (VT.is256BitVector() || VT.is512BitVector()) {
7723     if (!isa<ConstantSDNode>(N2))
7724       return SDValue();
7725
7726     // Get the desired 128-bit vector half.
7727     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7728     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7729
7730     // Insert the element into the desired half.
7731     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7732     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7733
7734     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7735                     DAG.getConstant(IdxIn128, MVT::i32));
7736
7737     // Insert the changed part back to the 256-bit vector
7738     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7739   }
7740
7741   if (Subtarget->hasSSE41())
7742     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7743
7744   if (EltVT == MVT::i8)
7745     return SDValue();
7746
7747   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7748     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7749     // as its second argument.
7750     if (N1.getValueType() != MVT::i32)
7751       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7752     if (N2.getValueType() != MVT::i32)
7753       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7754     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7755   }
7756   return SDValue();
7757 }
7758
7759 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7760   SDLoc dl(Op);
7761   MVT OpVT = Op.getSimpleValueType();
7762
7763   // If this is a 256-bit vector result, first insert into a 128-bit
7764   // vector and then insert into the 256-bit vector.
7765   if (!OpVT.is128BitVector()) {
7766     // Insert into a 128-bit vector.
7767     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7768     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7769                                  OpVT.getVectorNumElements() / SizeFactor);
7770
7771     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7772
7773     // Insert the 128-bit vector.
7774     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7775   }
7776
7777   if (OpVT == MVT::v1i64 &&
7778       Op.getOperand(0).getValueType() == MVT::i64)
7779     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7780
7781   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7782   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7783   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7784                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7785 }
7786
7787 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7788 // a simple subregister reference or explicit instructions to grab
7789 // upper bits of a vector.
7790 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7791                                       SelectionDAG &DAG) {
7792   SDLoc dl(Op);
7793   SDValue In =  Op.getOperand(0);
7794   SDValue Idx = Op.getOperand(1);
7795   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7796   MVT ResVT   = Op.getSimpleValueType();
7797   MVT InVT    = In.getSimpleValueType();
7798
7799   if (Subtarget->hasFp256()) {
7800     if (ResVT.is128BitVector() &&
7801         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7802         isa<ConstantSDNode>(Idx)) {
7803       return Extract128BitVector(In, IdxVal, DAG, dl);
7804     }
7805     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7806         isa<ConstantSDNode>(Idx)) {
7807       return Extract256BitVector(In, IdxVal, DAG, dl);
7808     }
7809   }
7810   return SDValue();
7811 }
7812
7813 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7814 // simple superregister reference or explicit instructions to insert
7815 // the upper bits of a vector.
7816 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7817                                      SelectionDAG &DAG) {
7818   if (Subtarget->hasFp256()) {
7819     SDLoc dl(Op.getNode());
7820     SDValue Vec = Op.getNode()->getOperand(0);
7821     SDValue SubVec = Op.getNode()->getOperand(1);
7822     SDValue Idx = Op.getNode()->getOperand(2);
7823
7824     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7825          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7826         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
7827         isa<ConstantSDNode>(Idx)) {
7828       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7829       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7830     }
7831
7832     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7833         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
7834         isa<ConstantSDNode>(Idx)) {
7835       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7836       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7837     }
7838   }
7839   return SDValue();
7840 }
7841
7842 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7843 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7844 // one of the above mentioned nodes. It has to be wrapped because otherwise
7845 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7846 // be used to form addressing mode. These wrapped nodes will be selected
7847 // into MOV32ri.
7848 SDValue
7849 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7850   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7851
7852   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7853   // global base reg.
7854   unsigned char OpFlag = 0;
7855   unsigned WrapperKind = X86ISD::Wrapper;
7856   CodeModel::Model M = getTargetMachine().getCodeModel();
7857
7858   if (Subtarget->isPICStyleRIPRel() &&
7859       (M == CodeModel::Small || M == CodeModel::Kernel))
7860     WrapperKind = X86ISD::WrapperRIP;
7861   else if (Subtarget->isPICStyleGOT())
7862     OpFlag = X86II::MO_GOTOFF;
7863   else if (Subtarget->isPICStyleStubPIC())
7864     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7865
7866   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7867                                              CP->getAlignment(),
7868                                              CP->getOffset(), OpFlag);
7869   SDLoc DL(CP);
7870   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7871   // With PIC, the address is actually $g + Offset.
7872   if (OpFlag) {
7873     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7874                          DAG.getNode(X86ISD::GlobalBaseReg,
7875                                      SDLoc(), getPointerTy()),
7876                          Result);
7877   }
7878
7879   return Result;
7880 }
7881
7882 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7883   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7884
7885   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7886   // global base reg.
7887   unsigned char OpFlag = 0;
7888   unsigned WrapperKind = X86ISD::Wrapper;
7889   CodeModel::Model M = getTargetMachine().getCodeModel();
7890
7891   if (Subtarget->isPICStyleRIPRel() &&
7892       (M == CodeModel::Small || M == CodeModel::Kernel))
7893     WrapperKind = X86ISD::WrapperRIP;
7894   else if (Subtarget->isPICStyleGOT())
7895     OpFlag = X86II::MO_GOTOFF;
7896   else if (Subtarget->isPICStyleStubPIC())
7897     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7898
7899   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7900                                           OpFlag);
7901   SDLoc DL(JT);
7902   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7903
7904   // With PIC, the address is actually $g + Offset.
7905   if (OpFlag)
7906     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7907                          DAG.getNode(X86ISD::GlobalBaseReg,
7908                                      SDLoc(), getPointerTy()),
7909                          Result);
7910
7911   return Result;
7912 }
7913
7914 SDValue
7915 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7916   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7917
7918   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7919   // global base reg.
7920   unsigned char OpFlag = 0;
7921   unsigned WrapperKind = X86ISD::Wrapper;
7922   CodeModel::Model M = getTargetMachine().getCodeModel();
7923
7924   if (Subtarget->isPICStyleRIPRel() &&
7925       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7926     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7927       OpFlag = X86II::MO_GOTPCREL;
7928     WrapperKind = X86ISD::WrapperRIP;
7929   } else if (Subtarget->isPICStyleGOT()) {
7930     OpFlag = X86II::MO_GOT;
7931   } else if (Subtarget->isPICStyleStubPIC()) {
7932     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7933   } else if (Subtarget->isPICStyleStubNoDynamic()) {
7934     OpFlag = X86II::MO_DARWIN_NONLAZY;
7935   }
7936
7937   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
7938
7939   SDLoc DL(Op);
7940   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7941
7942   // With PIC, the address is actually $g + Offset.
7943   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
7944       !Subtarget->is64Bit()) {
7945     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7946                          DAG.getNode(X86ISD::GlobalBaseReg,
7947                                      SDLoc(), getPointerTy()),
7948                          Result);
7949   }
7950
7951   // For symbols that require a load from a stub to get the address, emit the
7952   // load.
7953   if (isGlobalStubReference(OpFlag))
7954     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7955                          MachinePointerInfo::getGOT(), false, false, false, 0);
7956
7957   return Result;
7958 }
7959
7960 SDValue
7961 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
7962   // Create the TargetBlockAddressAddress node.
7963   unsigned char OpFlags =
7964     Subtarget->ClassifyBlockAddressReference();
7965   CodeModel::Model M = getTargetMachine().getCodeModel();
7966   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
7967   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
7968   SDLoc dl(Op);
7969   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
7970                                              OpFlags);
7971
7972   if (Subtarget->isPICStyleRIPRel() &&
7973       (M == CodeModel::Small || M == CodeModel::Kernel))
7974     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7975   else
7976     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
7977
7978   // With PIC, the address is actually $g + Offset.
7979   if (isGlobalRelativeToPICBase(OpFlags)) {
7980     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7981                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7982                          Result);
7983   }
7984
7985   return Result;
7986 }
7987
7988 SDValue
7989 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
7990                                       int64_t Offset, SelectionDAG &DAG) const {
7991   // Create the TargetGlobalAddress node, folding in the constant
7992   // offset if it is legal.
7993   unsigned char OpFlags =
7994     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
7995   CodeModel::Model M = getTargetMachine().getCodeModel();
7996   SDValue Result;
7997   if (OpFlags == X86II::MO_NO_FLAG &&
7998       X86::isOffsetSuitableForCodeModel(Offset, M)) {
7999     // A direct static reference to a global.
8000     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8001     Offset = 0;
8002   } else {
8003     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8004   }
8005
8006   if (Subtarget->isPICStyleRIPRel() &&
8007       (M == CodeModel::Small || M == CodeModel::Kernel))
8008     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8009   else
8010     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8011
8012   // With PIC, the address is actually $g + Offset.
8013   if (isGlobalRelativeToPICBase(OpFlags)) {
8014     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8015                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8016                          Result);
8017   }
8018
8019   // For globals that require a load from a stub to get the address, emit the
8020   // load.
8021   if (isGlobalStubReference(OpFlags))
8022     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8023                          MachinePointerInfo::getGOT(), false, false, false, 0);
8024
8025   // If there was a non-zero offset that we didn't fold, create an explicit
8026   // addition for it.
8027   if (Offset != 0)
8028     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8029                          DAG.getConstant(Offset, getPointerTy()));
8030
8031   return Result;
8032 }
8033
8034 SDValue
8035 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8036   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8037   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8038   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8039 }
8040
8041 static SDValue
8042 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8043            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8044            unsigned char OperandFlags, bool LocalDynamic = false) {
8045   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8046   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8047   SDLoc dl(GA);
8048   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8049                                            GA->getValueType(0),
8050                                            GA->getOffset(),
8051                                            OperandFlags);
8052
8053   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8054                                            : X86ISD::TLSADDR;
8055
8056   if (InFlag) {
8057     SDValue Ops[] = { Chain,  TGA, *InFlag };
8058     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8059   } else {
8060     SDValue Ops[]  = { Chain, TGA };
8061     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8062   }
8063
8064   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8065   MFI->setAdjustsStack(true);
8066
8067   SDValue Flag = Chain.getValue(1);
8068   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8069 }
8070
8071 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8072 static SDValue
8073 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8074                                 const EVT PtrVT) {
8075   SDValue InFlag;
8076   SDLoc dl(GA);  // ? function entry point might be better
8077   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8078                                    DAG.getNode(X86ISD::GlobalBaseReg,
8079                                                SDLoc(), PtrVT), InFlag);
8080   InFlag = Chain.getValue(1);
8081
8082   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8083 }
8084
8085 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8086 static SDValue
8087 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8088                                 const EVT PtrVT) {
8089   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8090                     X86::RAX, X86II::MO_TLSGD);
8091 }
8092
8093 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8094                                            SelectionDAG &DAG,
8095                                            const EVT PtrVT,
8096                                            bool is64Bit) {
8097   SDLoc dl(GA);
8098
8099   // Get the start address of the TLS block for this module.
8100   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8101       .getInfo<X86MachineFunctionInfo>();
8102   MFI->incNumLocalDynamicTLSAccesses();
8103
8104   SDValue Base;
8105   if (is64Bit) {
8106     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8107                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8108   } else {
8109     SDValue InFlag;
8110     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8111         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8112     InFlag = Chain.getValue(1);
8113     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8114                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8115   }
8116
8117   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8118   // of Base.
8119
8120   // Build x@dtpoff.
8121   unsigned char OperandFlags = X86II::MO_DTPOFF;
8122   unsigned WrapperKind = X86ISD::Wrapper;
8123   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8124                                            GA->getValueType(0),
8125                                            GA->getOffset(), OperandFlags);
8126   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8127
8128   // Add x@dtpoff with the base.
8129   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8130 }
8131
8132 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8133 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8134                                    const EVT PtrVT, TLSModel::Model model,
8135                                    bool is64Bit, bool isPIC) {
8136   SDLoc dl(GA);
8137
8138   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8139   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8140                                                          is64Bit ? 257 : 256));
8141
8142   SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
8143                                       DAG.getIntPtrConstant(0),
8144                                       MachinePointerInfo(Ptr),
8145                                       false, false, false, 0);
8146
8147   unsigned char OperandFlags = 0;
8148   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8149   // initialexec.
8150   unsigned WrapperKind = X86ISD::Wrapper;
8151   if (model == TLSModel::LocalExec) {
8152     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8153   } else if (model == TLSModel::InitialExec) {
8154     if (is64Bit) {
8155       OperandFlags = X86II::MO_GOTTPOFF;
8156       WrapperKind = X86ISD::WrapperRIP;
8157     } else {
8158       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8159     }
8160   } else {
8161     llvm_unreachable("Unexpected model");
8162   }
8163
8164   // emit "addl x@ntpoff,%eax" (local exec)
8165   // or "addl x@indntpoff,%eax" (initial exec)
8166   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8167   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8168                                            GA->getValueType(0),
8169                                            GA->getOffset(), OperandFlags);
8170   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8171
8172   if (model == TLSModel::InitialExec) {
8173     if (isPIC && !is64Bit) {
8174       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8175                           DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8176                            Offset);
8177     }
8178
8179     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8180                          MachinePointerInfo::getGOT(), false, false, false,
8181                          0);
8182   }
8183
8184   // The address of the thread local variable is the add of the thread
8185   // pointer with the offset of the variable.
8186   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8187 }
8188
8189 SDValue
8190 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8191
8192   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8193   const GlobalValue *GV = GA->getGlobal();
8194
8195   if (Subtarget->isTargetELF()) {
8196     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8197
8198     switch (model) {
8199       case TLSModel::GeneralDynamic:
8200         if (Subtarget->is64Bit())
8201           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8202         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8203       case TLSModel::LocalDynamic:
8204         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8205                                            Subtarget->is64Bit());
8206       case TLSModel::InitialExec:
8207       case TLSModel::LocalExec:
8208         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8209                                    Subtarget->is64Bit(),
8210                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8211     }
8212     llvm_unreachable("Unknown TLS model.");
8213   }
8214
8215   if (Subtarget->isTargetDarwin()) {
8216     // Darwin only has one model of TLS.  Lower to that.
8217     unsigned char OpFlag = 0;
8218     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8219                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8220
8221     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8222     // global base reg.
8223     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8224                   !Subtarget->is64Bit();
8225     if (PIC32)
8226       OpFlag = X86II::MO_TLVP_PIC_BASE;
8227     else
8228       OpFlag = X86II::MO_TLVP;
8229     SDLoc DL(Op);
8230     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8231                                                 GA->getValueType(0),
8232                                                 GA->getOffset(), OpFlag);
8233     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8234
8235     // With PIC32, the address is actually $g + Offset.
8236     if (PIC32)
8237       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8238                            DAG.getNode(X86ISD::GlobalBaseReg,
8239                                        SDLoc(), getPointerTy()),
8240                            Offset);
8241
8242     // Lowering the machine isd will make sure everything is in the right
8243     // location.
8244     SDValue Chain = DAG.getEntryNode();
8245     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8246     SDValue Args[] = { Chain, Offset };
8247     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8248
8249     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8250     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8251     MFI->setAdjustsStack(true);
8252
8253     // And our return value (tls address) is in the standard call return value
8254     // location.
8255     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8256     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8257                               Chain.getValue(1));
8258   }
8259
8260   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8261     // Just use the implicit TLS architecture
8262     // Need to generate someting similar to:
8263     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8264     //                                  ; from TEB
8265     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8266     //   mov     rcx, qword [rdx+rcx*8]
8267     //   mov     eax, .tls$:tlsvar
8268     //   [rax+rcx] contains the address
8269     // Windows 64bit: gs:0x58
8270     // Windows 32bit: fs:__tls_array
8271
8272     // If GV is an alias then use the aliasee for determining
8273     // thread-localness.
8274     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8275       GV = GA->resolveAliasedGlobal(false);
8276     SDLoc dl(GA);
8277     SDValue Chain = DAG.getEntryNode();
8278
8279     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8280     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8281     // use its literal value of 0x2C.
8282     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8283                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8284                                                              256)
8285                                         : Type::getInt32PtrTy(*DAG.getContext(),
8286                                                               257));
8287
8288     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8289       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8290         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8291
8292     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8293                                         MachinePointerInfo(Ptr),
8294                                         false, false, false, 0);
8295
8296     // Load the _tls_index variable
8297     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8298     if (Subtarget->is64Bit())
8299       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8300                            IDX, MachinePointerInfo(), MVT::i32,
8301                            false, false, 0);
8302     else
8303       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8304                         false, false, false, 0);
8305
8306     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8307                                     getPointerTy());
8308     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8309
8310     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8311     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8312                       false, false, false, 0);
8313
8314     // Get the offset of start of .tls section
8315     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8316                                              GA->getValueType(0),
8317                                              GA->getOffset(), X86II::MO_SECREL);
8318     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8319
8320     // The address of the thread local variable is the add of the thread
8321     // pointer with the offset of the variable.
8322     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8323   }
8324
8325   llvm_unreachable("TLS not implemented for this target.");
8326 }
8327
8328 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8329 /// and take a 2 x i32 value to shift plus a shift amount.
8330 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
8331   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8332   EVT VT = Op.getValueType();
8333   unsigned VTBits = VT.getSizeInBits();
8334   SDLoc dl(Op);
8335   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8336   SDValue ShOpLo = Op.getOperand(0);
8337   SDValue ShOpHi = Op.getOperand(1);
8338   SDValue ShAmt  = Op.getOperand(2);
8339   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8340                                      DAG.getConstant(VTBits - 1, MVT::i8))
8341                        : DAG.getConstant(0, VT);
8342
8343   SDValue Tmp2, Tmp3;
8344   if (Op.getOpcode() == ISD::SHL_PARTS) {
8345     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8346     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
8347   } else {
8348     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8349     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
8350   }
8351
8352   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8353                                 DAG.getConstant(VTBits, MVT::i8));
8354   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8355                              AndNode, DAG.getConstant(0, MVT::i8));
8356
8357   SDValue Hi, Lo;
8358   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8359   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8360   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8361
8362   if (Op.getOpcode() == ISD::SHL_PARTS) {
8363     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8364     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8365   } else {
8366     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8367     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8368   }
8369
8370   SDValue Ops[2] = { Lo, Hi };
8371   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8372 }
8373
8374 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8375                                            SelectionDAG &DAG) const {
8376   EVT SrcVT = Op.getOperand(0).getValueType();
8377
8378   if (SrcVT.isVector())
8379     return SDValue();
8380
8381   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
8382          "Unknown SINT_TO_FP to lower!");
8383
8384   // These are really Legal; return the operand so the caller accepts it as
8385   // Legal.
8386   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8387     return Op;
8388   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8389       Subtarget->is64Bit()) {
8390     return Op;
8391   }
8392
8393   SDLoc dl(Op);
8394   unsigned Size = SrcVT.getSizeInBits()/8;
8395   MachineFunction &MF = DAG.getMachineFunction();
8396   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8397   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8398   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8399                                StackSlot,
8400                                MachinePointerInfo::getFixedStack(SSFI),
8401                                false, false, 0);
8402   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8403 }
8404
8405 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8406                                      SDValue StackSlot,
8407                                      SelectionDAG &DAG) const {
8408   // Build the FILD
8409   SDLoc DL(Op);
8410   SDVTList Tys;
8411   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8412   if (useSSE)
8413     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8414   else
8415     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8416
8417   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8418
8419   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8420   MachineMemOperand *MMO;
8421   if (FI) {
8422     int SSFI = FI->getIndex();
8423     MMO =
8424       DAG.getMachineFunction()
8425       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8426                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8427   } else {
8428     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8429     StackSlot = StackSlot.getOperand(1);
8430   }
8431   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8432   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8433                                            X86ISD::FILD, DL,
8434                                            Tys, Ops, array_lengthof(Ops),
8435                                            SrcVT, MMO);
8436
8437   if (useSSE) {
8438     Chain = Result.getValue(1);
8439     SDValue InFlag = Result.getValue(2);
8440
8441     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8442     // shouldn't be necessary except that RFP cannot be live across
8443     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8444     MachineFunction &MF = DAG.getMachineFunction();
8445     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8446     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8447     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8448     Tys = DAG.getVTList(MVT::Other);
8449     SDValue Ops[] = {
8450       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8451     };
8452     MachineMemOperand *MMO =
8453       DAG.getMachineFunction()
8454       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8455                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8456
8457     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8458                                     Ops, array_lengthof(Ops),
8459                                     Op.getValueType(), MMO);
8460     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8461                          MachinePointerInfo::getFixedStack(SSFI),
8462                          false, false, false, 0);
8463   }
8464
8465   return Result;
8466 }
8467
8468 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8469 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8470                                                SelectionDAG &DAG) const {
8471   // This algorithm is not obvious. Here it is what we're trying to output:
8472   /*
8473      movq       %rax,  %xmm0
8474      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8475      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8476      #ifdef __SSE3__
8477        haddpd   %xmm0, %xmm0
8478      #else
8479        pshufd   $0x4e, %xmm0, %xmm1
8480        addpd    %xmm1, %xmm0
8481      #endif
8482   */
8483
8484   SDLoc dl(Op);
8485   LLVMContext *Context = DAG.getContext();
8486
8487   // Build some magic constants.
8488   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8489   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8490   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8491
8492   SmallVector<Constant*,2> CV1;
8493   CV1.push_back(
8494     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8495                                       APInt(64, 0x4330000000000000ULL))));
8496   CV1.push_back(
8497     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8498                                       APInt(64, 0x4530000000000000ULL))));
8499   Constant *C1 = ConstantVector::get(CV1);
8500   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8501
8502   // Load the 64-bit value into an XMM register.
8503   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8504                             Op.getOperand(0));
8505   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8506                               MachinePointerInfo::getConstantPool(),
8507                               false, false, false, 16);
8508   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8509                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8510                               CLod0);
8511
8512   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8513                               MachinePointerInfo::getConstantPool(),
8514                               false, false, false, 16);
8515   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8516   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8517   SDValue Result;
8518
8519   if (Subtarget->hasSSE3()) {
8520     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8521     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8522   } else {
8523     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8524     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8525                                            S2F, 0x4E, DAG);
8526     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8527                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8528                          Sub);
8529   }
8530
8531   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8532                      DAG.getIntPtrConstant(0));
8533 }
8534
8535 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8536 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8537                                                SelectionDAG &DAG) const {
8538   SDLoc dl(Op);
8539   // FP constant to bias correct the final result.
8540   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8541                                    MVT::f64);
8542
8543   // Load the 32-bit value into an XMM register.
8544   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8545                              Op.getOperand(0));
8546
8547   // Zero out the upper parts of the register.
8548   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8549
8550   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8551                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8552                      DAG.getIntPtrConstant(0));
8553
8554   // Or the load with the bias.
8555   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8556                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8557                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8558                                                    MVT::v2f64, Load)),
8559                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8560                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8561                                                    MVT::v2f64, Bias)));
8562   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8563                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8564                    DAG.getIntPtrConstant(0));
8565
8566   // Subtract the bias.
8567   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8568
8569   // Handle final rounding.
8570   EVT DestVT = Op.getValueType();
8571
8572   if (DestVT.bitsLT(MVT::f64))
8573     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8574                        DAG.getIntPtrConstant(0));
8575   if (DestVT.bitsGT(MVT::f64))
8576     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8577
8578   // Handle final rounding.
8579   return Sub;
8580 }
8581
8582 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8583                                                SelectionDAG &DAG) const {
8584   SDValue N0 = Op.getOperand(0);
8585   EVT SVT = N0.getValueType();
8586   SDLoc dl(Op);
8587
8588   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8589           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8590          "Custom UINT_TO_FP is not supported!");
8591
8592   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8593                              SVT.getVectorNumElements());
8594   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8595                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8596 }
8597
8598 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8599                                            SelectionDAG &DAG) const {
8600   SDValue N0 = Op.getOperand(0);
8601   SDLoc dl(Op);
8602
8603   if (Op.getValueType().isVector())
8604     return lowerUINT_TO_FP_vec(Op, DAG);
8605
8606   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8607   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8608   // the optimization here.
8609   if (DAG.SignBitIsZero(N0))
8610     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8611
8612   EVT SrcVT = N0.getValueType();
8613   EVT DstVT = Op.getValueType();
8614   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8615     return LowerUINT_TO_FP_i64(Op, DAG);
8616   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8617     return LowerUINT_TO_FP_i32(Op, DAG);
8618   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8619     return SDValue();
8620
8621   // Make a 64-bit buffer, and use it to build an FILD.
8622   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8623   if (SrcVT == MVT::i32) {
8624     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8625     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8626                                      getPointerTy(), StackSlot, WordOff);
8627     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8628                                   StackSlot, MachinePointerInfo(),
8629                                   false, false, 0);
8630     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8631                                   OffsetSlot, MachinePointerInfo(),
8632                                   false, false, 0);
8633     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8634     return Fild;
8635   }
8636
8637   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8638   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8639                                StackSlot, MachinePointerInfo(),
8640                                false, false, 0);
8641   // For i64 source, we need to add the appropriate power of 2 if the input
8642   // was negative.  This is the same as the optimization in
8643   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8644   // we must be careful to do the computation in x87 extended precision, not
8645   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8646   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8647   MachineMemOperand *MMO =
8648     DAG.getMachineFunction()
8649     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8650                           MachineMemOperand::MOLoad, 8, 8);
8651
8652   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8653   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8654   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8655                                          array_lengthof(Ops), MVT::i64, MMO);
8656
8657   APInt FF(32, 0x5F800000ULL);
8658
8659   // Check whether the sign bit is set.
8660   SDValue SignSet = DAG.getSetCC(dl,
8661                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8662                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8663                                  ISD::SETLT);
8664
8665   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8666   SDValue FudgePtr = DAG.getConstantPool(
8667                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8668                                          getPointerTy());
8669
8670   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8671   SDValue Zero = DAG.getIntPtrConstant(0);
8672   SDValue Four = DAG.getIntPtrConstant(4);
8673   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8674                                Zero, Four);
8675   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8676
8677   // Load the value out, extending it from f32 to f80.
8678   // FIXME: Avoid the extend by constructing the right constant pool?
8679   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8680                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8681                                  MVT::f32, false, false, 4);
8682   // Extend everything to 80 bits to force it to be done on x87.
8683   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8684   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8685 }
8686
8687 std::pair<SDValue,SDValue>
8688 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8689                                     bool IsSigned, bool IsReplace) const {
8690   SDLoc DL(Op);
8691
8692   EVT DstTy = Op.getValueType();
8693
8694   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8695     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8696     DstTy = MVT::i64;
8697   }
8698
8699   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8700          DstTy.getSimpleVT() >= MVT::i16 &&
8701          "Unknown FP_TO_INT to lower!");
8702
8703   // These are really Legal.
8704   if (DstTy == MVT::i32 &&
8705       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8706     return std::make_pair(SDValue(), SDValue());
8707   if (Subtarget->is64Bit() &&
8708       DstTy == MVT::i64 &&
8709       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8710     return std::make_pair(SDValue(), SDValue());
8711
8712   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8713   // stack slot, or into the FTOL runtime function.
8714   MachineFunction &MF = DAG.getMachineFunction();
8715   unsigned MemSize = DstTy.getSizeInBits()/8;
8716   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8717   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8718
8719   unsigned Opc;
8720   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8721     Opc = X86ISD::WIN_FTOL;
8722   else
8723     switch (DstTy.getSimpleVT().SimpleTy) {
8724     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8725     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8726     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8727     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8728     }
8729
8730   SDValue Chain = DAG.getEntryNode();
8731   SDValue Value = Op.getOperand(0);
8732   EVT TheVT = Op.getOperand(0).getValueType();
8733   // FIXME This causes a redundant load/store if the SSE-class value is already
8734   // in memory, such as if it is on the callstack.
8735   if (isScalarFPTypeInSSEReg(TheVT)) {
8736     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8737     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8738                          MachinePointerInfo::getFixedStack(SSFI),
8739                          false, false, 0);
8740     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8741     SDValue Ops[] = {
8742       Chain, StackSlot, DAG.getValueType(TheVT)
8743     };
8744
8745     MachineMemOperand *MMO =
8746       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8747                               MachineMemOperand::MOLoad, MemSize, MemSize);
8748     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8749                                     array_lengthof(Ops), DstTy, MMO);
8750     Chain = Value.getValue(1);
8751     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8752     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8753   }
8754
8755   MachineMemOperand *MMO =
8756     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8757                             MachineMemOperand::MOStore, MemSize, MemSize);
8758
8759   if (Opc != X86ISD::WIN_FTOL) {
8760     // Build the FP_TO_INT*_IN_MEM
8761     SDValue Ops[] = { Chain, Value, StackSlot };
8762     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8763                                            Ops, array_lengthof(Ops), DstTy,
8764                                            MMO);
8765     return std::make_pair(FIST, StackSlot);
8766   } else {
8767     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8768       DAG.getVTList(MVT::Other, MVT::Glue),
8769       Chain, Value);
8770     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8771       MVT::i32, ftol.getValue(1));
8772     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8773       MVT::i32, eax.getValue(2));
8774     SDValue Ops[] = { eax, edx };
8775     SDValue pair = IsReplace
8776       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8777       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8778     return std::make_pair(pair, SDValue());
8779   }
8780 }
8781
8782 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8783                               const X86Subtarget *Subtarget) {
8784   MVT VT = Op->getSimpleValueType(0);
8785   SDValue In = Op->getOperand(0);
8786   MVT InVT = In.getSimpleValueType();
8787   SDLoc dl(Op);
8788
8789   // Optimize vectors in AVX mode:
8790   //
8791   //   v8i16 -> v8i32
8792   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8793   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8794   //   Concat upper and lower parts.
8795   //
8796   //   v4i32 -> v4i64
8797   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8798   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8799   //   Concat upper and lower parts.
8800   //
8801
8802   if (((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8803       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8804     return SDValue();
8805
8806   if (Subtarget->hasInt256())
8807     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8808
8809   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8810   SDValue Undef = DAG.getUNDEF(InVT);
8811   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8812   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8813   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8814
8815   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
8816                              VT.getVectorNumElements()/2);
8817
8818   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8819   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8820
8821   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8822 }
8823
8824 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8825                                SelectionDAG &DAG) {
8826   if (Subtarget->hasFp256()) {
8827     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8828     if (Res.getNode())
8829       return Res;
8830   }
8831
8832   return SDValue();
8833 }
8834
8835 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8836                                 SelectionDAG &DAG) {
8837   SDLoc DL(Op);
8838   MVT VT = Op.getSimpleValueType();
8839   SDValue In = Op.getOperand(0);
8840   MVT SVT = In.getSimpleValueType();
8841
8842   if (Subtarget->hasFp256()) {
8843     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8844     if (Res.getNode())
8845       return Res;
8846   }
8847
8848   if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8849       VT.getVectorNumElements() != SVT.getVectorNumElements())
8850     return SDValue();
8851
8852   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8853
8854   // AVX2 has better support of integer extending.
8855   if (Subtarget->hasInt256())
8856     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8857
8858   SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8859   static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8860   SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
8861                            DAG.getVectorShuffle(MVT::v8i16, DL, In,
8862                                                 DAG.getUNDEF(MVT::v8i16),
8863                                                 &Mask[0]));
8864
8865   return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8866 }
8867
8868 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8869   SDLoc DL(Op);
8870   MVT VT = Op.getSimpleValueType();
8871   SDValue In = Op.getOperand(0);
8872   MVT SVT = In.getSimpleValueType();
8873
8874   if ((VT == MVT::v4i32) && (SVT == MVT::v4i64)) {
8875     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
8876     if (Subtarget->hasInt256()) {
8877       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
8878       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
8879       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
8880                                 ShufMask);
8881       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
8882                          DAG.getIntPtrConstant(0));
8883     }
8884
8885     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
8886     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8887                                DAG.getIntPtrConstant(0));
8888     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8889                                DAG.getIntPtrConstant(2));
8890
8891     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8892     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8893
8894     // The PSHUFD mask:
8895     static const int ShufMask1[] = {0, 2, 0, 0};
8896     SDValue Undef = DAG.getUNDEF(VT);
8897     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
8898     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
8899
8900     // The MOVLHPS mask:
8901     static const int ShufMask2[] = {0, 1, 4, 5};
8902     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
8903   }
8904
8905   if ((VT == MVT::v8i16) && (SVT == MVT::v8i32)) {
8906     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
8907     if (Subtarget->hasInt256()) {
8908       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
8909
8910       SmallVector<SDValue,32> pshufbMask;
8911       for (unsigned i = 0; i < 2; ++i) {
8912         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
8913         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
8914         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
8915         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
8916         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
8917         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
8918         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
8919         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
8920         for (unsigned j = 0; j < 8; ++j)
8921           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
8922       }
8923       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
8924                                &pshufbMask[0], 32);
8925       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
8926       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
8927
8928       static const int ShufMask[] = {0,  2,  -1,  -1};
8929       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
8930                                 &ShufMask[0]);
8931       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
8932                        DAG.getIntPtrConstant(0));
8933       return DAG.getNode(ISD::BITCAST, DL, VT, In);
8934     }
8935
8936     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
8937                                DAG.getIntPtrConstant(0));
8938
8939     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
8940                                DAG.getIntPtrConstant(4));
8941
8942     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
8943     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
8944
8945     // The PSHUFB mask:
8946     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
8947                                    -1, -1, -1, -1, -1, -1, -1, -1};
8948
8949     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
8950     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
8951     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
8952
8953     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
8954     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
8955
8956     // The MOVLHPS Mask:
8957     static const int ShufMask2[] = {0, 1, 4, 5};
8958     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
8959     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
8960   }
8961
8962   // Handle truncation of V256 to V128 using shuffles.
8963   if (!VT.is128BitVector() || !SVT.is256BitVector())
8964     return SDValue();
8965
8966   assert(VT.getVectorNumElements() != SVT.getVectorNumElements() &&
8967          "Invalid op");
8968   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
8969
8970   unsigned NumElems = VT.getVectorNumElements();
8971   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
8972                              NumElems * 2);
8973
8974   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
8975   // Prepare truncation shuffle mask
8976   for (unsigned i = 0; i != NumElems; ++i)
8977     MaskVec[i] = i * 2;
8978   SDValue V = DAG.getVectorShuffle(NVT, DL,
8979                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
8980                                    DAG.getUNDEF(NVT), &MaskVec[0]);
8981   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
8982                      DAG.getIntPtrConstant(0));
8983 }
8984
8985 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
8986                                            SelectionDAG &DAG) const {
8987   MVT VT = Op.getSimpleValueType();
8988   if (VT.isVector()) {
8989     if (VT == MVT::v8i16)
8990       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
8991                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
8992                                      MVT::v8i32, Op.getOperand(0)));
8993     return SDValue();
8994   }
8995
8996   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8997     /*IsSigned=*/ true, /*IsReplace=*/ false);
8998   SDValue FIST = Vals.first, StackSlot = Vals.second;
8999   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9000   if (FIST.getNode() == 0) return Op;
9001
9002   if (StackSlot.getNode())
9003     // Load the result.
9004     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9005                        FIST, StackSlot, MachinePointerInfo(),
9006                        false, false, false, 0);
9007
9008   // The node is the result.
9009   return FIST;
9010 }
9011
9012 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9013                                            SelectionDAG &DAG) const {
9014   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9015     /*IsSigned=*/ false, /*IsReplace=*/ false);
9016   SDValue FIST = Vals.first, StackSlot = Vals.second;
9017   assert(FIST.getNode() && "Unexpected failure");
9018
9019   if (StackSlot.getNode())
9020     // Load the result.
9021     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9022                        FIST, StackSlot, MachinePointerInfo(),
9023                        false, false, false, 0);
9024
9025   // The node is the result.
9026   return FIST;
9027 }
9028
9029 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9030   SDLoc DL(Op);
9031   MVT VT = Op.getSimpleValueType();
9032   SDValue In = Op.getOperand(0);
9033   MVT SVT = In.getSimpleValueType();
9034
9035   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9036
9037   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9038                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9039                                  In, DAG.getUNDEF(SVT)));
9040 }
9041
9042 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
9043   LLVMContext *Context = DAG.getContext();
9044   SDLoc dl(Op);
9045   MVT VT = Op.getSimpleValueType();
9046   MVT EltVT = VT;
9047   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9048   if (VT.isVector()) {
9049     EltVT = VT.getVectorElementType();
9050     NumElts = VT.getVectorNumElements();
9051   }
9052   Constant *C;
9053   if (EltVT == MVT::f64)
9054     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9055                                           APInt(64, ~(1ULL << 63))));
9056   else
9057     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9058                                           APInt(32, ~(1U << 31))));
9059   C = ConstantVector::getSplat(NumElts, C);
9060   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9061   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9062   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9063                              MachinePointerInfo::getConstantPool(),
9064                              false, false, false, Alignment);
9065   if (VT.isVector()) {
9066     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9067     return DAG.getNode(ISD::BITCAST, dl, VT,
9068                        DAG.getNode(ISD::AND, dl, ANDVT,
9069                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9070                                                Op.getOperand(0)),
9071                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9072   }
9073   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9074 }
9075
9076 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9077   LLVMContext *Context = DAG.getContext();
9078   SDLoc dl(Op);
9079   MVT VT = Op.getSimpleValueType();
9080   MVT EltVT = VT;
9081   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9082   if (VT.isVector()) {
9083     EltVT = VT.getVectorElementType();
9084     NumElts = VT.getVectorNumElements();
9085   }
9086   Constant *C;
9087   if (EltVT == MVT::f64)
9088     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9089                                           APInt(64, 1ULL << 63)));
9090   else
9091     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9092                                           APInt(32, 1U << 31)));
9093   C = ConstantVector::getSplat(NumElts, C);
9094   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9095   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9096   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9097                              MachinePointerInfo::getConstantPool(),
9098                              false, false, false, Alignment);
9099   if (VT.isVector()) {
9100     MVT XORVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9101     return DAG.getNode(ISD::BITCAST, dl, VT,
9102                        DAG.getNode(ISD::XOR, dl, XORVT,
9103                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9104                                                Op.getOperand(0)),
9105                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9106   }
9107
9108   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9109 }
9110
9111 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9112   LLVMContext *Context = DAG.getContext();
9113   SDValue Op0 = Op.getOperand(0);
9114   SDValue Op1 = Op.getOperand(1);
9115   SDLoc dl(Op);
9116   MVT VT = Op.getSimpleValueType();
9117   MVT SrcVT = Op1.getSimpleValueType();
9118
9119   // If second operand is smaller, extend it first.
9120   if (SrcVT.bitsLT(VT)) {
9121     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9122     SrcVT = VT;
9123   }
9124   // And if it is bigger, shrink it first.
9125   if (SrcVT.bitsGT(VT)) {
9126     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9127     SrcVT = VT;
9128   }
9129
9130   // At this point the operands and the result should have the same
9131   // type, and that won't be f80 since that is not custom lowered.
9132
9133   // First get the sign bit of second operand.
9134   SmallVector<Constant*,4> CV;
9135   if (SrcVT == MVT::f64) {
9136     const fltSemantics &Sem = APFloat::IEEEdouble;
9137     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9138     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9139   } else {
9140     const fltSemantics &Sem = APFloat::IEEEsingle;
9141     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9142     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9143     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9144     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9145   }
9146   Constant *C = ConstantVector::get(CV);
9147   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9148   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9149                               MachinePointerInfo::getConstantPool(),
9150                               false, false, false, 16);
9151   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9152
9153   // Shift sign bit right or left if the two operands have different types.
9154   if (SrcVT.bitsGT(VT)) {
9155     // Op0 is MVT::f32, Op1 is MVT::f64.
9156     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9157     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9158                           DAG.getConstant(32, MVT::i32));
9159     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9160     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9161                           DAG.getIntPtrConstant(0));
9162   }
9163
9164   // Clear first operand sign bit.
9165   CV.clear();
9166   if (VT == MVT::f64) {
9167     const fltSemantics &Sem = APFloat::IEEEdouble;
9168     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9169                                                    APInt(64, ~(1ULL << 63)))));
9170     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9171   } else {
9172     const fltSemantics &Sem = APFloat::IEEEsingle;
9173     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9174                                                    APInt(32, ~(1U << 31)))));
9175     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9176     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9177     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9178   }
9179   C = ConstantVector::get(CV);
9180   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9181   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9182                               MachinePointerInfo::getConstantPool(),
9183                               false, false, false, 16);
9184   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9185
9186   // Or the value with the sign bit.
9187   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9188 }
9189
9190 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9191   SDValue N0 = Op.getOperand(0);
9192   SDLoc dl(Op);
9193   MVT VT = Op.getSimpleValueType();
9194
9195   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9196   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9197                                   DAG.getConstant(1, VT));
9198   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9199 }
9200
9201 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9202 //
9203 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9204                                       SelectionDAG &DAG) {
9205   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9206
9207   if (!Subtarget->hasSSE41())
9208     return SDValue();
9209
9210   if (!Op->hasOneUse())
9211     return SDValue();
9212
9213   SDNode *N = Op.getNode();
9214   SDLoc DL(N);
9215
9216   SmallVector<SDValue, 8> Opnds;
9217   DenseMap<SDValue, unsigned> VecInMap;
9218   EVT VT = MVT::Other;
9219
9220   // Recognize a special case where a vector is casted into wide integer to
9221   // test all 0s.
9222   Opnds.push_back(N->getOperand(0));
9223   Opnds.push_back(N->getOperand(1));
9224
9225   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9226     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9227     // BFS traverse all OR'd operands.
9228     if (I->getOpcode() == ISD::OR) {
9229       Opnds.push_back(I->getOperand(0));
9230       Opnds.push_back(I->getOperand(1));
9231       // Re-evaluate the number of nodes to be traversed.
9232       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9233       continue;
9234     }
9235
9236     // Quit if a non-EXTRACT_VECTOR_ELT
9237     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9238       return SDValue();
9239
9240     // Quit if without a constant index.
9241     SDValue Idx = I->getOperand(1);
9242     if (!isa<ConstantSDNode>(Idx))
9243       return SDValue();
9244
9245     SDValue ExtractedFromVec = I->getOperand(0);
9246     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9247     if (M == VecInMap.end()) {
9248       VT = ExtractedFromVec.getValueType();
9249       // Quit if not 128/256-bit vector.
9250       if (!VT.is128BitVector() && !VT.is256BitVector())
9251         return SDValue();
9252       // Quit if not the same type.
9253       if (VecInMap.begin() != VecInMap.end() &&
9254           VT != VecInMap.begin()->first.getValueType())
9255         return SDValue();
9256       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9257     }
9258     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9259   }
9260
9261   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9262          "Not extracted from 128-/256-bit vector.");
9263
9264   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9265   SmallVector<SDValue, 8> VecIns;
9266
9267   for (DenseMap<SDValue, unsigned>::const_iterator
9268         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9269     // Quit if not all elements are used.
9270     if (I->second != FullMask)
9271       return SDValue();
9272     VecIns.push_back(I->first);
9273   }
9274
9275   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9276
9277   // Cast all vectors into TestVT for PTEST.
9278   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9279     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9280
9281   // If more than one full vectors are evaluated, OR them first before PTEST.
9282   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9283     // Each iteration will OR 2 nodes and append the result until there is only
9284     // 1 node left, i.e. the final OR'd value of all vectors.
9285     SDValue LHS = VecIns[Slot];
9286     SDValue RHS = VecIns[Slot + 1];
9287     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9288   }
9289
9290   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9291                      VecIns.back(), VecIns.back());
9292 }
9293
9294 /// Emit nodes that will be selected as "test Op0,Op0", or something
9295 /// equivalent.
9296 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9297                                     SelectionDAG &DAG) const {
9298   SDLoc dl(Op);
9299
9300   // CF and OF aren't always set the way we want. Determine which
9301   // of these we need.
9302   bool NeedCF = false;
9303   bool NeedOF = false;
9304   switch (X86CC) {
9305   default: break;
9306   case X86::COND_A: case X86::COND_AE:
9307   case X86::COND_B: case X86::COND_BE:
9308     NeedCF = true;
9309     break;
9310   case X86::COND_G: case X86::COND_GE:
9311   case X86::COND_L: case X86::COND_LE:
9312   case X86::COND_O: case X86::COND_NO:
9313     NeedOF = true;
9314     break;
9315   }
9316
9317   // See if we can use the EFLAGS value from the operand instead of
9318   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9319   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9320   if (Op.getResNo() != 0 || NeedOF || NeedCF)
9321     // Emit a CMP with 0, which is the TEST pattern.
9322     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9323                        DAG.getConstant(0, Op.getValueType()));
9324
9325   unsigned Opcode = 0;
9326   unsigned NumOperands = 0;
9327
9328   // Truncate operations may prevent the merge of the SETCC instruction
9329   // and the arithmetic intruction before it. Attempt to truncate the operands
9330   // of the arithmetic instruction and use a reduced bit-width instruction.
9331   bool NeedTruncation = false;
9332   SDValue ArithOp = Op;
9333   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9334     SDValue Arith = Op->getOperand(0);
9335     // Both the trunc and the arithmetic op need to have one user each.
9336     if (Arith->hasOneUse())
9337       switch (Arith.getOpcode()) {
9338         default: break;
9339         case ISD::ADD:
9340         case ISD::SUB:
9341         case ISD::AND:
9342         case ISD::OR:
9343         case ISD::XOR: {
9344           NeedTruncation = true;
9345           ArithOp = Arith;
9346         }
9347       }
9348   }
9349
9350   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9351   // which may be the result of a CAST.  We use the variable 'Op', which is the
9352   // non-casted variable when we check for possible users.
9353   switch (ArithOp.getOpcode()) {
9354   case ISD::ADD:
9355     // Due to an isel shortcoming, be conservative if this add is likely to be
9356     // selected as part of a load-modify-store instruction. When the root node
9357     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9358     // uses of other nodes in the match, such as the ADD in this case. This
9359     // leads to the ADD being left around and reselected, with the result being
9360     // two adds in the output.  Alas, even if none our users are stores, that
9361     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9362     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9363     // climbing the DAG back to the root, and it doesn't seem to be worth the
9364     // effort.
9365     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9366          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9367       if (UI->getOpcode() != ISD::CopyToReg &&
9368           UI->getOpcode() != ISD::SETCC &&
9369           UI->getOpcode() != ISD::STORE)
9370         goto default_case;
9371
9372     if (ConstantSDNode *C =
9373         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9374       // An add of one will be selected as an INC.
9375       if (C->getAPIntValue() == 1) {
9376         Opcode = X86ISD::INC;
9377         NumOperands = 1;
9378         break;
9379       }
9380
9381       // An add of negative one (subtract of one) will be selected as a DEC.
9382       if (C->getAPIntValue().isAllOnesValue()) {
9383         Opcode = X86ISD::DEC;
9384         NumOperands = 1;
9385         break;
9386       }
9387     }
9388
9389     // Otherwise use a regular EFLAGS-setting add.
9390     Opcode = X86ISD::ADD;
9391     NumOperands = 2;
9392     break;
9393   case ISD::AND: {
9394     // If the primary and result isn't used, don't bother using X86ISD::AND,
9395     // because a TEST instruction will be better.
9396     bool NonFlagUse = false;
9397     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9398            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9399       SDNode *User = *UI;
9400       unsigned UOpNo = UI.getOperandNo();
9401       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9402         // Look pass truncate.
9403         UOpNo = User->use_begin().getOperandNo();
9404         User = *User->use_begin();
9405       }
9406
9407       if (User->getOpcode() != ISD::BRCOND &&
9408           User->getOpcode() != ISD::SETCC &&
9409           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9410         NonFlagUse = true;
9411         break;
9412       }
9413     }
9414
9415     if (!NonFlagUse)
9416       break;
9417   }
9418     // FALL THROUGH
9419   case ISD::SUB:
9420   case ISD::OR:
9421   case ISD::XOR:
9422     // Due to the ISEL shortcoming noted above, be conservative if this op is
9423     // likely to be selected as part of a load-modify-store instruction.
9424     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9425            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9426       if (UI->getOpcode() == ISD::STORE)
9427         goto default_case;
9428
9429     // Otherwise use a regular EFLAGS-setting instruction.
9430     switch (ArithOp.getOpcode()) {
9431     default: llvm_unreachable("unexpected operator!");
9432     case ISD::SUB: Opcode = X86ISD::SUB; break;
9433     case ISD::XOR: Opcode = X86ISD::XOR; break;
9434     case ISD::AND: Opcode = X86ISD::AND; break;
9435     case ISD::OR: {
9436       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9437         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9438         if (EFLAGS.getNode())
9439           return EFLAGS;
9440       }
9441       Opcode = X86ISD::OR;
9442       break;
9443     }
9444     }
9445
9446     NumOperands = 2;
9447     break;
9448   case X86ISD::ADD:
9449   case X86ISD::SUB:
9450   case X86ISD::INC:
9451   case X86ISD::DEC:
9452   case X86ISD::OR:
9453   case X86ISD::XOR:
9454   case X86ISD::AND:
9455     return SDValue(Op.getNode(), 1);
9456   default:
9457   default_case:
9458     break;
9459   }
9460
9461   // If we found that truncation is beneficial, perform the truncation and
9462   // update 'Op'.
9463   if (NeedTruncation) {
9464     EVT VT = Op.getValueType();
9465     SDValue WideVal = Op->getOperand(0);
9466     EVT WideVT = WideVal.getValueType();
9467     unsigned ConvertedOp = 0;
9468     // Use a target machine opcode to prevent further DAGCombine
9469     // optimizations that may separate the arithmetic operations
9470     // from the setcc node.
9471     switch (WideVal.getOpcode()) {
9472       default: break;
9473       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9474       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9475       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9476       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9477       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9478     }
9479
9480     if (ConvertedOp) {
9481       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9482       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9483         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9484         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9485         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9486       }
9487     }
9488   }
9489
9490   if (Opcode == 0)
9491     // Emit a CMP with 0, which is the TEST pattern.
9492     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9493                        DAG.getConstant(0, Op.getValueType()));
9494
9495   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9496   SmallVector<SDValue, 4> Ops;
9497   for (unsigned i = 0; i != NumOperands; ++i)
9498     Ops.push_back(Op.getOperand(i));
9499
9500   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9501   DAG.ReplaceAllUsesWith(Op, New);
9502   return SDValue(New.getNode(), 1);
9503 }
9504
9505 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9506 /// equivalent.
9507 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9508                                    SelectionDAG &DAG) const {
9509   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9510     if (C->getAPIntValue() == 0)
9511       return EmitTest(Op0, X86CC, DAG);
9512
9513   SDLoc dl(Op0);
9514   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9515        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9516     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9517     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9518     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9519                               Op0, Op1);
9520     return SDValue(Sub.getNode(), 1);
9521   }
9522   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9523 }
9524
9525 /// Convert a comparison if required by the subtarget.
9526 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9527                                                  SelectionDAG &DAG) const {
9528   // If the subtarget does not support the FUCOMI instruction, floating-point
9529   // comparisons have to be converted.
9530   if (Subtarget->hasCMov() ||
9531       Cmp.getOpcode() != X86ISD::CMP ||
9532       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9533       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9534     return Cmp;
9535
9536   // The instruction selector will select an FUCOM instruction instead of
9537   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9538   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9539   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9540   SDLoc dl(Cmp);
9541   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9542   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9543   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9544                             DAG.getConstant(8, MVT::i8));
9545   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9546   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9547 }
9548
9549 static bool isAllOnes(SDValue V) {
9550   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9551   return C && C->isAllOnesValue();
9552 }
9553
9554 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9555 /// if it's possible.
9556 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9557                                      SDLoc dl, SelectionDAG &DAG) const {
9558   SDValue Op0 = And.getOperand(0);
9559   SDValue Op1 = And.getOperand(1);
9560   if (Op0.getOpcode() == ISD::TRUNCATE)
9561     Op0 = Op0.getOperand(0);
9562   if (Op1.getOpcode() == ISD::TRUNCATE)
9563     Op1 = Op1.getOperand(0);
9564
9565   SDValue LHS, RHS;
9566   if (Op1.getOpcode() == ISD::SHL)
9567     std::swap(Op0, Op1);
9568   if (Op0.getOpcode() == ISD::SHL) {
9569     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9570       if (And00C->getZExtValue() == 1) {
9571         // If we looked past a truncate, check that it's only truncating away
9572         // known zeros.
9573         unsigned BitWidth = Op0.getValueSizeInBits();
9574         unsigned AndBitWidth = And.getValueSizeInBits();
9575         if (BitWidth > AndBitWidth) {
9576           APInt Zeros, Ones;
9577           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9578           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9579             return SDValue();
9580         }
9581         LHS = Op1;
9582         RHS = Op0.getOperand(1);
9583       }
9584   } else if (Op1.getOpcode() == ISD::Constant) {
9585     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9586     uint64_t AndRHSVal = AndRHS->getZExtValue();
9587     SDValue AndLHS = Op0;
9588
9589     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9590       LHS = AndLHS.getOperand(0);
9591       RHS = AndLHS.getOperand(1);
9592     }
9593
9594     // Use BT if the immediate can't be encoded in a TEST instruction.
9595     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9596       LHS = AndLHS;
9597       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9598     }
9599   }
9600
9601   if (LHS.getNode()) {
9602     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9603     // instruction.  Since the shift amount is in-range-or-undefined, we know
9604     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9605     // the encoding for the i16 version is larger than the i32 version.
9606     // Also promote i16 to i32 for performance / code size reason.
9607     if (LHS.getValueType() == MVT::i8 ||
9608         LHS.getValueType() == MVT::i16)
9609       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9610
9611     // If the operand types disagree, extend the shift amount to match.  Since
9612     // BT ignores high bits (like shifts) we can use anyextend.
9613     if (LHS.getValueType() != RHS.getValueType())
9614       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9615
9616     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9617     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9618     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9619                        DAG.getConstant(Cond, MVT::i8), BT);
9620   }
9621
9622   return SDValue();
9623 }
9624
9625 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9626 /// mask CMPs.
9627 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9628                               SDValue &Op1) {
9629   unsigned SSECC;
9630   bool Swap = false;
9631
9632   // SSE Condition code mapping:
9633   //  0 - EQ
9634   //  1 - LT
9635   //  2 - LE
9636   //  3 - UNORD
9637   //  4 - NEQ
9638   //  5 - NLT
9639   //  6 - NLE
9640   //  7 - ORD
9641   switch (SetCCOpcode) {
9642   default: llvm_unreachable("Unexpected SETCC condition");
9643   case ISD::SETOEQ:
9644   case ISD::SETEQ:  SSECC = 0; break;
9645   case ISD::SETOGT:
9646   case ISD::SETGT:  Swap = true; // Fallthrough
9647   case ISD::SETLT:
9648   case ISD::SETOLT: SSECC = 1; break;
9649   case ISD::SETOGE:
9650   case ISD::SETGE:  Swap = true; // Fallthrough
9651   case ISD::SETLE:
9652   case ISD::SETOLE: SSECC = 2; break;
9653   case ISD::SETUO:  SSECC = 3; break;
9654   case ISD::SETUNE:
9655   case ISD::SETNE:  SSECC = 4; break;
9656   case ISD::SETULE: Swap = true; // Fallthrough
9657   case ISD::SETUGE: SSECC = 5; break;
9658   case ISD::SETULT: Swap = true; // Fallthrough
9659   case ISD::SETUGT: SSECC = 6; break;
9660   case ISD::SETO:   SSECC = 7; break;
9661   case ISD::SETUEQ:
9662   case ISD::SETONE: SSECC = 8; break;
9663   }
9664   if (Swap)
9665     std::swap(Op0, Op1);
9666
9667   return SSECC;
9668 }
9669
9670 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9671 // ones, and then concatenate the result back.
9672 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9673   MVT VT = Op.getSimpleValueType();
9674
9675   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9676          "Unsupported value type for operation");
9677
9678   unsigned NumElems = VT.getVectorNumElements();
9679   SDLoc dl(Op);
9680   SDValue CC = Op.getOperand(2);
9681
9682   // Extract the LHS vectors
9683   SDValue LHS = Op.getOperand(0);
9684   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9685   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9686
9687   // Extract the RHS vectors
9688   SDValue RHS = Op.getOperand(1);
9689   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9690   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9691
9692   // Issue the operation on the smaller types and concatenate the result back
9693   MVT EltVT = VT.getVectorElementType();
9694   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9695   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9696                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9697                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9698 }
9699
9700 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9701   SDValue Cond;
9702   SDValue Op0 = Op.getOperand(0);
9703   SDValue Op1 = Op.getOperand(1);
9704   SDValue CC = Op.getOperand(2);
9705   MVT VT = Op.getSimpleValueType();
9706
9707   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9708          Op.getValueType().getScalarType() == MVT::i1 &&
9709          "Cannot set masked compare for this operation");
9710
9711   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9712   SDLoc dl(Op);
9713
9714   bool Unsigned = false;
9715   unsigned SSECC;
9716   switch (SetCCOpcode) {
9717   default: llvm_unreachable("Unexpected SETCC condition");
9718   case ISD::SETNE:  SSECC = 4; break;
9719   case ISD::SETEQ:  SSECC = 0; break;
9720   case ISD::SETUGT: Unsigned = true;
9721   case ISD::SETGT:  SSECC = 6; break; // NLE
9722   case ISD::SETULT: Unsigned = true;
9723   case ISD::SETLT:  SSECC = 1; break;
9724   case ISD::SETUGE: Unsigned = true;
9725   case ISD::SETGE:  SSECC = 5; break; // NLT
9726   case ISD::SETULE: Unsigned = true;
9727   case ISD::SETLE:  SSECC = 2; break;
9728   }
9729   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9730   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9731                      DAG.getConstant(SSECC, MVT::i8));
9732
9733 }
9734
9735 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9736                            SelectionDAG &DAG) {
9737   SDValue Cond;
9738   SDValue Op0 = Op.getOperand(0);
9739   SDValue Op1 = Op.getOperand(1);
9740   SDValue CC = Op.getOperand(2);
9741   MVT VT = Op.getSimpleValueType();
9742   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9743   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
9744   SDLoc dl(Op);
9745
9746   if (isFP) {
9747 #ifndef NDEBUG
9748     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
9749     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9750 #endif
9751
9752     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
9753     unsigned Opc = X86ISD::CMPP;
9754     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
9755       assert(VT.getVectorNumElements() <= 16);
9756       Opc = X86ISD::CMPM;
9757     }
9758     // In the two special cases we can't handle, emit two comparisons.
9759     if (SSECC == 8) {
9760       unsigned CC0, CC1;
9761       unsigned CombineOpc;
9762       if (SetCCOpcode == ISD::SETUEQ) {
9763         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9764       } else {
9765         assert(SetCCOpcode == ISD::SETONE);
9766         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9767       }
9768
9769       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9770                                  DAG.getConstant(CC0, MVT::i8));
9771       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
9772                                  DAG.getConstant(CC1, MVT::i8));
9773       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9774     }
9775     // Handle all other FP comparisons here.
9776     return DAG.getNode(Opc, dl, VT, Op0, Op1,
9777                        DAG.getConstant(SSECC, MVT::i8));
9778   }
9779
9780   // Break 256-bit integer vector compare into smaller ones.
9781   if (VT.is256BitVector() && !Subtarget->hasInt256())
9782     return Lower256IntVSETCC(Op, DAG);
9783
9784   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9785   EVT OpVT = Op1.getValueType();
9786   if (Subtarget->hasAVX512()) {
9787     if (Op1.getValueType().is512BitVector() ||
9788         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9789       return LowerIntVSETCC_AVX512(Op, DAG);
9790
9791     // In AVX-512 architecture setcc returns mask with i1 elements,
9792     // But there is no compare instruction for i8 and i16 elements.
9793     // We are not talking about 512-bit operands in this case, these
9794     // types are illegal.
9795     if (MaskResult &&
9796         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9797          OpVT.getVectorElementType().getSizeInBits() >= 8))
9798       return DAG.getNode(ISD::TRUNCATE, dl, VT,
9799                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9800   }
9801
9802   // We are handling one of the integer comparisons here.  Since SSE only has
9803   // GT and EQ comparisons for integer, swapping operands and multiple
9804   // operations may be required for some comparisons.
9805   unsigned Opc;
9806   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9807   
9808   switch (SetCCOpcode) {
9809   default: llvm_unreachable("Unexpected SETCC condition");
9810   case ISD::SETNE:  Invert = true;
9811   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
9812   case ISD::SETLT:  Swap = true;
9813   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
9814   case ISD::SETGE:  Swap = true;
9815   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9816                     Invert = true; break;
9817   case ISD::SETULT: Swap = true;
9818   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9819                     FlipSigns = true; break;
9820   case ISD::SETUGE: Swap = true;
9821   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9822                     FlipSigns = true; Invert = true; break;
9823   }
9824   
9825   // Special case: Use min/max operations for SETULE/SETUGE
9826   MVT VET = VT.getVectorElementType();
9827   bool hasMinMax =
9828        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9829     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
9830   
9831   if (hasMinMax) {
9832     switch (SetCCOpcode) {
9833     default: break;
9834     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9835     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9836     }
9837     
9838     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9839   }
9840   
9841   if (Swap)
9842     std::swap(Op0, Op1);
9843
9844   // Check that the operation in question is available (most are plain SSE2,
9845   // but PCMPGTQ and PCMPEQQ have different requirements).
9846   if (VT == MVT::v2i64) {
9847     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9848       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9849
9850       // First cast everything to the right type.
9851       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9852       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9853
9854       // Since SSE has no unsigned integer comparisons, we need to flip the sign
9855       // bits of the inputs before performing those operations. The lower
9856       // compare is always unsigned.
9857       SDValue SB;
9858       if (FlipSigns) {
9859         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
9860       } else {
9861         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
9862         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
9863         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
9864                          Sign, Zero, Sign, Zero);
9865       }
9866       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
9867       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
9868
9869       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
9870       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
9871       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
9872
9873       // Create masks for only the low parts/high parts of the 64 bit integers.
9874       static const int MaskHi[] = { 1, 1, 3, 3 };
9875       static const int MaskLo[] = { 0, 0, 2, 2 };
9876       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
9877       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
9878       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
9879
9880       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
9881       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
9882
9883       if (Invert)
9884         Result = DAG.getNOT(dl, Result, MVT::v4i32);
9885
9886       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9887     }
9888
9889     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
9890       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
9891       // pcmpeqd + pshufd + pand.
9892       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
9893
9894       // First cast everything to the right type.
9895       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9896       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9897
9898       // Do the compare.
9899       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
9900
9901       // Make sure the lower and upper halves are both all-ones.
9902       static const int Mask[] = { 1, 0, 3, 2 };
9903       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
9904       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
9905
9906       if (Invert)
9907         Result = DAG.getNOT(dl, Result, MVT::v4i32);
9908
9909       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
9910     }
9911   }
9912
9913   // Since SSE has no unsigned integer comparisons, we need to flip the sign
9914   // bits of the inputs before performing those operations.
9915   if (FlipSigns) {
9916     EVT EltVT = VT.getVectorElementType();
9917     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
9918     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
9919     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
9920   }
9921
9922   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
9923
9924   // If the logical-not of the result is required, perform that now.
9925   if (Invert)
9926     Result = DAG.getNOT(dl, Result, VT);
9927   
9928   if (MinMax)
9929     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
9930
9931   return Result;
9932 }
9933
9934 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
9935
9936   MVT VT = Op.getSimpleValueType();
9937
9938   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
9939
9940   assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
9941   SDValue Op0 = Op.getOperand(0);
9942   SDValue Op1 = Op.getOperand(1);
9943   SDLoc dl(Op);
9944   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
9945
9946   // Optimize to BT if possible.
9947   // Lower (X & (1 << N)) == 0 to BT(X, N).
9948   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
9949   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
9950   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
9951       Op1.getOpcode() == ISD::Constant &&
9952       cast<ConstantSDNode>(Op1)->isNullValue() &&
9953       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9954     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
9955     if (NewSetCC.getNode())
9956       return NewSetCC;
9957   }
9958
9959   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
9960   // these.
9961   if (Op1.getOpcode() == ISD::Constant &&
9962       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
9963        cast<ConstantSDNode>(Op1)->isNullValue()) &&
9964       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9965
9966     // If the input is a setcc, then reuse the input setcc or use a new one with
9967     // the inverted condition.
9968     if (Op0.getOpcode() == X86ISD::SETCC) {
9969       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
9970       bool Invert = (CC == ISD::SETNE) ^
9971         cast<ConstantSDNode>(Op1)->isNullValue();
9972       if (!Invert) return Op0;
9973
9974       CCode = X86::GetOppositeBranchCondition(CCode);
9975       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9976                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
9977     }
9978   }
9979
9980   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
9981   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
9982   if (X86CC == X86::COND_INVALID)
9983     return SDValue();
9984
9985   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
9986   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
9987   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9988                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
9989 }
9990
9991 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
9992 static bool isX86LogicalCmp(SDValue Op) {
9993   unsigned Opc = Op.getNode()->getOpcode();
9994   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
9995       Opc == X86ISD::SAHF)
9996     return true;
9997   if (Op.getResNo() == 1 &&
9998       (Opc == X86ISD::ADD ||
9999        Opc == X86ISD::SUB ||
10000        Opc == X86ISD::ADC ||
10001        Opc == X86ISD::SBB ||
10002        Opc == X86ISD::SMUL ||
10003        Opc == X86ISD::UMUL ||
10004        Opc == X86ISD::INC ||
10005        Opc == X86ISD::DEC ||
10006        Opc == X86ISD::OR ||
10007        Opc == X86ISD::XOR ||
10008        Opc == X86ISD::AND))
10009     return true;
10010
10011   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10012     return true;
10013
10014   return false;
10015 }
10016
10017 static bool isZero(SDValue V) {
10018   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10019   return C && C->isNullValue();
10020 }
10021
10022 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10023   if (V.getOpcode() != ISD::TRUNCATE)
10024     return false;
10025
10026   SDValue VOp0 = V.getOperand(0);
10027   unsigned InBits = VOp0.getValueSizeInBits();
10028   unsigned Bits = V.getValueSizeInBits();
10029   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10030 }
10031
10032 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10033   bool addTest = true;
10034   SDValue Cond  = Op.getOperand(0);
10035   SDValue Op1 = Op.getOperand(1);
10036   SDValue Op2 = Op.getOperand(2);
10037   SDLoc DL(Op);
10038   EVT VT = Op1.getValueType();
10039   SDValue CC;
10040
10041   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10042   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10043   // sequence later on.
10044   if (Cond.getOpcode() == ISD::SETCC &&
10045       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10046        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10047       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10048     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10049     int SSECC = translateX86FSETCC(
10050         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10051
10052     if (SSECC != 8) {
10053       unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10054       SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10055                                 DAG.getConstant(SSECC, MVT::i8));
10056       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10057       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10058       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10059     }
10060   }
10061
10062   if (Cond.getOpcode() == ISD::SETCC) {
10063     SDValue NewCond = LowerSETCC(Cond, DAG);
10064     if (NewCond.getNode())
10065       Cond = NewCond;
10066   }
10067
10068   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10069   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10070   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10071   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10072   if (Cond.getOpcode() == X86ISD::SETCC &&
10073       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10074       isZero(Cond.getOperand(1).getOperand(1))) {
10075     SDValue Cmp = Cond.getOperand(1);
10076
10077     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10078
10079     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10080         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10081       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10082
10083       SDValue CmpOp0 = Cmp.getOperand(0);
10084       // Apply further optimizations for special cases
10085       // (select (x != 0), -1, 0) -> neg & sbb
10086       // (select (x == 0), 0, -1) -> neg & sbb
10087       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10088         if (YC->isNullValue() &&
10089             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10090           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10091           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10092                                     DAG.getConstant(0, CmpOp0.getValueType()),
10093                                     CmpOp0);
10094           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10095                                     DAG.getConstant(X86::COND_B, MVT::i8),
10096                                     SDValue(Neg.getNode(), 1));
10097           return Res;
10098         }
10099
10100       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10101                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10102       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10103
10104       SDValue Res =   // Res = 0 or -1.
10105         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10106                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10107
10108       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10109         Res = DAG.getNOT(DL, Res, Res.getValueType());
10110
10111       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10112       if (N2C == 0 || !N2C->isNullValue())
10113         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10114       return Res;
10115     }
10116   }
10117
10118   // Look past (and (setcc_carry (cmp ...)), 1).
10119   if (Cond.getOpcode() == ISD::AND &&
10120       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10121     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10122     if (C && C->getAPIntValue() == 1)
10123       Cond = Cond.getOperand(0);
10124   }
10125
10126   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10127   // setting operand in place of the X86ISD::SETCC.
10128   unsigned CondOpcode = Cond.getOpcode();
10129   if (CondOpcode == X86ISD::SETCC ||
10130       CondOpcode == X86ISD::SETCC_CARRY) {
10131     CC = Cond.getOperand(0);
10132
10133     SDValue Cmp = Cond.getOperand(1);
10134     unsigned Opc = Cmp.getOpcode();
10135     MVT VT = Op.getSimpleValueType();
10136
10137     bool IllegalFPCMov = false;
10138     if (VT.isFloatingPoint() && !VT.isVector() &&
10139         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10140       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10141
10142     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10143         Opc == X86ISD::BT) { // FIXME
10144       Cond = Cmp;
10145       addTest = false;
10146     }
10147   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10148              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10149              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10150               Cond.getOperand(0).getValueType() != MVT::i8)) {
10151     SDValue LHS = Cond.getOperand(0);
10152     SDValue RHS = Cond.getOperand(1);
10153     unsigned X86Opcode;
10154     unsigned X86Cond;
10155     SDVTList VTs;
10156     switch (CondOpcode) {
10157     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10158     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10159     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10160     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10161     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10162     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10163     default: llvm_unreachable("unexpected overflowing operator");
10164     }
10165     if (CondOpcode == ISD::UMULO)
10166       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10167                           MVT::i32);
10168     else
10169       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10170
10171     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10172
10173     if (CondOpcode == ISD::UMULO)
10174       Cond = X86Op.getValue(2);
10175     else
10176       Cond = X86Op.getValue(1);
10177
10178     CC = DAG.getConstant(X86Cond, MVT::i8);
10179     addTest = false;
10180   }
10181
10182   if (addTest) {
10183     // Look pass the truncate if the high bits are known zero.
10184     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10185         Cond = Cond.getOperand(0);
10186
10187     // We know the result of AND is compared against zero. Try to match
10188     // it to BT.
10189     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10190       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10191       if (NewSetCC.getNode()) {
10192         CC = NewSetCC.getOperand(0);
10193         Cond = NewSetCC.getOperand(1);
10194         addTest = false;
10195       }
10196     }
10197   }
10198
10199   if (addTest) {
10200     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10201     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10202   }
10203
10204   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10205   // a <  b ?  0 : -1 -> RES = setcc_carry
10206   // a >= b ? -1 :  0 -> RES = setcc_carry
10207   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10208   if (Cond.getOpcode() == X86ISD::SUB) {
10209     Cond = ConvertCmpIfNecessary(Cond, DAG);
10210     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10211
10212     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10213         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10214       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10215                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10216       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10217         return DAG.getNOT(DL, Res, Res.getValueType());
10218       return Res;
10219     }
10220   }
10221
10222   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10223   // widen the cmov and push the truncate through. This avoids introducing a new
10224   // branch during isel and doesn't add any extensions.
10225   if (Op.getValueType() == MVT::i8 &&
10226       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10227     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10228     if (T1.getValueType() == T2.getValueType() &&
10229         // Blacklist CopyFromReg to avoid partial register stalls.
10230         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10231       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10232       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10233       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10234     }
10235   }
10236
10237   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10238   // condition is true.
10239   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10240   SDValue Ops[] = { Op2, Op1, CC, Cond };
10241   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10242 }
10243
10244 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10245   MVT VT = Op->getSimpleValueType(0);
10246   SDValue In = Op->getOperand(0);
10247   MVT InVT = In.getSimpleValueType();
10248   SDLoc dl(Op);
10249
10250   if (InVT.getVectorElementType().getSizeInBits() >=8 &&
10251       VT.getVectorElementType().getSizeInBits() >= 32)
10252     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10253
10254   if (InVT.getVectorElementType() == MVT::i1) {
10255     unsigned int NumElts = InVT.getVectorNumElements();
10256     assert ((NumElts == 8 || NumElts == 16) &&
10257       "Unsupported SIGN_EXTEND operation");
10258     if (VT.getVectorElementType().getSizeInBits() >= 32) {
10259       Constant *C =
10260        ConstantInt::get(*DAG.getContext(),
10261                         (NumElts == 8)? APInt(64, ~0ULL): APInt(32, ~0U));
10262       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10263       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10264       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10265       SDValue Ld = DAG.getLoad(VT.getScalarType(), dl, DAG.getEntryNode(), CP,
10266                              MachinePointerInfo::getConstantPool(),
10267                              false, false, false, Alignment);
10268       return DAG.getNode(X86ISD::VBROADCASTM, dl, VT, In, Ld);
10269     }
10270   }
10271   return SDValue();
10272 }
10273
10274 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10275                                 SelectionDAG &DAG) {
10276   MVT VT = Op->getSimpleValueType(0);
10277   SDValue In = Op->getOperand(0);
10278   MVT InVT = In.getSimpleValueType();
10279   SDLoc dl(Op);
10280
10281   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10282     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10283
10284   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10285       (VT != MVT::v8i32 || InVT != MVT::v8i16))
10286     return SDValue();
10287
10288   if (Subtarget->hasInt256())
10289     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10290
10291   // Optimize vectors in AVX mode
10292   // Sign extend  v8i16 to v8i32 and
10293   //              v4i32 to v4i64
10294   //
10295   // Divide input vector into two parts
10296   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10297   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10298   // concat the vectors to original VT
10299
10300   unsigned NumElems = InVT.getVectorNumElements();
10301   SDValue Undef = DAG.getUNDEF(InVT);
10302
10303   SmallVector<int,8> ShufMask1(NumElems, -1);
10304   for (unsigned i = 0; i != NumElems/2; ++i)
10305     ShufMask1[i] = i;
10306
10307   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10308
10309   SmallVector<int,8> ShufMask2(NumElems, -1);
10310   for (unsigned i = 0; i != NumElems/2; ++i)
10311     ShufMask2[i] = i + NumElems/2;
10312
10313   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10314
10315   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10316                                 VT.getVectorNumElements()/2);
10317
10318   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10319   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10320
10321   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10322 }
10323
10324 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10325 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10326 // from the AND / OR.
10327 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10328   Opc = Op.getOpcode();
10329   if (Opc != ISD::OR && Opc != ISD::AND)
10330     return false;
10331   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10332           Op.getOperand(0).hasOneUse() &&
10333           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10334           Op.getOperand(1).hasOneUse());
10335 }
10336
10337 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10338 // 1 and that the SETCC node has a single use.
10339 static bool isXor1OfSetCC(SDValue Op) {
10340   if (Op.getOpcode() != ISD::XOR)
10341     return false;
10342   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10343   if (N1C && N1C->getAPIntValue() == 1) {
10344     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10345       Op.getOperand(0).hasOneUse();
10346   }
10347   return false;
10348 }
10349
10350 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10351   bool addTest = true;
10352   SDValue Chain = Op.getOperand(0);
10353   SDValue Cond  = Op.getOperand(1);
10354   SDValue Dest  = Op.getOperand(2);
10355   SDLoc dl(Op);
10356   SDValue CC;
10357   bool Inverted = false;
10358
10359   if (Cond.getOpcode() == ISD::SETCC) {
10360     // Check for setcc([su]{add,sub,mul}o == 0).
10361     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10362         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10363         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10364         Cond.getOperand(0).getResNo() == 1 &&
10365         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10366          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10367          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10368          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10369          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10370          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10371       Inverted = true;
10372       Cond = Cond.getOperand(0);
10373     } else {
10374       SDValue NewCond = LowerSETCC(Cond, DAG);
10375       if (NewCond.getNode())
10376         Cond = NewCond;
10377     }
10378   }
10379 #if 0
10380   // FIXME: LowerXALUO doesn't handle these!!
10381   else if (Cond.getOpcode() == X86ISD::ADD  ||
10382            Cond.getOpcode() == X86ISD::SUB  ||
10383            Cond.getOpcode() == X86ISD::SMUL ||
10384            Cond.getOpcode() == X86ISD::UMUL)
10385     Cond = LowerXALUO(Cond, DAG);
10386 #endif
10387
10388   // Look pass (and (setcc_carry (cmp ...)), 1).
10389   if (Cond.getOpcode() == ISD::AND &&
10390       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10391     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10392     if (C && C->getAPIntValue() == 1)
10393       Cond = Cond.getOperand(0);
10394   }
10395
10396   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10397   // setting operand in place of the X86ISD::SETCC.
10398   unsigned CondOpcode = Cond.getOpcode();
10399   if (CondOpcode == X86ISD::SETCC ||
10400       CondOpcode == X86ISD::SETCC_CARRY) {
10401     CC = Cond.getOperand(0);
10402
10403     SDValue Cmp = Cond.getOperand(1);
10404     unsigned Opc = Cmp.getOpcode();
10405     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10406     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10407       Cond = Cmp;
10408       addTest = false;
10409     } else {
10410       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10411       default: break;
10412       case X86::COND_O:
10413       case X86::COND_B:
10414         // These can only come from an arithmetic instruction with overflow,
10415         // e.g. SADDO, UADDO.
10416         Cond = Cond.getNode()->getOperand(1);
10417         addTest = false;
10418         break;
10419       }
10420     }
10421   }
10422   CondOpcode = Cond.getOpcode();
10423   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10424       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10425       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10426        Cond.getOperand(0).getValueType() != MVT::i8)) {
10427     SDValue LHS = Cond.getOperand(0);
10428     SDValue RHS = Cond.getOperand(1);
10429     unsigned X86Opcode;
10430     unsigned X86Cond;
10431     SDVTList VTs;
10432     switch (CondOpcode) {
10433     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10434     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10435     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10436     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10437     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10438     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10439     default: llvm_unreachable("unexpected overflowing operator");
10440     }
10441     if (Inverted)
10442       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10443     if (CondOpcode == ISD::UMULO)
10444       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10445                           MVT::i32);
10446     else
10447       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10448
10449     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10450
10451     if (CondOpcode == ISD::UMULO)
10452       Cond = X86Op.getValue(2);
10453     else
10454       Cond = X86Op.getValue(1);
10455
10456     CC = DAG.getConstant(X86Cond, MVT::i8);
10457     addTest = false;
10458   } else {
10459     unsigned CondOpc;
10460     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10461       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10462       if (CondOpc == ISD::OR) {
10463         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10464         // two branches instead of an explicit OR instruction with a
10465         // separate test.
10466         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10467             isX86LogicalCmp(Cmp)) {
10468           CC = Cond.getOperand(0).getOperand(0);
10469           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10470                               Chain, Dest, CC, Cmp);
10471           CC = Cond.getOperand(1).getOperand(0);
10472           Cond = Cmp;
10473           addTest = false;
10474         }
10475       } else { // ISD::AND
10476         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10477         // two branches instead of an explicit AND instruction with a
10478         // separate test. However, we only do this if this block doesn't
10479         // have a fall-through edge, because this requires an explicit
10480         // jmp when the condition is false.
10481         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10482             isX86LogicalCmp(Cmp) &&
10483             Op.getNode()->hasOneUse()) {
10484           X86::CondCode CCode =
10485             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10486           CCode = X86::GetOppositeBranchCondition(CCode);
10487           CC = DAG.getConstant(CCode, MVT::i8);
10488           SDNode *User = *Op.getNode()->use_begin();
10489           // Look for an unconditional branch following this conditional branch.
10490           // We need this because we need to reverse the successors in order
10491           // to implement FCMP_OEQ.
10492           if (User->getOpcode() == ISD::BR) {
10493             SDValue FalseBB = User->getOperand(1);
10494             SDNode *NewBR =
10495               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10496             assert(NewBR == User);
10497             (void)NewBR;
10498             Dest = FalseBB;
10499
10500             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10501                                 Chain, Dest, CC, Cmp);
10502             X86::CondCode CCode =
10503               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10504             CCode = X86::GetOppositeBranchCondition(CCode);
10505             CC = DAG.getConstant(CCode, MVT::i8);
10506             Cond = Cmp;
10507             addTest = false;
10508           }
10509         }
10510       }
10511     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10512       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10513       // It should be transformed during dag combiner except when the condition
10514       // is set by a arithmetics with overflow node.
10515       X86::CondCode CCode =
10516         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10517       CCode = X86::GetOppositeBranchCondition(CCode);
10518       CC = DAG.getConstant(CCode, MVT::i8);
10519       Cond = Cond.getOperand(0).getOperand(1);
10520       addTest = false;
10521     } else if (Cond.getOpcode() == ISD::SETCC &&
10522                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10523       // For FCMP_OEQ, we can emit
10524       // two branches instead of an explicit AND instruction with a
10525       // separate test. However, we only do this if this block doesn't
10526       // have a fall-through edge, because this requires an explicit
10527       // jmp when the condition is false.
10528       if (Op.getNode()->hasOneUse()) {
10529         SDNode *User = *Op.getNode()->use_begin();
10530         // Look for an unconditional branch following this conditional branch.
10531         // We need this because we need to reverse the successors in order
10532         // to implement FCMP_OEQ.
10533         if (User->getOpcode() == ISD::BR) {
10534           SDValue FalseBB = User->getOperand(1);
10535           SDNode *NewBR =
10536             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10537           assert(NewBR == User);
10538           (void)NewBR;
10539           Dest = FalseBB;
10540
10541           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10542                                     Cond.getOperand(0), Cond.getOperand(1));
10543           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10544           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10545           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10546                               Chain, Dest, CC, Cmp);
10547           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10548           Cond = Cmp;
10549           addTest = false;
10550         }
10551       }
10552     } else if (Cond.getOpcode() == ISD::SETCC &&
10553                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10554       // For FCMP_UNE, we can emit
10555       // two branches instead of an explicit AND instruction with a
10556       // separate test. However, we only do this if this block doesn't
10557       // have a fall-through edge, because this requires an explicit
10558       // jmp when the condition is false.
10559       if (Op.getNode()->hasOneUse()) {
10560         SDNode *User = *Op.getNode()->use_begin();
10561         // Look for an unconditional branch following this conditional branch.
10562         // We need this because we need to reverse the successors in order
10563         // to implement FCMP_UNE.
10564         if (User->getOpcode() == ISD::BR) {
10565           SDValue FalseBB = User->getOperand(1);
10566           SDNode *NewBR =
10567             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10568           assert(NewBR == User);
10569           (void)NewBR;
10570
10571           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10572                                     Cond.getOperand(0), Cond.getOperand(1));
10573           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10574           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10575           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10576                               Chain, Dest, CC, Cmp);
10577           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10578           Cond = Cmp;
10579           addTest = false;
10580           Dest = FalseBB;
10581         }
10582       }
10583     }
10584   }
10585
10586   if (addTest) {
10587     // Look pass the truncate if the high bits are known zero.
10588     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10589         Cond = Cond.getOperand(0);
10590
10591     // We know the result of AND is compared against zero. Try to match
10592     // it to BT.
10593     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10594       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10595       if (NewSetCC.getNode()) {
10596         CC = NewSetCC.getOperand(0);
10597         Cond = NewSetCC.getOperand(1);
10598         addTest = false;
10599       }
10600     }
10601   }
10602
10603   if (addTest) {
10604     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10605     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10606   }
10607   Cond = ConvertCmpIfNecessary(Cond, DAG);
10608   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10609                      Chain, Dest, CC, Cond);
10610 }
10611
10612 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10613 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10614 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10615 // that the guard pages used by the OS virtual memory manager are allocated in
10616 // correct sequence.
10617 SDValue
10618 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10619                                            SelectionDAG &DAG) const {
10620   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10621           getTargetMachine().Options.EnableSegmentedStacks) &&
10622          "This should be used only on Windows targets or when segmented stacks "
10623          "are being used");
10624   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
10625   SDLoc dl(Op);
10626
10627   // Get the inputs.
10628   SDValue Chain = Op.getOperand(0);
10629   SDValue Size  = Op.getOperand(1);
10630   // FIXME: Ensure alignment here
10631
10632   bool Is64Bit = Subtarget->is64Bit();
10633   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10634
10635   if (getTargetMachine().Options.EnableSegmentedStacks) {
10636     MachineFunction &MF = DAG.getMachineFunction();
10637     MachineRegisterInfo &MRI = MF.getRegInfo();
10638
10639     if (Is64Bit) {
10640       // The 64 bit implementation of segmented stacks needs to clobber both r10
10641       // r11. This makes it impossible to use it along with nested parameters.
10642       const Function *F = MF.getFunction();
10643
10644       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10645            I != E; ++I)
10646         if (I->hasNestAttr())
10647           report_fatal_error("Cannot use segmented stacks with functions that "
10648                              "have nested arguments.");
10649     }
10650
10651     const TargetRegisterClass *AddrRegClass =
10652       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10653     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10654     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10655     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10656                                 DAG.getRegister(Vreg, SPTy));
10657     SDValue Ops1[2] = { Value, Chain };
10658     return DAG.getMergeValues(Ops1, 2, dl);
10659   } else {
10660     SDValue Flag;
10661     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10662
10663     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10664     Flag = Chain.getValue(1);
10665     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10666
10667     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10668     Flag = Chain.getValue(1);
10669
10670     const X86RegisterInfo *RegInfo =
10671       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10672     Chain = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
10673                                SPTy).getValue(1);
10674
10675     SDValue Ops1[2] = { Chain.getValue(0), Chain };
10676     return DAG.getMergeValues(Ops1, 2, dl);
10677   }
10678 }
10679
10680 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10681   MachineFunction &MF = DAG.getMachineFunction();
10682   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10683
10684   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10685   SDLoc DL(Op);
10686
10687   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10688     // vastart just stores the address of the VarArgsFrameIndex slot into the
10689     // memory location argument.
10690     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10691                                    getPointerTy());
10692     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10693                         MachinePointerInfo(SV), false, false, 0);
10694   }
10695
10696   // __va_list_tag:
10697   //   gp_offset         (0 - 6 * 8)
10698   //   fp_offset         (48 - 48 + 8 * 16)
10699   //   overflow_arg_area (point to parameters coming in memory).
10700   //   reg_save_area
10701   SmallVector<SDValue, 8> MemOps;
10702   SDValue FIN = Op.getOperand(1);
10703   // Store gp_offset
10704   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10705                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10706                                                MVT::i32),
10707                                FIN, MachinePointerInfo(SV), false, false, 0);
10708   MemOps.push_back(Store);
10709
10710   // Store fp_offset
10711   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10712                     FIN, DAG.getIntPtrConstant(4));
10713   Store = DAG.getStore(Op.getOperand(0), DL,
10714                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10715                                        MVT::i32),
10716                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10717   MemOps.push_back(Store);
10718
10719   // Store ptr to overflow_arg_area
10720   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10721                     FIN, DAG.getIntPtrConstant(4));
10722   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10723                                     getPointerTy());
10724   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10725                        MachinePointerInfo(SV, 8),
10726                        false, false, 0);
10727   MemOps.push_back(Store);
10728
10729   // Store ptr to reg_save_area.
10730   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10731                     FIN, DAG.getIntPtrConstant(8));
10732   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10733                                     getPointerTy());
10734   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10735                        MachinePointerInfo(SV, 16), false, false, 0);
10736   MemOps.push_back(Store);
10737   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
10738                      &MemOps[0], MemOps.size());
10739 }
10740
10741 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
10742   assert(Subtarget->is64Bit() &&
10743          "LowerVAARG only handles 64-bit va_arg!");
10744   assert((Subtarget->isTargetLinux() ||
10745           Subtarget->isTargetDarwin()) &&
10746           "Unhandled target in LowerVAARG");
10747   assert(Op.getNode()->getNumOperands() == 4);
10748   SDValue Chain = Op.getOperand(0);
10749   SDValue SrcPtr = Op.getOperand(1);
10750   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10751   unsigned Align = Op.getConstantOperandVal(3);
10752   SDLoc dl(Op);
10753
10754   EVT ArgVT = Op.getNode()->getValueType(0);
10755   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
10756   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
10757   uint8_t ArgMode;
10758
10759   // Decide which area this value should be read from.
10760   // TODO: Implement the AMD64 ABI in its entirety. This simple
10761   // selection mechanism works only for the basic types.
10762   if (ArgVT == MVT::f80) {
10763     llvm_unreachable("va_arg for f80 not yet implemented");
10764   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10765     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
10766   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10767     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
10768   } else {
10769     llvm_unreachable("Unhandled argument type in LowerVAARG");
10770   }
10771
10772   if (ArgMode == 2) {
10773     // Sanity Check: Make sure using fp_offset makes sense.
10774     assert(!getTargetMachine().Options.UseSoftFloat &&
10775            !(DAG.getMachineFunction()
10776                 .getFunction()->getAttributes()
10777                 .hasAttribute(AttributeSet::FunctionIndex,
10778                               Attribute::NoImplicitFloat)) &&
10779            Subtarget->hasSSE1());
10780   }
10781
10782   // Insert VAARG_64 node into the DAG
10783   // VAARG_64 returns two values: Variable Argument Address, Chain
10784   SmallVector<SDValue, 11> InstOps;
10785   InstOps.push_back(Chain);
10786   InstOps.push_back(SrcPtr);
10787   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10788   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10789   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10790   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10791   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10792                                           VTs, &InstOps[0], InstOps.size(),
10793                                           MVT::i64,
10794                                           MachinePointerInfo(SV),
10795                                           /*Align=*/0,
10796                                           /*Volatile=*/false,
10797                                           /*ReadMem=*/true,
10798                                           /*WriteMem=*/true);
10799   Chain = VAARG.getValue(1);
10800
10801   // Load the next argument and return it
10802   return DAG.getLoad(ArgVT, dl,
10803                      Chain,
10804                      VAARG,
10805                      MachinePointerInfo(),
10806                      false, false, false, 0);
10807 }
10808
10809 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10810                            SelectionDAG &DAG) {
10811   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
10812   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
10813   SDValue Chain = Op.getOperand(0);
10814   SDValue DstPtr = Op.getOperand(1);
10815   SDValue SrcPtr = Op.getOperand(2);
10816   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10817   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10818   SDLoc DL(Op);
10819
10820   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
10821                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
10822                        false,
10823                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
10824 }
10825
10826 // getTargetVShiftNode - Handle vector element shifts where the shift amount
10827 // may or may not be a constant. Takes immediate version of shift as input.
10828 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
10829                                    SDValue SrcOp, SDValue ShAmt,
10830                                    SelectionDAG &DAG) {
10831   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
10832
10833   if (isa<ConstantSDNode>(ShAmt)) {
10834     // Constant may be a TargetConstant. Use a regular constant.
10835     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
10836     switch (Opc) {
10837       default: llvm_unreachable("Unknown target vector shift node");
10838       case X86ISD::VSHLI:
10839       case X86ISD::VSRLI:
10840       case X86ISD::VSRAI:
10841         return DAG.getNode(Opc, dl, VT, SrcOp,
10842                            DAG.getConstant(ShiftAmt, MVT::i32));
10843     }
10844   }
10845
10846   // Change opcode to non-immediate version
10847   switch (Opc) {
10848     default: llvm_unreachable("Unknown target vector shift node");
10849     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
10850     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
10851     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
10852   }
10853
10854   // Need to build a vector containing shift amount
10855   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
10856   SDValue ShOps[4];
10857   ShOps[0] = ShAmt;
10858   ShOps[1] = DAG.getConstant(0, MVT::i32);
10859   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
10860   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
10861
10862   // The return type has to be a 128-bit type with the same element
10863   // type as the input type.
10864   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10865   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
10866
10867   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
10868   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
10869 }
10870
10871 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
10872   SDLoc dl(Op);
10873   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10874   switch (IntNo) {
10875   default: return SDValue();    // Don't custom lower most intrinsics.
10876   // Comparison intrinsics.
10877   case Intrinsic::x86_sse_comieq_ss:
10878   case Intrinsic::x86_sse_comilt_ss:
10879   case Intrinsic::x86_sse_comile_ss:
10880   case Intrinsic::x86_sse_comigt_ss:
10881   case Intrinsic::x86_sse_comige_ss:
10882   case Intrinsic::x86_sse_comineq_ss:
10883   case Intrinsic::x86_sse_ucomieq_ss:
10884   case Intrinsic::x86_sse_ucomilt_ss:
10885   case Intrinsic::x86_sse_ucomile_ss:
10886   case Intrinsic::x86_sse_ucomigt_ss:
10887   case Intrinsic::x86_sse_ucomige_ss:
10888   case Intrinsic::x86_sse_ucomineq_ss:
10889   case Intrinsic::x86_sse2_comieq_sd:
10890   case Intrinsic::x86_sse2_comilt_sd:
10891   case Intrinsic::x86_sse2_comile_sd:
10892   case Intrinsic::x86_sse2_comigt_sd:
10893   case Intrinsic::x86_sse2_comige_sd:
10894   case Intrinsic::x86_sse2_comineq_sd:
10895   case Intrinsic::x86_sse2_ucomieq_sd:
10896   case Intrinsic::x86_sse2_ucomilt_sd:
10897   case Intrinsic::x86_sse2_ucomile_sd:
10898   case Intrinsic::x86_sse2_ucomigt_sd:
10899   case Intrinsic::x86_sse2_ucomige_sd:
10900   case Intrinsic::x86_sse2_ucomineq_sd: {
10901     unsigned Opc;
10902     ISD::CondCode CC;
10903     switch (IntNo) {
10904     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10905     case Intrinsic::x86_sse_comieq_ss:
10906     case Intrinsic::x86_sse2_comieq_sd:
10907       Opc = X86ISD::COMI;
10908       CC = ISD::SETEQ;
10909       break;
10910     case Intrinsic::x86_sse_comilt_ss:
10911     case Intrinsic::x86_sse2_comilt_sd:
10912       Opc = X86ISD::COMI;
10913       CC = ISD::SETLT;
10914       break;
10915     case Intrinsic::x86_sse_comile_ss:
10916     case Intrinsic::x86_sse2_comile_sd:
10917       Opc = X86ISD::COMI;
10918       CC = ISD::SETLE;
10919       break;
10920     case Intrinsic::x86_sse_comigt_ss:
10921     case Intrinsic::x86_sse2_comigt_sd:
10922       Opc = X86ISD::COMI;
10923       CC = ISD::SETGT;
10924       break;
10925     case Intrinsic::x86_sse_comige_ss:
10926     case Intrinsic::x86_sse2_comige_sd:
10927       Opc = X86ISD::COMI;
10928       CC = ISD::SETGE;
10929       break;
10930     case Intrinsic::x86_sse_comineq_ss:
10931     case Intrinsic::x86_sse2_comineq_sd:
10932       Opc = X86ISD::COMI;
10933       CC = ISD::SETNE;
10934       break;
10935     case Intrinsic::x86_sse_ucomieq_ss:
10936     case Intrinsic::x86_sse2_ucomieq_sd:
10937       Opc = X86ISD::UCOMI;
10938       CC = ISD::SETEQ;
10939       break;
10940     case Intrinsic::x86_sse_ucomilt_ss:
10941     case Intrinsic::x86_sse2_ucomilt_sd:
10942       Opc = X86ISD::UCOMI;
10943       CC = ISD::SETLT;
10944       break;
10945     case Intrinsic::x86_sse_ucomile_ss:
10946     case Intrinsic::x86_sse2_ucomile_sd:
10947       Opc = X86ISD::UCOMI;
10948       CC = ISD::SETLE;
10949       break;
10950     case Intrinsic::x86_sse_ucomigt_ss:
10951     case Intrinsic::x86_sse2_ucomigt_sd:
10952       Opc = X86ISD::UCOMI;
10953       CC = ISD::SETGT;
10954       break;
10955     case Intrinsic::x86_sse_ucomige_ss:
10956     case Intrinsic::x86_sse2_ucomige_sd:
10957       Opc = X86ISD::UCOMI;
10958       CC = ISD::SETGE;
10959       break;
10960     case Intrinsic::x86_sse_ucomineq_ss:
10961     case Intrinsic::x86_sse2_ucomineq_sd:
10962       Opc = X86ISD::UCOMI;
10963       CC = ISD::SETNE;
10964       break;
10965     }
10966
10967     SDValue LHS = Op.getOperand(1);
10968     SDValue RHS = Op.getOperand(2);
10969     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
10970     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
10971     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
10972     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10973                                 DAG.getConstant(X86CC, MVT::i8), Cond);
10974     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10975   }
10976
10977   // Arithmetic intrinsics.
10978   case Intrinsic::x86_sse2_pmulu_dq:
10979   case Intrinsic::x86_avx2_pmulu_dq:
10980     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
10981                        Op.getOperand(1), Op.getOperand(2));
10982
10983   // SSE2/AVX2 sub with unsigned saturation intrinsics
10984   case Intrinsic::x86_sse2_psubus_b:
10985   case Intrinsic::x86_sse2_psubus_w:
10986   case Intrinsic::x86_avx2_psubus_b:
10987   case Intrinsic::x86_avx2_psubus_w:
10988     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
10989                        Op.getOperand(1), Op.getOperand(2));
10990
10991   // SSE3/AVX horizontal add/sub intrinsics
10992   case Intrinsic::x86_sse3_hadd_ps:
10993   case Intrinsic::x86_sse3_hadd_pd:
10994   case Intrinsic::x86_avx_hadd_ps_256:
10995   case Intrinsic::x86_avx_hadd_pd_256:
10996   case Intrinsic::x86_sse3_hsub_ps:
10997   case Intrinsic::x86_sse3_hsub_pd:
10998   case Intrinsic::x86_avx_hsub_ps_256:
10999   case Intrinsic::x86_avx_hsub_pd_256:
11000   case Intrinsic::x86_ssse3_phadd_w_128:
11001   case Intrinsic::x86_ssse3_phadd_d_128:
11002   case Intrinsic::x86_avx2_phadd_w:
11003   case Intrinsic::x86_avx2_phadd_d:
11004   case Intrinsic::x86_ssse3_phsub_w_128:
11005   case Intrinsic::x86_ssse3_phsub_d_128:
11006   case Intrinsic::x86_avx2_phsub_w:
11007   case Intrinsic::x86_avx2_phsub_d: {
11008     unsigned Opcode;
11009     switch (IntNo) {
11010     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11011     case Intrinsic::x86_sse3_hadd_ps:
11012     case Intrinsic::x86_sse3_hadd_pd:
11013     case Intrinsic::x86_avx_hadd_ps_256:
11014     case Intrinsic::x86_avx_hadd_pd_256:
11015       Opcode = X86ISD::FHADD;
11016       break;
11017     case Intrinsic::x86_sse3_hsub_ps:
11018     case Intrinsic::x86_sse3_hsub_pd:
11019     case Intrinsic::x86_avx_hsub_ps_256:
11020     case Intrinsic::x86_avx_hsub_pd_256:
11021       Opcode = X86ISD::FHSUB;
11022       break;
11023     case Intrinsic::x86_ssse3_phadd_w_128:
11024     case Intrinsic::x86_ssse3_phadd_d_128:
11025     case Intrinsic::x86_avx2_phadd_w:
11026     case Intrinsic::x86_avx2_phadd_d:
11027       Opcode = X86ISD::HADD;
11028       break;
11029     case Intrinsic::x86_ssse3_phsub_w_128:
11030     case Intrinsic::x86_ssse3_phsub_d_128:
11031     case Intrinsic::x86_avx2_phsub_w:
11032     case Intrinsic::x86_avx2_phsub_d:
11033       Opcode = X86ISD::HSUB;
11034       break;
11035     }
11036     return DAG.getNode(Opcode, dl, Op.getValueType(),
11037                        Op.getOperand(1), Op.getOperand(2));
11038   }
11039
11040   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11041   case Intrinsic::x86_sse2_pmaxu_b:
11042   case Intrinsic::x86_sse41_pmaxuw:
11043   case Intrinsic::x86_sse41_pmaxud:
11044   case Intrinsic::x86_avx2_pmaxu_b:
11045   case Intrinsic::x86_avx2_pmaxu_w:
11046   case Intrinsic::x86_avx2_pmaxu_d:
11047   case Intrinsic::x86_sse2_pminu_b:
11048   case Intrinsic::x86_sse41_pminuw:
11049   case Intrinsic::x86_sse41_pminud:
11050   case Intrinsic::x86_avx2_pminu_b:
11051   case Intrinsic::x86_avx2_pminu_w:
11052   case Intrinsic::x86_avx2_pminu_d:
11053   case Intrinsic::x86_sse41_pmaxsb:
11054   case Intrinsic::x86_sse2_pmaxs_w:
11055   case Intrinsic::x86_sse41_pmaxsd:
11056   case Intrinsic::x86_avx2_pmaxs_b:
11057   case Intrinsic::x86_avx2_pmaxs_w:
11058   case Intrinsic::x86_avx2_pmaxs_d:
11059   case Intrinsic::x86_sse41_pminsb:
11060   case Intrinsic::x86_sse2_pmins_w:
11061   case Intrinsic::x86_sse41_pminsd:
11062   case Intrinsic::x86_avx2_pmins_b:
11063   case Intrinsic::x86_avx2_pmins_w:
11064   case Intrinsic::x86_avx2_pmins_d: {
11065     unsigned Opcode;
11066     switch (IntNo) {
11067     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11068     case Intrinsic::x86_sse2_pmaxu_b:
11069     case Intrinsic::x86_sse41_pmaxuw:
11070     case Intrinsic::x86_sse41_pmaxud:
11071     case Intrinsic::x86_avx2_pmaxu_b:
11072     case Intrinsic::x86_avx2_pmaxu_w:
11073     case Intrinsic::x86_avx2_pmaxu_d:
11074       Opcode = X86ISD::UMAX;
11075       break;
11076     case Intrinsic::x86_sse2_pminu_b:
11077     case Intrinsic::x86_sse41_pminuw:
11078     case Intrinsic::x86_sse41_pminud:
11079     case Intrinsic::x86_avx2_pminu_b:
11080     case Intrinsic::x86_avx2_pminu_w:
11081     case Intrinsic::x86_avx2_pminu_d:
11082       Opcode = X86ISD::UMIN;
11083       break;
11084     case Intrinsic::x86_sse41_pmaxsb:
11085     case Intrinsic::x86_sse2_pmaxs_w:
11086     case Intrinsic::x86_sse41_pmaxsd:
11087     case Intrinsic::x86_avx2_pmaxs_b:
11088     case Intrinsic::x86_avx2_pmaxs_w:
11089     case Intrinsic::x86_avx2_pmaxs_d:
11090       Opcode = X86ISD::SMAX;
11091       break;
11092     case Intrinsic::x86_sse41_pminsb:
11093     case Intrinsic::x86_sse2_pmins_w:
11094     case Intrinsic::x86_sse41_pminsd:
11095     case Intrinsic::x86_avx2_pmins_b:
11096     case Intrinsic::x86_avx2_pmins_w:
11097     case Intrinsic::x86_avx2_pmins_d:
11098       Opcode = X86ISD::SMIN;
11099       break;
11100     }
11101     return DAG.getNode(Opcode, dl, Op.getValueType(),
11102                        Op.getOperand(1), Op.getOperand(2));
11103   }
11104
11105   // SSE/SSE2/AVX floating point max/min intrinsics.
11106   case Intrinsic::x86_sse_max_ps:
11107   case Intrinsic::x86_sse2_max_pd:
11108   case Intrinsic::x86_avx_max_ps_256:
11109   case Intrinsic::x86_avx_max_pd_256:
11110   case Intrinsic::x86_sse_min_ps:
11111   case Intrinsic::x86_sse2_min_pd:
11112   case Intrinsic::x86_avx_min_ps_256:
11113   case Intrinsic::x86_avx_min_pd_256: {
11114     unsigned Opcode;
11115     switch (IntNo) {
11116     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11117     case Intrinsic::x86_sse_max_ps:
11118     case Intrinsic::x86_sse2_max_pd:
11119     case Intrinsic::x86_avx_max_ps_256:
11120     case Intrinsic::x86_avx_max_pd_256:
11121       Opcode = X86ISD::FMAX;
11122       break;
11123     case Intrinsic::x86_sse_min_ps:
11124     case Intrinsic::x86_sse2_min_pd:
11125     case Intrinsic::x86_avx_min_ps_256:
11126     case Intrinsic::x86_avx_min_pd_256:
11127       Opcode = X86ISD::FMIN;
11128       break;
11129     }
11130     return DAG.getNode(Opcode, dl, Op.getValueType(),
11131                        Op.getOperand(1), Op.getOperand(2));
11132   }
11133
11134   // AVX2 variable shift intrinsics
11135   case Intrinsic::x86_avx2_psllv_d:
11136   case Intrinsic::x86_avx2_psllv_q:
11137   case Intrinsic::x86_avx2_psllv_d_256:
11138   case Intrinsic::x86_avx2_psllv_q_256:
11139   case Intrinsic::x86_avx2_psrlv_d:
11140   case Intrinsic::x86_avx2_psrlv_q:
11141   case Intrinsic::x86_avx2_psrlv_d_256:
11142   case Intrinsic::x86_avx2_psrlv_q_256:
11143   case Intrinsic::x86_avx2_psrav_d:
11144   case Intrinsic::x86_avx2_psrav_d_256: {
11145     unsigned Opcode;
11146     switch (IntNo) {
11147     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11148     case Intrinsic::x86_avx2_psllv_d:
11149     case Intrinsic::x86_avx2_psllv_q:
11150     case Intrinsic::x86_avx2_psllv_d_256:
11151     case Intrinsic::x86_avx2_psllv_q_256:
11152       Opcode = ISD::SHL;
11153       break;
11154     case Intrinsic::x86_avx2_psrlv_d:
11155     case Intrinsic::x86_avx2_psrlv_q:
11156     case Intrinsic::x86_avx2_psrlv_d_256:
11157     case Intrinsic::x86_avx2_psrlv_q_256:
11158       Opcode = ISD::SRL;
11159       break;
11160     case Intrinsic::x86_avx2_psrav_d:
11161     case Intrinsic::x86_avx2_psrav_d_256:
11162       Opcode = ISD::SRA;
11163       break;
11164     }
11165     return DAG.getNode(Opcode, dl, Op.getValueType(),
11166                        Op.getOperand(1), Op.getOperand(2));
11167   }
11168
11169   case Intrinsic::x86_ssse3_pshuf_b_128:
11170   case Intrinsic::x86_avx2_pshuf_b:
11171     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11172                        Op.getOperand(1), Op.getOperand(2));
11173
11174   case Intrinsic::x86_ssse3_psign_b_128:
11175   case Intrinsic::x86_ssse3_psign_w_128:
11176   case Intrinsic::x86_ssse3_psign_d_128:
11177   case Intrinsic::x86_avx2_psign_b:
11178   case Intrinsic::x86_avx2_psign_w:
11179   case Intrinsic::x86_avx2_psign_d:
11180     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11181                        Op.getOperand(1), Op.getOperand(2));
11182
11183   case Intrinsic::x86_sse41_insertps:
11184     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11185                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11186
11187   case Intrinsic::x86_avx_vperm2f128_ps_256:
11188   case Intrinsic::x86_avx_vperm2f128_pd_256:
11189   case Intrinsic::x86_avx_vperm2f128_si_256:
11190   case Intrinsic::x86_avx2_vperm2i128:
11191     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11192                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11193
11194   case Intrinsic::x86_avx2_permd:
11195   case Intrinsic::x86_avx2_permps:
11196     // Operands intentionally swapped. Mask is last operand to intrinsic,
11197     // but second operand for node/intruction.
11198     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11199                        Op.getOperand(2), Op.getOperand(1));
11200
11201   case Intrinsic::x86_sse_sqrt_ps:
11202   case Intrinsic::x86_sse2_sqrt_pd:
11203   case Intrinsic::x86_avx_sqrt_ps_256:
11204   case Intrinsic::x86_avx_sqrt_pd_256:
11205     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11206
11207   // ptest and testp intrinsics. The intrinsic these come from are designed to
11208   // return an integer value, not just an instruction so lower it to the ptest
11209   // or testp pattern and a setcc for the result.
11210   case Intrinsic::x86_sse41_ptestz:
11211   case Intrinsic::x86_sse41_ptestc:
11212   case Intrinsic::x86_sse41_ptestnzc:
11213   case Intrinsic::x86_avx_ptestz_256:
11214   case Intrinsic::x86_avx_ptestc_256:
11215   case Intrinsic::x86_avx_ptestnzc_256:
11216   case Intrinsic::x86_avx_vtestz_ps:
11217   case Intrinsic::x86_avx_vtestc_ps:
11218   case Intrinsic::x86_avx_vtestnzc_ps:
11219   case Intrinsic::x86_avx_vtestz_pd:
11220   case Intrinsic::x86_avx_vtestc_pd:
11221   case Intrinsic::x86_avx_vtestnzc_pd:
11222   case Intrinsic::x86_avx_vtestz_ps_256:
11223   case Intrinsic::x86_avx_vtestc_ps_256:
11224   case Intrinsic::x86_avx_vtestnzc_ps_256:
11225   case Intrinsic::x86_avx_vtestz_pd_256:
11226   case Intrinsic::x86_avx_vtestc_pd_256:
11227   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11228     bool IsTestPacked = false;
11229     unsigned X86CC;
11230     switch (IntNo) {
11231     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11232     case Intrinsic::x86_avx_vtestz_ps:
11233     case Intrinsic::x86_avx_vtestz_pd:
11234     case Intrinsic::x86_avx_vtestz_ps_256:
11235     case Intrinsic::x86_avx_vtestz_pd_256:
11236       IsTestPacked = true; // Fallthrough
11237     case Intrinsic::x86_sse41_ptestz:
11238     case Intrinsic::x86_avx_ptestz_256:
11239       // ZF = 1
11240       X86CC = X86::COND_E;
11241       break;
11242     case Intrinsic::x86_avx_vtestc_ps:
11243     case Intrinsic::x86_avx_vtestc_pd:
11244     case Intrinsic::x86_avx_vtestc_ps_256:
11245     case Intrinsic::x86_avx_vtestc_pd_256:
11246       IsTestPacked = true; // Fallthrough
11247     case Intrinsic::x86_sse41_ptestc:
11248     case Intrinsic::x86_avx_ptestc_256:
11249       // CF = 1
11250       X86CC = X86::COND_B;
11251       break;
11252     case Intrinsic::x86_avx_vtestnzc_ps:
11253     case Intrinsic::x86_avx_vtestnzc_pd:
11254     case Intrinsic::x86_avx_vtestnzc_ps_256:
11255     case Intrinsic::x86_avx_vtestnzc_pd_256:
11256       IsTestPacked = true; // Fallthrough
11257     case Intrinsic::x86_sse41_ptestnzc:
11258     case Intrinsic::x86_avx_ptestnzc_256:
11259       // ZF and CF = 0
11260       X86CC = X86::COND_A;
11261       break;
11262     }
11263
11264     SDValue LHS = Op.getOperand(1);
11265     SDValue RHS = Op.getOperand(2);
11266     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11267     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11268     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11269     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11270     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11271   }
11272   case Intrinsic::x86_avx512_kortestz:
11273   case Intrinsic::x86_avx512_kortestc: {
11274     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11275     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11276     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11277     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11278     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11279     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11280     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11281   }
11282
11283   // SSE/AVX shift intrinsics
11284   case Intrinsic::x86_sse2_psll_w:
11285   case Intrinsic::x86_sse2_psll_d:
11286   case Intrinsic::x86_sse2_psll_q:
11287   case Intrinsic::x86_avx2_psll_w:
11288   case Intrinsic::x86_avx2_psll_d:
11289   case Intrinsic::x86_avx2_psll_q:
11290   case Intrinsic::x86_sse2_psrl_w:
11291   case Intrinsic::x86_sse2_psrl_d:
11292   case Intrinsic::x86_sse2_psrl_q:
11293   case Intrinsic::x86_avx2_psrl_w:
11294   case Intrinsic::x86_avx2_psrl_d:
11295   case Intrinsic::x86_avx2_psrl_q:
11296   case Intrinsic::x86_sse2_psra_w:
11297   case Intrinsic::x86_sse2_psra_d:
11298   case Intrinsic::x86_avx2_psra_w:
11299   case Intrinsic::x86_avx2_psra_d: {
11300     unsigned Opcode;
11301     switch (IntNo) {
11302     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11303     case Intrinsic::x86_sse2_psll_w:
11304     case Intrinsic::x86_sse2_psll_d:
11305     case Intrinsic::x86_sse2_psll_q:
11306     case Intrinsic::x86_avx2_psll_w:
11307     case Intrinsic::x86_avx2_psll_d:
11308     case Intrinsic::x86_avx2_psll_q:
11309       Opcode = X86ISD::VSHL;
11310       break;
11311     case Intrinsic::x86_sse2_psrl_w:
11312     case Intrinsic::x86_sse2_psrl_d:
11313     case Intrinsic::x86_sse2_psrl_q:
11314     case Intrinsic::x86_avx2_psrl_w:
11315     case Intrinsic::x86_avx2_psrl_d:
11316     case Intrinsic::x86_avx2_psrl_q:
11317       Opcode = X86ISD::VSRL;
11318       break;
11319     case Intrinsic::x86_sse2_psra_w:
11320     case Intrinsic::x86_sse2_psra_d:
11321     case Intrinsic::x86_avx2_psra_w:
11322     case Intrinsic::x86_avx2_psra_d:
11323       Opcode = X86ISD::VSRA;
11324       break;
11325     }
11326     return DAG.getNode(Opcode, dl, Op.getValueType(),
11327                        Op.getOperand(1), Op.getOperand(2));
11328   }
11329
11330   // SSE/AVX immediate shift intrinsics
11331   case Intrinsic::x86_sse2_pslli_w:
11332   case Intrinsic::x86_sse2_pslli_d:
11333   case Intrinsic::x86_sse2_pslli_q:
11334   case Intrinsic::x86_avx2_pslli_w:
11335   case Intrinsic::x86_avx2_pslli_d:
11336   case Intrinsic::x86_avx2_pslli_q:
11337   case Intrinsic::x86_sse2_psrli_w:
11338   case Intrinsic::x86_sse2_psrli_d:
11339   case Intrinsic::x86_sse2_psrli_q:
11340   case Intrinsic::x86_avx2_psrli_w:
11341   case Intrinsic::x86_avx2_psrli_d:
11342   case Intrinsic::x86_avx2_psrli_q:
11343   case Intrinsic::x86_sse2_psrai_w:
11344   case Intrinsic::x86_sse2_psrai_d:
11345   case Intrinsic::x86_avx2_psrai_w:
11346   case Intrinsic::x86_avx2_psrai_d: {
11347     unsigned Opcode;
11348     switch (IntNo) {
11349     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11350     case Intrinsic::x86_sse2_pslli_w:
11351     case Intrinsic::x86_sse2_pslli_d:
11352     case Intrinsic::x86_sse2_pslli_q:
11353     case Intrinsic::x86_avx2_pslli_w:
11354     case Intrinsic::x86_avx2_pslli_d:
11355     case Intrinsic::x86_avx2_pslli_q:
11356       Opcode = X86ISD::VSHLI;
11357       break;
11358     case Intrinsic::x86_sse2_psrli_w:
11359     case Intrinsic::x86_sse2_psrli_d:
11360     case Intrinsic::x86_sse2_psrli_q:
11361     case Intrinsic::x86_avx2_psrli_w:
11362     case Intrinsic::x86_avx2_psrli_d:
11363     case Intrinsic::x86_avx2_psrli_q:
11364       Opcode = X86ISD::VSRLI;
11365       break;
11366     case Intrinsic::x86_sse2_psrai_w:
11367     case Intrinsic::x86_sse2_psrai_d:
11368     case Intrinsic::x86_avx2_psrai_w:
11369     case Intrinsic::x86_avx2_psrai_d:
11370       Opcode = X86ISD::VSRAI;
11371       break;
11372     }
11373     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
11374                                Op.getOperand(1), Op.getOperand(2), DAG);
11375   }
11376
11377   case Intrinsic::x86_sse42_pcmpistria128:
11378   case Intrinsic::x86_sse42_pcmpestria128:
11379   case Intrinsic::x86_sse42_pcmpistric128:
11380   case Intrinsic::x86_sse42_pcmpestric128:
11381   case Intrinsic::x86_sse42_pcmpistrio128:
11382   case Intrinsic::x86_sse42_pcmpestrio128:
11383   case Intrinsic::x86_sse42_pcmpistris128:
11384   case Intrinsic::x86_sse42_pcmpestris128:
11385   case Intrinsic::x86_sse42_pcmpistriz128:
11386   case Intrinsic::x86_sse42_pcmpestriz128: {
11387     unsigned Opcode;
11388     unsigned X86CC;
11389     switch (IntNo) {
11390     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11391     case Intrinsic::x86_sse42_pcmpistria128:
11392       Opcode = X86ISD::PCMPISTRI;
11393       X86CC = X86::COND_A;
11394       break;
11395     case Intrinsic::x86_sse42_pcmpestria128:
11396       Opcode = X86ISD::PCMPESTRI;
11397       X86CC = X86::COND_A;
11398       break;
11399     case Intrinsic::x86_sse42_pcmpistric128:
11400       Opcode = X86ISD::PCMPISTRI;
11401       X86CC = X86::COND_B;
11402       break;
11403     case Intrinsic::x86_sse42_pcmpestric128:
11404       Opcode = X86ISD::PCMPESTRI;
11405       X86CC = X86::COND_B;
11406       break;
11407     case Intrinsic::x86_sse42_pcmpistrio128:
11408       Opcode = X86ISD::PCMPISTRI;
11409       X86CC = X86::COND_O;
11410       break;
11411     case Intrinsic::x86_sse42_pcmpestrio128:
11412       Opcode = X86ISD::PCMPESTRI;
11413       X86CC = X86::COND_O;
11414       break;
11415     case Intrinsic::x86_sse42_pcmpistris128:
11416       Opcode = X86ISD::PCMPISTRI;
11417       X86CC = X86::COND_S;
11418       break;
11419     case Intrinsic::x86_sse42_pcmpestris128:
11420       Opcode = X86ISD::PCMPESTRI;
11421       X86CC = X86::COND_S;
11422       break;
11423     case Intrinsic::x86_sse42_pcmpistriz128:
11424       Opcode = X86ISD::PCMPISTRI;
11425       X86CC = X86::COND_E;
11426       break;
11427     case Intrinsic::x86_sse42_pcmpestriz128:
11428       Opcode = X86ISD::PCMPESTRI;
11429       X86CC = X86::COND_E;
11430       break;
11431     }
11432     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11433     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11434     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11435     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11436                                 DAG.getConstant(X86CC, MVT::i8),
11437                                 SDValue(PCMP.getNode(), 1));
11438     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11439   }
11440
11441   case Intrinsic::x86_sse42_pcmpistri128:
11442   case Intrinsic::x86_sse42_pcmpestri128: {
11443     unsigned Opcode;
11444     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11445       Opcode = X86ISD::PCMPISTRI;
11446     else
11447       Opcode = X86ISD::PCMPESTRI;
11448
11449     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11450     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11451     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11452   }
11453   case Intrinsic::x86_fma_vfmadd_ps:
11454   case Intrinsic::x86_fma_vfmadd_pd:
11455   case Intrinsic::x86_fma_vfmsub_ps:
11456   case Intrinsic::x86_fma_vfmsub_pd:
11457   case Intrinsic::x86_fma_vfnmadd_ps:
11458   case Intrinsic::x86_fma_vfnmadd_pd:
11459   case Intrinsic::x86_fma_vfnmsub_ps:
11460   case Intrinsic::x86_fma_vfnmsub_pd:
11461   case Intrinsic::x86_fma_vfmaddsub_ps:
11462   case Intrinsic::x86_fma_vfmaddsub_pd:
11463   case Intrinsic::x86_fma_vfmsubadd_ps:
11464   case Intrinsic::x86_fma_vfmsubadd_pd:
11465   case Intrinsic::x86_fma_vfmadd_ps_256:
11466   case Intrinsic::x86_fma_vfmadd_pd_256:
11467   case Intrinsic::x86_fma_vfmsub_ps_256:
11468   case Intrinsic::x86_fma_vfmsub_pd_256:
11469   case Intrinsic::x86_fma_vfnmadd_ps_256:
11470   case Intrinsic::x86_fma_vfnmadd_pd_256:
11471   case Intrinsic::x86_fma_vfnmsub_ps_256:
11472   case Intrinsic::x86_fma_vfnmsub_pd_256:
11473   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11474   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11475   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11476   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
11477     unsigned Opc;
11478     switch (IntNo) {
11479     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11480     case Intrinsic::x86_fma_vfmadd_ps:
11481     case Intrinsic::x86_fma_vfmadd_pd:
11482     case Intrinsic::x86_fma_vfmadd_ps_256:
11483     case Intrinsic::x86_fma_vfmadd_pd_256:
11484       Opc = X86ISD::FMADD;
11485       break;
11486     case Intrinsic::x86_fma_vfmsub_ps:
11487     case Intrinsic::x86_fma_vfmsub_pd:
11488     case Intrinsic::x86_fma_vfmsub_ps_256:
11489     case Intrinsic::x86_fma_vfmsub_pd_256:
11490       Opc = X86ISD::FMSUB;
11491       break;
11492     case Intrinsic::x86_fma_vfnmadd_ps:
11493     case Intrinsic::x86_fma_vfnmadd_pd:
11494     case Intrinsic::x86_fma_vfnmadd_ps_256:
11495     case Intrinsic::x86_fma_vfnmadd_pd_256:
11496       Opc = X86ISD::FNMADD;
11497       break;
11498     case Intrinsic::x86_fma_vfnmsub_ps:
11499     case Intrinsic::x86_fma_vfnmsub_pd:
11500     case Intrinsic::x86_fma_vfnmsub_ps_256:
11501     case Intrinsic::x86_fma_vfnmsub_pd_256:
11502       Opc = X86ISD::FNMSUB;
11503       break;
11504     case Intrinsic::x86_fma_vfmaddsub_ps:
11505     case Intrinsic::x86_fma_vfmaddsub_pd:
11506     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11507     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11508       Opc = X86ISD::FMADDSUB;
11509       break;
11510     case Intrinsic::x86_fma_vfmsubadd_ps:
11511     case Intrinsic::x86_fma_vfmsubadd_pd:
11512     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11513     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11514       Opc = X86ISD::FMSUBADD;
11515       break;
11516     }
11517
11518     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11519                        Op.getOperand(2), Op.getOperand(3));
11520   }
11521   }
11522 }
11523
11524 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) {
11525   SDLoc dl(Op);
11526   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11527   switch (IntNo) {
11528   default: return SDValue();    // Don't custom lower most intrinsics.
11529
11530   // RDRAND/RDSEED intrinsics.
11531   case Intrinsic::x86_rdrand_16:
11532   case Intrinsic::x86_rdrand_32:
11533   case Intrinsic::x86_rdrand_64:
11534   case Intrinsic::x86_rdseed_16:
11535   case Intrinsic::x86_rdseed_32:
11536   case Intrinsic::x86_rdseed_64: {
11537     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11538                        IntNo == Intrinsic::x86_rdseed_32 ||
11539                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11540                                                             X86ISD::RDRAND;
11541     // Emit the node with the right value type.
11542     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11543     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11544
11545     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11546     // Otherwise return the value from Rand, which is always 0, casted to i32.
11547     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11548                       DAG.getConstant(1, Op->getValueType(1)),
11549                       DAG.getConstant(X86::COND_B, MVT::i32),
11550                       SDValue(Result.getNode(), 1) };
11551     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11552                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11553                                   Ops, array_lengthof(Ops));
11554
11555     // Return { result, isValid, chain }.
11556     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
11557                        SDValue(Result.getNode(), 2));
11558   }
11559
11560   // XTEST intrinsics.
11561   case Intrinsic::x86_xtest: {
11562     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11563     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11564     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11565                                 DAG.getConstant(X86::COND_NE, MVT::i8),
11566                                 InTrans);
11567     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11568     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
11569                        Ret, SDValue(InTrans.getNode(), 1));
11570   }
11571   }
11572 }
11573
11574 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
11575                                            SelectionDAG &DAG) const {
11576   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11577   MFI->setReturnAddressIsTaken(true);
11578
11579   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11580   SDLoc dl(Op);
11581   EVT PtrVT = getPointerTy();
11582
11583   if (Depth > 0) {
11584     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
11585     const X86RegisterInfo *RegInfo =
11586       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11587     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
11588     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11589                        DAG.getNode(ISD::ADD, dl, PtrVT,
11590                                    FrameAddr, Offset),
11591                        MachinePointerInfo(), false, false, false, 0);
11592   }
11593
11594   // Just load the return address.
11595   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
11596   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
11597                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
11598 }
11599
11600 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
11601   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
11602   MFI->setFrameAddressIsTaken(true);
11603
11604   EVT VT = Op.getValueType();
11605   SDLoc dl(Op);  // FIXME probably not meaningful
11606   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11607   const X86RegisterInfo *RegInfo =
11608     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11609   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11610   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
11611           (FrameReg == X86::EBP && VT == MVT::i32)) &&
11612          "Invalid Frame Register!");
11613   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
11614   while (Depth--)
11615     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
11616                             MachinePointerInfo(),
11617                             false, false, false, 0);
11618   return FrameAddr;
11619 }
11620
11621 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
11622                                                      SelectionDAG &DAG) const {
11623   const X86RegisterInfo *RegInfo =
11624     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11625   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
11626 }
11627
11628 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
11629   SDValue Chain     = Op.getOperand(0);
11630   SDValue Offset    = Op.getOperand(1);
11631   SDValue Handler   = Op.getOperand(2);
11632   SDLoc dl      (Op);
11633
11634   EVT PtrVT = getPointerTy();
11635   const X86RegisterInfo *RegInfo =
11636     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11637   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
11638   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
11639           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
11640          "Invalid Frame Register!");
11641   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
11642   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
11643
11644   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
11645                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
11646   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
11647   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
11648                        false, false, 0);
11649   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
11650
11651   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
11652                      DAG.getRegister(StoreAddrReg, PtrVT));
11653 }
11654
11655 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
11656                                                SelectionDAG &DAG) const {
11657   SDLoc DL(Op);
11658   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
11659                      DAG.getVTList(MVT::i32, MVT::Other),
11660                      Op.getOperand(0), Op.getOperand(1));
11661 }
11662
11663 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
11664                                                 SelectionDAG &DAG) const {
11665   SDLoc DL(Op);
11666   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
11667                      Op.getOperand(0), Op.getOperand(1));
11668 }
11669
11670 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
11671   return Op.getOperand(0);
11672 }
11673
11674 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
11675                                                 SelectionDAG &DAG) const {
11676   SDValue Root = Op.getOperand(0);
11677   SDValue Trmp = Op.getOperand(1); // trampoline
11678   SDValue FPtr = Op.getOperand(2); // nested function
11679   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
11680   SDLoc dl (Op);
11681
11682   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11683   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
11684
11685   if (Subtarget->is64Bit()) {
11686     SDValue OutChains[6];
11687
11688     // Large code-model.
11689     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
11690     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
11691
11692     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
11693     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
11694
11695     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
11696
11697     // Load the pointer to the nested function into R11.
11698     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
11699     SDValue Addr = Trmp;
11700     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
11701                                 Addr, MachinePointerInfo(TrmpAddr),
11702                                 false, false, 0);
11703
11704     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11705                        DAG.getConstant(2, MVT::i64));
11706     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
11707                                 MachinePointerInfo(TrmpAddr, 2),
11708                                 false, false, 2);
11709
11710     // Load the 'nest' parameter value into R10.
11711     // R10 is specified in X86CallingConv.td
11712     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
11713     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11714                        DAG.getConstant(10, MVT::i64));
11715     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
11716                                 Addr, MachinePointerInfo(TrmpAddr, 10),
11717                                 false, false, 0);
11718
11719     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11720                        DAG.getConstant(12, MVT::i64));
11721     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
11722                                 MachinePointerInfo(TrmpAddr, 12),
11723                                 false, false, 2);
11724
11725     // Jump to the nested function.
11726     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
11727     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11728                        DAG.getConstant(20, MVT::i64));
11729     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
11730                                 Addr, MachinePointerInfo(TrmpAddr, 20),
11731                                 false, false, 0);
11732
11733     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
11734     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
11735                        DAG.getConstant(22, MVT::i64));
11736     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
11737                                 MachinePointerInfo(TrmpAddr, 22),
11738                                 false, false, 0);
11739
11740     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
11741   } else {
11742     const Function *Func =
11743       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
11744     CallingConv::ID CC = Func->getCallingConv();
11745     unsigned NestReg;
11746
11747     switch (CC) {
11748     default:
11749       llvm_unreachable("Unsupported calling convention");
11750     case CallingConv::C:
11751     case CallingConv::X86_StdCall: {
11752       // Pass 'nest' parameter in ECX.
11753       // Must be kept in sync with X86CallingConv.td
11754       NestReg = X86::ECX;
11755
11756       // Check that ECX wasn't needed by an 'inreg' parameter.
11757       FunctionType *FTy = Func->getFunctionType();
11758       const AttributeSet &Attrs = Func->getAttributes();
11759
11760       if (!Attrs.isEmpty() && !Func->isVarArg()) {
11761         unsigned InRegCount = 0;
11762         unsigned Idx = 1;
11763
11764         for (FunctionType::param_iterator I = FTy->param_begin(),
11765              E = FTy->param_end(); I != E; ++I, ++Idx)
11766           if (Attrs.hasAttribute(Idx, Attribute::InReg))
11767             // FIXME: should only count parameters that are lowered to integers.
11768             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
11769
11770         if (InRegCount > 2) {
11771           report_fatal_error("Nest register in use - reduce number of inreg"
11772                              " parameters!");
11773         }
11774       }
11775       break;
11776     }
11777     case CallingConv::X86_FastCall:
11778     case CallingConv::X86_ThisCall:
11779     case CallingConv::Fast:
11780       // Pass 'nest' parameter in EAX.
11781       // Must be kept in sync with X86CallingConv.td
11782       NestReg = X86::EAX;
11783       break;
11784     }
11785
11786     SDValue OutChains[4];
11787     SDValue Addr, Disp;
11788
11789     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11790                        DAG.getConstant(10, MVT::i32));
11791     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
11792
11793     // This is storing the opcode for MOV32ri.
11794     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
11795     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
11796     OutChains[0] = DAG.getStore(Root, dl,
11797                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
11798                                 Trmp, MachinePointerInfo(TrmpAddr),
11799                                 false, false, 0);
11800
11801     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11802                        DAG.getConstant(1, MVT::i32));
11803     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
11804                                 MachinePointerInfo(TrmpAddr, 1),
11805                                 false, false, 1);
11806
11807     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
11808     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11809                        DAG.getConstant(5, MVT::i32));
11810     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
11811                                 MachinePointerInfo(TrmpAddr, 5),
11812                                 false, false, 1);
11813
11814     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
11815                        DAG.getConstant(6, MVT::i32));
11816     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
11817                                 MachinePointerInfo(TrmpAddr, 6),
11818                                 false, false, 1);
11819
11820     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
11821   }
11822 }
11823
11824 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
11825                                             SelectionDAG &DAG) const {
11826   /*
11827    The rounding mode is in bits 11:10 of FPSR, and has the following
11828    settings:
11829      00 Round to nearest
11830      01 Round to -inf
11831      10 Round to +inf
11832      11 Round to 0
11833
11834   FLT_ROUNDS, on the other hand, expects the following:
11835     -1 Undefined
11836      0 Round to 0
11837      1 Round to nearest
11838      2 Round to +inf
11839      3 Round to -inf
11840
11841   To perform the conversion, we do:
11842     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
11843   */
11844
11845   MachineFunction &MF = DAG.getMachineFunction();
11846   const TargetMachine &TM = MF.getTarget();
11847   const TargetFrameLowering &TFI = *TM.getFrameLowering();
11848   unsigned StackAlignment = TFI.getStackAlignment();
11849   EVT VT = Op.getValueType();
11850   SDLoc DL(Op);
11851
11852   // Save FP Control Word to stack slot
11853   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
11854   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
11855
11856   MachineMemOperand *MMO =
11857    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
11858                            MachineMemOperand::MOStore, 2, 2);
11859
11860   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
11861   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
11862                                           DAG.getVTList(MVT::Other),
11863                                           Ops, array_lengthof(Ops), MVT::i16,
11864                                           MMO);
11865
11866   // Load FP Control Word from stack slot
11867   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
11868                             MachinePointerInfo(), false, false, false, 0);
11869
11870   // Transform as necessary
11871   SDValue CWD1 =
11872     DAG.getNode(ISD::SRL, DL, MVT::i16,
11873                 DAG.getNode(ISD::AND, DL, MVT::i16,
11874                             CWD, DAG.getConstant(0x800, MVT::i16)),
11875                 DAG.getConstant(11, MVT::i8));
11876   SDValue CWD2 =
11877     DAG.getNode(ISD::SRL, DL, MVT::i16,
11878                 DAG.getNode(ISD::AND, DL, MVT::i16,
11879                             CWD, DAG.getConstant(0x400, MVT::i16)),
11880                 DAG.getConstant(9, MVT::i8));
11881
11882   SDValue RetVal =
11883     DAG.getNode(ISD::AND, DL, MVT::i16,
11884                 DAG.getNode(ISD::ADD, DL, MVT::i16,
11885                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
11886                             DAG.getConstant(1, MVT::i16)),
11887                 DAG.getConstant(3, MVT::i16));
11888
11889   return DAG.getNode((VT.getSizeInBits() < 16 ?
11890                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
11891 }
11892
11893 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
11894   EVT VT = Op.getValueType();
11895   EVT OpVT = VT;
11896   unsigned NumBits = VT.getSizeInBits();
11897   SDLoc dl(Op);
11898
11899   Op = Op.getOperand(0);
11900   if (VT == MVT::i8) {
11901     // Zero extend to i32 since there is not an i8 bsr.
11902     OpVT = MVT::i32;
11903     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
11904   }
11905
11906   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
11907   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
11908   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
11909
11910   // If src is zero (i.e. bsr sets ZF), returns NumBits.
11911   SDValue Ops[] = {
11912     Op,
11913     DAG.getConstant(NumBits+NumBits-1, OpVT),
11914     DAG.getConstant(X86::COND_E, MVT::i8),
11915     Op.getValue(1)
11916   };
11917   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
11918
11919   // Finally xor with NumBits-1.
11920   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
11921
11922   if (VT == MVT::i8)
11923     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
11924   return Op;
11925 }
11926
11927 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
11928   EVT VT = Op.getValueType();
11929   EVT OpVT = VT;
11930   unsigned NumBits = VT.getSizeInBits();
11931   SDLoc dl(Op);
11932
11933   Op = Op.getOperand(0);
11934   if (VT == MVT::i8) {
11935     // Zero extend to i32 since there is not an i8 bsr.
11936     OpVT = MVT::i32;
11937     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
11938   }
11939
11940   // Issue a bsr (scan bits in reverse).
11941   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
11942   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
11943
11944   // And xor with NumBits-1.
11945   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
11946
11947   if (VT == MVT::i8)
11948     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
11949   return Op;
11950 }
11951
11952 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
11953   EVT VT = Op.getValueType();
11954   unsigned NumBits = VT.getSizeInBits();
11955   SDLoc dl(Op);
11956   Op = Op.getOperand(0);
11957
11958   // Issue a bsf (scan bits forward) which also sets EFLAGS.
11959   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
11960   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
11961
11962   // If src is zero (i.e. bsf sets ZF), returns NumBits.
11963   SDValue Ops[] = {
11964     Op,
11965     DAG.getConstant(NumBits, VT),
11966     DAG.getConstant(X86::COND_E, MVT::i8),
11967     Op.getValue(1)
11968   };
11969   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
11970 }
11971
11972 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
11973 // ones, and then concatenate the result back.
11974 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
11975   EVT VT = Op.getValueType();
11976
11977   assert(VT.is256BitVector() && VT.isInteger() &&
11978          "Unsupported value type for operation");
11979
11980   unsigned NumElems = VT.getVectorNumElements();
11981   SDLoc dl(Op);
11982
11983   // Extract the LHS vectors
11984   SDValue LHS = Op.getOperand(0);
11985   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
11986   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
11987
11988   // Extract the RHS vectors
11989   SDValue RHS = Op.getOperand(1);
11990   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
11991   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
11992
11993   MVT EltVT = VT.getVectorElementType().getSimpleVT();
11994   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
11995
11996   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
11997                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
11998                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
11999 }
12000
12001 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12002   assert(Op.getValueType().is256BitVector() &&
12003          Op.getValueType().isInteger() &&
12004          "Only handle AVX 256-bit vector integer operation");
12005   return Lower256IntArith(Op, DAG);
12006 }
12007
12008 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12009   assert(Op.getValueType().is256BitVector() &&
12010          Op.getValueType().isInteger() &&
12011          "Only handle AVX 256-bit vector integer operation");
12012   return Lower256IntArith(Op, DAG);
12013 }
12014
12015 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12016                         SelectionDAG &DAG) {
12017   SDLoc dl(Op);
12018   EVT VT = Op.getValueType();
12019
12020   // Decompose 256-bit ops into smaller 128-bit ops.
12021   if (VT.is256BitVector() && !Subtarget->hasInt256())
12022     return Lower256IntArith(Op, DAG);
12023
12024   SDValue A = Op.getOperand(0);
12025   SDValue B = Op.getOperand(1);
12026
12027   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12028   if (VT == MVT::v4i32) {
12029     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12030            "Should not custom lower when pmuldq is available!");
12031
12032     // Extract the odd parts.
12033     static const int UnpackMask[] = { 1, -1, 3, -1 };
12034     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12035     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12036
12037     // Multiply the even parts.
12038     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12039     // Now multiply odd parts.
12040     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12041
12042     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12043     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12044
12045     // Merge the two vectors back together with a shuffle. This expands into 2
12046     // shuffles.
12047     static const int ShufMask[] = { 0, 4, 2, 6 };
12048     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12049   }
12050
12051   assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
12052          "Only know how to lower V2I64/V4I64 multiply");
12053
12054   //  Ahi = psrlqi(a, 32);
12055   //  Bhi = psrlqi(b, 32);
12056   //
12057   //  AloBlo = pmuludq(a, b);
12058   //  AloBhi = pmuludq(a, Bhi);
12059   //  AhiBlo = pmuludq(Ahi, b);
12060
12061   //  AloBhi = psllqi(AloBhi, 32);
12062   //  AhiBlo = psllqi(AhiBlo, 32);
12063   //  return AloBlo + AloBhi + AhiBlo;
12064
12065   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
12066
12067   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
12068   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
12069
12070   // Bit cast to 32-bit vectors for MULUDQ
12071   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
12072   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12073   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12074   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12075   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12076
12077   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12078   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12079   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12080
12081   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
12082   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
12083
12084   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12085   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12086 }
12087
12088 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12089   EVT VT = Op.getValueType();
12090   EVT EltTy = VT.getVectorElementType();
12091   unsigned NumElts = VT.getVectorNumElements();
12092   SDValue N0 = Op.getOperand(0);
12093   SDLoc dl(Op);
12094
12095   // Lower sdiv X, pow2-const.
12096   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12097   if (!C)
12098     return SDValue();
12099
12100   APInt SplatValue, SplatUndef;
12101   unsigned SplatBitSize;
12102   bool HasAnyUndefs;
12103   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12104                           HasAnyUndefs) ||
12105       EltTy.getSizeInBits() < SplatBitSize)
12106     return SDValue();
12107
12108   if ((SplatValue != 0) &&
12109       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12110     unsigned lg2 = SplatValue.countTrailingZeros();
12111     // Splat the sign bit.
12112     SDValue Sz = DAG.getConstant(EltTy.getSizeInBits()-1, MVT::i32);
12113     SDValue SGN = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, N0, Sz, DAG);
12114     // Add (N0 < 0) ? abs2 - 1 : 0;
12115     SDValue Amt = DAG.getConstant(EltTy.getSizeInBits() - lg2, MVT::i32);
12116     SDValue SRL = getTargetVShiftNode(X86ISD::VSRLI, dl, VT, SGN, Amt, DAG);
12117     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12118     SDValue Lg2Amt = DAG.getConstant(lg2, MVT::i32);
12119     SDValue SRA = getTargetVShiftNode(X86ISD::VSRAI, dl, VT, ADD, Lg2Amt, DAG);
12120
12121     // If we're dividing by a positive value, we're done.  Otherwise, we must
12122     // negate the result.
12123     if (SplatValue.isNonNegative())
12124       return SRA;
12125
12126     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12127     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12128     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12129   }
12130   return SDValue();
12131 }
12132
12133 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12134                                          const X86Subtarget *Subtarget) {
12135   EVT VT = Op.getValueType();
12136   SDLoc dl(Op);
12137   SDValue R = Op.getOperand(0);
12138   SDValue Amt = Op.getOperand(1);
12139
12140   // Optimize shl/srl/sra with constant shift amount.
12141   if (isSplatVector(Amt.getNode())) {
12142     SDValue SclrAmt = Amt->getOperand(0);
12143     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12144       uint64_t ShiftAmt = C->getZExtValue();
12145
12146       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12147           (Subtarget->hasInt256() &&
12148            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12149           (Subtarget->hasAVX512() &&
12150            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12151         if (Op.getOpcode() == ISD::SHL)
12152           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12153                              DAG.getConstant(ShiftAmt, MVT::i32));
12154         if (Op.getOpcode() == ISD::SRL)
12155           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12156                              DAG.getConstant(ShiftAmt, MVT::i32));
12157         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12158           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12159                              DAG.getConstant(ShiftAmt, MVT::i32));
12160       }
12161
12162       if (VT == MVT::v16i8) {
12163         if (Op.getOpcode() == ISD::SHL) {
12164           // Make a large shift.
12165           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
12166                                     DAG.getConstant(ShiftAmt, MVT::i32));
12167           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12168           // Zero out the rightmost bits.
12169           SmallVector<SDValue, 16> V(16,
12170                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12171                                                      MVT::i8));
12172           return DAG.getNode(ISD::AND, dl, VT, SHL,
12173                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12174         }
12175         if (Op.getOpcode() == ISD::SRL) {
12176           // Make a large shift.
12177           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
12178                                     DAG.getConstant(ShiftAmt, MVT::i32));
12179           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12180           // Zero out the leftmost bits.
12181           SmallVector<SDValue, 16> V(16,
12182                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12183                                                      MVT::i8));
12184           return DAG.getNode(ISD::AND, dl, VT, SRL,
12185                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12186         }
12187         if (Op.getOpcode() == ISD::SRA) {
12188           if (ShiftAmt == 7) {
12189             // R s>> 7  ===  R s< 0
12190             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12191             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12192           }
12193
12194           // R s>> a === ((R u>> a) ^ m) - m
12195           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12196           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12197                                                          MVT::i8));
12198           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12199           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12200           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12201           return Res;
12202         }
12203         llvm_unreachable("Unknown shift opcode.");
12204       }
12205
12206       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12207         if (Op.getOpcode() == ISD::SHL) {
12208           // Make a large shift.
12209           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
12210                                     DAG.getConstant(ShiftAmt, MVT::i32));
12211           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12212           // Zero out the rightmost bits.
12213           SmallVector<SDValue, 32> V(32,
12214                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12215                                                      MVT::i8));
12216           return DAG.getNode(ISD::AND, dl, VT, SHL,
12217                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12218         }
12219         if (Op.getOpcode() == ISD::SRL) {
12220           // Make a large shift.
12221           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
12222                                     DAG.getConstant(ShiftAmt, MVT::i32));
12223           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12224           // Zero out the leftmost bits.
12225           SmallVector<SDValue, 32> V(32,
12226                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12227                                                      MVT::i8));
12228           return DAG.getNode(ISD::AND, dl, VT, SRL,
12229                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12230         }
12231         if (Op.getOpcode() == ISD::SRA) {
12232           if (ShiftAmt == 7) {
12233             // R s>> 7  ===  R s< 0
12234             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12235             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12236           }
12237
12238           // R s>> a === ((R u>> a) ^ m) - m
12239           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12240           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12241                                                          MVT::i8));
12242           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12243           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12244           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12245           return Res;
12246         }
12247         llvm_unreachable("Unknown shift opcode.");
12248       }
12249     }
12250   }
12251
12252   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12253   if (!Subtarget->is64Bit() &&
12254       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12255       Amt.getOpcode() == ISD::BITCAST &&
12256       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12257     Amt = Amt.getOperand(0);
12258     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12259                      VT.getVectorNumElements();
12260     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12261     uint64_t ShiftAmt = 0;
12262     for (unsigned i = 0; i != Ratio; ++i) {
12263       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12264       if (C == 0)
12265         return SDValue();
12266       // 6 == Log2(64)
12267       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12268     }
12269     // Check remaining shift amounts.
12270     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12271       uint64_t ShAmt = 0;
12272       for (unsigned j = 0; j != Ratio; ++j) {
12273         ConstantSDNode *C =
12274           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12275         if (C == 0)
12276           return SDValue();
12277         // 6 == Log2(64)
12278         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12279       }
12280       if (ShAmt != ShiftAmt)
12281         return SDValue();
12282     }
12283     switch (Op.getOpcode()) {
12284     default:
12285       llvm_unreachable("Unknown shift opcode!");
12286     case ISD::SHL:
12287       return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
12288                          DAG.getConstant(ShiftAmt, MVT::i32));
12289     case ISD::SRL:
12290       return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
12291                          DAG.getConstant(ShiftAmt, MVT::i32));
12292     case ISD::SRA:
12293       return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
12294                          DAG.getConstant(ShiftAmt, MVT::i32));
12295     }
12296   }
12297
12298   return SDValue();
12299 }
12300
12301 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12302                                         const X86Subtarget* Subtarget) {
12303   EVT VT = Op.getValueType();
12304   SDLoc dl(Op);
12305   SDValue R = Op.getOperand(0);
12306   SDValue Amt = Op.getOperand(1);
12307
12308   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12309       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12310       (Subtarget->hasInt256() &&
12311        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12312         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12313        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12314     SDValue BaseShAmt;
12315     EVT EltVT = VT.getVectorElementType();
12316
12317     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12318       unsigned NumElts = VT.getVectorNumElements();
12319       unsigned i, j;
12320       for (i = 0; i != NumElts; ++i) {
12321         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12322           continue;
12323         break;
12324       }
12325       for (j = i; j != NumElts; ++j) {
12326         SDValue Arg = Amt.getOperand(j);
12327         if (Arg.getOpcode() == ISD::UNDEF) continue;
12328         if (Arg != Amt.getOperand(i))
12329           break;
12330       }
12331       if (i != NumElts && j == NumElts)
12332         BaseShAmt = Amt.getOperand(i);
12333     } else {
12334       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12335         Amt = Amt.getOperand(0);
12336       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12337                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12338         SDValue InVec = Amt.getOperand(0);
12339         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12340           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12341           unsigned i = 0;
12342           for (; i != NumElts; ++i) {
12343             SDValue Arg = InVec.getOperand(i);
12344             if (Arg.getOpcode() == ISD::UNDEF) continue;
12345             BaseShAmt = Arg;
12346             break;
12347           }
12348         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12349            if (ConstantSDNode *C =
12350                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12351              unsigned SplatIdx =
12352                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12353              if (C->getZExtValue() == SplatIdx)
12354                BaseShAmt = InVec.getOperand(1);
12355            }
12356         }
12357         if (BaseShAmt.getNode() == 0)
12358           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12359                                   DAG.getIntPtrConstant(0));
12360       }
12361     }
12362
12363     if (BaseShAmt.getNode()) {
12364       if (EltVT.bitsGT(MVT::i32))
12365         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12366       else if (EltVT.bitsLT(MVT::i32))
12367         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12368
12369       switch (Op.getOpcode()) {
12370       default:
12371         llvm_unreachable("Unknown shift opcode!");
12372       case ISD::SHL:
12373         switch (VT.getSimpleVT().SimpleTy) {
12374         default: return SDValue();
12375         case MVT::v2i64:
12376         case MVT::v4i32:
12377         case MVT::v8i16:
12378         case MVT::v4i64:
12379         case MVT::v8i32:
12380         case MVT::v16i16:
12381         case MVT::v16i32:
12382         case MVT::v8i64:
12383           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12384         }
12385       case ISD::SRA:
12386         switch (VT.getSimpleVT().SimpleTy) {
12387         default: return SDValue();
12388         case MVT::v4i32:
12389         case MVT::v8i16:
12390         case MVT::v8i32:
12391         case MVT::v16i16:
12392         case MVT::v16i32:
12393         case MVT::v8i64:
12394           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12395         }
12396       case ISD::SRL:
12397         switch (VT.getSimpleVT().SimpleTy) {
12398         default: return SDValue();
12399         case MVT::v2i64:
12400         case MVT::v4i32:
12401         case MVT::v8i16:
12402         case MVT::v4i64:
12403         case MVT::v8i32:
12404         case MVT::v16i16:
12405         case MVT::v16i32:
12406         case MVT::v8i64:
12407           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12408         }
12409       }
12410     }
12411   }
12412
12413   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12414   if (!Subtarget->is64Bit() &&
12415       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12416       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
12417       Amt.getOpcode() == ISD::BITCAST &&
12418       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12419     Amt = Amt.getOperand(0);
12420     unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12421                      VT.getVectorNumElements();
12422     std::vector<SDValue> Vals(Ratio);
12423     for (unsigned i = 0; i != Ratio; ++i)
12424       Vals[i] = Amt.getOperand(i);
12425     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12426       for (unsigned j = 0; j != Ratio; ++j)
12427         if (Vals[j] != Amt.getOperand(i + j))
12428           return SDValue();
12429     }
12430     switch (Op.getOpcode()) {
12431     default:
12432       llvm_unreachable("Unknown shift opcode!");
12433     case ISD::SHL:
12434       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12435     case ISD::SRL:
12436       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12437     case ISD::SRA:
12438       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12439     }
12440   }
12441
12442   return SDValue();
12443 }
12444
12445 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12446                           SelectionDAG &DAG) {
12447
12448   EVT VT = Op.getValueType();
12449   SDLoc dl(Op);
12450   SDValue R = Op.getOperand(0);
12451   SDValue Amt = Op.getOperand(1);
12452   SDValue V;
12453
12454   if (!Subtarget->hasSSE2())
12455     return SDValue();
12456
12457   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12458   if (V.getNode())
12459     return V;
12460
12461   V = LowerScalarVariableShift(Op, DAG, Subtarget);
12462   if (V.getNode())
12463       return V;
12464
12465   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12466     return Op;
12467   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12468   if (Subtarget->hasInt256()) {
12469     if (Op.getOpcode() == ISD::SRL &&
12470         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12471          VT == MVT::v4i64 || VT == MVT::v8i32))
12472       return Op;
12473     if (Op.getOpcode() == ISD::SHL &&
12474         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12475          VT == MVT::v4i64 || VT == MVT::v8i32))
12476       return Op;
12477     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12478       return Op;
12479   }
12480
12481   // Lower SHL with variable shift amount.
12482   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
12483     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
12484
12485     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
12486     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
12487     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12488     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12489   }
12490   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
12491     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
12492
12493     // a = a << 5;
12494     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
12495     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
12496
12497     // Turn 'a' into a mask suitable for VSELECT
12498     SDValue VSelM = DAG.getConstant(0x80, VT);
12499     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12500     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12501
12502     SDValue CM1 = DAG.getConstant(0x0f, VT);
12503     SDValue CM2 = DAG.getConstant(0x3f, VT);
12504
12505     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12506     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
12507     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12508                             DAG.getConstant(4, MVT::i32), DAG);
12509     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12510     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12511
12512     // a += a
12513     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12514     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12515     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12516
12517     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12518     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
12519     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
12520                             DAG.getConstant(2, MVT::i32), DAG);
12521     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
12522     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12523
12524     // a += a
12525     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
12526     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
12527     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
12528
12529     // return VSELECT(r, r+r, a);
12530     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
12531                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
12532     return R;
12533   }
12534
12535   // Decompose 256-bit shifts into smaller 128-bit shifts.
12536   if (VT.is256BitVector()) {
12537     unsigned NumElems = VT.getVectorNumElements();
12538     MVT EltVT = VT.getVectorElementType().getSimpleVT();
12539     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12540
12541     // Extract the two vectors
12542     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12543     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
12544
12545     // Recreate the shift amount vectors
12546     SDValue Amt1, Amt2;
12547     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12548       // Constant shift amount
12549       SmallVector<SDValue, 4> Amt1Csts;
12550       SmallVector<SDValue, 4> Amt2Csts;
12551       for (unsigned i = 0; i != NumElems/2; ++i)
12552         Amt1Csts.push_back(Amt->getOperand(i));
12553       for (unsigned i = NumElems/2; i != NumElems; ++i)
12554         Amt2Csts.push_back(Amt->getOperand(i));
12555
12556       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12557                                  &Amt1Csts[0], NumElems/2);
12558       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12559                                  &Amt2Csts[0], NumElems/2);
12560     } else {
12561       // Variable shift amount
12562       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
12563       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
12564     }
12565
12566     // Issue new vector shifts for the smaller types
12567     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
12568     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
12569
12570     // Concatenate the result back
12571     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
12572   }
12573
12574   return SDValue();
12575 }
12576
12577 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
12578   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
12579   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
12580   // looks for this combo and may remove the "setcc" instruction if the "setcc"
12581   // has only one use.
12582   SDNode *N = Op.getNode();
12583   SDValue LHS = N->getOperand(0);
12584   SDValue RHS = N->getOperand(1);
12585   unsigned BaseOp = 0;
12586   unsigned Cond = 0;
12587   SDLoc DL(Op);
12588   switch (Op.getOpcode()) {
12589   default: llvm_unreachable("Unknown ovf instruction!");
12590   case ISD::SADDO:
12591     // A subtract of one will be selected as a INC. Note that INC doesn't
12592     // set CF, so we can't do this for UADDO.
12593     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12594       if (C->isOne()) {
12595         BaseOp = X86ISD::INC;
12596         Cond = X86::COND_O;
12597         break;
12598       }
12599     BaseOp = X86ISD::ADD;
12600     Cond = X86::COND_O;
12601     break;
12602   case ISD::UADDO:
12603     BaseOp = X86ISD::ADD;
12604     Cond = X86::COND_B;
12605     break;
12606   case ISD::SSUBO:
12607     // A subtract of one will be selected as a DEC. Note that DEC doesn't
12608     // set CF, so we can't do this for USUBO.
12609     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
12610       if (C->isOne()) {
12611         BaseOp = X86ISD::DEC;
12612         Cond = X86::COND_O;
12613         break;
12614       }
12615     BaseOp = X86ISD::SUB;
12616     Cond = X86::COND_O;
12617     break;
12618   case ISD::USUBO:
12619     BaseOp = X86ISD::SUB;
12620     Cond = X86::COND_B;
12621     break;
12622   case ISD::SMULO:
12623     BaseOp = X86ISD::SMUL;
12624     Cond = X86::COND_O;
12625     break;
12626   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
12627     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
12628                                  MVT::i32);
12629     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
12630
12631     SDValue SetCC =
12632       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12633                   DAG.getConstant(X86::COND_O, MVT::i32),
12634                   SDValue(Sum.getNode(), 2));
12635
12636     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
12637   }
12638   }
12639
12640   // Also sets EFLAGS.
12641   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
12642   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
12643
12644   SDValue SetCC =
12645     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
12646                 DAG.getConstant(Cond, MVT::i32),
12647                 SDValue(Sum.getNode(), 1));
12648
12649   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
12650 }
12651
12652 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
12653                                                   SelectionDAG &DAG) const {
12654   SDLoc dl(Op);
12655   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
12656   EVT VT = Op.getValueType();
12657
12658   if (!Subtarget->hasSSE2() || !VT.isVector())
12659     return SDValue();
12660
12661   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
12662                       ExtraVT.getScalarType().getSizeInBits();
12663   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
12664
12665   switch (VT.getSimpleVT().SimpleTy) {
12666     default: return SDValue();
12667     case MVT::v8i32:
12668     case MVT::v16i16:
12669       if (!Subtarget->hasFp256())
12670         return SDValue();
12671       if (!Subtarget->hasInt256()) {
12672         // needs to be split
12673         unsigned NumElems = VT.getVectorNumElements();
12674
12675         // Extract the LHS vectors
12676         SDValue LHS = Op.getOperand(0);
12677         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12678         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12679
12680         MVT EltVT = VT.getVectorElementType().getSimpleVT();
12681         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12682
12683         EVT ExtraEltVT = ExtraVT.getVectorElementType();
12684         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
12685         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
12686                                    ExtraNumElems/2);
12687         SDValue Extra = DAG.getValueType(ExtraVT);
12688
12689         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
12690         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
12691
12692         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
12693       }
12694       // fall through
12695     case MVT::v4i32:
12696     case MVT::v8i16: {
12697       // (sext (vzext x)) -> (vsext x)
12698       SDValue Op0 = Op.getOperand(0);
12699       SDValue Op00 = Op0.getOperand(0);
12700       SDValue Tmp1;
12701       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
12702       if (Op0.getOpcode() == ISD::BITCAST &&
12703           Op00.getOpcode() == ISD::VECTOR_SHUFFLE)
12704         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
12705       if (Tmp1.getNode()) {
12706         SDValue Tmp1Op0 = Tmp1.getOperand(0);
12707         assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
12708                "This optimization is invalid without a VZEXT.");
12709         return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
12710       }
12711
12712       // If the above didn't work, then just use Shift-Left + Shift-Right.
12713       Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT, Op0, ShAmt, DAG);
12714       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
12715     }
12716   }
12717 }
12718
12719 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
12720                                  SelectionDAG &DAG) {
12721   SDLoc dl(Op);
12722   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
12723     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
12724   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
12725     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
12726
12727   // The only fence that needs an instruction is a sequentially-consistent
12728   // cross-thread fence.
12729   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
12730     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
12731     // no-sse2). There isn't any reason to disable it if the target processor
12732     // supports it.
12733     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
12734       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
12735
12736     SDValue Chain = Op.getOperand(0);
12737     SDValue Zero = DAG.getConstant(0, MVT::i32);
12738     SDValue Ops[] = {
12739       DAG.getRegister(X86::ESP, MVT::i32), // Base
12740       DAG.getTargetConstant(1, MVT::i8),   // Scale
12741       DAG.getRegister(0, MVT::i32),        // Index
12742       DAG.getTargetConstant(0, MVT::i32),  // Disp
12743       DAG.getRegister(0, MVT::i32),        // Segment.
12744       Zero,
12745       Chain
12746     };
12747     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
12748     return SDValue(Res, 0);
12749   }
12750
12751   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
12752   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
12753 }
12754
12755 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
12756                              SelectionDAG &DAG) {
12757   EVT T = Op.getValueType();
12758   SDLoc DL(Op);
12759   unsigned Reg = 0;
12760   unsigned size = 0;
12761   switch(T.getSimpleVT().SimpleTy) {
12762   default: llvm_unreachable("Invalid value type!");
12763   case MVT::i8:  Reg = X86::AL;  size = 1; break;
12764   case MVT::i16: Reg = X86::AX;  size = 2; break;
12765   case MVT::i32: Reg = X86::EAX; size = 4; break;
12766   case MVT::i64:
12767     assert(Subtarget->is64Bit() && "Node not type legal!");
12768     Reg = X86::RAX; size = 8;
12769     break;
12770   }
12771   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
12772                                     Op.getOperand(2), SDValue());
12773   SDValue Ops[] = { cpIn.getValue(0),
12774                     Op.getOperand(1),
12775                     Op.getOperand(3),
12776                     DAG.getTargetConstant(size, MVT::i8),
12777                     cpIn.getValue(1) };
12778   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
12779   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
12780   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
12781                                            Ops, array_lengthof(Ops), T, MMO);
12782   SDValue cpOut =
12783     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
12784   return cpOut;
12785 }
12786
12787 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
12788                                      SelectionDAG &DAG) {
12789   assert(Subtarget->is64Bit() && "Result not type legalized?");
12790   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
12791   SDValue TheChain = Op.getOperand(0);
12792   SDLoc dl(Op);
12793   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
12794   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
12795   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
12796                                    rax.getValue(2));
12797   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
12798                             DAG.getConstant(32, MVT::i8));
12799   SDValue Ops[] = {
12800     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
12801     rdx.getValue(1)
12802   };
12803   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
12804 }
12805
12806 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
12807                             SelectionDAG &DAG) {
12808   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
12809   MVT DstVT = Op.getSimpleValueType();
12810   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
12811          Subtarget->hasMMX() && "Unexpected custom BITCAST");
12812   assert((DstVT == MVT::i64 ||
12813           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
12814          "Unexpected custom BITCAST");
12815   // i64 <=> MMX conversions are Legal.
12816   if (SrcVT==MVT::i64 && DstVT.isVector())
12817     return Op;
12818   if (DstVT==MVT::i64 && SrcVT.isVector())
12819     return Op;
12820   // MMX <=> MMX conversions are Legal.
12821   if (SrcVT.isVector() && DstVT.isVector())
12822     return Op;
12823   // All other conversions need to be expanded.
12824   return SDValue();
12825 }
12826
12827 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
12828   SDNode *Node = Op.getNode();
12829   SDLoc dl(Node);
12830   EVT T = Node->getValueType(0);
12831   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
12832                               DAG.getConstant(0, T), Node->getOperand(2));
12833   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
12834                        cast<AtomicSDNode>(Node)->getMemoryVT(),
12835                        Node->getOperand(0),
12836                        Node->getOperand(1), negOp,
12837                        cast<AtomicSDNode>(Node)->getSrcValue(),
12838                        cast<AtomicSDNode>(Node)->getAlignment(),
12839                        cast<AtomicSDNode>(Node)->getOrdering(),
12840                        cast<AtomicSDNode>(Node)->getSynchScope());
12841 }
12842
12843 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
12844   SDNode *Node = Op.getNode();
12845   SDLoc dl(Node);
12846   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
12847
12848   // Convert seq_cst store -> xchg
12849   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
12850   // FIXME: On 32-bit, store -> fist or movq would be more efficient
12851   //        (The only way to get a 16-byte store is cmpxchg16b)
12852   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
12853   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
12854       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
12855     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
12856                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
12857                                  Node->getOperand(0),
12858                                  Node->getOperand(1), Node->getOperand(2),
12859                                  cast<AtomicSDNode>(Node)->getMemOperand(),
12860                                  cast<AtomicSDNode>(Node)->getOrdering(),
12861                                  cast<AtomicSDNode>(Node)->getSynchScope());
12862     return Swap.getValue(1);
12863   }
12864   // Other atomic stores have a simple pattern.
12865   return Op;
12866 }
12867
12868 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
12869   EVT VT = Op.getNode()->getValueType(0);
12870
12871   // Let legalize expand this if it isn't a legal type yet.
12872   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
12873     return SDValue();
12874
12875   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12876
12877   unsigned Opc;
12878   bool ExtraOp = false;
12879   switch (Op.getOpcode()) {
12880   default: llvm_unreachable("Invalid code");
12881   case ISD::ADDC: Opc = X86ISD::ADD; break;
12882   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
12883   case ISD::SUBC: Opc = X86ISD::SUB; break;
12884   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
12885   }
12886
12887   if (!ExtraOp)
12888     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
12889                        Op.getOperand(1));
12890   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
12891                      Op.getOperand(1), Op.getOperand(2));
12892 }
12893
12894 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
12895                             SelectionDAG &DAG) {
12896   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
12897
12898   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
12899   // which returns the values as { float, float } (in XMM0) or
12900   // { double, double } (which is returned in XMM0, XMM1).
12901   SDLoc dl(Op);
12902   SDValue Arg = Op.getOperand(0);
12903   EVT ArgVT = Arg.getValueType();
12904   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
12905
12906   TargetLowering::ArgListTy Args;
12907   TargetLowering::ArgListEntry Entry;
12908
12909   Entry.Node = Arg;
12910   Entry.Ty = ArgTy;
12911   Entry.isSExt = false;
12912   Entry.isZExt = false;
12913   Args.push_back(Entry);
12914
12915   bool isF64 = ArgVT == MVT::f64;
12916   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
12917   // the small struct {f32, f32} is returned in (eax, edx). For f64,
12918   // the results are returned via SRet in memory.
12919   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
12920   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12921   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
12922
12923   Type *RetTy = isF64
12924     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
12925     : (Type*)VectorType::get(ArgTy, 4);
12926   TargetLowering::
12927     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
12928                          false, false, false, false, 0,
12929                          CallingConv::C, /*isTaillCall=*/false,
12930                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
12931                          Callee, Args, DAG, dl);
12932   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
12933
12934   if (isF64)
12935     // Returned in xmm0 and xmm1.
12936     return CallResult.first;
12937
12938   // Returned in bits 0:31 and 32:64 xmm0.
12939   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
12940                                CallResult.first, DAG.getIntPtrConstant(0));
12941   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
12942                                CallResult.first, DAG.getIntPtrConstant(1));
12943   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
12944   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
12945 }
12946
12947 /// LowerOperation - Provide custom lowering hooks for some operations.
12948 ///
12949 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
12950   switch (Op.getOpcode()) {
12951   default: llvm_unreachable("Should not custom lower this!");
12952   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
12953   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
12954   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
12955   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
12956   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
12957   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
12958   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
12959   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
12960   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
12961   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
12962   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
12963   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
12964   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
12965   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
12966   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
12967   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
12968   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
12969   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
12970   case ISD::SHL_PARTS:
12971   case ISD::SRA_PARTS:
12972   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
12973   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
12974   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
12975   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
12976   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
12977   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
12978   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
12979   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
12980   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
12981   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
12982   case ISD::FABS:               return LowerFABS(Op, DAG);
12983   case ISD::FNEG:               return LowerFNEG(Op, DAG);
12984   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
12985   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
12986   case ISD::SETCC:              return LowerSETCC(Op, DAG);
12987   case ISD::SELECT:             return LowerSELECT(Op, DAG);
12988   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
12989   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
12990   case ISD::VASTART:            return LowerVASTART(Op, DAG);
12991   case ISD::VAARG:              return LowerVAARG(Op, DAG);
12992   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
12993   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
12994   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, DAG);
12995   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
12996   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
12997   case ISD::FRAME_TO_ARGS_OFFSET:
12998                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
12999   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13000   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13001   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13002   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13003   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13004   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13005   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13006   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13007   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13008   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13009   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13010   case ISD::SRA:
13011   case ISD::SRL:
13012   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13013   case ISD::SADDO:
13014   case ISD::UADDO:
13015   case ISD::SSUBO:
13016   case ISD::USUBO:
13017   case ISD::SMULO:
13018   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13019   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13020   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13021   case ISD::ADDC:
13022   case ISD::ADDE:
13023   case ISD::SUBC:
13024   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13025   case ISD::ADD:                return LowerADD(Op, DAG);
13026   case ISD::SUB:                return LowerSUB(Op, DAG);
13027   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13028   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13029   }
13030 }
13031
13032 static void ReplaceATOMIC_LOAD(SDNode *Node,
13033                                   SmallVectorImpl<SDValue> &Results,
13034                                   SelectionDAG &DAG) {
13035   SDLoc dl(Node);
13036   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13037
13038   // Convert wide load -> cmpxchg8b/cmpxchg16b
13039   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13040   //        (The only way to get a 16-byte load is cmpxchg16b)
13041   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13042   SDValue Zero = DAG.getConstant(0, VT);
13043   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13044                                Node->getOperand(0),
13045                                Node->getOperand(1), Zero, Zero,
13046                                cast<AtomicSDNode>(Node)->getMemOperand(),
13047                                cast<AtomicSDNode>(Node)->getOrdering(),
13048                                cast<AtomicSDNode>(Node)->getSynchScope());
13049   Results.push_back(Swap.getValue(0));
13050   Results.push_back(Swap.getValue(1));
13051 }
13052
13053 static void
13054 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13055                         SelectionDAG &DAG, unsigned NewOp) {
13056   SDLoc dl(Node);
13057   assert (Node->getValueType(0) == MVT::i64 &&
13058           "Only know how to expand i64 atomics");
13059
13060   SDValue Chain = Node->getOperand(0);
13061   SDValue In1 = Node->getOperand(1);
13062   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13063                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13064   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13065                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13066   SDValue Ops[] = { Chain, In1, In2L, In2H };
13067   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13068   SDValue Result =
13069     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13070                             cast<MemSDNode>(Node)->getMemOperand());
13071   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13072   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13073   Results.push_back(Result.getValue(2));
13074 }
13075
13076 /// ReplaceNodeResults - Replace a node with an illegal result type
13077 /// with a new node built out of custom code.
13078 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13079                                            SmallVectorImpl<SDValue>&Results,
13080                                            SelectionDAG &DAG) const {
13081   SDLoc dl(N);
13082   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13083   switch (N->getOpcode()) {
13084   default:
13085     llvm_unreachable("Do not know how to custom type legalize this operation!");
13086   case ISD::SIGN_EXTEND_INREG:
13087   case ISD::ADDC:
13088   case ISD::ADDE:
13089   case ISD::SUBC:
13090   case ISD::SUBE:
13091     // We don't want to expand or promote these.
13092     return;
13093   case ISD::FP_TO_SINT:
13094   case ISD::FP_TO_UINT: {
13095     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13096
13097     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13098       return;
13099
13100     std::pair<SDValue,SDValue> Vals =
13101         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13102     SDValue FIST = Vals.first, StackSlot = Vals.second;
13103     if (FIST.getNode() != 0) {
13104       EVT VT = N->getValueType(0);
13105       // Return a load from the stack slot.
13106       if (StackSlot.getNode() != 0)
13107         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13108                                       MachinePointerInfo(),
13109                                       false, false, false, 0));
13110       else
13111         Results.push_back(FIST);
13112     }
13113     return;
13114   }
13115   case ISD::UINT_TO_FP: {
13116     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13117     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13118         N->getValueType(0) != MVT::v2f32)
13119       return;
13120     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13121                                  N->getOperand(0));
13122     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13123                                      MVT::f64);
13124     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13125     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13126                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13127     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13128     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13129     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13130     return;
13131   }
13132   case ISD::FP_ROUND: {
13133     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13134         return;
13135     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13136     Results.push_back(V);
13137     return;
13138   }
13139   case ISD::READCYCLECOUNTER: {
13140     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13141     SDValue TheChain = N->getOperand(0);
13142     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13143     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13144                                      rd.getValue(1));
13145     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13146                                      eax.getValue(2));
13147     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13148     SDValue Ops[] = { eax, edx };
13149     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13150                                   array_lengthof(Ops)));
13151     Results.push_back(edx.getValue(1));
13152     return;
13153   }
13154   case ISD::ATOMIC_CMP_SWAP: {
13155     EVT T = N->getValueType(0);
13156     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13157     bool Regs64bit = T == MVT::i128;
13158     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13159     SDValue cpInL, cpInH;
13160     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13161                         DAG.getConstant(0, HalfT));
13162     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13163                         DAG.getConstant(1, HalfT));
13164     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13165                              Regs64bit ? X86::RAX : X86::EAX,
13166                              cpInL, SDValue());
13167     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13168                              Regs64bit ? X86::RDX : X86::EDX,
13169                              cpInH, cpInL.getValue(1));
13170     SDValue swapInL, swapInH;
13171     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13172                           DAG.getConstant(0, HalfT));
13173     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13174                           DAG.getConstant(1, HalfT));
13175     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13176                                Regs64bit ? X86::RBX : X86::EBX,
13177                                swapInL, cpInH.getValue(1));
13178     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13179                                Regs64bit ? X86::RCX : X86::ECX,
13180                                swapInH, swapInL.getValue(1));
13181     SDValue Ops[] = { swapInH.getValue(0),
13182                       N->getOperand(1),
13183                       swapInH.getValue(1) };
13184     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13185     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13186     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13187                                   X86ISD::LCMPXCHG8_DAG;
13188     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13189                                              Ops, array_lengthof(Ops), T, MMO);
13190     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13191                                         Regs64bit ? X86::RAX : X86::EAX,
13192                                         HalfT, Result.getValue(1));
13193     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13194                                         Regs64bit ? X86::RDX : X86::EDX,
13195                                         HalfT, cpOutL.getValue(2));
13196     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13197     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13198     Results.push_back(cpOutH.getValue(1));
13199     return;
13200   }
13201   case ISD::ATOMIC_LOAD_ADD:
13202   case ISD::ATOMIC_LOAD_AND:
13203   case ISD::ATOMIC_LOAD_NAND:
13204   case ISD::ATOMIC_LOAD_OR:
13205   case ISD::ATOMIC_LOAD_SUB:
13206   case ISD::ATOMIC_LOAD_XOR:
13207   case ISD::ATOMIC_LOAD_MAX:
13208   case ISD::ATOMIC_LOAD_MIN:
13209   case ISD::ATOMIC_LOAD_UMAX:
13210   case ISD::ATOMIC_LOAD_UMIN:
13211   case ISD::ATOMIC_SWAP: {
13212     unsigned Opc;
13213     switch (N->getOpcode()) {
13214     default: llvm_unreachable("Unexpected opcode");
13215     case ISD::ATOMIC_LOAD_ADD:
13216       Opc = X86ISD::ATOMADD64_DAG;
13217       break;
13218     case ISD::ATOMIC_LOAD_AND:
13219       Opc = X86ISD::ATOMAND64_DAG;
13220       break;
13221     case ISD::ATOMIC_LOAD_NAND:
13222       Opc = X86ISD::ATOMNAND64_DAG;
13223       break;
13224     case ISD::ATOMIC_LOAD_OR:
13225       Opc = X86ISD::ATOMOR64_DAG;
13226       break;
13227     case ISD::ATOMIC_LOAD_SUB:
13228       Opc = X86ISD::ATOMSUB64_DAG;
13229       break;
13230     case ISD::ATOMIC_LOAD_XOR:
13231       Opc = X86ISD::ATOMXOR64_DAG;
13232       break;
13233     case ISD::ATOMIC_LOAD_MAX:
13234       Opc = X86ISD::ATOMMAX64_DAG;
13235       break;
13236     case ISD::ATOMIC_LOAD_MIN:
13237       Opc = X86ISD::ATOMMIN64_DAG;
13238       break;
13239     case ISD::ATOMIC_LOAD_UMAX:
13240       Opc = X86ISD::ATOMUMAX64_DAG;
13241       break;
13242     case ISD::ATOMIC_LOAD_UMIN:
13243       Opc = X86ISD::ATOMUMIN64_DAG;
13244       break;
13245     case ISD::ATOMIC_SWAP:
13246       Opc = X86ISD::ATOMSWAP64_DAG;
13247       break;
13248     }
13249     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13250     return;
13251   }
13252   case ISD::ATOMIC_LOAD:
13253     ReplaceATOMIC_LOAD(N, Results, DAG);
13254   }
13255 }
13256
13257 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13258   switch (Opcode) {
13259   default: return NULL;
13260   case X86ISD::BSF:                return "X86ISD::BSF";
13261   case X86ISD::BSR:                return "X86ISD::BSR";
13262   case X86ISD::SHLD:               return "X86ISD::SHLD";
13263   case X86ISD::SHRD:               return "X86ISD::SHRD";
13264   case X86ISD::FAND:               return "X86ISD::FAND";
13265   case X86ISD::FANDN:              return "X86ISD::FANDN";
13266   case X86ISD::FOR:                return "X86ISD::FOR";
13267   case X86ISD::FXOR:               return "X86ISD::FXOR";
13268   case X86ISD::FSRL:               return "X86ISD::FSRL";
13269   case X86ISD::FILD:               return "X86ISD::FILD";
13270   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13271   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13272   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13273   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13274   case X86ISD::FLD:                return "X86ISD::FLD";
13275   case X86ISD::FST:                return "X86ISD::FST";
13276   case X86ISD::CALL:               return "X86ISD::CALL";
13277   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13278   case X86ISD::BT:                 return "X86ISD::BT";
13279   case X86ISD::CMP:                return "X86ISD::CMP";
13280   case X86ISD::COMI:               return "X86ISD::COMI";
13281   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13282   case X86ISD::CMPM:               return "X86ISD::CMPM";
13283   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13284   case X86ISD::SETCC:              return "X86ISD::SETCC";
13285   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13286   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
13287   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
13288   case X86ISD::CMOV:               return "X86ISD::CMOV";
13289   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13290   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13291   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13292   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13293   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13294   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13295   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13296   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13297   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13298   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13299   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13300   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13301   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13302   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13303   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13304   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13305   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13306   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13307   case X86ISD::HADD:               return "X86ISD::HADD";
13308   case X86ISD::HSUB:               return "X86ISD::HSUB";
13309   case X86ISD::FHADD:              return "X86ISD::FHADD";
13310   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13311   case X86ISD::UMAX:               return "X86ISD::UMAX";
13312   case X86ISD::UMIN:               return "X86ISD::UMIN";
13313   case X86ISD::SMAX:               return "X86ISD::SMAX";
13314   case X86ISD::SMIN:               return "X86ISD::SMIN";
13315   case X86ISD::FMAX:               return "X86ISD::FMAX";
13316   case X86ISD::FMIN:               return "X86ISD::FMIN";
13317   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13318   case X86ISD::FMINC:              return "X86ISD::FMINC";
13319   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13320   case X86ISD::FRCP:               return "X86ISD::FRCP";
13321   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13322   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13323   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13324   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13325   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13326   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13327   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13328   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13329   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13330   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13331   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13332   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13333   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13334   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13335   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13336   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13337   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13338   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13339   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13340   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13341   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13342   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13343   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13344   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13345   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13346   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13347   case X86ISD::VSHL:               return "X86ISD::VSHL";
13348   case X86ISD::VSRL:               return "X86ISD::VSRL";
13349   case X86ISD::VSRA:               return "X86ISD::VSRA";
13350   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13351   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13352   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13353   case X86ISD::CMPP:               return "X86ISD::CMPP";
13354   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13355   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13356   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13357   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13358   case X86ISD::ADD:                return "X86ISD::ADD";
13359   case X86ISD::SUB:                return "X86ISD::SUB";
13360   case X86ISD::ADC:                return "X86ISD::ADC";
13361   case X86ISD::SBB:                return "X86ISD::SBB";
13362   case X86ISD::SMUL:               return "X86ISD::SMUL";
13363   case X86ISD::UMUL:               return "X86ISD::UMUL";
13364   case X86ISD::INC:                return "X86ISD::INC";
13365   case X86ISD::DEC:                return "X86ISD::DEC";
13366   case X86ISD::OR:                 return "X86ISD::OR";
13367   case X86ISD::XOR:                return "X86ISD::XOR";
13368   case X86ISD::AND:                return "X86ISD::AND";
13369   case X86ISD::BLSI:               return "X86ISD::BLSI";
13370   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13371   case X86ISD::BLSR:               return "X86ISD::BLSR";
13372   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13373   case X86ISD::PTEST:              return "X86ISD::PTEST";
13374   case X86ISD::TESTP:              return "X86ISD::TESTP";
13375   case X86ISD::TESTM:              return "X86ISD::TESTM";
13376   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13377   case X86ISD::KTEST:              return "X86ISD::KTEST";
13378   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13379   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13380   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13381   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13382   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13383   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13384   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13385   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13386   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13387   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13388   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13389   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13390   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13391   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13392   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
13393   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
13394   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
13395   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
13396   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
13397   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
13398   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
13399   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
13400   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
13401   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
13402   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
13403   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
13404   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
13405   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
13406   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
13407   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
13408   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
13409   case X86ISD::SAHF:               return "X86ISD::SAHF";
13410   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
13411   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
13412   case X86ISD::FMADD:              return "X86ISD::FMADD";
13413   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
13414   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
13415   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
13416   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
13417   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
13418   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
13419   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
13420   case X86ISD::XTEST:              return "X86ISD::XTEST";
13421   }
13422 }
13423
13424 // isLegalAddressingMode - Return true if the addressing mode represented
13425 // by AM is legal for this target, for a load/store of the specified type.
13426 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
13427                                               Type *Ty) const {
13428   // X86 supports extremely general addressing modes.
13429   CodeModel::Model M = getTargetMachine().getCodeModel();
13430   Reloc::Model R = getTargetMachine().getRelocationModel();
13431
13432   // X86 allows a sign-extended 32-bit immediate field as a displacement.
13433   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
13434     return false;
13435
13436   if (AM.BaseGV) {
13437     unsigned GVFlags =
13438       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
13439
13440     // If a reference to this global requires an extra load, we can't fold it.
13441     if (isGlobalStubReference(GVFlags))
13442       return false;
13443
13444     // If BaseGV requires a register for the PIC base, we cannot also have a
13445     // BaseReg specified.
13446     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
13447       return false;
13448
13449     // If lower 4G is not available, then we must use rip-relative addressing.
13450     if ((M != CodeModel::Small || R != Reloc::Static) &&
13451         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
13452       return false;
13453   }
13454
13455   switch (AM.Scale) {
13456   case 0:
13457   case 1:
13458   case 2:
13459   case 4:
13460   case 8:
13461     // These scales always work.
13462     break;
13463   case 3:
13464   case 5:
13465   case 9:
13466     // These scales are formed with basereg+scalereg.  Only accept if there is
13467     // no basereg yet.
13468     if (AM.HasBaseReg)
13469       return false;
13470     break;
13471   default:  // Other stuff never works.
13472     return false;
13473   }
13474
13475   return true;
13476 }
13477
13478 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
13479   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13480     return false;
13481   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13482   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
13483   return NumBits1 > NumBits2;
13484 }
13485
13486 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13487   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13488     return false;
13489
13490   if (!isTypeLegal(EVT::getEVT(Ty1)))
13491     return false;
13492
13493   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13494
13495   // Assuming the caller doesn't have a zeroext or signext return parameter,
13496   // truncation all the way down to i1 is valid.
13497   return true;
13498 }
13499
13500 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
13501   return isInt<32>(Imm);
13502 }
13503
13504 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
13505   // Can also use sub to handle negated immediates.
13506   return isInt<32>(Imm);
13507 }
13508
13509 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
13510   if (!VT1.isInteger() || !VT2.isInteger())
13511     return false;
13512   unsigned NumBits1 = VT1.getSizeInBits();
13513   unsigned NumBits2 = VT2.getSizeInBits();
13514   return NumBits1 > NumBits2;
13515 }
13516
13517 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
13518   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13519   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
13520 }
13521
13522 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
13523   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
13524   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
13525 }
13526
13527 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13528   EVT VT1 = Val.getValueType();
13529   if (isZExtFree(VT1, VT2))
13530     return true;
13531
13532   if (Val.getOpcode() != ISD::LOAD)
13533     return false;
13534
13535   if (!VT1.isSimple() || !VT1.isInteger() ||
13536       !VT2.isSimple() || !VT2.isInteger())
13537     return false;
13538
13539   switch (VT1.getSimpleVT().SimpleTy) {
13540   default: break;
13541   case MVT::i8:
13542   case MVT::i16:
13543   case MVT::i32:
13544     // X86 has 8, 16, and 32-bit zero-extending loads.
13545     return true;
13546   }
13547
13548   return false;
13549 }
13550
13551 bool
13552 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
13553   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
13554     return false;
13555
13556   VT = VT.getScalarType();
13557
13558   if (!VT.isSimple())
13559     return false;
13560
13561   switch (VT.getSimpleVT().SimpleTy) {
13562   case MVT::f32:
13563   case MVT::f64:
13564     return true;
13565   default:
13566     break;
13567   }
13568
13569   return false;
13570 }
13571
13572 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
13573   // i16 instructions are longer (0x66 prefix) and potentially slower.
13574   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
13575 }
13576
13577 /// isShuffleMaskLegal - Targets can use this to indicate that they only
13578 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
13579 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
13580 /// are assumed to be legal.
13581 bool
13582 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
13583                                       EVT VT) const {
13584   if (!VT.isSimple())
13585     return false;
13586
13587   MVT SVT = VT.getSimpleVT();
13588
13589   // Very little shuffling can be done for 64-bit vectors right now.
13590   if (VT.getSizeInBits() == 64)
13591     return false;
13592
13593   // FIXME: pshufb, blends, shifts.
13594   return (SVT.getVectorNumElements() == 2 ||
13595           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
13596           isMOVLMask(M, SVT) ||
13597           isSHUFPMask(M, SVT, Subtarget->hasFp256()) ||
13598           isPSHUFDMask(M, SVT) ||
13599           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
13600           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
13601           isPALIGNRMask(M, SVT, Subtarget) ||
13602           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
13603           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
13604           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
13605           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
13606 }
13607
13608 bool
13609 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
13610                                           EVT VT) const {
13611   if (!VT.isSimple())
13612     return false;
13613
13614   MVT SVT = VT.getSimpleVT();
13615   unsigned NumElts = SVT.getVectorNumElements();
13616   // FIXME: This collection of masks seems suspect.
13617   if (NumElts == 2)
13618     return true;
13619   if (NumElts == 4 && SVT.is128BitVector()) {
13620     return (isMOVLMask(Mask, SVT)  ||
13621             isCommutedMOVLMask(Mask, SVT, true) ||
13622             isSHUFPMask(Mask, SVT, Subtarget->hasFp256()) ||
13623             isSHUFPMask(Mask, SVT, Subtarget->hasFp256(), /* Commuted */ true));
13624   }
13625   return false;
13626 }
13627
13628 //===----------------------------------------------------------------------===//
13629 //                           X86 Scheduler Hooks
13630 //===----------------------------------------------------------------------===//
13631
13632 /// Utility function to emit xbegin specifying the start of an RTM region.
13633 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
13634                                      const TargetInstrInfo *TII) {
13635   DebugLoc DL = MI->getDebugLoc();
13636
13637   const BasicBlock *BB = MBB->getBasicBlock();
13638   MachineFunction::iterator I = MBB;
13639   ++I;
13640
13641   // For the v = xbegin(), we generate
13642   //
13643   // thisMBB:
13644   //  xbegin sinkMBB
13645   //
13646   // mainMBB:
13647   //  eax = -1
13648   //
13649   // sinkMBB:
13650   //  v = eax
13651
13652   MachineBasicBlock *thisMBB = MBB;
13653   MachineFunction *MF = MBB->getParent();
13654   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13655   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13656   MF->insert(I, mainMBB);
13657   MF->insert(I, sinkMBB);
13658
13659   // Transfer the remainder of BB and its successor edges to sinkMBB.
13660   sinkMBB->splice(sinkMBB->begin(), MBB,
13661                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13662   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
13663
13664   // thisMBB:
13665   //  xbegin sinkMBB
13666   //  # fallthrough to mainMBB
13667   //  # abortion to sinkMBB
13668   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
13669   thisMBB->addSuccessor(mainMBB);
13670   thisMBB->addSuccessor(sinkMBB);
13671
13672   // mainMBB:
13673   //  EAX = -1
13674   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
13675   mainMBB->addSuccessor(sinkMBB);
13676
13677   // sinkMBB:
13678   // EAX is live into the sinkMBB
13679   sinkMBB->addLiveIn(X86::EAX);
13680   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13681           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
13682     .addReg(X86::EAX);
13683
13684   MI->eraseFromParent();
13685   return sinkMBB;
13686 }
13687
13688 // Get CMPXCHG opcode for the specified data type.
13689 static unsigned getCmpXChgOpcode(EVT VT) {
13690   switch (VT.getSimpleVT().SimpleTy) {
13691   case MVT::i8:  return X86::LCMPXCHG8;
13692   case MVT::i16: return X86::LCMPXCHG16;
13693   case MVT::i32: return X86::LCMPXCHG32;
13694   case MVT::i64: return X86::LCMPXCHG64;
13695   default:
13696     break;
13697   }
13698   llvm_unreachable("Invalid operand size!");
13699 }
13700
13701 // Get LOAD opcode for the specified data type.
13702 static unsigned getLoadOpcode(EVT VT) {
13703   switch (VT.getSimpleVT().SimpleTy) {
13704   case MVT::i8:  return X86::MOV8rm;
13705   case MVT::i16: return X86::MOV16rm;
13706   case MVT::i32: return X86::MOV32rm;
13707   case MVT::i64: return X86::MOV64rm;
13708   default:
13709     break;
13710   }
13711   llvm_unreachable("Invalid operand size!");
13712 }
13713
13714 // Get opcode of the non-atomic one from the specified atomic instruction.
13715 static unsigned getNonAtomicOpcode(unsigned Opc) {
13716   switch (Opc) {
13717   case X86::ATOMAND8:  return X86::AND8rr;
13718   case X86::ATOMAND16: return X86::AND16rr;
13719   case X86::ATOMAND32: return X86::AND32rr;
13720   case X86::ATOMAND64: return X86::AND64rr;
13721   case X86::ATOMOR8:   return X86::OR8rr;
13722   case X86::ATOMOR16:  return X86::OR16rr;
13723   case X86::ATOMOR32:  return X86::OR32rr;
13724   case X86::ATOMOR64:  return X86::OR64rr;
13725   case X86::ATOMXOR8:  return X86::XOR8rr;
13726   case X86::ATOMXOR16: return X86::XOR16rr;
13727   case X86::ATOMXOR32: return X86::XOR32rr;
13728   case X86::ATOMXOR64: return X86::XOR64rr;
13729   }
13730   llvm_unreachable("Unhandled atomic-load-op opcode!");
13731 }
13732
13733 // Get opcode of the non-atomic one from the specified atomic instruction with
13734 // extra opcode.
13735 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
13736                                                unsigned &ExtraOpc) {
13737   switch (Opc) {
13738   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
13739   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
13740   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
13741   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
13742   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
13743   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
13744   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
13745   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
13746   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
13747   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
13748   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
13749   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
13750   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
13751   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
13752   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
13753   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
13754   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
13755   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
13756   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
13757   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
13758   }
13759   llvm_unreachable("Unhandled atomic-load-op opcode!");
13760 }
13761
13762 // Get opcode of the non-atomic one from the specified atomic instruction for
13763 // 64-bit data type on 32-bit target.
13764 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
13765   switch (Opc) {
13766   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
13767   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
13768   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
13769   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
13770   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
13771   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
13772   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
13773   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
13774   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
13775   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
13776   }
13777   llvm_unreachable("Unhandled atomic-load-op opcode!");
13778 }
13779
13780 // Get opcode of the non-atomic one from the specified atomic instruction for
13781 // 64-bit data type on 32-bit target with extra opcode.
13782 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
13783                                                    unsigned &HiOpc,
13784                                                    unsigned &ExtraOpc) {
13785   switch (Opc) {
13786   case X86::ATOMNAND6432:
13787     ExtraOpc = X86::NOT32r;
13788     HiOpc = X86::AND32rr;
13789     return X86::AND32rr;
13790   }
13791   llvm_unreachable("Unhandled atomic-load-op opcode!");
13792 }
13793
13794 // Get pseudo CMOV opcode from the specified data type.
13795 static unsigned getPseudoCMOVOpc(EVT VT) {
13796   switch (VT.getSimpleVT().SimpleTy) {
13797   case MVT::i8:  return X86::CMOV_GR8;
13798   case MVT::i16: return X86::CMOV_GR16;
13799   case MVT::i32: return X86::CMOV_GR32;
13800   default:
13801     break;
13802   }
13803   llvm_unreachable("Unknown CMOV opcode!");
13804 }
13805
13806 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
13807 // They will be translated into a spin-loop or compare-exchange loop from
13808 //
13809 //    ...
13810 //    dst = atomic-fetch-op MI.addr, MI.val
13811 //    ...
13812 //
13813 // to
13814 //
13815 //    ...
13816 //    t1 = LOAD MI.addr
13817 // loop:
13818 //    t4 = phi(t1, t3 / loop)
13819 //    t2 = OP MI.val, t4
13820 //    EAX = t4
13821 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
13822 //    t3 = EAX
13823 //    JNE loop
13824 // sink:
13825 //    dst = t3
13826 //    ...
13827 MachineBasicBlock *
13828 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
13829                                        MachineBasicBlock *MBB) const {
13830   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13831   DebugLoc DL = MI->getDebugLoc();
13832
13833   MachineFunction *MF = MBB->getParent();
13834   MachineRegisterInfo &MRI = MF->getRegInfo();
13835
13836   const BasicBlock *BB = MBB->getBasicBlock();
13837   MachineFunction::iterator I = MBB;
13838   ++I;
13839
13840   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
13841          "Unexpected number of operands");
13842
13843   assert(MI->hasOneMemOperand() &&
13844          "Expected atomic-load-op to have one memoperand");
13845
13846   // Memory Reference
13847   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
13848   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
13849
13850   unsigned DstReg, SrcReg;
13851   unsigned MemOpndSlot;
13852
13853   unsigned CurOp = 0;
13854
13855   DstReg = MI->getOperand(CurOp++).getReg();
13856   MemOpndSlot = CurOp;
13857   CurOp += X86::AddrNumOperands;
13858   SrcReg = MI->getOperand(CurOp++).getReg();
13859
13860   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
13861   MVT::SimpleValueType VT = *RC->vt_begin();
13862   unsigned t1 = MRI.createVirtualRegister(RC);
13863   unsigned t2 = MRI.createVirtualRegister(RC);
13864   unsigned t3 = MRI.createVirtualRegister(RC);
13865   unsigned t4 = MRI.createVirtualRegister(RC);
13866   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
13867
13868   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
13869   unsigned LOADOpc = getLoadOpcode(VT);
13870
13871   // For the atomic load-arith operator, we generate
13872   //
13873   //  thisMBB:
13874   //    t1 = LOAD [MI.addr]
13875   //  mainMBB:
13876   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
13877   //    t1 = OP MI.val, EAX
13878   //    EAX = t4
13879   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
13880   //    t3 = EAX
13881   //    JNE mainMBB
13882   //  sinkMBB:
13883   //    dst = t3
13884
13885   MachineBasicBlock *thisMBB = MBB;
13886   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13887   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13888   MF->insert(I, mainMBB);
13889   MF->insert(I, sinkMBB);
13890
13891   MachineInstrBuilder MIB;
13892
13893   // Transfer the remainder of BB and its successor edges to sinkMBB.
13894   sinkMBB->splice(sinkMBB->begin(), MBB,
13895                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13896   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
13897
13898   // thisMBB:
13899   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
13900   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
13901     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
13902     if (NewMO.isReg())
13903       NewMO.setIsKill(false);
13904     MIB.addOperand(NewMO);
13905   }
13906   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
13907     unsigned flags = (*MMOI)->getFlags();
13908     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
13909     MachineMemOperand *MMO =
13910       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
13911                                (*MMOI)->getSize(),
13912                                (*MMOI)->getBaseAlignment(),
13913                                (*MMOI)->getTBAAInfo(),
13914                                (*MMOI)->getRanges());
13915     MIB.addMemOperand(MMO);
13916   }
13917
13918   thisMBB->addSuccessor(mainMBB);
13919
13920   // mainMBB:
13921   MachineBasicBlock *origMainMBB = mainMBB;
13922
13923   // Add a PHI.
13924   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
13925                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
13926
13927   unsigned Opc = MI->getOpcode();
13928   switch (Opc) {
13929   default:
13930     llvm_unreachable("Unhandled atomic-load-op opcode!");
13931   case X86::ATOMAND8:
13932   case X86::ATOMAND16:
13933   case X86::ATOMAND32:
13934   case X86::ATOMAND64:
13935   case X86::ATOMOR8:
13936   case X86::ATOMOR16:
13937   case X86::ATOMOR32:
13938   case X86::ATOMOR64:
13939   case X86::ATOMXOR8:
13940   case X86::ATOMXOR16:
13941   case X86::ATOMXOR32:
13942   case X86::ATOMXOR64: {
13943     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
13944     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
13945       .addReg(t4);
13946     break;
13947   }
13948   case X86::ATOMNAND8:
13949   case X86::ATOMNAND16:
13950   case X86::ATOMNAND32:
13951   case X86::ATOMNAND64: {
13952     unsigned Tmp = MRI.createVirtualRegister(RC);
13953     unsigned NOTOpc;
13954     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
13955     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
13956       .addReg(t4);
13957     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
13958     break;
13959   }
13960   case X86::ATOMMAX8:
13961   case X86::ATOMMAX16:
13962   case X86::ATOMMAX32:
13963   case X86::ATOMMAX64:
13964   case X86::ATOMMIN8:
13965   case X86::ATOMMIN16:
13966   case X86::ATOMMIN32:
13967   case X86::ATOMMIN64:
13968   case X86::ATOMUMAX8:
13969   case X86::ATOMUMAX16:
13970   case X86::ATOMUMAX32:
13971   case X86::ATOMUMAX64:
13972   case X86::ATOMUMIN8:
13973   case X86::ATOMUMIN16:
13974   case X86::ATOMUMIN32:
13975   case X86::ATOMUMIN64: {
13976     unsigned CMPOpc;
13977     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
13978
13979     BuildMI(mainMBB, DL, TII->get(CMPOpc))
13980       .addReg(SrcReg)
13981       .addReg(t4);
13982
13983     if (Subtarget->hasCMov()) {
13984       if (VT != MVT::i8) {
13985         // Native support
13986         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
13987           .addReg(SrcReg)
13988           .addReg(t4);
13989       } else {
13990         // Promote i8 to i32 to use CMOV32
13991         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
13992         const TargetRegisterClass *RC32 =
13993           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
13994         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
13995         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
13996         unsigned Tmp = MRI.createVirtualRegister(RC32);
13997
13998         unsigned Undef = MRI.createVirtualRegister(RC32);
13999         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14000
14001         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14002           .addReg(Undef)
14003           .addReg(SrcReg)
14004           .addImm(X86::sub_8bit);
14005         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14006           .addReg(Undef)
14007           .addReg(t4)
14008           .addImm(X86::sub_8bit);
14009
14010         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14011           .addReg(SrcReg32)
14012           .addReg(AccReg32);
14013
14014         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14015           .addReg(Tmp, 0, X86::sub_8bit);
14016       }
14017     } else {
14018       // Use pseudo select and lower them.
14019       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14020              "Invalid atomic-load-op transformation!");
14021       unsigned SelOpc = getPseudoCMOVOpc(VT);
14022       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14023       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14024       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14025               .addReg(SrcReg).addReg(t4)
14026               .addImm(CC);
14027       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14028       // Replace the original PHI node as mainMBB is changed after CMOV
14029       // lowering.
14030       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14031         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14032       Phi->eraseFromParent();
14033     }
14034     break;
14035   }
14036   }
14037
14038   // Copy PhyReg back from virtual register.
14039   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14040     .addReg(t4);
14041
14042   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14043   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14044     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14045     if (NewMO.isReg())
14046       NewMO.setIsKill(false);
14047     MIB.addOperand(NewMO);
14048   }
14049   MIB.addReg(t2);
14050   MIB.setMemRefs(MMOBegin, MMOEnd);
14051
14052   // Copy PhyReg back to virtual register.
14053   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14054     .addReg(PhyReg);
14055
14056   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14057
14058   mainMBB->addSuccessor(origMainMBB);
14059   mainMBB->addSuccessor(sinkMBB);
14060
14061   // sinkMBB:
14062   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14063           TII->get(TargetOpcode::COPY), DstReg)
14064     .addReg(t3);
14065
14066   MI->eraseFromParent();
14067   return sinkMBB;
14068 }
14069
14070 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14071 // instructions. They will be translated into a spin-loop or compare-exchange
14072 // loop from
14073 //
14074 //    ...
14075 //    dst = atomic-fetch-op MI.addr, MI.val
14076 //    ...
14077 //
14078 // to
14079 //
14080 //    ...
14081 //    t1L = LOAD [MI.addr + 0]
14082 //    t1H = LOAD [MI.addr + 4]
14083 // loop:
14084 //    t4L = phi(t1L, t3L / loop)
14085 //    t4H = phi(t1H, t3H / loop)
14086 //    t2L = OP MI.val.lo, t4L
14087 //    t2H = OP MI.val.hi, t4H
14088 //    EAX = t4L
14089 //    EDX = t4H
14090 //    EBX = t2L
14091 //    ECX = t2H
14092 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14093 //    t3L = EAX
14094 //    t3H = EDX
14095 //    JNE loop
14096 // sink:
14097 //    dstL = t3L
14098 //    dstH = t3H
14099 //    ...
14100 MachineBasicBlock *
14101 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14102                                            MachineBasicBlock *MBB) const {
14103   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14104   DebugLoc DL = MI->getDebugLoc();
14105
14106   MachineFunction *MF = MBB->getParent();
14107   MachineRegisterInfo &MRI = MF->getRegInfo();
14108
14109   const BasicBlock *BB = MBB->getBasicBlock();
14110   MachineFunction::iterator I = MBB;
14111   ++I;
14112
14113   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14114          "Unexpected number of operands");
14115
14116   assert(MI->hasOneMemOperand() &&
14117          "Expected atomic-load-op32 to have one memoperand");
14118
14119   // Memory Reference
14120   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14121   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14122
14123   unsigned DstLoReg, DstHiReg;
14124   unsigned SrcLoReg, SrcHiReg;
14125   unsigned MemOpndSlot;
14126
14127   unsigned CurOp = 0;
14128
14129   DstLoReg = MI->getOperand(CurOp++).getReg();
14130   DstHiReg = MI->getOperand(CurOp++).getReg();
14131   MemOpndSlot = CurOp;
14132   CurOp += X86::AddrNumOperands;
14133   SrcLoReg = MI->getOperand(CurOp++).getReg();
14134   SrcHiReg = MI->getOperand(CurOp++).getReg();
14135
14136   const TargetRegisterClass *RC = &X86::GR32RegClass;
14137   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14138
14139   unsigned t1L = MRI.createVirtualRegister(RC);
14140   unsigned t1H = MRI.createVirtualRegister(RC);
14141   unsigned t2L = MRI.createVirtualRegister(RC);
14142   unsigned t2H = MRI.createVirtualRegister(RC);
14143   unsigned t3L = MRI.createVirtualRegister(RC);
14144   unsigned t3H = MRI.createVirtualRegister(RC);
14145   unsigned t4L = MRI.createVirtualRegister(RC);
14146   unsigned t4H = MRI.createVirtualRegister(RC);
14147
14148   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14149   unsigned LOADOpc = X86::MOV32rm;
14150
14151   // For the atomic load-arith operator, we generate
14152   //
14153   //  thisMBB:
14154   //    t1L = LOAD [MI.addr + 0]
14155   //    t1H = LOAD [MI.addr + 4]
14156   //  mainMBB:
14157   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14158   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14159   //    t2L = OP MI.val.lo, t4L
14160   //    t2H = OP MI.val.hi, t4H
14161   //    EBX = t2L
14162   //    ECX = t2H
14163   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14164   //    t3L = EAX
14165   //    t3H = EDX
14166   //    JNE loop
14167   //  sinkMBB:
14168   //    dstL = t3L
14169   //    dstH = t3H
14170
14171   MachineBasicBlock *thisMBB = MBB;
14172   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14173   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14174   MF->insert(I, mainMBB);
14175   MF->insert(I, sinkMBB);
14176
14177   MachineInstrBuilder MIB;
14178
14179   // Transfer the remainder of BB and its successor edges to sinkMBB.
14180   sinkMBB->splice(sinkMBB->begin(), MBB,
14181                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14182   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14183
14184   // thisMBB:
14185   // Lo
14186   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14187   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14188     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14189     if (NewMO.isReg())
14190       NewMO.setIsKill(false);
14191     MIB.addOperand(NewMO);
14192   }
14193   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14194     unsigned flags = (*MMOI)->getFlags();
14195     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14196     MachineMemOperand *MMO =
14197       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14198                                (*MMOI)->getSize(),
14199                                (*MMOI)->getBaseAlignment(),
14200                                (*MMOI)->getTBAAInfo(),
14201                                (*MMOI)->getRanges());
14202     MIB.addMemOperand(MMO);
14203   };
14204   MachineInstr *LowMI = MIB;
14205
14206   // Hi
14207   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14208   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14209     if (i == X86::AddrDisp) {
14210       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14211     } else {
14212       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14213       if (NewMO.isReg())
14214         NewMO.setIsKill(false);
14215       MIB.addOperand(NewMO);
14216     }
14217   }
14218   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14219
14220   thisMBB->addSuccessor(mainMBB);
14221
14222   // mainMBB:
14223   MachineBasicBlock *origMainMBB = mainMBB;
14224
14225   // Add PHIs.
14226   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14227                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14228   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14229                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14230
14231   unsigned Opc = MI->getOpcode();
14232   switch (Opc) {
14233   default:
14234     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14235   case X86::ATOMAND6432:
14236   case X86::ATOMOR6432:
14237   case X86::ATOMXOR6432:
14238   case X86::ATOMADD6432:
14239   case X86::ATOMSUB6432: {
14240     unsigned HiOpc;
14241     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14242     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14243       .addReg(SrcLoReg);
14244     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14245       .addReg(SrcHiReg);
14246     break;
14247   }
14248   case X86::ATOMNAND6432: {
14249     unsigned HiOpc, NOTOpc;
14250     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14251     unsigned TmpL = MRI.createVirtualRegister(RC);
14252     unsigned TmpH = MRI.createVirtualRegister(RC);
14253     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14254       .addReg(t4L);
14255     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14256       .addReg(t4H);
14257     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14258     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14259     break;
14260   }
14261   case X86::ATOMMAX6432:
14262   case X86::ATOMMIN6432:
14263   case X86::ATOMUMAX6432:
14264   case X86::ATOMUMIN6432: {
14265     unsigned HiOpc;
14266     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14267     unsigned cL = MRI.createVirtualRegister(RC8);
14268     unsigned cH = MRI.createVirtualRegister(RC8);
14269     unsigned cL32 = MRI.createVirtualRegister(RC);
14270     unsigned cH32 = MRI.createVirtualRegister(RC);
14271     unsigned cc = MRI.createVirtualRegister(RC);
14272     // cl := cmp src_lo, lo
14273     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14274       .addReg(SrcLoReg).addReg(t4L);
14275     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14276     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14277     // ch := cmp src_hi, hi
14278     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14279       .addReg(SrcHiReg).addReg(t4H);
14280     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14281     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14282     // cc := if (src_hi == hi) ? cl : ch;
14283     if (Subtarget->hasCMov()) {
14284       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14285         .addReg(cH32).addReg(cL32);
14286     } else {
14287       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14288               .addReg(cH32).addReg(cL32)
14289               .addImm(X86::COND_E);
14290       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14291     }
14292     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14293     if (Subtarget->hasCMov()) {
14294       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14295         .addReg(SrcLoReg).addReg(t4L);
14296       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14297         .addReg(SrcHiReg).addReg(t4H);
14298     } else {
14299       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14300               .addReg(SrcLoReg).addReg(t4L)
14301               .addImm(X86::COND_NE);
14302       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14303       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14304       // 2nd CMOV lowering.
14305       mainMBB->addLiveIn(X86::EFLAGS);
14306       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14307               .addReg(SrcHiReg).addReg(t4H)
14308               .addImm(X86::COND_NE);
14309       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14310       // Replace the original PHI node as mainMBB is changed after CMOV
14311       // lowering.
14312       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14313         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14314       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14315         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14316       PhiL->eraseFromParent();
14317       PhiH->eraseFromParent();
14318     }
14319     break;
14320   }
14321   case X86::ATOMSWAP6432: {
14322     unsigned HiOpc;
14323     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14324     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14325     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14326     break;
14327   }
14328   }
14329
14330   // Copy EDX:EAX back from HiReg:LoReg
14331   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14332   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14333   // Copy ECX:EBX from t1H:t1L
14334   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14335   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14336
14337   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14338   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14339     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14340     if (NewMO.isReg())
14341       NewMO.setIsKill(false);
14342     MIB.addOperand(NewMO);
14343   }
14344   MIB.setMemRefs(MMOBegin, MMOEnd);
14345
14346   // Copy EDX:EAX back to t3H:t3L
14347   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14348   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14349
14350   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14351
14352   mainMBB->addSuccessor(origMainMBB);
14353   mainMBB->addSuccessor(sinkMBB);
14354
14355   // sinkMBB:
14356   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14357           TII->get(TargetOpcode::COPY), DstLoReg)
14358     .addReg(t3L);
14359   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14360           TII->get(TargetOpcode::COPY), DstHiReg)
14361     .addReg(t3H);
14362
14363   MI->eraseFromParent();
14364   return sinkMBB;
14365 }
14366
14367 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14368 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14369 // in the .td file.
14370 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14371                                        const TargetInstrInfo *TII) {
14372   unsigned Opc;
14373   switch (MI->getOpcode()) {
14374   default: llvm_unreachable("illegal opcode!");
14375   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14376   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14377   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14378   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14379   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14380   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14381   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14382   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14383   }
14384
14385   DebugLoc dl = MI->getDebugLoc();
14386   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14387
14388   unsigned NumArgs = MI->getNumOperands();
14389   for (unsigned i = 1; i < NumArgs; ++i) {
14390     MachineOperand &Op = MI->getOperand(i);
14391     if (!(Op.isReg() && Op.isImplicit()))
14392       MIB.addOperand(Op);
14393   }
14394   if (MI->hasOneMemOperand())
14395     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14396
14397   BuildMI(*BB, MI, dl,
14398     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14399     .addReg(X86::XMM0);
14400
14401   MI->eraseFromParent();
14402   return BB;
14403 }
14404
14405 // FIXME: Custom handling because TableGen doesn't support multiple implicit
14406 // defs in an instruction pattern
14407 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14408                                        const TargetInstrInfo *TII) {
14409   unsigned Opc;
14410   switch (MI->getOpcode()) {
14411   default: llvm_unreachable("illegal opcode!");
14412   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
14413   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14414   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
14415   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14416   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
14417   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14418   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
14419   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
14420   }
14421
14422   DebugLoc dl = MI->getDebugLoc();
14423   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14424
14425   unsigned NumArgs = MI->getNumOperands(); // remove the results
14426   for (unsigned i = 1; i < NumArgs; ++i) {
14427     MachineOperand &Op = MI->getOperand(i);
14428     if (!(Op.isReg() && Op.isImplicit()))
14429       MIB.addOperand(Op);
14430   }
14431   if (MI->hasOneMemOperand())
14432     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14433
14434   BuildMI(*BB, MI, dl,
14435     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14436     .addReg(X86::ECX);
14437
14438   MI->eraseFromParent();
14439   return BB;
14440 }
14441
14442 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14443                                        const TargetInstrInfo *TII,
14444                                        const X86Subtarget* Subtarget) {
14445   DebugLoc dl = MI->getDebugLoc();
14446
14447   // Address into RAX/EAX, other two args into ECX, EDX.
14448   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14449   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14450   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14451   for (int i = 0; i < X86::AddrNumOperands; ++i)
14452     MIB.addOperand(MI->getOperand(i));
14453
14454   unsigned ValOps = X86::AddrNumOperands;
14455   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14456     .addReg(MI->getOperand(ValOps).getReg());
14457   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14458     .addReg(MI->getOperand(ValOps+1).getReg());
14459
14460   // The instruction doesn't actually take any operands though.
14461   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
14462
14463   MI->eraseFromParent(); // The pseudo is gone now.
14464   return BB;
14465 }
14466
14467 MachineBasicBlock *
14468 X86TargetLowering::EmitVAARG64WithCustomInserter(
14469                    MachineInstr *MI,
14470                    MachineBasicBlock *MBB) const {
14471   // Emit va_arg instruction on X86-64.
14472
14473   // Operands to this pseudo-instruction:
14474   // 0  ) Output        : destination address (reg)
14475   // 1-5) Input         : va_list address (addr, i64mem)
14476   // 6  ) ArgSize       : Size (in bytes) of vararg type
14477   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14478   // 8  ) Align         : Alignment of type
14479   // 9  ) EFLAGS (implicit-def)
14480
14481   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14482   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14483
14484   unsigned DestReg = MI->getOperand(0).getReg();
14485   MachineOperand &Base = MI->getOperand(1);
14486   MachineOperand &Scale = MI->getOperand(2);
14487   MachineOperand &Index = MI->getOperand(3);
14488   MachineOperand &Disp = MI->getOperand(4);
14489   MachineOperand &Segment = MI->getOperand(5);
14490   unsigned ArgSize = MI->getOperand(6).getImm();
14491   unsigned ArgMode = MI->getOperand(7).getImm();
14492   unsigned Align = MI->getOperand(8).getImm();
14493
14494   // Memory Reference
14495   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14496   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14497   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14498
14499   // Machine Information
14500   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14501   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14502   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14503   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14504   DebugLoc DL = MI->getDebugLoc();
14505
14506   // struct va_list {
14507   //   i32   gp_offset
14508   //   i32   fp_offset
14509   //   i64   overflow_area (address)
14510   //   i64   reg_save_area (address)
14511   // }
14512   // sizeof(va_list) = 24
14513   // alignment(va_list) = 8
14514
14515   unsigned TotalNumIntRegs = 6;
14516   unsigned TotalNumXMMRegs = 8;
14517   bool UseGPOffset = (ArgMode == 1);
14518   bool UseFPOffset = (ArgMode == 2);
14519   unsigned MaxOffset = TotalNumIntRegs * 8 +
14520                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14521
14522   /* Align ArgSize to a multiple of 8 */
14523   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14524   bool NeedsAlign = (Align > 8);
14525
14526   MachineBasicBlock *thisMBB = MBB;
14527   MachineBasicBlock *overflowMBB;
14528   MachineBasicBlock *offsetMBB;
14529   MachineBasicBlock *endMBB;
14530
14531   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
14532   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
14533   unsigned OffsetReg = 0;
14534
14535   if (!UseGPOffset && !UseFPOffset) {
14536     // If we only pull from the overflow region, we don't create a branch.
14537     // We don't need to alter control flow.
14538     OffsetDestReg = 0; // unused
14539     OverflowDestReg = DestReg;
14540
14541     offsetMBB = NULL;
14542     overflowMBB = thisMBB;
14543     endMBB = thisMBB;
14544   } else {
14545     // First emit code to check if gp_offset (or fp_offset) is below the bound.
14546     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
14547     // If not, pull from overflow_area. (branch to overflowMBB)
14548     //
14549     //       thisMBB
14550     //         |     .
14551     //         |        .
14552     //     offsetMBB   overflowMBB
14553     //         |        .
14554     //         |     .
14555     //        endMBB
14556
14557     // Registers for the PHI in endMBB
14558     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
14559     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
14560
14561     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14562     MachineFunction *MF = MBB->getParent();
14563     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14564     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14565     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14566
14567     MachineFunction::iterator MBBIter = MBB;
14568     ++MBBIter;
14569
14570     // Insert the new basic blocks
14571     MF->insert(MBBIter, offsetMBB);
14572     MF->insert(MBBIter, overflowMBB);
14573     MF->insert(MBBIter, endMBB);
14574
14575     // Transfer the remainder of MBB and its successor edges to endMBB.
14576     endMBB->splice(endMBB->begin(), thisMBB,
14577                     llvm::next(MachineBasicBlock::iterator(MI)),
14578                     thisMBB->end());
14579     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
14580
14581     // Make offsetMBB and overflowMBB successors of thisMBB
14582     thisMBB->addSuccessor(offsetMBB);
14583     thisMBB->addSuccessor(overflowMBB);
14584
14585     // endMBB is a successor of both offsetMBB and overflowMBB
14586     offsetMBB->addSuccessor(endMBB);
14587     overflowMBB->addSuccessor(endMBB);
14588
14589     // Load the offset value into a register
14590     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14591     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
14592       .addOperand(Base)
14593       .addOperand(Scale)
14594       .addOperand(Index)
14595       .addDisp(Disp, UseFPOffset ? 4 : 0)
14596       .addOperand(Segment)
14597       .setMemRefs(MMOBegin, MMOEnd);
14598
14599     // Check if there is enough room left to pull this argument.
14600     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
14601       .addReg(OffsetReg)
14602       .addImm(MaxOffset + 8 - ArgSizeA8);
14603
14604     // Branch to "overflowMBB" if offset >= max
14605     // Fall through to "offsetMBB" otherwise
14606     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
14607       .addMBB(overflowMBB);
14608   }
14609
14610   // In offsetMBB, emit code to use the reg_save_area.
14611   if (offsetMBB) {
14612     assert(OffsetReg != 0);
14613
14614     // Read the reg_save_area address.
14615     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
14616     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
14617       .addOperand(Base)
14618       .addOperand(Scale)
14619       .addOperand(Index)
14620       .addDisp(Disp, 16)
14621       .addOperand(Segment)
14622       .setMemRefs(MMOBegin, MMOEnd);
14623
14624     // Zero-extend the offset
14625     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
14626       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
14627         .addImm(0)
14628         .addReg(OffsetReg)
14629         .addImm(X86::sub_32bit);
14630
14631     // Add the offset to the reg_save_area to get the final address.
14632     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
14633       .addReg(OffsetReg64)
14634       .addReg(RegSaveReg);
14635
14636     // Compute the offset for the next argument
14637     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
14638     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
14639       .addReg(OffsetReg)
14640       .addImm(UseFPOffset ? 16 : 8);
14641
14642     // Store it back into the va_list.
14643     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
14644       .addOperand(Base)
14645       .addOperand(Scale)
14646       .addOperand(Index)
14647       .addDisp(Disp, UseFPOffset ? 4 : 0)
14648       .addOperand(Segment)
14649       .addReg(NextOffsetReg)
14650       .setMemRefs(MMOBegin, MMOEnd);
14651
14652     // Jump to endMBB
14653     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
14654       .addMBB(endMBB);
14655   }
14656
14657   //
14658   // Emit code to use overflow area
14659   //
14660
14661   // Load the overflow_area address into a register.
14662   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
14663   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
14664     .addOperand(Base)
14665     .addOperand(Scale)
14666     .addOperand(Index)
14667     .addDisp(Disp, 8)
14668     .addOperand(Segment)
14669     .setMemRefs(MMOBegin, MMOEnd);
14670
14671   // If we need to align it, do so. Otherwise, just copy the address
14672   // to OverflowDestReg.
14673   if (NeedsAlign) {
14674     // Align the overflow address
14675     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
14676     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
14677
14678     // aligned_addr = (addr + (align-1)) & ~(align-1)
14679     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
14680       .addReg(OverflowAddrReg)
14681       .addImm(Align-1);
14682
14683     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
14684       .addReg(TmpReg)
14685       .addImm(~(uint64_t)(Align-1));
14686   } else {
14687     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
14688       .addReg(OverflowAddrReg);
14689   }
14690
14691   // Compute the next overflow address after this argument.
14692   // (the overflow address should be kept 8-byte aligned)
14693   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
14694   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
14695     .addReg(OverflowDestReg)
14696     .addImm(ArgSizeA8);
14697
14698   // Store the new overflow address.
14699   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
14700     .addOperand(Base)
14701     .addOperand(Scale)
14702     .addOperand(Index)
14703     .addDisp(Disp, 8)
14704     .addOperand(Segment)
14705     .addReg(NextAddrReg)
14706     .setMemRefs(MMOBegin, MMOEnd);
14707
14708   // If we branched, emit the PHI to the front of endMBB.
14709   if (offsetMBB) {
14710     BuildMI(*endMBB, endMBB->begin(), DL,
14711             TII->get(X86::PHI), DestReg)
14712       .addReg(OffsetDestReg).addMBB(offsetMBB)
14713       .addReg(OverflowDestReg).addMBB(overflowMBB);
14714   }
14715
14716   // Erase the pseudo instruction
14717   MI->eraseFromParent();
14718
14719   return endMBB;
14720 }
14721
14722 MachineBasicBlock *
14723 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
14724                                                  MachineInstr *MI,
14725                                                  MachineBasicBlock *MBB) const {
14726   // Emit code to save XMM registers to the stack. The ABI says that the
14727   // number of registers to save is given in %al, so it's theoretically
14728   // possible to do an indirect jump trick to avoid saving all of them,
14729   // however this code takes a simpler approach and just executes all
14730   // of the stores if %al is non-zero. It's less code, and it's probably
14731   // easier on the hardware branch predictor, and stores aren't all that
14732   // expensive anyway.
14733
14734   // Create the new basic blocks. One block contains all the XMM stores,
14735   // and one block is the final destination regardless of whether any
14736   // stores were performed.
14737   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
14738   MachineFunction *F = MBB->getParent();
14739   MachineFunction::iterator MBBIter = MBB;
14740   ++MBBIter;
14741   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
14742   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
14743   F->insert(MBBIter, XMMSaveMBB);
14744   F->insert(MBBIter, EndMBB);
14745
14746   // Transfer the remainder of MBB and its successor edges to EndMBB.
14747   EndMBB->splice(EndMBB->begin(), MBB,
14748                  llvm::next(MachineBasicBlock::iterator(MI)),
14749                  MBB->end());
14750   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
14751
14752   // The original block will now fall through to the XMM save block.
14753   MBB->addSuccessor(XMMSaveMBB);
14754   // The XMMSaveMBB will fall through to the end block.
14755   XMMSaveMBB->addSuccessor(EndMBB);
14756
14757   // Now add the instructions.
14758   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14759   DebugLoc DL = MI->getDebugLoc();
14760
14761   unsigned CountReg = MI->getOperand(0).getReg();
14762   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
14763   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
14764
14765   if (!Subtarget->isTargetWin64()) {
14766     // If %al is 0, branch around the XMM save block.
14767     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
14768     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
14769     MBB->addSuccessor(EndMBB);
14770   }
14771
14772   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
14773   // In the XMM save block, save all the XMM argument registers.
14774   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
14775     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
14776     MachineMemOperand *MMO =
14777       F->getMachineMemOperand(
14778           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
14779         MachineMemOperand::MOStore,
14780         /*Size=*/16, /*Align=*/16);
14781     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
14782       .addFrameIndex(RegSaveFrameIndex)
14783       .addImm(/*Scale=*/1)
14784       .addReg(/*IndexReg=*/0)
14785       .addImm(/*Disp=*/Offset)
14786       .addReg(/*Segment=*/0)
14787       .addReg(MI->getOperand(i).getReg())
14788       .addMemOperand(MMO);
14789   }
14790
14791   MI->eraseFromParent();   // The pseudo instruction is gone now.
14792
14793   return EndMBB;
14794 }
14795
14796 // The EFLAGS operand of SelectItr might be missing a kill marker
14797 // because there were multiple uses of EFLAGS, and ISel didn't know
14798 // which to mark. Figure out whether SelectItr should have had a
14799 // kill marker, and set it if it should. Returns the correct kill
14800 // marker value.
14801 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
14802                                      MachineBasicBlock* BB,
14803                                      const TargetRegisterInfo* TRI) {
14804   // Scan forward through BB for a use/def of EFLAGS.
14805   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
14806   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
14807     const MachineInstr& mi = *miI;
14808     if (mi.readsRegister(X86::EFLAGS))
14809       return false;
14810     if (mi.definesRegister(X86::EFLAGS))
14811       break; // Should have kill-flag - update below.
14812   }
14813
14814   // If we hit the end of the block, check whether EFLAGS is live into a
14815   // successor.
14816   if (miI == BB->end()) {
14817     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
14818                                           sEnd = BB->succ_end();
14819          sItr != sEnd; ++sItr) {
14820       MachineBasicBlock* succ = *sItr;
14821       if (succ->isLiveIn(X86::EFLAGS))
14822         return false;
14823     }
14824   }
14825
14826   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
14827   // out. SelectMI should have a kill flag on EFLAGS.
14828   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
14829   return true;
14830 }
14831
14832 MachineBasicBlock *
14833 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
14834                                      MachineBasicBlock *BB) const {
14835   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14836   DebugLoc DL = MI->getDebugLoc();
14837
14838   // To "insert" a SELECT_CC instruction, we actually have to insert the
14839   // diamond control-flow pattern.  The incoming instruction knows the
14840   // destination vreg to set, the condition code register to branch on, the
14841   // true/false values to select between, and a branch opcode to use.
14842   const BasicBlock *LLVM_BB = BB->getBasicBlock();
14843   MachineFunction::iterator It = BB;
14844   ++It;
14845
14846   //  thisMBB:
14847   //  ...
14848   //   TrueVal = ...
14849   //   cmpTY ccX, r1, r2
14850   //   bCC copy1MBB
14851   //   fallthrough --> copy0MBB
14852   MachineBasicBlock *thisMBB = BB;
14853   MachineFunction *F = BB->getParent();
14854   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
14855   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
14856   F->insert(It, copy0MBB);
14857   F->insert(It, sinkMBB);
14858
14859   // If the EFLAGS register isn't dead in the terminator, then claim that it's
14860   // live into the sink and copy blocks.
14861   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14862   if (!MI->killsRegister(X86::EFLAGS) &&
14863       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
14864     copy0MBB->addLiveIn(X86::EFLAGS);
14865     sinkMBB->addLiveIn(X86::EFLAGS);
14866   }
14867
14868   // Transfer the remainder of BB and its successor edges to sinkMBB.
14869   sinkMBB->splice(sinkMBB->begin(), BB,
14870                   llvm::next(MachineBasicBlock::iterator(MI)),
14871                   BB->end());
14872   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
14873
14874   // Add the true and fallthrough blocks as its successors.
14875   BB->addSuccessor(copy0MBB);
14876   BB->addSuccessor(sinkMBB);
14877
14878   // Create the conditional branch instruction.
14879   unsigned Opc =
14880     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
14881   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
14882
14883   //  copy0MBB:
14884   //   %FalseValue = ...
14885   //   # fallthrough to sinkMBB
14886   copy0MBB->addSuccessor(sinkMBB);
14887
14888   //  sinkMBB:
14889   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
14890   //  ...
14891   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14892           TII->get(X86::PHI), MI->getOperand(0).getReg())
14893     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
14894     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
14895
14896   MI->eraseFromParent();   // The pseudo instruction is gone now.
14897   return sinkMBB;
14898 }
14899
14900 MachineBasicBlock *
14901 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
14902                                         bool Is64Bit) const {
14903   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14904   DebugLoc DL = MI->getDebugLoc();
14905   MachineFunction *MF = BB->getParent();
14906   const BasicBlock *LLVM_BB = BB->getBasicBlock();
14907
14908   assert(getTargetMachine().Options.EnableSegmentedStacks);
14909
14910   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
14911   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
14912
14913   // BB:
14914   //  ... [Till the alloca]
14915   // If stacklet is not large enough, jump to mallocMBB
14916   //
14917   // bumpMBB:
14918   //  Allocate by subtracting from RSP
14919   //  Jump to continueMBB
14920   //
14921   // mallocMBB:
14922   //  Allocate by call to runtime
14923   //
14924   // continueMBB:
14925   //  ...
14926   //  [rest of original BB]
14927   //
14928
14929   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14930   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14931   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
14932
14933   MachineRegisterInfo &MRI = MF->getRegInfo();
14934   const TargetRegisterClass *AddrRegClass =
14935     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
14936
14937   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
14938     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
14939     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
14940     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
14941     sizeVReg = MI->getOperand(1).getReg(),
14942     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
14943
14944   MachineFunction::iterator MBBIter = BB;
14945   ++MBBIter;
14946
14947   MF->insert(MBBIter, bumpMBB);
14948   MF->insert(MBBIter, mallocMBB);
14949   MF->insert(MBBIter, continueMBB);
14950
14951   continueMBB->splice(continueMBB->begin(), BB, llvm::next
14952                       (MachineBasicBlock::iterator(MI)), BB->end());
14953   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
14954
14955   // Add code to the main basic block to check if the stack limit has been hit,
14956   // and if so, jump to mallocMBB otherwise to bumpMBB.
14957   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
14958   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
14959     .addReg(tmpSPVReg).addReg(sizeVReg);
14960   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
14961     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
14962     .addReg(SPLimitVReg);
14963   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
14964
14965   // bumpMBB simply decreases the stack pointer, since we know the current
14966   // stacklet has enough space.
14967   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
14968     .addReg(SPLimitVReg);
14969   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
14970     .addReg(SPLimitVReg);
14971   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
14972
14973   // Calls into a routine in libgcc to allocate more space from the heap.
14974   const uint32_t *RegMask =
14975     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
14976   if (Is64Bit) {
14977     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
14978       .addReg(sizeVReg);
14979     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
14980       .addExternalSymbol("__morestack_allocate_stack_space")
14981       .addRegMask(RegMask)
14982       .addReg(X86::RDI, RegState::Implicit)
14983       .addReg(X86::RAX, RegState::ImplicitDefine);
14984   } else {
14985     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
14986       .addImm(12);
14987     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
14988     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
14989       .addExternalSymbol("__morestack_allocate_stack_space")
14990       .addRegMask(RegMask)
14991       .addReg(X86::EAX, RegState::ImplicitDefine);
14992   }
14993
14994   if (!Is64Bit)
14995     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
14996       .addImm(16);
14997
14998   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
14999     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15000   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15001
15002   // Set up the CFG correctly.
15003   BB->addSuccessor(bumpMBB);
15004   BB->addSuccessor(mallocMBB);
15005   mallocMBB->addSuccessor(continueMBB);
15006   bumpMBB->addSuccessor(continueMBB);
15007
15008   // Take care of the PHI nodes.
15009   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15010           MI->getOperand(0).getReg())
15011     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15012     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15013
15014   // Delete the original pseudo instruction.
15015   MI->eraseFromParent();
15016
15017   // And we're done.
15018   return continueMBB;
15019 }
15020
15021 MachineBasicBlock *
15022 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15023                                           MachineBasicBlock *BB) const {
15024   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15025   DebugLoc DL = MI->getDebugLoc();
15026
15027   assert(!Subtarget->isTargetEnvMacho());
15028
15029   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15030   // non-trivial part is impdef of ESP.
15031
15032   if (Subtarget->isTargetWin64()) {
15033     if (Subtarget->isTargetCygMing()) {
15034       // ___chkstk(Mingw64):
15035       // Clobbers R10, R11, RAX and EFLAGS.
15036       // Updates RSP.
15037       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15038         .addExternalSymbol("___chkstk")
15039         .addReg(X86::RAX, RegState::Implicit)
15040         .addReg(X86::RSP, RegState::Implicit)
15041         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15042         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15043         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15044     } else {
15045       // __chkstk(MSVCRT): does not update stack pointer.
15046       // Clobbers R10, R11 and EFLAGS.
15047       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15048         .addExternalSymbol("__chkstk")
15049         .addReg(X86::RAX, RegState::Implicit)
15050         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15051       // RAX has the offset to be subtracted from RSP.
15052       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15053         .addReg(X86::RSP)
15054         .addReg(X86::RAX);
15055     }
15056   } else {
15057     const char *StackProbeSymbol =
15058       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15059
15060     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15061       .addExternalSymbol(StackProbeSymbol)
15062       .addReg(X86::EAX, RegState::Implicit)
15063       .addReg(X86::ESP, RegState::Implicit)
15064       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15065       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15066       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15067   }
15068
15069   MI->eraseFromParent();   // The pseudo instruction is gone now.
15070   return BB;
15071 }
15072
15073 MachineBasicBlock *
15074 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15075                                       MachineBasicBlock *BB) const {
15076   // This is pretty easy.  We're taking the value that we received from
15077   // our load from the relocation, sticking it in either RDI (x86-64)
15078   // or EAX and doing an indirect call.  The return value will then
15079   // be in the normal return register.
15080   const X86InstrInfo *TII
15081     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15082   DebugLoc DL = MI->getDebugLoc();
15083   MachineFunction *F = BB->getParent();
15084
15085   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15086   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15087
15088   // Get a register mask for the lowered call.
15089   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15090   // proper register mask.
15091   const uint32_t *RegMask =
15092     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15093   if (Subtarget->is64Bit()) {
15094     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15095                                       TII->get(X86::MOV64rm), X86::RDI)
15096     .addReg(X86::RIP)
15097     .addImm(0).addReg(0)
15098     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15099                       MI->getOperand(3).getTargetFlags())
15100     .addReg(0);
15101     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15102     addDirectMem(MIB, X86::RDI);
15103     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15104   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15105     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15106                                       TII->get(X86::MOV32rm), X86::EAX)
15107     .addReg(0)
15108     .addImm(0).addReg(0)
15109     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15110                       MI->getOperand(3).getTargetFlags())
15111     .addReg(0);
15112     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15113     addDirectMem(MIB, X86::EAX);
15114     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15115   } else {
15116     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15117                                       TII->get(X86::MOV32rm), X86::EAX)
15118     .addReg(TII->getGlobalBaseReg(F))
15119     .addImm(0).addReg(0)
15120     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15121                       MI->getOperand(3).getTargetFlags())
15122     .addReg(0);
15123     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15124     addDirectMem(MIB, X86::EAX);
15125     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15126   }
15127
15128   MI->eraseFromParent(); // The pseudo instruction is gone now.
15129   return BB;
15130 }
15131
15132 MachineBasicBlock *
15133 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15134                                     MachineBasicBlock *MBB) const {
15135   DebugLoc DL = MI->getDebugLoc();
15136   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15137
15138   MachineFunction *MF = MBB->getParent();
15139   MachineRegisterInfo &MRI = MF->getRegInfo();
15140
15141   const BasicBlock *BB = MBB->getBasicBlock();
15142   MachineFunction::iterator I = MBB;
15143   ++I;
15144
15145   // Memory Reference
15146   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15147   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15148
15149   unsigned DstReg;
15150   unsigned MemOpndSlot = 0;
15151
15152   unsigned CurOp = 0;
15153
15154   DstReg = MI->getOperand(CurOp++).getReg();
15155   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15156   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15157   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15158   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15159
15160   MemOpndSlot = CurOp;
15161
15162   MVT PVT = getPointerTy();
15163   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15164          "Invalid Pointer Size!");
15165
15166   // For v = setjmp(buf), we generate
15167   //
15168   // thisMBB:
15169   //  buf[LabelOffset] = restoreMBB
15170   //  SjLjSetup restoreMBB
15171   //
15172   // mainMBB:
15173   //  v_main = 0
15174   //
15175   // sinkMBB:
15176   //  v = phi(main, restore)
15177   //
15178   // restoreMBB:
15179   //  v_restore = 1
15180
15181   MachineBasicBlock *thisMBB = MBB;
15182   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15183   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15184   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15185   MF->insert(I, mainMBB);
15186   MF->insert(I, sinkMBB);
15187   MF->push_back(restoreMBB);
15188
15189   MachineInstrBuilder MIB;
15190
15191   // Transfer the remainder of BB and its successor edges to sinkMBB.
15192   sinkMBB->splice(sinkMBB->begin(), MBB,
15193                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15194   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15195
15196   // thisMBB:
15197   unsigned PtrStoreOpc = 0;
15198   unsigned LabelReg = 0;
15199   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15200   Reloc::Model RM = getTargetMachine().getRelocationModel();
15201   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15202                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15203
15204   // Prepare IP either in reg or imm.
15205   if (!UseImmLabel) {
15206     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15207     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15208     LabelReg = MRI.createVirtualRegister(PtrRC);
15209     if (Subtarget->is64Bit()) {
15210       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15211               .addReg(X86::RIP)
15212               .addImm(0)
15213               .addReg(0)
15214               .addMBB(restoreMBB)
15215               .addReg(0);
15216     } else {
15217       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15218       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15219               .addReg(XII->getGlobalBaseReg(MF))
15220               .addImm(0)
15221               .addReg(0)
15222               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15223               .addReg(0);
15224     }
15225   } else
15226     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15227   // Store IP
15228   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15229   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15230     if (i == X86::AddrDisp)
15231       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15232     else
15233       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15234   }
15235   if (!UseImmLabel)
15236     MIB.addReg(LabelReg);
15237   else
15238     MIB.addMBB(restoreMBB);
15239   MIB.setMemRefs(MMOBegin, MMOEnd);
15240   // Setup
15241   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15242           .addMBB(restoreMBB);
15243
15244   const X86RegisterInfo *RegInfo =
15245     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15246   MIB.addRegMask(RegInfo->getNoPreservedMask());
15247   thisMBB->addSuccessor(mainMBB);
15248   thisMBB->addSuccessor(restoreMBB);
15249
15250   // mainMBB:
15251   //  EAX = 0
15252   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15253   mainMBB->addSuccessor(sinkMBB);
15254
15255   // sinkMBB:
15256   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15257           TII->get(X86::PHI), DstReg)
15258     .addReg(mainDstReg).addMBB(mainMBB)
15259     .addReg(restoreDstReg).addMBB(restoreMBB);
15260
15261   // restoreMBB:
15262   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15263   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15264   restoreMBB->addSuccessor(sinkMBB);
15265
15266   MI->eraseFromParent();
15267   return sinkMBB;
15268 }
15269
15270 MachineBasicBlock *
15271 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15272                                      MachineBasicBlock *MBB) const {
15273   DebugLoc DL = MI->getDebugLoc();
15274   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15275
15276   MachineFunction *MF = MBB->getParent();
15277   MachineRegisterInfo &MRI = MF->getRegInfo();
15278
15279   // Memory Reference
15280   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15281   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15282
15283   MVT PVT = getPointerTy();
15284   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15285          "Invalid Pointer Size!");
15286
15287   const TargetRegisterClass *RC =
15288     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15289   unsigned Tmp = MRI.createVirtualRegister(RC);
15290   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15291   const X86RegisterInfo *RegInfo =
15292     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15293   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15294   unsigned SP = RegInfo->getStackRegister();
15295
15296   MachineInstrBuilder MIB;
15297
15298   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15299   const int64_t SPOffset = 2 * PVT.getStoreSize();
15300
15301   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15302   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15303
15304   // Reload FP
15305   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15306   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15307     MIB.addOperand(MI->getOperand(i));
15308   MIB.setMemRefs(MMOBegin, MMOEnd);
15309   // Reload IP
15310   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15311   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15312     if (i == X86::AddrDisp)
15313       MIB.addDisp(MI->getOperand(i), LabelOffset);
15314     else
15315       MIB.addOperand(MI->getOperand(i));
15316   }
15317   MIB.setMemRefs(MMOBegin, MMOEnd);
15318   // Reload SP
15319   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15320   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15321     if (i == X86::AddrDisp)
15322       MIB.addDisp(MI->getOperand(i), SPOffset);
15323     else
15324       MIB.addOperand(MI->getOperand(i));
15325   }
15326   MIB.setMemRefs(MMOBegin, MMOEnd);
15327   // Jump
15328   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15329
15330   MI->eraseFromParent();
15331   return MBB;
15332 }
15333
15334 MachineBasicBlock *
15335 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15336                                                MachineBasicBlock *BB) const {
15337   switch (MI->getOpcode()) {
15338   default: llvm_unreachable("Unexpected instr type to insert");
15339   case X86::TAILJMPd64:
15340   case X86::TAILJMPr64:
15341   case X86::TAILJMPm64:
15342     llvm_unreachable("TAILJMP64 would not be touched here.");
15343   case X86::TCRETURNdi64:
15344   case X86::TCRETURNri64:
15345   case X86::TCRETURNmi64:
15346     return BB;
15347   case X86::WIN_ALLOCA:
15348     return EmitLoweredWinAlloca(MI, BB);
15349   case X86::SEG_ALLOCA_32:
15350     return EmitLoweredSegAlloca(MI, BB, false);
15351   case X86::SEG_ALLOCA_64:
15352     return EmitLoweredSegAlloca(MI, BB, true);
15353   case X86::TLSCall_32:
15354   case X86::TLSCall_64:
15355     return EmitLoweredTLSCall(MI, BB);
15356   case X86::CMOV_GR8:
15357   case X86::CMOV_FR32:
15358   case X86::CMOV_FR64:
15359   case X86::CMOV_V4F32:
15360   case X86::CMOV_V2F64:
15361   case X86::CMOV_V2I64:
15362   case X86::CMOV_V8F32:
15363   case X86::CMOV_V4F64:
15364   case X86::CMOV_V4I64:
15365   case X86::CMOV_GR16:
15366   case X86::CMOV_GR32:
15367   case X86::CMOV_RFP32:
15368   case X86::CMOV_RFP64:
15369   case X86::CMOV_RFP80:
15370     return EmitLoweredSelect(MI, BB);
15371
15372   case X86::FP32_TO_INT16_IN_MEM:
15373   case X86::FP32_TO_INT32_IN_MEM:
15374   case X86::FP32_TO_INT64_IN_MEM:
15375   case X86::FP64_TO_INT16_IN_MEM:
15376   case X86::FP64_TO_INT32_IN_MEM:
15377   case X86::FP64_TO_INT64_IN_MEM:
15378   case X86::FP80_TO_INT16_IN_MEM:
15379   case X86::FP80_TO_INT32_IN_MEM:
15380   case X86::FP80_TO_INT64_IN_MEM: {
15381     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15382     DebugLoc DL = MI->getDebugLoc();
15383
15384     // Change the floating point control register to use "round towards zero"
15385     // mode when truncating to an integer value.
15386     MachineFunction *F = BB->getParent();
15387     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
15388     addFrameReference(BuildMI(*BB, MI, DL,
15389                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
15390
15391     // Load the old value of the high byte of the control word...
15392     unsigned OldCW =
15393       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
15394     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
15395                       CWFrameIdx);
15396
15397     // Set the high part to be round to zero...
15398     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
15399       .addImm(0xC7F);
15400
15401     // Reload the modified control word now...
15402     addFrameReference(BuildMI(*BB, MI, DL,
15403                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15404
15405     // Restore the memory image of control word to original value
15406     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
15407       .addReg(OldCW);
15408
15409     // Get the X86 opcode to use.
15410     unsigned Opc;
15411     switch (MI->getOpcode()) {
15412     default: llvm_unreachable("illegal opcode!");
15413     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15414     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15415     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15416     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15417     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15418     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
15419     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15420     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15421     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
15422     }
15423
15424     X86AddressMode AM;
15425     MachineOperand &Op = MI->getOperand(0);
15426     if (Op.isReg()) {
15427       AM.BaseType = X86AddressMode::RegBase;
15428       AM.Base.Reg = Op.getReg();
15429     } else {
15430       AM.BaseType = X86AddressMode::FrameIndexBase;
15431       AM.Base.FrameIndex = Op.getIndex();
15432     }
15433     Op = MI->getOperand(1);
15434     if (Op.isImm())
15435       AM.Scale = Op.getImm();
15436     Op = MI->getOperand(2);
15437     if (Op.isImm())
15438       AM.IndexReg = Op.getImm();
15439     Op = MI->getOperand(3);
15440     if (Op.isGlobal()) {
15441       AM.GV = Op.getGlobal();
15442     } else {
15443       AM.Disp = Op.getImm();
15444     }
15445     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
15446                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
15447
15448     // Reload the original control word now.
15449     addFrameReference(BuildMI(*BB, MI, DL,
15450                               TII->get(X86::FLDCW16m)), CWFrameIdx);
15451
15452     MI->eraseFromParent();   // The pseudo instruction is gone now.
15453     return BB;
15454   }
15455     // String/text processing lowering.
15456   case X86::PCMPISTRM128REG:
15457   case X86::VPCMPISTRM128REG:
15458   case X86::PCMPISTRM128MEM:
15459   case X86::VPCMPISTRM128MEM:
15460   case X86::PCMPESTRM128REG:
15461   case X86::VPCMPESTRM128REG:
15462   case X86::PCMPESTRM128MEM:
15463   case X86::VPCMPESTRM128MEM:
15464     assert(Subtarget->hasSSE42() &&
15465            "Target must have SSE4.2 or AVX features enabled");
15466     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
15467
15468   // String/text processing lowering.
15469   case X86::PCMPISTRIREG:
15470   case X86::VPCMPISTRIREG:
15471   case X86::PCMPISTRIMEM:
15472   case X86::VPCMPISTRIMEM:
15473   case X86::PCMPESTRIREG:
15474   case X86::VPCMPESTRIREG:
15475   case X86::PCMPESTRIMEM:
15476   case X86::VPCMPESTRIMEM:
15477     assert(Subtarget->hasSSE42() &&
15478            "Target must have SSE4.2 or AVX features enabled");
15479     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
15480
15481   // Thread synchronization.
15482   case X86::MONITOR:
15483     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
15484
15485   // xbegin
15486   case X86::XBEGIN:
15487     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
15488
15489   // Atomic Lowering.
15490   case X86::ATOMAND8:
15491   case X86::ATOMAND16:
15492   case X86::ATOMAND32:
15493   case X86::ATOMAND64:
15494     // Fall through
15495   case X86::ATOMOR8:
15496   case X86::ATOMOR16:
15497   case X86::ATOMOR32:
15498   case X86::ATOMOR64:
15499     // Fall through
15500   case X86::ATOMXOR16:
15501   case X86::ATOMXOR8:
15502   case X86::ATOMXOR32:
15503   case X86::ATOMXOR64:
15504     // Fall through
15505   case X86::ATOMNAND8:
15506   case X86::ATOMNAND16:
15507   case X86::ATOMNAND32:
15508   case X86::ATOMNAND64:
15509     // Fall through
15510   case X86::ATOMMAX8:
15511   case X86::ATOMMAX16:
15512   case X86::ATOMMAX32:
15513   case X86::ATOMMAX64:
15514     // Fall through
15515   case X86::ATOMMIN8:
15516   case X86::ATOMMIN16:
15517   case X86::ATOMMIN32:
15518   case X86::ATOMMIN64:
15519     // Fall through
15520   case X86::ATOMUMAX8:
15521   case X86::ATOMUMAX16:
15522   case X86::ATOMUMAX32:
15523   case X86::ATOMUMAX64:
15524     // Fall through
15525   case X86::ATOMUMIN8:
15526   case X86::ATOMUMIN16:
15527   case X86::ATOMUMIN32:
15528   case X86::ATOMUMIN64:
15529     return EmitAtomicLoadArith(MI, BB);
15530
15531   // This group does 64-bit operations on a 32-bit host.
15532   case X86::ATOMAND6432:
15533   case X86::ATOMOR6432:
15534   case X86::ATOMXOR6432:
15535   case X86::ATOMNAND6432:
15536   case X86::ATOMADD6432:
15537   case X86::ATOMSUB6432:
15538   case X86::ATOMMAX6432:
15539   case X86::ATOMMIN6432:
15540   case X86::ATOMUMAX6432:
15541   case X86::ATOMUMIN6432:
15542   case X86::ATOMSWAP6432:
15543     return EmitAtomicLoadArith6432(MI, BB);
15544
15545   case X86::VASTART_SAVE_XMM_REGS:
15546     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
15547
15548   case X86::VAARG_64:
15549     return EmitVAARG64WithCustomInserter(MI, BB);
15550
15551   case X86::EH_SjLj_SetJmp32:
15552   case X86::EH_SjLj_SetJmp64:
15553     return emitEHSjLjSetJmp(MI, BB);
15554
15555   case X86::EH_SjLj_LongJmp32:
15556   case X86::EH_SjLj_LongJmp64:
15557     return emitEHSjLjLongJmp(MI, BB);
15558   }
15559 }
15560
15561 //===----------------------------------------------------------------------===//
15562 //                           X86 Optimization Hooks
15563 //===----------------------------------------------------------------------===//
15564
15565 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
15566                                                        APInt &KnownZero,
15567                                                        APInt &KnownOne,
15568                                                        const SelectionDAG &DAG,
15569                                                        unsigned Depth) const {
15570   unsigned BitWidth = KnownZero.getBitWidth();
15571   unsigned Opc = Op.getOpcode();
15572   assert((Opc >= ISD::BUILTIN_OP_END ||
15573           Opc == ISD::INTRINSIC_WO_CHAIN ||
15574           Opc == ISD::INTRINSIC_W_CHAIN ||
15575           Opc == ISD::INTRINSIC_VOID) &&
15576          "Should use MaskedValueIsZero if you don't know whether Op"
15577          " is a target node!");
15578
15579   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
15580   switch (Opc) {
15581   default: break;
15582   case X86ISD::ADD:
15583   case X86ISD::SUB:
15584   case X86ISD::ADC:
15585   case X86ISD::SBB:
15586   case X86ISD::SMUL:
15587   case X86ISD::UMUL:
15588   case X86ISD::INC:
15589   case X86ISD::DEC:
15590   case X86ISD::OR:
15591   case X86ISD::XOR:
15592   case X86ISD::AND:
15593     // These nodes' second result is a boolean.
15594     if (Op.getResNo() == 0)
15595       break;
15596     // Fallthrough
15597   case X86ISD::SETCC:
15598     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
15599     break;
15600   case ISD::INTRINSIC_WO_CHAIN: {
15601     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
15602     unsigned NumLoBits = 0;
15603     switch (IntId) {
15604     default: break;
15605     case Intrinsic::x86_sse_movmsk_ps:
15606     case Intrinsic::x86_avx_movmsk_ps_256:
15607     case Intrinsic::x86_sse2_movmsk_pd:
15608     case Intrinsic::x86_avx_movmsk_pd_256:
15609     case Intrinsic::x86_mmx_pmovmskb:
15610     case Intrinsic::x86_sse2_pmovmskb_128:
15611     case Intrinsic::x86_avx2_pmovmskb: {
15612       // High bits of movmskp{s|d}, pmovmskb are known zero.
15613       switch (IntId) {
15614         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
15615         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
15616         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
15617         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
15618         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
15619         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
15620         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
15621         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
15622       }
15623       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
15624       break;
15625     }
15626     }
15627     break;
15628   }
15629   }
15630 }
15631
15632 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
15633                                                          unsigned Depth) const {
15634   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
15635   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
15636     return Op.getValueType().getScalarType().getSizeInBits();
15637
15638   // Fallback case.
15639   return 1;
15640 }
15641
15642 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
15643 /// node is a GlobalAddress + offset.
15644 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
15645                                        const GlobalValue* &GA,
15646                                        int64_t &Offset) const {
15647   if (N->getOpcode() == X86ISD::Wrapper) {
15648     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
15649       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
15650       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
15651       return true;
15652     }
15653   }
15654   return TargetLowering::isGAPlusOffset(N, GA, Offset);
15655 }
15656
15657 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
15658 /// same as extracting the high 128-bit part of 256-bit vector and then
15659 /// inserting the result into the low part of a new 256-bit vector
15660 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
15661   EVT VT = SVOp->getValueType(0);
15662   unsigned NumElems = VT.getVectorNumElements();
15663
15664   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
15665   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
15666     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
15667         SVOp->getMaskElt(j) >= 0)
15668       return false;
15669
15670   return true;
15671 }
15672
15673 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
15674 /// same as extracting the low 128-bit part of 256-bit vector and then
15675 /// inserting the result into the high part of a new 256-bit vector
15676 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
15677   EVT VT = SVOp->getValueType(0);
15678   unsigned NumElems = VT.getVectorNumElements();
15679
15680   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
15681   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
15682     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
15683         SVOp->getMaskElt(j) >= 0)
15684       return false;
15685
15686   return true;
15687 }
15688
15689 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
15690 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
15691                                         TargetLowering::DAGCombinerInfo &DCI,
15692                                         const X86Subtarget* Subtarget) {
15693   SDLoc dl(N);
15694   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
15695   SDValue V1 = SVOp->getOperand(0);
15696   SDValue V2 = SVOp->getOperand(1);
15697   EVT VT = SVOp->getValueType(0);
15698   unsigned NumElems = VT.getVectorNumElements();
15699
15700   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
15701       V2.getOpcode() == ISD::CONCAT_VECTORS) {
15702     //
15703     //                   0,0,0,...
15704     //                      |
15705     //    V      UNDEF    BUILD_VECTOR    UNDEF
15706     //     \      /           \           /
15707     //  CONCAT_VECTOR         CONCAT_VECTOR
15708     //         \                  /
15709     //          \                /
15710     //          RESULT: V + zero extended
15711     //
15712     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
15713         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
15714         V1.getOperand(1).getOpcode() != ISD::UNDEF)
15715       return SDValue();
15716
15717     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
15718       return SDValue();
15719
15720     // To match the shuffle mask, the first half of the mask should
15721     // be exactly the first vector, and all the rest a splat with the
15722     // first element of the second one.
15723     for (unsigned i = 0; i != NumElems/2; ++i)
15724       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
15725           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
15726         return SDValue();
15727
15728     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
15729     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
15730       if (Ld->hasNUsesOfValue(1, 0)) {
15731         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
15732         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
15733         SDValue ResNode =
15734           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
15735                                   array_lengthof(Ops),
15736                                   Ld->getMemoryVT(),
15737                                   Ld->getPointerInfo(),
15738                                   Ld->getAlignment(),
15739                                   false/*isVolatile*/, true/*ReadMem*/,
15740                                   false/*WriteMem*/);
15741
15742         // Make sure the newly-created LOAD is in the same position as Ld in
15743         // terms of dependency. We create a TokenFactor for Ld and ResNode,
15744         // and update uses of Ld's output chain to use the TokenFactor.
15745         if (Ld->hasAnyUseOfValue(1)) {
15746           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
15747                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
15748           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
15749           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
15750                                  SDValue(ResNode.getNode(), 1));
15751         }
15752
15753         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
15754       }
15755     }
15756
15757     // Emit a zeroed vector and insert the desired subvector on its
15758     // first half.
15759     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
15760     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
15761     return DCI.CombineTo(N, InsV);
15762   }
15763
15764   //===--------------------------------------------------------------------===//
15765   // Combine some shuffles into subvector extracts and inserts:
15766   //
15767
15768   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
15769   if (isShuffleHigh128VectorInsertLow(SVOp)) {
15770     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
15771     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
15772     return DCI.CombineTo(N, InsV);
15773   }
15774
15775   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
15776   if (isShuffleLow128VectorInsertHigh(SVOp)) {
15777     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
15778     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
15779     return DCI.CombineTo(N, InsV);
15780   }
15781
15782   return SDValue();
15783 }
15784
15785 /// PerformShuffleCombine - Performs several different shuffle combines.
15786 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
15787                                      TargetLowering::DAGCombinerInfo &DCI,
15788                                      const X86Subtarget *Subtarget) {
15789   SDLoc dl(N);
15790   EVT VT = N->getValueType(0);
15791
15792   // Don't create instructions with illegal types after legalize types has run.
15793   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15794   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
15795     return SDValue();
15796
15797   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
15798   if (Subtarget->hasFp256() && VT.is256BitVector() &&
15799       N->getOpcode() == ISD::VECTOR_SHUFFLE)
15800     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
15801
15802   // Only handle 128 wide vector from here on.
15803   if (!VT.is128BitVector())
15804     return SDValue();
15805
15806   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
15807   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
15808   // consecutive, non-overlapping, and in the right order.
15809   SmallVector<SDValue, 16> Elts;
15810   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
15811     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
15812
15813   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
15814 }
15815
15816 /// PerformTruncateCombine - Converts truncate operation to
15817 /// a sequence of vector shuffle operations.
15818 /// It is possible when we truncate 256-bit vector to 128-bit vector
15819 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
15820                                       TargetLowering::DAGCombinerInfo &DCI,
15821                                       const X86Subtarget *Subtarget)  {
15822   return SDValue();
15823 }
15824
15825 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
15826 /// specific shuffle of a load can be folded into a single element load.
15827 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
15828 /// shuffles have been customed lowered so we need to handle those here.
15829 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
15830                                          TargetLowering::DAGCombinerInfo &DCI) {
15831   if (DCI.isBeforeLegalizeOps())
15832     return SDValue();
15833
15834   SDValue InVec = N->getOperand(0);
15835   SDValue EltNo = N->getOperand(1);
15836
15837   if (!isa<ConstantSDNode>(EltNo))
15838     return SDValue();
15839
15840   EVT VT = InVec.getValueType();
15841
15842   bool HasShuffleIntoBitcast = false;
15843   if (InVec.getOpcode() == ISD::BITCAST) {
15844     // Don't duplicate a load with other uses.
15845     if (!InVec.hasOneUse())
15846       return SDValue();
15847     EVT BCVT = InVec.getOperand(0).getValueType();
15848     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
15849       return SDValue();
15850     InVec = InVec.getOperand(0);
15851     HasShuffleIntoBitcast = true;
15852   }
15853
15854   if (!isTargetShuffle(InVec.getOpcode()))
15855     return SDValue();
15856
15857   // Don't duplicate a load with other uses.
15858   if (!InVec.hasOneUse())
15859     return SDValue();
15860
15861   SmallVector<int, 16> ShuffleMask;
15862   bool UnaryShuffle;
15863   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
15864                             UnaryShuffle))
15865     return SDValue();
15866
15867   // Select the input vector, guarding against out of range extract vector.
15868   unsigned NumElems = VT.getVectorNumElements();
15869   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
15870   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
15871   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
15872                                          : InVec.getOperand(1);
15873
15874   // If inputs to shuffle are the same for both ops, then allow 2 uses
15875   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
15876
15877   if (LdNode.getOpcode() == ISD::BITCAST) {
15878     // Don't duplicate a load with other uses.
15879     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
15880       return SDValue();
15881
15882     AllowedUses = 1; // only allow 1 load use if we have a bitcast
15883     LdNode = LdNode.getOperand(0);
15884   }
15885
15886   if (!ISD::isNormalLoad(LdNode.getNode()))
15887     return SDValue();
15888
15889   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
15890
15891   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
15892     return SDValue();
15893
15894   if (HasShuffleIntoBitcast) {
15895     // If there's a bitcast before the shuffle, check if the load type and
15896     // alignment is valid.
15897     unsigned Align = LN0->getAlignment();
15898     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15899     unsigned NewAlign = TLI.getDataLayout()->
15900       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
15901
15902     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
15903       return SDValue();
15904   }
15905
15906   // All checks match so transform back to vector_shuffle so that DAG combiner
15907   // can finish the job
15908   SDLoc dl(N);
15909
15910   // Create shuffle node taking into account the case that its a unary shuffle
15911   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
15912   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
15913                                  InVec.getOperand(0), Shuffle,
15914                                  &ShuffleMask[0]);
15915   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
15916   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
15917                      EltNo);
15918 }
15919
15920 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
15921 /// generation and convert it from being a bunch of shuffles and extracts
15922 /// to a simple store and scalar loads to extract the elements.
15923 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
15924                                          TargetLowering::DAGCombinerInfo &DCI) {
15925   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
15926   if (NewOp.getNode())
15927     return NewOp;
15928
15929   SDValue InputVector = N->getOperand(0);
15930   // Detect whether we are trying to convert from mmx to i32 and the bitcast
15931   // from mmx to v2i32 has a single usage.
15932   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
15933       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
15934       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
15935     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
15936                        N->getValueType(0),
15937                        InputVector.getNode()->getOperand(0));
15938
15939   // Only operate on vectors of 4 elements, where the alternative shuffling
15940   // gets to be more expensive.
15941   if (InputVector.getValueType() != MVT::v4i32)
15942     return SDValue();
15943
15944   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
15945   // single use which is a sign-extend or zero-extend, and all elements are
15946   // used.
15947   SmallVector<SDNode *, 4> Uses;
15948   unsigned ExtractedElements = 0;
15949   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
15950        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
15951     if (UI.getUse().getResNo() != InputVector.getResNo())
15952       return SDValue();
15953
15954     SDNode *Extract = *UI;
15955     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
15956       return SDValue();
15957
15958     if (Extract->getValueType(0) != MVT::i32)
15959       return SDValue();
15960     if (!Extract->hasOneUse())
15961       return SDValue();
15962     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
15963         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
15964       return SDValue();
15965     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
15966       return SDValue();
15967
15968     // Record which element was extracted.
15969     ExtractedElements |=
15970       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
15971
15972     Uses.push_back(Extract);
15973   }
15974
15975   // If not all the elements were used, this may not be worthwhile.
15976   if (ExtractedElements != 15)
15977     return SDValue();
15978
15979   // Ok, we've now decided to do the transformation.
15980   SDLoc dl(InputVector);
15981
15982   // Store the value to a temporary stack slot.
15983   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
15984   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
15985                             MachinePointerInfo(), false, false, 0);
15986
15987   // Replace each use (extract) with a load of the appropriate element.
15988   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
15989        UE = Uses.end(); UI != UE; ++UI) {
15990     SDNode *Extract = *UI;
15991
15992     // cOMpute the element's address.
15993     SDValue Idx = Extract->getOperand(1);
15994     unsigned EltSize =
15995         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
15996     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
15997     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15998     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
15999
16000     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16001                                      StackPtr, OffsetVal);
16002
16003     // Load the scalar.
16004     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16005                                      ScalarAddr, MachinePointerInfo(),
16006                                      false, false, false, 0);
16007
16008     // Replace the exact with the load.
16009     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16010   }
16011
16012   // The replacement was made in place; don't return anything.
16013   return SDValue();
16014 }
16015
16016 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16017 static unsigned matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS,
16018                                    SDValue RHS, SelectionDAG &DAG,
16019                                    const X86Subtarget *Subtarget) {
16020   if (!VT.isVector())
16021     return 0;
16022
16023   switch (VT.getSimpleVT().SimpleTy) {
16024   default: return 0;
16025   case MVT::v32i8:
16026   case MVT::v16i16:
16027   case MVT::v8i32:
16028     if (!Subtarget->hasAVX2())
16029       return 0;
16030   case MVT::v16i8:
16031   case MVT::v8i16:
16032   case MVT::v4i32:
16033     if (!Subtarget->hasSSE2())
16034       return 0;
16035   }
16036
16037   // SSE2 has only a small subset of the operations.
16038   bool hasUnsigned = Subtarget->hasSSE41() ||
16039                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16040   bool hasSigned = Subtarget->hasSSE41() ||
16041                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16042
16043   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16044
16045   // Check for x CC y ? x : y.
16046   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16047       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16048     switch (CC) {
16049     default: break;
16050     case ISD::SETULT:
16051     case ISD::SETULE:
16052       return hasUnsigned ? X86ISD::UMIN : 0;
16053     case ISD::SETUGT:
16054     case ISD::SETUGE:
16055       return hasUnsigned ? X86ISD::UMAX : 0;
16056     case ISD::SETLT:
16057     case ISD::SETLE:
16058       return hasSigned ? X86ISD::SMIN : 0;
16059     case ISD::SETGT:
16060     case ISD::SETGE:
16061       return hasSigned ? X86ISD::SMAX : 0;
16062     }
16063   // Check for x CC y ? y : x -- a min/max with reversed arms.
16064   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16065              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16066     switch (CC) {
16067     default: break;
16068     case ISD::SETULT:
16069     case ISD::SETULE:
16070       return hasUnsigned ? X86ISD::UMAX : 0;
16071     case ISD::SETUGT:
16072     case ISD::SETUGE:
16073       return hasUnsigned ? X86ISD::UMIN : 0;
16074     case ISD::SETLT:
16075     case ISD::SETLE:
16076       return hasSigned ? X86ISD::SMAX : 0;
16077     case ISD::SETGT:
16078     case ISD::SETGE:
16079       return hasSigned ? X86ISD::SMIN : 0;
16080     }
16081   }
16082
16083   return 0;
16084 }
16085
16086 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16087 /// nodes.
16088 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16089                                     TargetLowering::DAGCombinerInfo &DCI,
16090                                     const X86Subtarget *Subtarget) {
16091   SDLoc DL(N);
16092   SDValue Cond = N->getOperand(0);
16093   // Get the LHS/RHS of the select.
16094   SDValue LHS = N->getOperand(1);
16095   SDValue RHS = N->getOperand(2);
16096   EVT VT = LHS.getValueType();
16097
16098   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16099   // instructions match the semantics of the common C idiom x<y?x:y but not
16100   // x<=y?x:y, because of how they handle negative zero (which can be
16101   // ignored in unsafe-math mode).
16102   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16103       VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
16104       (Subtarget->hasSSE2() ||
16105        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16106     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16107
16108     unsigned Opcode = 0;
16109     // Check for x CC y ? x : y.
16110     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16111         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16112       switch (CC) {
16113       default: break;
16114       case ISD::SETULT:
16115         // Converting this to a min would handle NaNs incorrectly, and swapping
16116         // the operands would cause it to handle comparisons between positive
16117         // and negative zero incorrectly.
16118         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16119           if (!DAG.getTarget().Options.UnsafeFPMath &&
16120               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16121             break;
16122           std::swap(LHS, RHS);
16123         }
16124         Opcode = X86ISD::FMIN;
16125         break;
16126       case ISD::SETOLE:
16127         // Converting this to a min would handle comparisons between positive
16128         // and negative zero incorrectly.
16129         if (!DAG.getTarget().Options.UnsafeFPMath &&
16130             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16131           break;
16132         Opcode = X86ISD::FMIN;
16133         break;
16134       case ISD::SETULE:
16135         // Converting this to a min would handle both negative zeros and NaNs
16136         // incorrectly, but we can swap the operands to fix both.
16137         std::swap(LHS, RHS);
16138       case ISD::SETOLT:
16139       case ISD::SETLT:
16140       case ISD::SETLE:
16141         Opcode = X86ISD::FMIN;
16142         break;
16143
16144       case ISD::SETOGE:
16145         // Converting this to a max would handle comparisons between positive
16146         // and negative zero incorrectly.
16147         if (!DAG.getTarget().Options.UnsafeFPMath &&
16148             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16149           break;
16150         Opcode = X86ISD::FMAX;
16151         break;
16152       case ISD::SETUGT:
16153         // Converting this to a max would handle NaNs incorrectly, and swapping
16154         // the operands would cause it to handle comparisons between positive
16155         // and negative zero incorrectly.
16156         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16157           if (!DAG.getTarget().Options.UnsafeFPMath &&
16158               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16159             break;
16160           std::swap(LHS, RHS);
16161         }
16162         Opcode = X86ISD::FMAX;
16163         break;
16164       case ISD::SETUGE:
16165         // Converting this to a max would handle both negative zeros and NaNs
16166         // incorrectly, but we can swap the operands to fix both.
16167         std::swap(LHS, RHS);
16168       case ISD::SETOGT:
16169       case ISD::SETGT:
16170       case ISD::SETGE:
16171         Opcode = X86ISD::FMAX;
16172         break;
16173       }
16174     // Check for x CC y ? y : x -- a min/max with reversed arms.
16175     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16176                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16177       switch (CC) {
16178       default: break;
16179       case ISD::SETOGE:
16180         // Converting this to a min would handle comparisons between positive
16181         // and negative zero incorrectly, and swapping the operands would
16182         // cause it to handle NaNs incorrectly.
16183         if (!DAG.getTarget().Options.UnsafeFPMath &&
16184             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16185           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16186             break;
16187           std::swap(LHS, RHS);
16188         }
16189         Opcode = X86ISD::FMIN;
16190         break;
16191       case ISD::SETUGT:
16192         // Converting this to a min would handle NaNs incorrectly.
16193         if (!DAG.getTarget().Options.UnsafeFPMath &&
16194             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16195           break;
16196         Opcode = X86ISD::FMIN;
16197         break;
16198       case ISD::SETUGE:
16199         // Converting this to a min would handle both negative zeros and NaNs
16200         // incorrectly, but we can swap the operands to fix both.
16201         std::swap(LHS, RHS);
16202       case ISD::SETOGT:
16203       case ISD::SETGT:
16204       case ISD::SETGE:
16205         Opcode = X86ISD::FMIN;
16206         break;
16207
16208       case ISD::SETULT:
16209         // Converting this to a max would handle NaNs incorrectly.
16210         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16211           break;
16212         Opcode = X86ISD::FMAX;
16213         break;
16214       case ISD::SETOLE:
16215         // Converting this to a max would handle comparisons between positive
16216         // and negative zero incorrectly, and swapping the operands would
16217         // cause it to handle NaNs incorrectly.
16218         if (!DAG.getTarget().Options.UnsafeFPMath &&
16219             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16220           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16221             break;
16222           std::swap(LHS, RHS);
16223         }
16224         Opcode = X86ISD::FMAX;
16225         break;
16226       case ISD::SETULE:
16227         // Converting this to a max would handle both negative zeros and NaNs
16228         // incorrectly, but we can swap the operands to fix both.
16229         std::swap(LHS, RHS);
16230       case ISD::SETOLT:
16231       case ISD::SETLT:
16232       case ISD::SETLE:
16233         Opcode = X86ISD::FMAX;
16234         break;
16235       }
16236     }
16237
16238     if (Opcode)
16239       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16240   }
16241
16242   // If this is a select between two integer constants, try to do some
16243   // optimizations.
16244   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16245     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16246       // Don't do this for crazy integer types.
16247       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16248         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16249         // so that TrueC (the true value) is larger than FalseC.
16250         bool NeedsCondInvert = false;
16251
16252         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16253             // Efficiently invertible.
16254             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16255              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16256               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16257           NeedsCondInvert = true;
16258           std::swap(TrueC, FalseC);
16259         }
16260
16261         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16262         if (FalseC->getAPIntValue() == 0 &&
16263             TrueC->getAPIntValue().isPowerOf2()) {
16264           if (NeedsCondInvert) // Invert the condition if needed.
16265             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16266                                DAG.getConstant(1, Cond.getValueType()));
16267
16268           // Zero extend the condition if needed.
16269           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16270
16271           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16272           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16273                              DAG.getConstant(ShAmt, MVT::i8));
16274         }
16275
16276         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16277         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16278           if (NeedsCondInvert) // Invert the condition if needed.
16279             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16280                                DAG.getConstant(1, Cond.getValueType()));
16281
16282           // Zero extend the condition if needed.
16283           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16284                              FalseC->getValueType(0), Cond);
16285           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16286                              SDValue(FalseC, 0));
16287         }
16288
16289         // Optimize cases that will turn into an LEA instruction.  This requires
16290         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16291         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16292           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16293           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16294
16295           bool isFastMultiplier = false;
16296           if (Diff < 10) {
16297             switch ((unsigned char)Diff) {
16298               default: break;
16299               case 1:  // result = add base, cond
16300               case 2:  // result = lea base(    , cond*2)
16301               case 3:  // result = lea base(cond, cond*2)
16302               case 4:  // result = lea base(    , cond*4)
16303               case 5:  // result = lea base(cond, cond*4)
16304               case 8:  // result = lea base(    , cond*8)
16305               case 9:  // result = lea base(cond, cond*8)
16306                 isFastMultiplier = true;
16307                 break;
16308             }
16309           }
16310
16311           if (isFastMultiplier) {
16312             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16313             if (NeedsCondInvert) // Invert the condition if needed.
16314               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16315                                  DAG.getConstant(1, Cond.getValueType()));
16316
16317             // Zero extend the condition if needed.
16318             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16319                                Cond);
16320             // Scale the condition by the difference.
16321             if (Diff != 1)
16322               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16323                                  DAG.getConstant(Diff, Cond.getValueType()));
16324
16325             // Add the base if non-zero.
16326             if (FalseC->getAPIntValue() != 0)
16327               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16328                                  SDValue(FalseC, 0));
16329             return Cond;
16330           }
16331         }
16332       }
16333   }
16334
16335   // Canonicalize max and min:
16336   // (x > y) ? x : y -> (x >= y) ? x : y
16337   // (x < y) ? x : y -> (x <= y) ? x : y
16338   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16339   // the need for an extra compare
16340   // against zero. e.g.
16341   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16342   // subl   %esi, %edi
16343   // testl  %edi, %edi
16344   // movl   $0, %eax
16345   // cmovgl %edi, %eax
16346   // =>
16347   // xorl   %eax, %eax
16348   // subl   %esi, $edi
16349   // cmovsl %eax, %edi
16350   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16351       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16352       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16353     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16354     switch (CC) {
16355     default: break;
16356     case ISD::SETLT:
16357     case ISD::SETGT: {
16358       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
16359       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
16360                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
16361       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16362     }
16363     }
16364   }
16365
16366   // Match VSELECTs into subs with unsigned saturation.
16367   if (!DCI.isBeforeLegalize() &&
16368       N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16369       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16370       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16371        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16372     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16373
16374     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16375     // left side invert the predicate to simplify logic below.
16376     SDValue Other;
16377     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16378       Other = RHS;
16379       CC = ISD::getSetCCInverse(CC, true);
16380     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16381       Other = LHS;
16382     }
16383
16384     if (Other.getNode() && Other->getNumOperands() == 2 &&
16385         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16386       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16387       SDValue CondRHS = Cond->getOperand(1);
16388
16389       // Look for a general sub with unsigned saturation first.
16390       // x >= y ? x-y : 0 --> subus x, y
16391       // x >  y ? x-y : 0 --> subus x, y
16392       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16393           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16394         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16395
16396       // If the RHS is a constant we have to reverse the const canonicalization.
16397       // x > C-1 ? x+-C : 0 --> subus x, C
16398       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16399           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16400         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16401         if (CondRHS.getConstantOperandVal(0) == -A-1)
16402           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
16403                              DAG.getConstant(-A, VT));
16404       }
16405
16406       // Another special case: If C was a sign bit, the sub has been
16407       // canonicalized into a xor.
16408       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16409       //        it's safe to decanonicalize the xor?
16410       // x s< 0 ? x^C : 0 --> subus x, C
16411       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16412           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16413           isSplatVector(OpRHS.getNode())) {
16414         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16415         if (A.isSignBit())
16416           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16417       }
16418     }
16419   }
16420
16421   // Try to match a min/max vector operation.
16422   if (!DCI.isBeforeLegalize() &&
16423       N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC)
16424     if (unsigned Op = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget))
16425       return DAG.getNode(Op, DL, N->getValueType(0), LHS, RHS);
16426
16427   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
16428   if (!DCI.isBeforeLegalize() && N->getOpcode() == ISD::VSELECT &&
16429       Cond.getOpcode() == ISD::SETCC) {
16430
16431     assert(Cond.getValueType().isVector() &&
16432            "vector select expects a vector selector!");
16433
16434     EVT IntVT = Cond.getValueType();
16435     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16436     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16437
16438     if (!TValIsAllOnes && !FValIsAllZeros) {
16439       // Try invert the condition if true value is not all 1s and false value
16440       // is not all 0s.
16441       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16442       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16443
16444       if (TValIsAllZeros || FValIsAllOnes) {
16445         SDValue CC = Cond.getOperand(2);
16446         ISD::CondCode NewCC =
16447           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16448                                Cond.getOperand(0).getValueType().isInteger());
16449         Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16450         std::swap(LHS, RHS);
16451         TValIsAllOnes = FValIsAllOnes;
16452         FValIsAllZeros = TValIsAllZeros;
16453       }
16454     }
16455
16456     if (TValIsAllOnes || FValIsAllZeros) {
16457       SDValue Ret;
16458
16459       if (TValIsAllOnes && FValIsAllZeros)
16460         Ret = Cond;
16461       else if (TValIsAllOnes)
16462         Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
16463                           DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
16464       else if (FValIsAllZeros)
16465         Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
16466                           DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
16467
16468       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
16469     }
16470   }
16471
16472   // If we know that this node is legal then we know that it is going to be
16473   // matched by one of the SSE/AVX BLEND instructions. These instructions only
16474   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
16475   // to simplify previous instructions.
16476   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16477   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
16478       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
16479     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
16480
16481     // Don't optimize vector selects that map to mask-registers.
16482     if (BitWidth == 1)
16483       return SDValue();
16484
16485     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
16486     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
16487
16488     APInt KnownZero, KnownOne;
16489     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
16490                                           DCI.isBeforeLegalizeOps());
16491     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
16492         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
16493       DCI.CommitTargetLoweringOpt(TLO);
16494   }
16495
16496   return SDValue();
16497 }
16498
16499 // Check whether a boolean test is testing a boolean value generated by
16500 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
16501 // code.
16502 //
16503 // Simplify the following patterns:
16504 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
16505 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
16506 // to (Op EFLAGS Cond)
16507 //
16508 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
16509 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
16510 // to (Op EFLAGS !Cond)
16511 //
16512 // where Op could be BRCOND or CMOV.
16513 //
16514 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
16515   // Quit if not CMP and SUB with its value result used.
16516   if (Cmp.getOpcode() != X86ISD::CMP &&
16517       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
16518       return SDValue();
16519
16520   // Quit if not used as a boolean value.
16521   if (CC != X86::COND_E && CC != X86::COND_NE)
16522     return SDValue();
16523
16524   // Check CMP operands. One of them should be 0 or 1 and the other should be
16525   // an SetCC or extended from it.
16526   SDValue Op1 = Cmp.getOperand(0);
16527   SDValue Op2 = Cmp.getOperand(1);
16528
16529   SDValue SetCC;
16530   const ConstantSDNode* C = 0;
16531   bool needOppositeCond = (CC == X86::COND_E);
16532   bool checkAgainstTrue = false; // Is it a comparison against 1?
16533
16534   if ((C = dyn_cast<ConstantSDNode>(Op1)))
16535     SetCC = Op2;
16536   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
16537     SetCC = Op1;
16538   else // Quit if all operands are not constants.
16539     return SDValue();
16540
16541   if (C->getZExtValue() == 1) {
16542     needOppositeCond = !needOppositeCond;
16543     checkAgainstTrue = true;
16544   } else if (C->getZExtValue() != 0)
16545     // Quit if the constant is neither 0 or 1.
16546     return SDValue();
16547
16548   bool truncatedToBoolWithAnd = false;
16549   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
16550   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
16551          SetCC.getOpcode() == ISD::TRUNCATE ||
16552          SetCC.getOpcode() == ISD::AND) {
16553     if (SetCC.getOpcode() == ISD::AND) {
16554       int OpIdx = -1;
16555       ConstantSDNode *CS;
16556       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
16557           CS->getZExtValue() == 1)
16558         OpIdx = 1;
16559       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
16560           CS->getZExtValue() == 1)
16561         OpIdx = 0;
16562       if (OpIdx == -1)
16563         break;
16564       SetCC = SetCC.getOperand(OpIdx);
16565       truncatedToBoolWithAnd = true;
16566     } else
16567       SetCC = SetCC.getOperand(0);
16568   }
16569
16570   switch (SetCC.getOpcode()) {
16571   case X86ISD::SETCC_CARRY:
16572     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
16573     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
16574     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
16575     // truncated to i1 using 'and'.
16576     if (checkAgainstTrue && !truncatedToBoolWithAnd)
16577       break;
16578     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
16579            "Invalid use of SETCC_CARRY!");
16580     // FALL THROUGH
16581   case X86ISD::SETCC:
16582     // Set the condition code or opposite one if necessary.
16583     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
16584     if (needOppositeCond)
16585       CC = X86::GetOppositeBranchCondition(CC);
16586     return SetCC.getOperand(1);
16587   case X86ISD::CMOV: {
16588     // Check whether false/true value has canonical one, i.e. 0 or 1.
16589     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
16590     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
16591     // Quit if true value is not a constant.
16592     if (!TVal)
16593       return SDValue();
16594     // Quit if false value is not a constant.
16595     if (!FVal) {
16596       SDValue Op = SetCC.getOperand(0);
16597       // Skip 'zext' or 'trunc' node.
16598       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
16599           Op.getOpcode() == ISD::TRUNCATE)
16600         Op = Op.getOperand(0);
16601       // A special case for rdrand/rdseed, where 0 is set if false cond is
16602       // found.
16603       if ((Op.getOpcode() != X86ISD::RDRAND &&
16604            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
16605         return SDValue();
16606     }
16607     // Quit if false value is not the constant 0 or 1.
16608     bool FValIsFalse = true;
16609     if (FVal && FVal->getZExtValue() != 0) {
16610       if (FVal->getZExtValue() != 1)
16611         return SDValue();
16612       // If FVal is 1, opposite cond is needed.
16613       needOppositeCond = !needOppositeCond;
16614       FValIsFalse = false;
16615     }
16616     // Quit if TVal is not the constant opposite of FVal.
16617     if (FValIsFalse && TVal->getZExtValue() != 1)
16618       return SDValue();
16619     if (!FValIsFalse && TVal->getZExtValue() != 0)
16620       return SDValue();
16621     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
16622     if (needOppositeCond)
16623       CC = X86::GetOppositeBranchCondition(CC);
16624     return SetCC.getOperand(3);
16625   }
16626   }
16627
16628   return SDValue();
16629 }
16630
16631 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
16632 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
16633                                   TargetLowering::DAGCombinerInfo &DCI,
16634                                   const X86Subtarget *Subtarget) {
16635   SDLoc DL(N);
16636
16637   // If the flag operand isn't dead, don't touch this CMOV.
16638   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
16639     return SDValue();
16640
16641   SDValue FalseOp = N->getOperand(0);
16642   SDValue TrueOp = N->getOperand(1);
16643   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
16644   SDValue Cond = N->getOperand(3);
16645
16646   if (CC == X86::COND_E || CC == X86::COND_NE) {
16647     switch (Cond.getOpcode()) {
16648     default: break;
16649     case X86ISD::BSR:
16650     case X86ISD::BSF:
16651       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
16652       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
16653         return (CC == X86::COND_E) ? FalseOp : TrueOp;
16654     }
16655   }
16656
16657   SDValue Flags;
16658
16659   Flags = checkBoolTestSetCCCombine(Cond, CC);
16660   if (Flags.getNode() &&
16661       // Extra check as FCMOV only supports a subset of X86 cond.
16662       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
16663     SDValue Ops[] = { FalseOp, TrueOp,
16664                       DAG.getConstant(CC, MVT::i8), Flags };
16665     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
16666                        Ops, array_lengthof(Ops));
16667   }
16668
16669   // If this is a select between two integer constants, try to do some
16670   // optimizations.  Note that the operands are ordered the opposite of SELECT
16671   // operands.
16672   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
16673     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
16674       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
16675       // larger than FalseC (the false value).
16676       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
16677         CC = X86::GetOppositeBranchCondition(CC);
16678         std::swap(TrueC, FalseC);
16679         std::swap(TrueOp, FalseOp);
16680       }
16681
16682       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
16683       // This is efficient for any integer data type (including i8/i16) and
16684       // shift amount.
16685       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
16686         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
16687                            DAG.getConstant(CC, MVT::i8), Cond);
16688
16689         // Zero extend the condition if needed.
16690         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
16691
16692         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16693         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
16694                            DAG.getConstant(ShAmt, MVT::i8));
16695         if (N->getNumValues() == 2)  // Dead flag value?
16696           return DCI.CombineTo(N, Cond, SDValue());
16697         return Cond;
16698       }
16699
16700       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
16701       // for any integer data type, including i8/i16.
16702       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16703         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
16704                            DAG.getConstant(CC, MVT::i8), Cond);
16705
16706         // Zero extend the condition if needed.
16707         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16708                            FalseC->getValueType(0), Cond);
16709         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16710                            SDValue(FalseC, 0));
16711
16712         if (N->getNumValues() == 2)  // Dead flag value?
16713           return DCI.CombineTo(N, Cond, SDValue());
16714         return Cond;
16715       }
16716
16717       // Optimize cases that will turn into an LEA instruction.  This requires
16718       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16719       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16720         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16721         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16722
16723         bool isFastMultiplier = false;
16724         if (Diff < 10) {
16725           switch ((unsigned char)Diff) {
16726           default: break;
16727           case 1:  // result = add base, cond
16728           case 2:  // result = lea base(    , cond*2)
16729           case 3:  // result = lea base(cond, cond*2)
16730           case 4:  // result = lea base(    , cond*4)
16731           case 5:  // result = lea base(cond, cond*4)
16732           case 8:  // result = lea base(    , cond*8)
16733           case 9:  // result = lea base(cond, cond*8)
16734             isFastMultiplier = true;
16735             break;
16736           }
16737         }
16738
16739         if (isFastMultiplier) {
16740           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16741           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
16742                              DAG.getConstant(CC, MVT::i8), Cond);
16743           // Zero extend the condition if needed.
16744           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16745                              Cond);
16746           // Scale the condition by the difference.
16747           if (Diff != 1)
16748             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16749                                DAG.getConstant(Diff, Cond.getValueType()));
16750
16751           // Add the base if non-zero.
16752           if (FalseC->getAPIntValue() != 0)
16753             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16754                                SDValue(FalseC, 0));
16755           if (N->getNumValues() == 2)  // Dead flag value?
16756             return DCI.CombineTo(N, Cond, SDValue());
16757           return Cond;
16758         }
16759       }
16760     }
16761   }
16762
16763   // Handle these cases:
16764   //   (select (x != c), e, c) -> select (x != c), e, x),
16765   //   (select (x == c), c, e) -> select (x == c), x, e)
16766   // where the c is an integer constant, and the "select" is the combination
16767   // of CMOV and CMP.
16768   //
16769   // The rationale for this change is that the conditional-move from a constant
16770   // needs two instructions, however, conditional-move from a register needs
16771   // only one instruction.
16772   //
16773   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
16774   //  some instruction-combining opportunities. This opt needs to be
16775   //  postponed as late as possible.
16776   //
16777   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
16778     // the DCI.xxxx conditions are provided to postpone the optimization as
16779     // late as possible.
16780
16781     ConstantSDNode *CmpAgainst = 0;
16782     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
16783         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
16784         !isa<ConstantSDNode>(Cond.getOperand(0))) {
16785
16786       if (CC == X86::COND_NE &&
16787           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
16788         CC = X86::GetOppositeBranchCondition(CC);
16789         std::swap(TrueOp, FalseOp);
16790       }
16791
16792       if (CC == X86::COND_E &&
16793           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
16794         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
16795                           DAG.getConstant(CC, MVT::i8), Cond };
16796         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
16797                            array_lengthof(Ops));
16798       }
16799     }
16800   }
16801
16802   return SDValue();
16803 }
16804
16805 /// PerformMulCombine - Optimize a single multiply with constant into two
16806 /// in order to implement it with two cheaper instructions, e.g.
16807 /// LEA + SHL, LEA + LEA.
16808 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
16809                                  TargetLowering::DAGCombinerInfo &DCI) {
16810   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
16811     return SDValue();
16812
16813   EVT VT = N->getValueType(0);
16814   if (VT != MVT::i64)
16815     return SDValue();
16816
16817   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
16818   if (!C)
16819     return SDValue();
16820   uint64_t MulAmt = C->getZExtValue();
16821   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
16822     return SDValue();
16823
16824   uint64_t MulAmt1 = 0;
16825   uint64_t MulAmt2 = 0;
16826   if ((MulAmt % 9) == 0) {
16827     MulAmt1 = 9;
16828     MulAmt2 = MulAmt / 9;
16829   } else if ((MulAmt % 5) == 0) {
16830     MulAmt1 = 5;
16831     MulAmt2 = MulAmt / 5;
16832   } else if ((MulAmt % 3) == 0) {
16833     MulAmt1 = 3;
16834     MulAmt2 = MulAmt / 3;
16835   }
16836   if (MulAmt2 &&
16837       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
16838     SDLoc DL(N);
16839
16840     if (isPowerOf2_64(MulAmt2) &&
16841         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
16842       // If second multiplifer is pow2, issue it first. We want the multiply by
16843       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
16844       // is an add.
16845       std::swap(MulAmt1, MulAmt2);
16846
16847     SDValue NewMul;
16848     if (isPowerOf2_64(MulAmt1))
16849       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
16850                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
16851     else
16852       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
16853                            DAG.getConstant(MulAmt1, VT));
16854
16855     if (isPowerOf2_64(MulAmt2))
16856       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
16857                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
16858     else
16859       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
16860                            DAG.getConstant(MulAmt2, VT));
16861
16862     // Do not add new nodes to DAG combiner worklist.
16863     DCI.CombineTo(N, NewMul, false);
16864   }
16865   return SDValue();
16866 }
16867
16868 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
16869   SDValue N0 = N->getOperand(0);
16870   SDValue N1 = N->getOperand(1);
16871   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
16872   EVT VT = N0.getValueType();
16873
16874   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
16875   // since the result of setcc_c is all zero's or all ones.
16876   if (VT.isInteger() && !VT.isVector() &&
16877       N1C && N0.getOpcode() == ISD::AND &&
16878       N0.getOperand(1).getOpcode() == ISD::Constant) {
16879     SDValue N00 = N0.getOperand(0);
16880     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
16881         ((N00.getOpcode() == ISD::ANY_EXTEND ||
16882           N00.getOpcode() == ISD::ZERO_EXTEND) &&
16883          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
16884       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
16885       APInt ShAmt = N1C->getAPIntValue();
16886       Mask = Mask.shl(ShAmt);
16887       if (Mask != 0)
16888         return DAG.getNode(ISD::AND, SDLoc(N), VT,
16889                            N00, DAG.getConstant(Mask, VT));
16890     }
16891   }
16892
16893   // Hardware support for vector shifts is sparse which makes us scalarize the
16894   // vector operations in many cases. Also, on sandybridge ADD is faster than
16895   // shl.
16896   // (shl V, 1) -> add V,V
16897   if (isSplatVector(N1.getNode())) {
16898     assert(N0.getValueType().isVector() && "Invalid vector shift type");
16899     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
16900     // We shift all of the values by one. In many cases we do not have
16901     // hardware support for this operation. This is better expressed as an ADD
16902     // of two values.
16903     if (N1C && (1 == N1C->getZExtValue())) {
16904       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
16905     }
16906   }
16907
16908   return SDValue();
16909 }
16910
16911 /// \brief Returns a vector of 0s if the node in input is a vector logical
16912 /// shift by a constant amount which is known to be bigger than or equal 
16913 /// to the vector element size in bits.
16914 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
16915                                       const X86Subtarget *Subtarget) {
16916   EVT VT = N->getValueType(0);
16917
16918   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
16919       (!Subtarget->hasInt256() ||
16920        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
16921     return SDValue();
16922
16923   SDValue Amt = N->getOperand(1);
16924   SDLoc DL(N);
16925   if (isSplatVector(Amt.getNode())) {
16926     SDValue SclrAmt = Amt->getOperand(0);
16927     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
16928       APInt ShiftAmt = C->getAPIntValue();
16929       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
16930
16931       // SSE2/AVX2 logical shifts always return a vector of 0s
16932       // if the shift amount is bigger than or equal to 
16933       // the element size. The constant shift amount will be
16934       // encoded as a 8-bit immediate.
16935       if (ShiftAmt.trunc(8).uge(MaxAmount))
16936         return getZeroVector(VT, Subtarget, DAG, DL);
16937     }
16938   }
16939
16940   return SDValue();
16941 }
16942
16943 /// PerformShiftCombine - Combine shifts.
16944 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
16945                                    TargetLowering::DAGCombinerInfo &DCI,
16946                                    const X86Subtarget *Subtarget) {
16947   if (N->getOpcode() == ISD::SHL) {
16948     SDValue V = PerformSHLCombine(N, DAG);
16949     if (V.getNode()) return V;
16950   }
16951
16952   if (N->getOpcode() != ISD::SRA) {
16953     // Try to fold this logical shift into a zero vector.
16954     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
16955     if (V.getNode()) return V;
16956   }
16957
16958   return SDValue();
16959 }
16960
16961 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
16962 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
16963 // and friends.  Likewise for OR -> CMPNEQSS.
16964 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
16965                             TargetLowering::DAGCombinerInfo &DCI,
16966                             const X86Subtarget *Subtarget) {
16967   unsigned opcode;
16968
16969   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
16970   // we're requiring SSE2 for both.
16971   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
16972     SDValue N0 = N->getOperand(0);
16973     SDValue N1 = N->getOperand(1);
16974     SDValue CMP0 = N0->getOperand(1);
16975     SDValue CMP1 = N1->getOperand(1);
16976     SDLoc DL(N);
16977
16978     // The SETCCs should both refer to the same CMP.
16979     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
16980       return SDValue();
16981
16982     SDValue CMP00 = CMP0->getOperand(0);
16983     SDValue CMP01 = CMP0->getOperand(1);
16984     EVT     VT    = CMP00.getValueType();
16985
16986     if (VT == MVT::f32 || VT == MVT::f64) {
16987       bool ExpectingFlags = false;
16988       // Check for any users that want flags:
16989       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
16990            !ExpectingFlags && UI != UE; ++UI)
16991         switch (UI->getOpcode()) {
16992         default:
16993         case ISD::BR_CC:
16994         case ISD::BRCOND:
16995         case ISD::SELECT:
16996           ExpectingFlags = true;
16997           break;
16998         case ISD::CopyToReg:
16999         case ISD::SIGN_EXTEND:
17000         case ISD::ZERO_EXTEND:
17001         case ISD::ANY_EXTEND:
17002           break;
17003         }
17004
17005       if (!ExpectingFlags) {
17006         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17007         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17008
17009         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17010           X86::CondCode tmp = cc0;
17011           cc0 = cc1;
17012           cc1 = tmp;
17013         }
17014
17015         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17016             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17017           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17018           X86ISD::NodeType NTOperator = is64BitFP ?
17019             X86ISD::FSETCCsd : X86ISD::FSETCCss;
17020           // FIXME: need symbolic constants for these magic numbers.
17021           // See X86ATTInstPrinter.cpp:printSSECC().
17022           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17023           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17024                                               DAG.getConstant(x86cc, MVT::i8));
17025           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17026                                               OnesOrZeroesF);
17027           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17028                                       DAG.getConstant(1, MVT::i32));
17029           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17030           return OneBitOfTruth;
17031         }
17032       }
17033     }
17034   }
17035   return SDValue();
17036 }
17037
17038 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17039 /// so it can be folded inside ANDNP.
17040 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17041   EVT VT = N->getValueType(0);
17042
17043   // Match direct AllOnes for 128 and 256-bit vectors
17044   if (ISD::isBuildVectorAllOnes(N))
17045     return true;
17046
17047   // Look through a bit convert.
17048   if (N->getOpcode() == ISD::BITCAST)
17049     N = N->getOperand(0).getNode();
17050
17051   // Sometimes the operand may come from a insert_subvector building a 256-bit
17052   // allones vector
17053   if (VT.is256BitVector() &&
17054       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17055     SDValue V1 = N->getOperand(0);
17056     SDValue V2 = N->getOperand(1);
17057
17058     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17059         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17060         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17061         ISD::isBuildVectorAllOnes(V2.getNode()))
17062       return true;
17063   }
17064
17065   return false;
17066 }
17067
17068 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17069 // register. In most cases we actually compare or select YMM-sized registers
17070 // and mixing the two types creates horrible code. This method optimizes
17071 // some of the transition sequences.
17072 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17073                                  TargetLowering::DAGCombinerInfo &DCI,
17074                                  const X86Subtarget *Subtarget) {
17075   EVT VT = N->getValueType(0);
17076   if (!VT.is256BitVector())
17077     return SDValue();
17078
17079   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17080           N->getOpcode() == ISD::ZERO_EXTEND ||
17081           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17082
17083   SDValue Narrow = N->getOperand(0);
17084   EVT NarrowVT = Narrow->getValueType(0);
17085   if (!NarrowVT.is128BitVector())
17086     return SDValue();
17087
17088   if (Narrow->getOpcode() != ISD::XOR &&
17089       Narrow->getOpcode() != ISD::AND &&
17090       Narrow->getOpcode() != ISD::OR)
17091     return SDValue();
17092
17093   SDValue N0  = Narrow->getOperand(0);
17094   SDValue N1  = Narrow->getOperand(1);
17095   SDLoc DL(Narrow);
17096
17097   // The Left side has to be a trunc.
17098   if (N0.getOpcode() != ISD::TRUNCATE)
17099     return SDValue();
17100
17101   // The type of the truncated inputs.
17102   EVT WideVT = N0->getOperand(0)->getValueType(0);
17103   if (WideVT != VT)
17104     return SDValue();
17105
17106   // The right side has to be a 'trunc' or a constant vector.
17107   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17108   bool RHSConst = (isSplatVector(N1.getNode()) &&
17109                    isa<ConstantSDNode>(N1->getOperand(0)));
17110   if (!RHSTrunc && !RHSConst)
17111     return SDValue();
17112
17113   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17114
17115   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17116     return SDValue();
17117
17118   // Set N0 and N1 to hold the inputs to the new wide operation.
17119   N0 = N0->getOperand(0);
17120   if (RHSConst) {
17121     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17122                      N1->getOperand(0));
17123     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17124     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17125   } else if (RHSTrunc) {
17126     N1 = N1->getOperand(0);
17127   }
17128
17129   // Generate the wide operation.
17130   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17131   unsigned Opcode = N->getOpcode();
17132   switch (Opcode) {
17133   case ISD::ANY_EXTEND:
17134     return Op;
17135   case ISD::ZERO_EXTEND: {
17136     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17137     APInt Mask = APInt::getAllOnesValue(InBits);
17138     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17139     return DAG.getNode(ISD::AND, DL, VT,
17140                        Op, DAG.getConstant(Mask, VT));
17141   }
17142   case ISD::SIGN_EXTEND:
17143     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17144                        Op, DAG.getValueType(NarrowVT));
17145   default:
17146     llvm_unreachable("Unexpected opcode");
17147   }
17148 }
17149
17150 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17151                                  TargetLowering::DAGCombinerInfo &DCI,
17152                                  const X86Subtarget *Subtarget) {
17153   EVT VT = N->getValueType(0);
17154   if (DCI.isBeforeLegalizeOps())
17155     return SDValue();
17156
17157   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17158   if (R.getNode())
17159     return R;
17160
17161   // Create BLSI, and BLSR instructions
17162   // BLSI is X & (-X)
17163   // BLSR is X & (X-1)
17164   if (Subtarget->hasBMI() && (VT == MVT::i32 || VT == MVT::i64)) {
17165     SDValue N0 = N->getOperand(0);
17166     SDValue N1 = N->getOperand(1);
17167     SDLoc DL(N);
17168
17169     // Check LHS for neg
17170     if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17171         isZero(N0.getOperand(0)))
17172       return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17173
17174     // Check RHS for neg
17175     if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17176         isZero(N1.getOperand(0)))
17177       return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17178
17179     // Check LHS for X-1
17180     if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17181         isAllOnes(N0.getOperand(1)))
17182       return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17183
17184     // Check RHS for X-1
17185     if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17186         isAllOnes(N1.getOperand(1)))
17187       return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17188
17189     return SDValue();
17190   }
17191
17192   // Want to form ANDNP nodes:
17193   // 1) In the hopes of then easily combining them with OR and AND nodes
17194   //    to form PBLEND/PSIGN.
17195   // 2) To match ANDN packed intrinsics
17196   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17197     return SDValue();
17198
17199   SDValue N0 = N->getOperand(0);
17200   SDValue N1 = N->getOperand(1);
17201   SDLoc DL(N);
17202
17203   // Check LHS for vnot
17204   if (N0.getOpcode() == ISD::XOR &&
17205       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17206       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17207     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17208
17209   // Check RHS for vnot
17210   if (N1.getOpcode() == ISD::XOR &&
17211       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17212       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17213     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17214
17215   return SDValue();
17216 }
17217
17218 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17219                                 TargetLowering::DAGCombinerInfo &DCI,
17220                                 const X86Subtarget *Subtarget) {
17221   EVT VT = N->getValueType(0);
17222   if (DCI.isBeforeLegalizeOps())
17223     return SDValue();
17224
17225   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17226   if (R.getNode())
17227     return R;
17228
17229   SDValue N0 = N->getOperand(0);
17230   SDValue N1 = N->getOperand(1);
17231
17232   // look for psign/blend
17233   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17234     if (!Subtarget->hasSSSE3() ||
17235         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17236       return SDValue();
17237
17238     // Canonicalize pandn to RHS
17239     if (N0.getOpcode() == X86ISD::ANDNP)
17240       std::swap(N0, N1);
17241     // or (and (m, y), (pandn m, x))
17242     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17243       SDValue Mask = N1.getOperand(0);
17244       SDValue X    = N1.getOperand(1);
17245       SDValue Y;
17246       if (N0.getOperand(0) == Mask)
17247         Y = N0.getOperand(1);
17248       if (N0.getOperand(1) == Mask)
17249         Y = N0.getOperand(0);
17250
17251       // Check to see if the mask appeared in both the AND and ANDNP and
17252       if (!Y.getNode())
17253         return SDValue();
17254
17255       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17256       // Look through mask bitcast.
17257       if (Mask.getOpcode() == ISD::BITCAST)
17258         Mask = Mask.getOperand(0);
17259       if (X.getOpcode() == ISD::BITCAST)
17260         X = X.getOperand(0);
17261       if (Y.getOpcode() == ISD::BITCAST)
17262         Y = Y.getOperand(0);
17263
17264       EVT MaskVT = Mask.getValueType();
17265
17266       // Validate that the Mask operand is a vector sra node.
17267       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17268       // there is no psrai.b
17269       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17270       unsigned SraAmt = ~0;
17271       if (Mask.getOpcode() == ISD::SRA) {
17272         SDValue Amt = Mask.getOperand(1);
17273         if (isSplatVector(Amt.getNode())) {
17274           SDValue SclrAmt = Amt->getOperand(0);
17275           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17276             SraAmt = C->getZExtValue();
17277         }
17278       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17279         SDValue SraC = Mask.getOperand(1);
17280         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
17281       }
17282       if ((SraAmt + 1) != EltBits)
17283         return SDValue();
17284
17285       SDLoc DL(N);
17286
17287       // Now we know we at least have a plendvb with the mask val.  See if
17288       // we can form a psignb/w/d.
17289       // psign = x.type == y.type == mask.type && y = sub(0, x);
17290       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17291           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
17292           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17293         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17294                "Unsupported VT for PSIGN");
17295         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
17296         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17297       }
17298       // PBLENDVB only available on SSE 4.1
17299       if (!Subtarget->hasSSE41())
17300         return SDValue();
17301
17302       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17303
17304       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17305       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17306       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
17307       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
17308       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
17309     }
17310   }
17311
17312   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17313     return SDValue();
17314
17315   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
17316   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17317     std::swap(N0, N1);
17318   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17319     return SDValue();
17320   if (!N0.hasOneUse() || !N1.hasOneUse())
17321     return SDValue();
17322
17323   SDValue ShAmt0 = N0.getOperand(1);
17324   if (ShAmt0.getValueType() != MVT::i8)
17325     return SDValue();
17326   SDValue ShAmt1 = N1.getOperand(1);
17327   if (ShAmt1.getValueType() != MVT::i8)
17328     return SDValue();
17329   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17330     ShAmt0 = ShAmt0.getOperand(0);
17331   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17332     ShAmt1 = ShAmt1.getOperand(0);
17333
17334   SDLoc DL(N);
17335   unsigned Opc = X86ISD::SHLD;
17336   SDValue Op0 = N0.getOperand(0);
17337   SDValue Op1 = N1.getOperand(0);
17338   if (ShAmt0.getOpcode() == ISD::SUB) {
17339     Opc = X86ISD::SHRD;
17340     std::swap(Op0, Op1);
17341     std::swap(ShAmt0, ShAmt1);
17342   }
17343
17344   unsigned Bits = VT.getSizeInBits();
17345   if (ShAmt1.getOpcode() == ISD::SUB) {
17346     SDValue Sum = ShAmt1.getOperand(0);
17347     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
17348       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17349       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17350         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17351       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
17352         return DAG.getNode(Opc, DL, VT,
17353                            Op0, Op1,
17354                            DAG.getNode(ISD::TRUNCATE, DL,
17355                                        MVT::i8, ShAmt0));
17356     }
17357   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17358     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17359     if (ShAmt0C &&
17360         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
17361       return DAG.getNode(Opc, DL, VT,
17362                          N0.getOperand(0), N1.getOperand(0),
17363                          DAG.getNode(ISD::TRUNCATE, DL,
17364                                        MVT::i8, ShAmt0));
17365   }
17366
17367   return SDValue();
17368 }
17369
17370 // Generate NEG and CMOV for integer abs.
17371 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17372   EVT VT = N->getValueType(0);
17373
17374   // Since X86 does not have CMOV for 8-bit integer, we don't convert
17375   // 8-bit integer abs to NEG and CMOV.
17376   if (VT.isInteger() && VT.getSizeInBits() == 8)
17377     return SDValue();
17378
17379   SDValue N0 = N->getOperand(0);
17380   SDValue N1 = N->getOperand(1);
17381   SDLoc DL(N);
17382
17383   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17384   // and change it to SUB and CMOV.
17385   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17386       N0.getOpcode() == ISD::ADD &&
17387       N0.getOperand(1) == N1 &&
17388       N1.getOpcode() == ISD::SRA &&
17389       N1.getOperand(0) == N0.getOperand(0))
17390     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17391       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17392         // Generate SUB & CMOV.
17393         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17394                                   DAG.getConstant(0, VT), N0.getOperand(0));
17395
17396         SDValue Ops[] = { N0.getOperand(0), Neg,
17397                           DAG.getConstant(X86::COND_GE, MVT::i8),
17398                           SDValue(Neg.getNode(), 1) };
17399         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
17400                            Ops, array_lengthof(Ops));
17401       }
17402   return SDValue();
17403 }
17404
17405 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
17406 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
17407                                  TargetLowering::DAGCombinerInfo &DCI,
17408                                  const X86Subtarget *Subtarget) {
17409   EVT VT = N->getValueType(0);
17410   if (DCI.isBeforeLegalizeOps())
17411     return SDValue();
17412
17413   if (Subtarget->hasCMov()) {
17414     SDValue RV = performIntegerAbsCombine(N, DAG);
17415     if (RV.getNode())
17416       return RV;
17417   }
17418
17419   // Try forming BMI if it is available.
17420   if (!Subtarget->hasBMI())
17421     return SDValue();
17422
17423   if (VT != MVT::i32 && VT != MVT::i64)
17424     return SDValue();
17425
17426   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
17427
17428   // Create BLSMSK instructions by finding X ^ (X-1)
17429   SDValue N0 = N->getOperand(0);
17430   SDValue N1 = N->getOperand(1);
17431   SDLoc DL(N);
17432
17433   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17434       isAllOnes(N0.getOperand(1)))
17435     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
17436
17437   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17438       isAllOnes(N1.getOperand(1)))
17439     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
17440
17441   return SDValue();
17442 }
17443
17444 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
17445 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
17446                                   TargetLowering::DAGCombinerInfo &DCI,
17447                                   const X86Subtarget *Subtarget) {
17448   LoadSDNode *Ld = cast<LoadSDNode>(N);
17449   EVT RegVT = Ld->getValueType(0);
17450   EVT MemVT = Ld->getMemoryVT();
17451   SDLoc dl(Ld);
17452   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17453   unsigned RegSz = RegVT.getSizeInBits();
17454
17455   // On Sandybridge unaligned 256bit loads are inefficient.
17456   ISD::LoadExtType Ext = Ld->getExtensionType();
17457   unsigned Alignment = Ld->getAlignment();
17458   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
17459   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
17460       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
17461     unsigned NumElems = RegVT.getVectorNumElements();
17462     if (NumElems < 2)
17463       return SDValue();
17464
17465     SDValue Ptr = Ld->getBasePtr();
17466     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
17467
17468     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17469                                   NumElems/2);
17470     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17471                                 Ld->getPointerInfo(), Ld->isVolatile(),
17472                                 Ld->isNonTemporal(), Ld->isInvariant(),
17473                                 Alignment);
17474     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17475     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
17476                                 Ld->getPointerInfo(), Ld->isVolatile(),
17477                                 Ld->isNonTemporal(), Ld->isInvariant(),
17478                                 std::min(16U, Alignment));
17479     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
17480                              Load1.getValue(1),
17481                              Load2.getValue(1));
17482
17483     SDValue NewVec = DAG.getUNDEF(RegVT);
17484     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
17485     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
17486     return DCI.CombineTo(N, NewVec, TF, true);
17487   }
17488
17489   // If this is a vector EXT Load then attempt to optimize it using a
17490   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
17491   // expansion is still better than scalar code.
17492   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
17493   // emit a shuffle and a arithmetic shift.
17494   // TODO: It is possible to support ZExt by zeroing the undef values
17495   // during the shuffle phase or after the shuffle.
17496   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
17497       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
17498     assert(MemVT != RegVT && "Cannot extend to the same type");
17499     assert(MemVT.isVector() && "Must load a vector from memory");
17500
17501     unsigned NumElems = RegVT.getVectorNumElements();
17502     unsigned MemSz = MemVT.getSizeInBits();
17503     assert(RegSz > MemSz && "Register size must be greater than the mem size");
17504
17505     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
17506       return SDValue();
17507
17508     // All sizes must be a power of two.
17509     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
17510       return SDValue();
17511
17512     // Attempt to load the original value using scalar loads.
17513     // Find the largest scalar type that divides the total loaded size.
17514     MVT SclrLoadTy = MVT::i8;
17515     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17516          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17517       MVT Tp = (MVT::SimpleValueType)tp;
17518       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
17519         SclrLoadTy = Tp;
17520       }
17521     }
17522
17523     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17524     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
17525         (64 <= MemSz))
17526       SclrLoadTy = MVT::f64;
17527
17528     // Calculate the number of scalar loads that we need to perform
17529     // in order to load our vector from memory.
17530     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
17531     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
17532       return SDValue();
17533
17534     unsigned loadRegZize = RegSz;
17535     if (Ext == ISD::SEXTLOAD && RegSz == 256)
17536       loadRegZize /= 2;
17537
17538     // Represent our vector as a sequence of elements which are the
17539     // largest scalar that we can load.
17540     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
17541       loadRegZize/SclrLoadTy.getSizeInBits());
17542
17543     // Represent the data using the same element type that is stored in
17544     // memory. In practice, we ''widen'' MemVT.
17545     EVT WideVecVT =
17546           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
17547                        loadRegZize/MemVT.getScalarType().getSizeInBits());
17548
17549     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
17550       "Invalid vector type");
17551
17552     // We can't shuffle using an illegal type.
17553     if (!TLI.isTypeLegal(WideVecVT))
17554       return SDValue();
17555
17556     SmallVector<SDValue, 8> Chains;
17557     SDValue Ptr = Ld->getBasePtr();
17558     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
17559                                         TLI.getPointerTy());
17560     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
17561
17562     for (unsigned i = 0; i < NumLoads; ++i) {
17563       // Perform a single load.
17564       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
17565                                        Ptr, Ld->getPointerInfo(),
17566                                        Ld->isVolatile(), Ld->isNonTemporal(),
17567                                        Ld->isInvariant(), Ld->getAlignment());
17568       Chains.push_back(ScalarLoad.getValue(1));
17569       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
17570       // another round of DAGCombining.
17571       if (i == 0)
17572         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
17573       else
17574         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
17575                           ScalarLoad, DAG.getIntPtrConstant(i));
17576
17577       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17578     }
17579
17580     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
17581                                Chains.size());
17582
17583     // Bitcast the loaded value to a vector of the original element type, in
17584     // the size of the target vector type.
17585     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
17586     unsigned SizeRatio = RegSz/MemSz;
17587
17588     if (Ext == ISD::SEXTLOAD) {
17589       // If we have SSE4.1 we can directly emit a VSEXT node.
17590       if (Subtarget->hasSSE41()) {
17591         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
17592         return DCI.CombineTo(N, Sext, TF, true);
17593       }
17594
17595       // Otherwise we'll shuffle the small elements in the high bits of the
17596       // larger type and perform an arithmetic shift. If the shift is not legal
17597       // it's better to scalarize.
17598       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
17599         return SDValue();
17600
17601       // Redistribute the loaded elements into the different locations.
17602       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
17603       for (unsigned i = 0; i != NumElems; ++i)
17604         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
17605
17606       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
17607                                            DAG.getUNDEF(WideVecVT),
17608                                            &ShuffleVec[0]);
17609
17610       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
17611
17612       // Build the arithmetic shift.
17613       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
17614                      MemVT.getVectorElementType().getSizeInBits();
17615       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
17616                           DAG.getConstant(Amt, RegVT));
17617
17618       return DCI.CombineTo(N, Shuff, TF, true);
17619     }
17620
17621     // Redistribute the loaded elements into the different locations.
17622     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
17623     for (unsigned i = 0; i != NumElems; ++i)
17624       ShuffleVec[i*SizeRatio] = i;
17625
17626     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
17627                                          DAG.getUNDEF(WideVecVT),
17628                                          &ShuffleVec[0]);
17629
17630     // Bitcast to the requested type.
17631     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
17632     // Replace the original load with the new sequence
17633     // and return the new chain.
17634     return DCI.CombineTo(N, Shuff, TF, true);
17635   }
17636
17637   return SDValue();
17638 }
17639
17640 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
17641 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
17642                                    const X86Subtarget *Subtarget) {
17643   StoreSDNode *St = cast<StoreSDNode>(N);
17644   EVT VT = St->getValue().getValueType();
17645   EVT StVT = St->getMemoryVT();
17646   SDLoc dl(St);
17647   SDValue StoredVal = St->getOperand(1);
17648   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17649
17650   // If we are saving a concatenation of two XMM registers, perform two stores.
17651   // On Sandy Bridge, 256-bit memory operations are executed by two
17652   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
17653   // memory  operation.
17654   unsigned Alignment = St->getAlignment();
17655   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
17656   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
17657       StVT == VT && !IsAligned) {
17658     unsigned NumElems = VT.getVectorNumElements();
17659     if (NumElems < 2)
17660       return SDValue();
17661
17662     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
17663     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
17664
17665     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
17666     SDValue Ptr0 = St->getBasePtr();
17667     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
17668
17669     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
17670                                 St->getPointerInfo(), St->isVolatile(),
17671                                 St->isNonTemporal(), Alignment);
17672     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
17673                                 St->getPointerInfo(), St->isVolatile(),
17674                                 St->isNonTemporal(),
17675                                 std::min(16U, Alignment));
17676     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
17677   }
17678
17679   // Optimize trunc store (of multiple scalars) to shuffle and store.
17680   // First, pack all of the elements in one place. Next, store to memory
17681   // in fewer chunks.
17682   if (St->isTruncatingStore() && VT.isVector()) {
17683     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17684     unsigned NumElems = VT.getVectorNumElements();
17685     assert(StVT != VT && "Cannot truncate to the same type");
17686     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
17687     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
17688
17689     // From, To sizes and ElemCount must be pow of two
17690     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
17691     // We are going to use the original vector elt for storing.
17692     // Accumulated smaller vector elements must be a multiple of the store size.
17693     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
17694
17695     unsigned SizeRatio  = FromSz / ToSz;
17696
17697     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
17698
17699     // Create a type on which we perform the shuffle
17700     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
17701             StVT.getScalarType(), NumElems*SizeRatio);
17702
17703     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
17704
17705     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
17706     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
17707     for (unsigned i = 0; i != NumElems; ++i)
17708       ShuffleVec[i] = i * SizeRatio;
17709
17710     // Can't shuffle using an illegal type.
17711     if (!TLI.isTypeLegal(WideVecVT))
17712       return SDValue();
17713
17714     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
17715                                          DAG.getUNDEF(WideVecVT),
17716                                          &ShuffleVec[0]);
17717     // At this point all of the data is stored at the bottom of the
17718     // register. We now need to save it to mem.
17719
17720     // Find the largest store unit
17721     MVT StoreType = MVT::i8;
17722     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
17723          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
17724       MVT Tp = (MVT::SimpleValueType)tp;
17725       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
17726         StoreType = Tp;
17727     }
17728
17729     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
17730     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
17731         (64 <= NumElems * ToSz))
17732       StoreType = MVT::f64;
17733
17734     // Bitcast the original vector into a vector of store-size units
17735     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
17736             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
17737     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
17738     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
17739     SmallVector<SDValue, 8> Chains;
17740     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
17741                                         TLI.getPointerTy());
17742     SDValue Ptr = St->getBasePtr();
17743
17744     // Perform one or more big stores into memory.
17745     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
17746       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
17747                                    StoreType, ShuffWide,
17748                                    DAG.getIntPtrConstant(i));
17749       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
17750                                 St->getPointerInfo(), St->isVolatile(),
17751                                 St->isNonTemporal(), St->getAlignment());
17752       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
17753       Chains.push_back(Ch);
17754     }
17755
17756     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
17757                                Chains.size());
17758   }
17759
17760   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
17761   // the FP state in cases where an emms may be missing.
17762   // A preferable solution to the general problem is to figure out the right
17763   // places to insert EMMS.  This qualifies as a quick hack.
17764
17765   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
17766   if (VT.getSizeInBits() != 64)
17767     return SDValue();
17768
17769   const Function *F = DAG.getMachineFunction().getFunction();
17770   bool NoImplicitFloatOps = F->getAttributes().
17771     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
17772   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
17773                      && Subtarget->hasSSE2();
17774   if ((VT.isVector() ||
17775        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
17776       isa<LoadSDNode>(St->getValue()) &&
17777       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
17778       St->getChain().hasOneUse() && !St->isVolatile()) {
17779     SDNode* LdVal = St->getValue().getNode();
17780     LoadSDNode *Ld = 0;
17781     int TokenFactorIndex = -1;
17782     SmallVector<SDValue, 8> Ops;
17783     SDNode* ChainVal = St->getChain().getNode();
17784     // Must be a store of a load.  We currently handle two cases:  the load
17785     // is a direct child, and it's under an intervening TokenFactor.  It is
17786     // possible to dig deeper under nested TokenFactors.
17787     if (ChainVal == LdVal)
17788       Ld = cast<LoadSDNode>(St->getChain());
17789     else if (St->getValue().hasOneUse() &&
17790              ChainVal->getOpcode() == ISD::TokenFactor) {
17791       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
17792         if (ChainVal->getOperand(i).getNode() == LdVal) {
17793           TokenFactorIndex = i;
17794           Ld = cast<LoadSDNode>(St->getValue());
17795         } else
17796           Ops.push_back(ChainVal->getOperand(i));
17797       }
17798     }
17799
17800     if (!Ld || !ISD::isNormalLoad(Ld))
17801       return SDValue();
17802
17803     // If this is not the MMX case, i.e. we are just turning i64 load/store
17804     // into f64 load/store, avoid the transformation if there are multiple
17805     // uses of the loaded value.
17806     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
17807       return SDValue();
17808
17809     SDLoc LdDL(Ld);
17810     SDLoc StDL(N);
17811     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
17812     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
17813     // pair instead.
17814     if (Subtarget->is64Bit() || F64IsLegal) {
17815       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
17816       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
17817                                   Ld->getPointerInfo(), Ld->isVolatile(),
17818                                   Ld->isNonTemporal(), Ld->isInvariant(),
17819                                   Ld->getAlignment());
17820       SDValue NewChain = NewLd.getValue(1);
17821       if (TokenFactorIndex != -1) {
17822         Ops.push_back(NewChain);
17823         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
17824                                Ops.size());
17825       }
17826       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
17827                           St->getPointerInfo(),
17828                           St->isVolatile(), St->isNonTemporal(),
17829                           St->getAlignment());
17830     }
17831
17832     // Otherwise, lower to two pairs of 32-bit loads / stores.
17833     SDValue LoAddr = Ld->getBasePtr();
17834     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
17835                                  DAG.getConstant(4, MVT::i32));
17836
17837     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
17838                                Ld->getPointerInfo(),
17839                                Ld->isVolatile(), Ld->isNonTemporal(),
17840                                Ld->isInvariant(), Ld->getAlignment());
17841     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
17842                                Ld->getPointerInfo().getWithOffset(4),
17843                                Ld->isVolatile(), Ld->isNonTemporal(),
17844                                Ld->isInvariant(),
17845                                MinAlign(Ld->getAlignment(), 4));
17846
17847     SDValue NewChain = LoLd.getValue(1);
17848     if (TokenFactorIndex != -1) {
17849       Ops.push_back(LoLd);
17850       Ops.push_back(HiLd);
17851       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
17852                              Ops.size());
17853     }
17854
17855     LoAddr = St->getBasePtr();
17856     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
17857                          DAG.getConstant(4, MVT::i32));
17858
17859     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
17860                                 St->getPointerInfo(),
17861                                 St->isVolatile(), St->isNonTemporal(),
17862                                 St->getAlignment());
17863     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
17864                                 St->getPointerInfo().getWithOffset(4),
17865                                 St->isVolatile(),
17866                                 St->isNonTemporal(),
17867                                 MinAlign(St->getAlignment(), 4));
17868     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
17869   }
17870   return SDValue();
17871 }
17872
17873 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
17874 /// and return the operands for the horizontal operation in LHS and RHS.  A
17875 /// horizontal operation performs the binary operation on successive elements
17876 /// of its first operand, then on successive elements of its second operand,
17877 /// returning the resulting values in a vector.  For example, if
17878 ///   A = < float a0, float a1, float a2, float a3 >
17879 /// and
17880 ///   B = < float b0, float b1, float b2, float b3 >
17881 /// then the result of doing a horizontal operation on A and B is
17882 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
17883 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
17884 /// A horizontal-op B, for some already available A and B, and if so then LHS is
17885 /// set to A, RHS to B, and the routine returns 'true'.
17886 /// Note that the binary operation should have the property that if one of the
17887 /// operands is UNDEF then the result is UNDEF.
17888 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
17889   // Look for the following pattern: if
17890   //   A = < float a0, float a1, float a2, float a3 >
17891   //   B = < float b0, float b1, float b2, float b3 >
17892   // and
17893   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
17894   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
17895   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
17896   // which is A horizontal-op B.
17897
17898   // At least one of the operands should be a vector shuffle.
17899   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
17900       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
17901     return false;
17902
17903   MVT VT = LHS.getSimpleValueType();
17904
17905   assert((VT.is128BitVector() || VT.is256BitVector()) &&
17906          "Unsupported vector type for horizontal add/sub");
17907
17908   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
17909   // operate independently on 128-bit lanes.
17910   unsigned NumElts = VT.getVectorNumElements();
17911   unsigned NumLanes = VT.getSizeInBits()/128;
17912   unsigned NumLaneElts = NumElts / NumLanes;
17913   assert((NumLaneElts % 2 == 0) &&
17914          "Vector type should have an even number of elements in each lane");
17915   unsigned HalfLaneElts = NumLaneElts/2;
17916
17917   // View LHS in the form
17918   //   LHS = VECTOR_SHUFFLE A, B, LMask
17919   // If LHS is not a shuffle then pretend it is the shuffle
17920   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
17921   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
17922   // type VT.
17923   SDValue A, B;
17924   SmallVector<int, 16> LMask(NumElts);
17925   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
17926     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
17927       A = LHS.getOperand(0);
17928     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
17929       B = LHS.getOperand(1);
17930     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
17931     std::copy(Mask.begin(), Mask.end(), LMask.begin());
17932   } else {
17933     if (LHS.getOpcode() != ISD::UNDEF)
17934       A = LHS;
17935     for (unsigned i = 0; i != NumElts; ++i)
17936       LMask[i] = i;
17937   }
17938
17939   // Likewise, view RHS in the form
17940   //   RHS = VECTOR_SHUFFLE C, D, RMask
17941   SDValue C, D;
17942   SmallVector<int, 16> RMask(NumElts);
17943   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
17944     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
17945       C = RHS.getOperand(0);
17946     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
17947       D = RHS.getOperand(1);
17948     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
17949     std::copy(Mask.begin(), Mask.end(), RMask.begin());
17950   } else {
17951     if (RHS.getOpcode() != ISD::UNDEF)
17952       C = RHS;
17953     for (unsigned i = 0; i != NumElts; ++i)
17954       RMask[i] = i;
17955   }
17956
17957   // Check that the shuffles are both shuffling the same vectors.
17958   if (!(A == C && B == D) && !(A == D && B == C))
17959     return false;
17960
17961   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
17962   if (!A.getNode() && !B.getNode())
17963     return false;
17964
17965   // If A and B occur in reverse order in RHS, then "swap" them (which means
17966   // rewriting the mask).
17967   if (A != C)
17968     CommuteVectorShuffleMask(RMask, NumElts);
17969
17970   // At this point LHS and RHS are equivalent to
17971   //   LHS = VECTOR_SHUFFLE A, B, LMask
17972   //   RHS = VECTOR_SHUFFLE A, B, RMask
17973   // Check that the masks correspond to performing a horizontal operation.
17974   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
17975     for (unsigned i = 0; i != NumLaneElts; ++i) {
17976       int LIdx = LMask[i+l], RIdx = RMask[i+l];
17977
17978       // Ignore any UNDEF components.
17979       if (LIdx < 0 || RIdx < 0 ||
17980           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
17981           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
17982         continue;
17983
17984       // Check that successive elements are being operated on.  If not, this is
17985       // not a horizontal operation.
17986       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
17987       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
17988       if (!(LIdx == Index && RIdx == Index + 1) &&
17989           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
17990         return false;
17991     }
17992   }
17993
17994   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
17995   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
17996   return true;
17997 }
17998
17999 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18000 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18001                                   const X86Subtarget *Subtarget) {
18002   EVT VT = N->getValueType(0);
18003   SDValue LHS = N->getOperand(0);
18004   SDValue RHS = N->getOperand(1);
18005
18006   // Try to synthesize horizontal adds from adds of shuffles.
18007   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18008        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18009       isHorizontalBinOp(LHS, RHS, true))
18010     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18011   return SDValue();
18012 }
18013
18014 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18015 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18016                                   const X86Subtarget *Subtarget) {
18017   EVT VT = N->getValueType(0);
18018   SDValue LHS = N->getOperand(0);
18019   SDValue RHS = N->getOperand(1);
18020
18021   // Try to synthesize horizontal subs from subs of shuffles.
18022   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18023        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18024       isHorizontalBinOp(LHS, RHS, false))
18025     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18026   return SDValue();
18027 }
18028
18029 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18030 /// X86ISD::FXOR nodes.
18031 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18032   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18033   // F[X]OR(0.0, x) -> x
18034   // F[X]OR(x, 0.0) -> x
18035   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18036     if (C->getValueAPF().isPosZero())
18037       return N->getOperand(1);
18038   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18039     if (C->getValueAPF().isPosZero())
18040       return N->getOperand(0);
18041   return SDValue();
18042 }
18043
18044 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18045 /// X86ISD::FMAX nodes.
18046 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18047   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18048
18049   // Only perform optimizations if UnsafeMath is used.
18050   if (!DAG.getTarget().Options.UnsafeFPMath)
18051     return SDValue();
18052
18053   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18054   // into FMINC and FMAXC, which are Commutative operations.
18055   unsigned NewOp = 0;
18056   switch (N->getOpcode()) {
18057     default: llvm_unreachable("unknown opcode");
18058     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18059     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18060   }
18061
18062   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18063                      N->getOperand(0), N->getOperand(1));
18064 }
18065
18066 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18067 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18068   // FAND(0.0, x) -> 0.0
18069   // FAND(x, 0.0) -> 0.0
18070   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18071     if (C->getValueAPF().isPosZero())
18072       return N->getOperand(0);
18073   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18074     if (C->getValueAPF().isPosZero())
18075       return N->getOperand(1);
18076   return SDValue();
18077 }
18078
18079 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18080 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18081   // FANDN(x, 0.0) -> 0.0
18082   // FANDN(0.0, x) -> x
18083   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18084     if (C->getValueAPF().isPosZero())
18085       return N->getOperand(1);
18086   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18087     if (C->getValueAPF().isPosZero())
18088       return N->getOperand(1);
18089   return SDValue();
18090 }
18091
18092 static SDValue PerformBTCombine(SDNode *N,
18093                                 SelectionDAG &DAG,
18094                                 TargetLowering::DAGCombinerInfo &DCI) {
18095   // BT ignores high bits in the bit index operand.
18096   SDValue Op1 = N->getOperand(1);
18097   if (Op1.hasOneUse()) {
18098     unsigned BitWidth = Op1.getValueSizeInBits();
18099     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18100     APInt KnownZero, KnownOne;
18101     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18102                                           !DCI.isBeforeLegalizeOps());
18103     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18104     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18105         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18106       DCI.CommitTargetLoweringOpt(TLO);
18107   }
18108   return SDValue();
18109 }
18110
18111 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18112   SDValue Op = N->getOperand(0);
18113   if (Op.getOpcode() == ISD::BITCAST)
18114     Op = Op.getOperand(0);
18115   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18116   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18117       VT.getVectorElementType().getSizeInBits() ==
18118       OpVT.getVectorElementType().getSizeInBits()) {
18119     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18120   }
18121   return SDValue();
18122 }
18123
18124 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18125                                                const X86Subtarget *Subtarget) {
18126   EVT VT = N->getValueType(0);
18127   if (!VT.isVector())
18128     return SDValue();
18129
18130   SDValue N0 = N->getOperand(0);
18131   SDValue N1 = N->getOperand(1);
18132   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18133   SDLoc dl(N);
18134
18135   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18136   // both SSE and AVX2 since there is no sign-extended shift right
18137   // operation on a vector with 64-bit elements.
18138   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18139   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18140   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18141       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18142     SDValue N00 = N0.getOperand(0);
18143
18144     // EXTLOAD has a better solution on AVX2,
18145     // it may be replaced with X86ISD::VSEXT node.
18146     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18147       if (!ISD::isNormalLoad(N00.getNode()))
18148         return SDValue();
18149
18150     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18151         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18152                                   N00, N1);
18153       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18154     }
18155   }
18156   return SDValue();
18157 }
18158
18159 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18160                                   TargetLowering::DAGCombinerInfo &DCI,
18161                                   const X86Subtarget *Subtarget) {
18162   if (!DCI.isBeforeLegalizeOps())
18163     return SDValue();
18164
18165   if (!Subtarget->hasFp256())
18166     return SDValue();
18167
18168   EVT VT = N->getValueType(0);
18169   if (VT.isVector() && VT.getSizeInBits() == 256) {
18170     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18171     if (R.getNode())
18172       return R;
18173   }
18174
18175   return SDValue();
18176 }
18177
18178 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18179                                  const X86Subtarget* Subtarget) {
18180   SDLoc dl(N);
18181   EVT VT = N->getValueType(0);
18182
18183   // Let legalize expand this if it isn't a legal type yet.
18184   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18185     return SDValue();
18186
18187   EVT ScalarVT = VT.getScalarType();
18188   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18189       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18190     return SDValue();
18191
18192   SDValue A = N->getOperand(0);
18193   SDValue B = N->getOperand(1);
18194   SDValue C = N->getOperand(2);
18195
18196   bool NegA = (A.getOpcode() == ISD::FNEG);
18197   bool NegB = (B.getOpcode() == ISD::FNEG);
18198   bool NegC = (C.getOpcode() == ISD::FNEG);
18199
18200   // Negative multiplication when NegA xor NegB
18201   bool NegMul = (NegA != NegB);
18202   if (NegA)
18203     A = A.getOperand(0);
18204   if (NegB)
18205     B = B.getOperand(0);
18206   if (NegC)
18207     C = C.getOperand(0);
18208
18209   unsigned Opcode;
18210   if (!NegMul)
18211     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18212   else
18213     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18214
18215   return DAG.getNode(Opcode, dl, VT, A, B, C);
18216 }
18217
18218 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18219                                   TargetLowering::DAGCombinerInfo &DCI,
18220                                   const X86Subtarget *Subtarget) {
18221   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18222   //           (and (i32 x86isd::setcc_carry), 1)
18223   // This eliminates the zext. This transformation is necessary because
18224   // ISD::SETCC is always legalized to i8.
18225   SDLoc dl(N);
18226   SDValue N0 = N->getOperand(0);
18227   EVT VT = N->getValueType(0);
18228
18229   if (N0.getOpcode() == ISD::AND &&
18230       N0.hasOneUse() &&
18231       N0.getOperand(0).hasOneUse()) {
18232     SDValue N00 = N0.getOperand(0);
18233     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18234       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18235       if (!C || C->getZExtValue() != 1)
18236         return SDValue();
18237       return DAG.getNode(ISD::AND, dl, VT,
18238                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18239                                      N00.getOperand(0), N00.getOperand(1)),
18240                          DAG.getConstant(1, VT));
18241     }
18242   }
18243
18244   if (VT.is256BitVector()) {
18245     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18246     if (R.getNode())
18247       return R;
18248   }
18249
18250   return SDValue();
18251 }
18252
18253 // Optimize x == -y --> x+y == 0
18254 //          x != -y --> x+y != 0
18255 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18256   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18257   SDValue LHS = N->getOperand(0);
18258   SDValue RHS = N->getOperand(1);
18259
18260   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18261     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18262       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
18263         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18264                                    LHS.getValueType(), RHS, LHS.getOperand(1));
18265         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18266                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18267       }
18268   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18269     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18270       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
18271         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
18272                                    RHS.getValueType(), LHS, RHS.getOperand(1));
18273         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
18274                             addV, DAG.getConstant(0, addV.getValueType()), CC);
18275       }
18276   return SDValue();
18277 }
18278
18279 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18280 // as "sbb reg,reg", since it can be extended without zext and produces
18281 // an all-ones bit which is more useful than 0/1 in some cases.
18282 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
18283   return DAG.getNode(ISD::AND, DL, MVT::i8,
18284                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18285                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18286                      DAG.getConstant(1, MVT::i8));
18287 }
18288
18289 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
18290 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18291                                    TargetLowering::DAGCombinerInfo &DCI,
18292                                    const X86Subtarget *Subtarget) {
18293   SDLoc DL(N);
18294   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18295   SDValue EFLAGS = N->getOperand(1);
18296
18297   if (CC == X86::COND_A) {
18298     // Try to convert COND_A into COND_B in an attempt to facilitate
18299     // materializing "setb reg".
18300     //
18301     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18302     // cannot take an immediate as its first operand.
18303     //
18304     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
18305         EFLAGS.getValueType().isInteger() &&
18306         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
18307       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
18308                                    EFLAGS.getNode()->getVTList(),
18309                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18310       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18311       return MaterializeSETB(DL, NewEFLAGS, DAG);
18312     }
18313   }
18314
18315   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18316   // a zext and produces an all-ones bit which is more useful than 0/1 in some
18317   // cases.
18318   if (CC == X86::COND_B)
18319     return MaterializeSETB(DL, EFLAGS, DAG);
18320
18321   SDValue Flags;
18322
18323   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18324   if (Flags.getNode()) {
18325     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18326     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18327   }
18328
18329   return SDValue();
18330 }
18331
18332 // Optimize branch condition evaluation.
18333 //
18334 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18335                                     TargetLowering::DAGCombinerInfo &DCI,
18336                                     const X86Subtarget *Subtarget) {
18337   SDLoc DL(N);
18338   SDValue Chain = N->getOperand(0);
18339   SDValue Dest = N->getOperand(1);
18340   SDValue EFLAGS = N->getOperand(3);
18341   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18342
18343   SDValue Flags;
18344
18345   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18346   if (Flags.getNode()) {
18347     SDValue Cond = DAG.getConstant(CC, MVT::i8);
18348     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18349                        Flags);
18350   }
18351
18352   return SDValue();
18353 }
18354
18355 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18356                                         const X86TargetLowering *XTLI) {
18357   SDValue Op0 = N->getOperand(0);
18358   EVT InVT = Op0->getValueType(0);
18359
18360   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
18361   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
18362     SDLoc dl(N);
18363     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
18364     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18365     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18366   }
18367
18368   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18369   // a 32-bit target where SSE doesn't support i64->FP operations.
18370   if (Op0.getOpcode() == ISD::LOAD) {
18371     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18372     EVT VT = Ld->getValueType(0);
18373     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18374         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18375         !XTLI->getSubtarget()->is64Bit() &&
18376         !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
18377       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18378                                           Ld->getChain(), Op0, DAG);
18379       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18380       return FILDChain;
18381     }
18382   }
18383   return SDValue();
18384 }
18385
18386 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18387 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18388                                  X86TargetLowering::DAGCombinerInfo &DCI) {
18389   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18390   // the result is either zero or one (depending on the input carry bit).
18391   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18392   if (X86::isZeroNode(N->getOperand(0)) &&
18393       X86::isZeroNode(N->getOperand(1)) &&
18394       // We don't have a good way to replace an EFLAGS use, so only do this when
18395       // dead right now.
18396       SDValue(N, 1).use_empty()) {
18397     SDLoc DL(N);
18398     EVT VT = N->getValueType(0);
18399     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
18400     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
18401                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
18402                                            DAG.getConstant(X86::COND_B,MVT::i8),
18403                                            N->getOperand(2)),
18404                                DAG.getConstant(1, VT));
18405     return DCI.CombineTo(N, Res1, CarryOut);
18406   }
18407
18408   return SDValue();
18409 }
18410
18411 // fold (add Y, (sete  X, 0)) -> adc  0, Y
18412 //      (add Y, (setne X, 0)) -> sbb -1, Y
18413 //      (sub (sete  X, 0), Y) -> sbb  0, Y
18414 //      (sub (setne X, 0), Y) -> adc -1, Y
18415 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
18416   SDLoc DL(N);
18417
18418   // Look through ZExts.
18419   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
18420   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
18421     return SDValue();
18422
18423   SDValue SetCC = Ext.getOperand(0);
18424   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
18425     return SDValue();
18426
18427   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
18428   if (CC != X86::COND_E && CC != X86::COND_NE)
18429     return SDValue();
18430
18431   SDValue Cmp = SetCC.getOperand(1);
18432   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
18433       !X86::isZeroNode(Cmp.getOperand(1)) ||
18434       !Cmp.getOperand(0).getValueType().isInteger())
18435     return SDValue();
18436
18437   SDValue CmpOp0 = Cmp.getOperand(0);
18438   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
18439                                DAG.getConstant(1, CmpOp0.getValueType()));
18440
18441   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
18442   if (CC == X86::COND_NE)
18443     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
18444                        DL, OtherVal.getValueType(), OtherVal,
18445                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
18446   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
18447                      DL, OtherVal.getValueType(), OtherVal,
18448                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
18449 }
18450
18451 /// PerformADDCombine - Do target-specific dag combines on integer adds.
18452 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
18453                                  const X86Subtarget *Subtarget) {
18454   EVT VT = N->getValueType(0);
18455   SDValue Op0 = N->getOperand(0);
18456   SDValue Op1 = N->getOperand(1);
18457
18458   // Try to synthesize horizontal adds from adds of shuffles.
18459   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18460        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18461       isHorizontalBinOp(Op0, Op1, true))
18462     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
18463
18464   return OptimizeConditionalInDecrement(N, DAG);
18465 }
18466
18467 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
18468                                  const X86Subtarget *Subtarget) {
18469   SDValue Op0 = N->getOperand(0);
18470   SDValue Op1 = N->getOperand(1);
18471
18472   // X86 can't encode an immediate LHS of a sub. See if we can push the
18473   // negation into a preceding instruction.
18474   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
18475     // If the RHS of the sub is a XOR with one use and a constant, invert the
18476     // immediate. Then add one to the LHS of the sub so we can turn
18477     // X-Y -> X+~Y+1, saving one register.
18478     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
18479         isa<ConstantSDNode>(Op1.getOperand(1))) {
18480       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
18481       EVT VT = Op0.getValueType();
18482       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
18483                                    Op1.getOperand(0),
18484                                    DAG.getConstant(~XorC, VT));
18485       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
18486                          DAG.getConstant(C->getAPIntValue()+1, VT));
18487     }
18488   }
18489
18490   // Try to synthesize horizontal adds from adds of shuffles.
18491   EVT VT = N->getValueType(0);
18492   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
18493        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
18494       isHorizontalBinOp(Op0, Op1, true))
18495     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
18496
18497   return OptimizeConditionalInDecrement(N, DAG);
18498 }
18499
18500 /// performVZEXTCombine - Performs build vector combines
18501 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
18502                                         TargetLowering::DAGCombinerInfo &DCI,
18503                                         const X86Subtarget *Subtarget) {
18504   // (vzext (bitcast (vzext (x)) -> (vzext x)
18505   SDValue In = N->getOperand(0);
18506   while (In.getOpcode() == ISD::BITCAST)
18507     In = In.getOperand(0);
18508
18509   if (In.getOpcode() != X86ISD::VZEXT)
18510     return SDValue();
18511
18512   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
18513                      In.getOperand(0));
18514 }
18515
18516 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
18517                                              DAGCombinerInfo &DCI) const {
18518   SelectionDAG &DAG = DCI.DAG;
18519   switch (N->getOpcode()) {
18520   default: break;
18521   case ISD::EXTRACT_VECTOR_ELT:
18522     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
18523   case ISD::VSELECT:
18524   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
18525   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
18526   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
18527   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
18528   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
18529   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
18530   case ISD::SHL:
18531   case ISD::SRA:
18532   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
18533   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
18534   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
18535   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
18536   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
18537   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
18538   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
18539   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
18540   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
18541   case X86ISD::FXOR:
18542   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
18543   case X86ISD::FMIN:
18544   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
18545   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
18546   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
18547   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
18548   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
18549   case ISD::ANY_EXTEND:
18550   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
18551   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
18552   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
18553   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
18554   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
18555   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
18556   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
18557   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
18558   case X86ISD::SHUFP:       // Handle all target specific shuffles
18559   case X86ISD::PALIGNR:
18560   case X86ISD::UNPCKH:
18561   case X86ISD::UNPCKL:
18562   case X86ISD::MOVHLPS:
18563   case X86ISD::MOVLHPS:
18564   case X86ISD::PSHUFD:
18565   case X86ISD::PSHUFHW:
18566   case X86ISD::PSHUFLW:
18567   case X86ISD::MOVSS:
18568   case X86ISD::MOVSD:
18569   case X86ISD::VPERMILP:
18570   case X86ISD::VPERM2X128:
18571   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
18572   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
18573   }
18574
18575   return SDValue();
18576 }
18577
18578 /// isTypeDesirableForOp - Return true if the target has native support for
18579 /// the specified value type and it is 'desirable' to use the type for the
18580 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
18581 /// instruction encodings are longer and some i16 instructions are slow.
18582 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
18583   if (!isTypeLegal(VT))
18584     return false;
18585   if (VT != MVT::i16)
18586     return true;
18587
18588   switch (Opc) {
18589   default:
18590     return true;
18591   case ISD::LOAD:
18592   case ISD::SIGN_EXTEND:
18593   case ISD::ZERO_EXTEND:
18594   case ISD::ANY_EXTEND:
18595   case ISD::SHL:
18596   case ISD::SRL:
18597   case ISD::SUB:
18598   case ISD::ADD:
18599   case ISD::MUL:
18600   case ISD::AND:
18601   case ISD::OR:
18602   case ISD::XOR:
18603     return false;
18604   }
18605 }
18606
18607 /// IsDesirableToPromoteOp - This method query the target whether it is
18608 /// beneficial for dag combiner to promote the specified node. If true, it
18609 /// should return the desired promotion type by reference.
18610 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
18611   EVT VT = Op.getValueType();
18612   if (VT != MVT::i16)
18613     return false;
18614
18615   bool Promote = false;
18616   bool Commute = false;
18617   switch (Op.getOpcode()) {
18618   default: break;
18619   case ISD::LOAD: {
18620     LoadSDNode *LD = cast<LoadSDNode>(Op);
18621     // If the non-extending load has a single use and it's not live out, then it
18622     // might be folded.
18623     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
18624                                                      Op.hasOneUse()*/) {
18625       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
18626              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
18627         // The only case where we'd want to promote LOAD (rather then it being
18628         // promoted as an operand is when it's only use is liveout.
18629         if (UI->getOpcode() != ISD::CopyToReg)
18630           return false;
18631       }
18632     }
18633     Promote = true;
18634     break;
18635   }
18636   case ISD::SIGN_EXTEND:
18637   case ISD::ZERO_EXTEND:
18638   case ISD::ANY_EXTEND:
18639     Promote = true;
18640     break;
18641   case ISD::SHL:
18642   case ISD::SRL: {
18643     SDValue N0 = Op.getOperand(0);
18644     // Look out for (store (shl (load), x)).
18645     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
18646       return false;
18647     Promote = true;
18648     break;
18649   }
18650   case ISD::ADD:
18651   case ISD::MUL:
18652   case ISD::AND:
18653   case ISD::OR:
18654   case ISD::XOR:
18655     Commute = true;
18656     // fallthrough
18657   case ISD::SUB: {
18658     SDValue N0 = Op.getOperand(0);
18659     SDValue N1 = Op.getOperand(1);
18660     if (!Commute && MayFoldLoad(N1))
18661       return false;
18662     // Avoid disabling potential load folding opportunities.
18663     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
18664       return false;
18665     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
18666       return false;
18667     Promote = true;
18668   }
18669   }
18670
18671   PVT = MVT::i32;
18672   return Promote;
18673 }
18674
18675 //===----------------------------------------------------------------------===//
18676 //                           X86 Inline Assembly Support
18677 //===----------------------------------------------------------------------===//
18678
18679 namespace {
18680   // Helper to match a string separated by whitespace.
18681   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
18682     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
18683
18684     for (unsigned i = 0, e = args.size(); i != e; ++i) {
18685       StringRef piece(*args[i]);
18686       if (!s.startswith(piece)) // Check if the piece matches.
18687         return false;
18688
18689       s = s.substr(piece.size());
18690       StringRef::size_type pos = s.find_first_not_of(" \t");
18691       if (pos == 0) // We matched a prefix.
18692         return false;
18693
18694       s = s.substr(pos);
18695     }
18696
18697     return s.empty();
18698   }
18699   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
18700 }
18701
18702 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
18703   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
18704
18705   std::string AsmStr = IA->getAsmString();
18706
18707   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
18708   if (!Ty || Ty->getBitWidth() % 16 != 0)
18709     return false;
18710
18711   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
18712   SmallVector<StringRef, 4> AsmPieces;
18713   SplitString(AsmStr, AsmPieces, ";\n");
18714
18715   switch (AsmPieces.size()) {
18716   default: return false;
18717   case 1:
18718     // FIXME: this should verify that we are targeting a 486 or better.  If not,
18719     // we will turn this bswap into something that will be lowered to logical
18720     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
18721     // lower so don't worry about this.
18722     // bswap $0
18723     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
18724         matchAsm(AsmPieces[0], "bswapl", "$0") ||
18725         matchAsm(AsmPieces[0], "bswapq", "$0") ||
18726         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
18727         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
18728         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
18729       // No need to check constraints, nothing other than the equivalent of
18730       // "=r,0" would be valid here.
18731       return IntrinsicLowering::LowerToByteSwap(CI);
18732     }
18733
18734     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
18735     if (CI->getType()->isIntegerTy(16) &&
18736         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
18737         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
18738          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
18739       AsmPieces.clear();
18740       const std::string &ConstraintsStr = IA->getConstraintString();
18741       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
18742       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
18743       if (AsmPieces.size() == 4 &&
18744           AsmPieces[0] == "~{cc}" &&
18745           AsmPieces[1] == "~{dirflag}" &&
18746           AsmPieces[2] == "~{flags}" &&
18747           AsmPieces[3] == "~{fpsr}")
18748       return IntrinsicLowering::LowerToByteSwap(CI);
18749     }
18750     break;
18751   case 3:
18752     if (CI->getType()->isIntegerTy(32) &&
18753         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
18754         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
18755         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
18756         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
18757       AsmPieces.clear();
18758       const std::string &ConstraintsStr = IA->getConstraintString();
18759       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
18760       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
18761       if (AsmPieces.size() == 4 &&
18762           AsmPieces[0] == "~{cc}" &&
18763           AsmPieces[1] == "~{dirflag}" &&
18764           AsmPieces[2] == "~{flags}" &&
18765           AsmPieces[3] == "~{fpsr}")
18766         return IntrinsicLowering::LowerToByteSwap(CI);
18767     }
18768
18769     if (CI->getType()->isIntegerTy(64)) {
18770       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
18771       if (Constraints.size() >= 2 &&
18772           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
18773           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
18774         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
18775         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
18776             matchAsm(AsmPieces[1], "bswap", "%edx") &&
18777             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
18778           return IntrinsicLowering::LowerToByteSwap(CI);
18779       }
18780     }
18781     break;
18782   }
18783   return false;
18784 }
18785
18786 /// getConstraintType - Given a constraint letter, return the type of
18787 /// constraint it is for this target.
18788 X86TargetLowering::ConstraintType
18789 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
18790   if (Constraint.size() == 1) {
18791     switch (Constraint[0]) {
18792     case 'R':
18793     case 'q':
18794     case 'Q':
18795     case 'f':
18796     case 't':
18797     case 'u':
18798     case 'y':
18799     case 'x':
18800     case 'Y':
18801     case 'l':
18802       return C_RegisterClass;
18803     case 'a':
18804     case 'b':
18805     case 'c':
18806     case 'd':
18807     case 'S':
18808     case 'D':
18809     case 'A':
18810       return C_Register;
18811     case 'I':
18812     case 'J':
18813     case 'K':
18814     case 'L':
18815     case 'M':
18816     case 'N':
18817     case 'G':
18818     case 'C':
18819     case 'e':
18820     case 'Z':
18821       return C_Other;
18822     default:
18823       break;
18824     }
18825   }
18826   return TargetLowering::getConstraintType(Constraint);
18827 }
18828
18829 /// Examine constraint type and operand type and determine a weight value.
18830 /// This object must already have been set up with the operand type
18831 /// and the current alternative constraint selected.
18832 TargetLowering::ConstraintWeight
18833   X86TargetLowering::getSingleConstraintMatchWeight(
18834     AsmOperandInfo &info, const char *constraint) const {
18835   ConstraintWeight weight = CW_Invalid;
18836   Value *CallOperandVal = info.CallOperandVal;
18837     // If we don't have a value, we can't do a match,
18838     // but allow it at the lowest weight.
18839   if (CallOperandVal == NULL)
18840     return CW_Default;
18841   Type *type = CallOperandVal->getType();
18842   // Look at the constraint type.
18843   switch (*constraint) {
18844   default:
18845     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
18846   case 'R':
18847   case 'q':
18848   case 'Q':
18849   case 'a':
18850   case 'b':
18851   case 'c':
18852   case 'd':
18853   case 'S':
18854   case 'D':
18855   case 'A':
18856     if (CallOperandVal->getType()->isIntegerTy())
18857       weight = CW_SpecificReg;
18858     break;
18859   case 'f':
18860   case 't':
18861   case 'u':
18862     if (type->isFloatingPointTy())
18863       weight = CW_SpecificReg;
18864     break;
18865   case 'y':
18866     if (type->isX86_MMXTy() && Subtarget->hasMMX())
18867       weight = CW_SpecificReg;
18868     break;
18869   case 'x':
18870   case 'Y':
18871     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
18872         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
18873       weight = CW_Register;
18874     break;
18875   case 'I':
18876     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
18877       if (C->getZExtValue() <= 31)
18878         weight = CW_Constant;
18879     }
18880     break;
18881   case 'J':
18882     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18883       if (C->getZExtValue() <= 63)
18884         weight = CW_Constant;
18885     }
18886     break;
18887   case 'K':
18888     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18889       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
18890         weight = CW_Constant;
18891     }
18892     break;
18893   case 'L':
18894     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18895       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
18896         weight = CW_Constant;
18897     }
18898     break;
18899   case 'M':
18900     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18901       if (C->getZExtValue() <= 3)
18902         weight = CW_Constant;
18903     }
18904     break;
18905   case 'N':
18906     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18907       if (C->getZExtValue() <= 0xff)
18908         weight = CW_Constant;
18909     }
18910     break;
18911   case 'G':
18912   case 'C':
18913     if (dyn_cast<ConstantFP>(CallOperandVal)) {
18914       weight = CW_Constant;
18915     }
18916     break;
18917   case 'e':
18918     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18919       if ((C->getSExtValue() >= -0x80000000LL) &&
18920           (C->getSExtValue() <= 0x7fffffffLL))
18921         weight = CW_Constant;
18922     }
18923     break;
18924   case 'Z':
18925     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
18926       if (C->getZExtValue() <= 0xffffffff)
18927         weight = CW_Constant;
18928     }
18929     break;
18930   }
18931   return weight;
18932 }
18933
18934 /// LowerXConstraint - try to replace an X constraint, which matches anything,
18935 /// with another that has more specific requirements based on the type of the
18936 /// corresponding operand.
18937 const char *X86TargetLowering::
18938 LowerXConstraint(EVT ConstraintVT) const {
18939   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
18940   // 'f' like normal targets.
18941   if (ConstraintVT.isFloatingPoint()) {
18942     if (Subtarget->hasSSE2())
18943       return "Y";
18944     if (Subtarget->hasSSE1())
18945       return "x";
18946   }
18947
18948   return TargetLowering::LowerXConstraint(ConstraintVT);
18949 }
18950
18951 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
18952 /// vector.  If it is invalid, don't add anything to Ops.
18953 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
18954                                                      std::string &Constraint,
18955                                                      std::vector<SDValue>&Ops,
18956                                                      SelectionDAG &DAG) const {
18957   SDValue Result(0, 0);
18958
18959   // Only support length 1 constraints for now.
18960   if (Constraint.length() > 1) return;
18961
18962   char ConstraintLetter = Constraint[0];
18963   switch (ConstraintLetter) {
18964   default: break;
18965   case 'I':
18966     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
18967       if (C->getZExtValue() <= 31) {
18968         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
18969         break;
18970       }
18971     }
18972     return;
18973   case 'J':
18974     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
18975       if (C->getZExtValue() <= 63) {
18976         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
18977         break;
18978       }
18979     }
18980     return;
18981   case 'K':
18982     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
18983       if (isInt<8>(C->getSExtValue())) {
18984         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
18985         break;
18986       }
18987     }
18988     return;
18989   case 'N':
18990     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
18991       if (C->getZExtValue() <= 255) {
18992         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
18993         break;
18994       }
18995     }
18996     return;
18997   case 'e': {
18998     // 32-bit signed value
18999     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19000       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19001                                            C->getSExtValue())) {
19002         // Widen to 64 bits here to get it sign extended.
19003         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19004         break;
19005       }
19006     // FIXME gcc accepts some relocatable values here too, but only in certain
19007     // memory models; it's complicated.
19008     }
19009     return;
19010   }
19011   case 'Z': {
19012     // 32-bit unsigned value
19013     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19014       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19015                                            C->getZExtValue())) {
19016         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19017         break;
19018       }
19019     }
19020     // FIXME gcc accepts some relocatable values here too, but only in certain
19021     // memory models; it's complicated.
19022     return;
19023   }
19024   case 'i': {
19025     // Literal immediates are always ok.
19026     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19027       // Widen to 64 bits here to get it sign extended.
19028       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19029       break;
19030     }
19031
19032     // In any sort of PIC mode addresses need to be computed at runtime by
19033     // adding in a register or some sort of table lookup.  These can't
19034     // be used as immediates.
19035     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19036       return;
19037
19038     // If we are in non-pic codegen mode, we allow the address of a global (with
19039     // an optional displacement) to be used with 'i'.
19040     GlobalAddressSDNode *GA = 0;
19041     int64_t Offset = 0;
19042
19043     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19044     while (1) {
19045       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19046         Offset += GA->getOffset();
19047         break;
19048       } else if (Op.getOpcode() == ISD::ADD) {
19049         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19050           Offset += C->getZExtValue();
19051           Op = Op.getOperand(0);
19052           continue;
19053         }
19054       } else if (Op.getOpcode() == ISD::SUB) {
19055         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19056           Offset += -C->getZExtValue();
19057           Op = Op.getOperand(0);
19058           continue;
19059         }
19060       }
19061
19062       // Otherwise, this isn't something we can handle, reject it.
19063       return;
19064     }
19065
19066     const GlobalValue *GV = GA->getGlobal();
19067     // If we require an extra load to get this address, as in PIC mode, we
19068     // can't accept it.
19069     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19070                                                         getTargetMachine())))
19071       return;
19072
19073     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19074                                         GA->getValueType(0), Offset);
19075     break;
19076   }
19077   }
19078
19079   if (Result.getNode()) {
19080     Ops.push_back(Result);
19081     return;
19082   }
19083   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19084 }
19085
19086 std::pair<unsigned, const TargetRegisterClass*>
19087 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19088                                                 MVT VT) const {
19089   // First, see if this is a constraint that directly corresponds to an LLVM
19090   // register class.
19091   if (Constraint.size() == 1) {
19092     // GCC Constraint Letters
19093     switch (Constraint[0]) {
19094     default: break;
19095       // TODO: Slight differences here in allocation order and leaving
19096       // RIP in the class. Do they matter any more here than they do
19097       // in the normal allocation?
19098     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19099       if (Subtarget->is64Bit()) {
19100         if (VT == MVT::i32 || VT == MVT::f32)
19101           return std::make_pair(0U, &X86::GR32RegClass);
19102         if (VT == MVT::i16)
19103           return std::make_pair(0U, &X86::GR16RegClass);
19104         if (VT == MVT::i8 || VT == MVT::i1)
19105           return std::make_pair(0U, &X86::GR8RegClass);
19106         if (VT == MVT::i64 || VT == MVT::f64)
19107           return std::make_pair(0U, &X86::GR64RegClass);
19108         break;
19109       }
19110       // 32-bit fallthrough
19111     case 'Q':   // Q_REGS
19112       if (VT == MVT::i32 || VT == MVT::f32)
19113         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19114       if (VT == MVT::i16)
19115         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19116       if (VT == MVT::i8 || VT == MVT::i1)
19117         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19118       if (VT == MVT::i64)
19119         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19120       break;
19121     case 'r':   // GENERAL_REGS
19122     case 'l':   // INDEX_REGS
19123       if (VT == MVT::i8 || VT == MVT::i1)
19124         return std::make_pair(0U, &X86::GR8RegClass);
19125       if (VT == MVT::i16)
19126         return std::make_pair(0U, &X86::GR16RegClass);
19127       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19128         return std::make_pair(0U, &X86::GR32RegClass);
19129       return std::make_pair(0U, &X86::GR64RegClass);
19130     case 'R':   // LEGACY_REGS
19131       if (VT == MVT::i8 || VT == MVT::i1)
19132         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19133       if (VT == MVT::i16)
19134         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19135       if (VT == MVT::i32 || !Subtarget->is64Bit())
19136         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19137       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19138     case 'f':  // FP Stack registers.
19139       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19140       // value to the correct fpstack register class.
19141       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19142         return std::make_pair(0U, &X86::RFP32RegClass);
19143       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19144         return std::make_pair(0U, &X86::RFP64RegClass);
19145       return std::make_pair(0U, &X86::RFP80RegClass);
19146     case 'y':   // MMX_REGS if MMX allowed.
19147       if (!Subtarget->hasMMX()) break;
19148       return std::make_pair(0U, &X86::VR64RegClass);
19149     case 'Y':   // SSE_REGS if SSE2 allowed
19150       if (!Subtarget->hasSSE2()) break;
19151       // FALL THROUGH.
19152     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19153       if (!Subtarget->hasSSE1()) break;
19154
19155       switch (VT.SimpleTy) {
19156       default: break;
19157       // Scalar SSE types.
19158       case MVT::f32:
19159       case MVT::i32:
19160         return std::make_pair(0U, &X86::FR32RegClass);
19161       case MVT::f64:
19162       case MVT::i64:
19163         return std::make_pair(0U, &X86::FR64RegClass);
19164       // Vector types.
19165       case MVT::v16i8:
19166       case MVT::v8i16:
19167       case MVT::v4i32:
19168       case MVT::v2i64:
19169       case MVT::v4f32:
19170       case MVT::v2f64:
19171         return std::make_pair(0U, &X86::VR128RegClass);
19172       // AVX types.
19173       case MVT::v32i8:
19174       case MVT::v16i16:
19175       case MVT::v8i32:
19176       case MVT::v4i64:
19177       case MVT::v8f32:
19178       case MVT::v4f64:
19179         return std::make_pair(0U, &X86::VR256RegClass);
19180       case MVT::v8f64:
19181       case MVT::v16f32:
19182       case MVT::v16i32:
19183       case MVT::v8i64:
19184         return std::make_pair(0U, &X86::VR512RegClass);
19185       }
19186       break;
19187     }
19188   }
19189
19190   // Use the default implementation in TargetLowering to convert the register
19191   // constraint into a member of a register class.
19192   std::pair<unsigned, const TargetRegisterClass*> Res;
19193   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19194
19195   // Not found as a standard register?
19196   if (Res.second == 0) {
19197     // Map st(0) -> st(7) -> ST0
19198     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19199         tolower(Constraint[1]) == 's' &&
19200         tolower(Constraint[2]) == 't' &&
19201         Constraint[3] == '(' &&
19202         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19203         Constraint[5] == ')' &&
19204         Constraint[6] == '}') {
19205
19206       Res.first = X86::ST0+Constraint[4]-'0';
19207       Res.second = &X86::RFP80RegClass;
19208       return Res;
19209     }
19210
19211     // GCC allows "st(0)" to be called just plain "st".
19212     if (StringRef("{st}").equals_lower(Constraint)) {
19213       Res.first = X86::ST0;
19214       Res.second = &X86::RFP80RegClass;
19215       return Res;
19216     }
19217
19218     // flags -> EFLAGS
19219     if (StringRef("{flags}").equals_lower(Constraint)) {
19220       Res.first = X86::EFLAGS;
19221       Res.second = &X86::CCRRegClass;
19222       return Res;
19223     }
19224
19225     // 'A' means EAX + EDX.
19226     if (Constraint == "A") {
19227       Res.first = X86::EAX;
19228       Res.second = &X86::GR32_ADRegClass;
19229       return Res;
19230     }
19231     return Res;
19232   }
19233
19234   // Otherwise, check to see if this is a register class of the wrong value
19235   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19236   // turn into {ax},{dx}.
19237   if (Res.second->hasType(VT))
19238     return Res;   // Correct type already, nothing to do.
19239
19240   // All of the single-register GCC register classes map their values onto
19241   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
19242   // really want an 8-bit or 32-bit register, map to the appropriate register
19243   // class and return the appropriate register.
19244   if (Res.second == &X86::GR16RegClass) {
19245     if (VT == MVT::i8 || VT == MVT::i1) {
19246       unsigned DestReg = 0;
19247       switch (Res.first) {
19248       default: break;
19249       case X86::AX: DestReg = X86::AL; break;
19250       case X86::DX: DestReg = X86::DL; break;
19251       case X86::CX: DestReg = X86::CL; break;
19252       case X86::BX: DestReg = X86::BL; break;
19253       }
19254       if (DestReg) {
19255         Res.first = DestReg;
19256         Res.second = &X86::GR8RegClass;
19257       }
19258     } else if (VT == MVT::i32 || VT == MVT::f32) {
19259       unsigned DestReg = 0;
19260       switch (Res.first) {
19261       default: break;
19262       case X86::AX: DestReg = X86::EAX; break;
19263       case X86::DX: DestReg = X86::EDX; break;
19264       case X86::CX: DestReg = X86::ECX; break;
19265       case X86::BX: DestReg = X86::EBX; break;
19266       case X86::SI: DestReg = X86::ESI; break;
19267       case X86::DI: DestReg = X86::EDI; break;
19268       case X86::BP: DestReg = X86::EBP; break;
19269       case X86::SP: DestReg = X86::ESP; break;
19270       }
19271       if (DestReg) {
19272         Res.first = DestReg;
19273         Res.second = &X86::GR32RegClass;
19274       }
19275     } else if (VT == MVT::i64 || VT == MVT::f64) {
19276       unsigned DestReg = 0;
19277       switch (Res.first) {
19278       default: break;
19279       case X86::AX: DestReg = X86::RAX; break;
19280       case X86::DX: DestReg = X86::RDX; break;
19281       case X86::CX: DestReg = X86::RCX; break;
19282       case X86::BX: DestReg = X86::RBX; break;
19283       case X86::SI: DestReg = X86::RSI; break;
19284       case X86::DI: DestReg = X86::RDI; break;
19285       case X86::BP: DestReg = X86::RBP; break;
19286       case X86::SP: DestReg = X86::RSP; break;
19287       }
19288       if (DestReg) {
19289         Res.first = DestReg;
19290         Res.second = &X86::GR64RegClass;
19291       }
19292     }
19293   } else if (Res.second == &X86::FR32RegClass ||
19294              Res.second == &X86::FR64RegClass ||
19295              Res.second == &X86::VR128RegClass ||
19296              Res.second == &X86::VR256RegClass ||
19297              Res.second == &X86::FR32XRegClass ||
19298              Res.second == &X86::FR64XRegClass ||
19299              Res.second == &X86::VR128XRegClass ||
19300              Res.second == &X86::VR256XRegClass ||
19301              Res.second == &X86::VR512RegClass) {
19302     // Handle references to XMM physical registers that got mapped into the
19303     // wrong class.  This can happen with constraints like {xmm0} where the
19304     // target independent register mapper will just pick the first match it can
19305     // find, ignoring the required type.
19306
19307     if (VT == MVT::f32 || VT == MVT::i32)
19308       Res.second = &X86::FR32RegClass;
19309     else if (VT == MVT::f64 || VT == MVT::i64)
19310       Res.second = &X86::FR64RegClass;
19311     else if (X86::VR128RegClass.hasType(VT))
19312       Res.second = &X86::VR128RegClass;
19313     else if (X86::VR256RegClass.hasType(VT))
19314       Res.second = &X86::VR256RegClass;
19315     else if (X86::VR512RegClass.hasType(VT))
19316       Res.second = &X86::VR512RegClass;
19317   }
19318
19319   return Res;
19320 }