a41faab73b4bf6940253ae7cb331aaae32090f2f
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86ISelLowering.h"
17 #include "Utils/X86ShuffleDecode.h"
18 #include "X86.h"
19 #include "X86CallingConv.h"
20 #include "X86InstrBuilder.h"
21 #include "X86TargetMachine.h"
22 #include "X86TargetObjectFile.h"
23 #include "llvm/ADT/SmallSet.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/ADT/VariadicFunction.h"
27 #include "llvm/CodeGen/IntrinsicLowering.h"
28 #include "llvm/CodeGen/MachineFrameInfo.h"
29 #include "llvm/CodeGen/MachineFunction.h"
30 #include "llvm/CodeGen/MachineInstrBuilder.h"
31 #include "llvm/CodeGen/MachineJumpTableInfo.h"
32 #include "llvm/CodeGen/MachineModuleInfo.h"
33 #include "llvm/CodeGen/MachineRegisterInfo.h"
34 #include "llvm/IR/CallingConv.h"
35 #include "llvm/IR/Constants.h"
36 #include "llvm/IR/DerivedTypes.h"
37 #include "llvm/IR/Function.h"
38 #include "llvm/IR/GlobalAlias.h"
39 #include "llvm/IR/GlobalVariable.h"
40 #include "llvm/IR/Instructions.h"
41 #include "llvm/IR/Intrinsics.h"
42 #include "llvm/MC/MCAsmInfo.h"
43 #include "llvm/MC/MCContext.h"
44 #include "llvm/MC/MCExpr.h"
45 #include "llvm/MC/MCSymbol.h"
46 #include "llvm/Support/CallSite.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/MathExtras.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include <bitset>
52 #include <cctype>
53 using namespace llvm;
54
55 STATISTIC(NumTailCalls, "Number of tail calls");
56
57 // Forward declarations.
58 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
59                        SDValue V2);
60
61 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62                                 SelectionDAG &DAG, SDLoc dl,
63                                 unsigned vectorWidth) {
64   assert((vectorWidth == 128 || vectorWidth == 256) &&
65          "Unsupported vector width");
66   EVT VT = Vec.getValueType();
67   EVT ElVT = VT.getVectorElementType();
68   unsigned Factor = VT.getSizeInBits()/vectorWidth;
69   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70                                   VT.getVectorNumElements()/Factor);
71
72   // Extract from UNDEF is UNDEF.
73   if (Vec.getOpcode() == ISD::UNDEF)
74     return DAG.getUNDEF(ResultVT);
75
76   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
77   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
78
79   // This is the index of the first element of the vectorWidth-bit chunk
80   // we want.
81   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
82                                * ElemsPerChunk);
83
84   // If the input is a buildvector just emit a smaller one.
85   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87                        Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
89   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
90   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91                                VecIdx);
92
93   return Result;
94
95 }
96 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
97 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99 /// instructions or a simple subregister reference. Idx is an index in the
100 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
101 /// lowering EXTRACT_VECTOR_ELT operations easier.
102 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103                                    SelectionDAG &DAG, SDLoc dl) {
104   assert((Vec.getValueType().is256BitVector() ||
105           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
106   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
107 }
108
109 /// Generate a DAG to grab 256-bits from a 512-bit vector.
110 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111                                    SelectionDAG &DAG, SDLoc dl) {
112   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114 }
115
116 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117                                unsigned IdxVal, SelectionDAG &DAG,
118                                SDLoc dl, unsigned vectorWidth) {
119   assert((vectorWidth == 128 || vectorWidth == 256) &&
120          "Unsupported vector width");
121   // Inserting UNDEF is Result
122   if (Vec.getOpcode() == ISD::UNDEF)
123     return Result;
124   EVT VT = Vec.getValueType();
125   EVT ElVT = VT.getVectorElementType();
126   EVT ResultVT = Result.getValueType();
127
128   // Insert the relevant vectorWidth bits.
129   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131   // This is the index of the first element of the vectorWidth-bit chunk
132   // we want.
133   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134                                * ElemsPerChunk);
135
136   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138                      VecIdx);
139 }
140 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
141 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
143 /// simple superregister reference.  Idx is an index in the 128 bits
144 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
145 /// lowering INSERT_VECTOR_ELT operations easier.
146 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147                                   unsigned IdxVal, SelectionDAG &DAG,
148                                   SDLoc dl) {
149   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151 }
152
153 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154                                   unsigned IdxVal, SelectionDAG &DAG,
155                                   SDLoc dl) {
156   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
158 }
159
160 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161 /// instructions. This is used because creating CONCAT_VECTOR nodes of
162 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163 /// large BUILD_VECTORS.
164 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165                                    unsigned NumElems, SelectionDAG &DAG,
166                                    SDLoc dl) {
167   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
169 }
170
171 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172                                    unsigned NumElems, SelectionDAG &DAG,
173                                    SDLoc dl) {
174   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176 }
177
178 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
179   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180   bool is64Bit = Subtarget->is64Bit();
181
182   if (Subtarget->isTargetMacho()) {
183     if (is64Bit)
184       return new X86_64MachoTargetObjectFile();
185     return new TargetLoweringObjectFileMachO();
186   }
187
188   if (Subtarget->isTargetLinux())
189     return new X86LinuxTargetObjectFile();
190   if (Subtarget->isTargetELF())
191     return new TargetLoweringObjectFileELF();
192   if (Subtarget->isTargetCOFF())
193     return new TargetLoweringObjectFileCOFF();
194   llvm_unreachable("unknown subtarget type");
195 }
196
197 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
198   : TargetLowering(TM, createTLOF(TM)) {
199   Subtarget = &TM.getSubtarget<X86Subtarget>();
200   X86ScalarSSEf64 = Subtarget->hasSSE2();
201   X86ScalarSSEf32 = Subtarget->hasSSE1();
202   TD = getDataLayout();
203
204   resetOperationActions();
205 }
206
207 void X86TargetLowering::resetOperationActions() {
208   const TargetMachine &TM = getTargetMachine();
209   static bool FirstTimeThrough = true;
210
211   // If none of the target options have changed, then we don't need to reset the
212   // operation actions.
213   if (!FirstTimeThrough && TO == TM.Options) return;
214
215   if (!FirstTimeThrough) {
216     // Reinitialize the actions.
217     initActions();
218     FirstTimeThrough = false;
219   }
220
221   TO = TM.Options;
222
223   // Set up the TargetLowering object.
224   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
225
226   // X86 is weird, it always uses i8 for shift amounts and setcc results.
227   setBooleanContents(ZeroOrOneBooleanContent);
228   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
229   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
230
231   // For 64-bit since we have so many registers use the ILP scheduler, for
232   // 32-bit code use the register pressure specific scheduling.
233   // For Atom, always use ILP scheduling.
234   if (Subtarget->isAtom())
235     setSchedulingPreference(Sched::ILP);
236   else if (Subtarget->is64Bit())
237     setSchedulingPreference(Sched::ILP);
238   else
239     setSchedulingPreference(Sched::RegPressure);
240   const X86RegisterInfo *RegInfo =
241     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
242   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
243
244   // Bypass expensive divides on Atom when compiling with O2
245   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
246     addBypassSlowDiv(32, 8);
247     if (Subtarget->is64Bit())
248       addBypassSlowDiv(64, 16);
249   }
250
251   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
252     // Setup Windows compiler runtime calls.
253     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
254     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
255     setLibcallName(RTLIB::SREM_I64, "_allrem");
256     setLibcallName(RTLIB::UREM_I64, "_aullrem");
257     setLibcallName(RTLIB::MUL_I64, "_allmul");
258     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
259     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
260     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
263
264     // The _ftol2 runtime function has an unusual calling conv, which
265     // is modeled by a special pseudo-instruction.
266     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
267     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
268     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
269     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
270   }
271
272   if (Subtarget->isTargetDarwin()) {
273     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
274     setUseUnderscoreSetJmp(false);
275     setUseUnderscoreLongJmp(false);
276   } else if (Subtarget->isTargetMingw()) {
277     // MS runtime is weird: it exports _setjmp, but longjmp!
278     setUseUnderscoreSetJmp(true);
279     setUseUnderscoreLongJmp(false);
280   } else {
281     setUseUnderscoreSetJmp(true);
282     setUseUnderscoreLongJmp(true);
283   }
284
285   // Set up the register classes.
286   addRegisterClass(MVT::i8, &X86::GR8RegClass);
287   addRegisterClass(MVT::i16, &X86::GR16RegClass);
288   addRegisterClass(MVT::i32, &X86::GR32RegClass);
289   if (Subtarget->is64Bit())
290     addRegisterClass(MVT::i64, &X86::GR64RegClass);
291
292   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
293
294   // We don't accept any truncstore of integer registers.
295   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
296   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
297   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
298   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
299   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
300   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
301
302   // SETOEQ and SETUNE require checking two conditions.
303   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
304   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
305   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
306   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
307   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
309
310   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
311   // operation.
312   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
313   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
315
316   if (Subtarget->is64Bit()) {
317     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
318     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
319   } else if (!TM.Options.UseSoftFloat) {
320     // We have an algorithm for SSE2->double, and we turn this into a
321     // 64-bit FILD followed by conditional FADD for other targets.
322     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
323     // We have an algorithm for SSE2, and we turn this into a 64-bit
324     // FILD for other targets.
325     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
326   }
327
328   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
329   // this operation.
330   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
331   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
332
333   if (!TM.Options.UseSoftFloat) {
334     // SSE has no i16 to fp conversion, only i32
335     if (X86ScalarSSEf32) {
336       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
337       // f32 and f64 cases are Legal, f80 case is not
338       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
339     } else {
340       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
341       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
342     }
343   } else {
344     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
345     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
346   }
347
348   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
349   // are Legal, f80 is custom lowered.
350   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
351   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
352
353   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
354   // this operation.
355   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
356   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
357
358   if (X86ScalarSSEf32) {
359     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
360     // f32 and f64 cases are Legal, f80 case is not
361     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
362   } else {
363     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
364     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
365   }
366
367   // Handle FP_TO_UINT by promoting the destination to a larger signed
368   // conversion.
369   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
370   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
372
373   if (Subtarget->is64Bit()) {
374     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
375     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
376   } else if (!TM.Options.UseSoftFloat) {
377     // Since AVX is a superset of SSE3, only check for SSE here.
378     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
379       // Expand FP_TO_UINT into a select.
380       // FIXME: We would like to use a Custom expander here eventually to do
381       // the optimal thing for SSE vs. the default expansion in the legalizer.
382       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
383     else
384       // With SSE3 we can use fisttpll to convert to a signed i64; without
385       // SSE, we're stuck with a fistpll.
386       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
387   }
388
389   if (isTargetFTOL()) {
390     // Use the _ftol2 runtime function, which has a pseudo-instruction
391     // to handle its weird calling convention.
392     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
393   }
394
395   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
396   if (!X86ScalarSSEf64) {
397     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
398     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
399     if (Subtarget->is64Bit()) {
400       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
401       // Without SSE, i64->f64 goes through memory.
402       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
403     }
404   }
405
406   // Scalar integer divide and remainder are lowered to use operations that
407   // produce two results, to match the available instructions. This exposes
408   // the two-result form to trivial CSE, which is able to combine x/y and x%y
409   // into a single instruction.
410   //
411   // Scalar integer multiply-high is also lowered to use two-result
412   // operations, to match the available instructions. However, plain multiply
413   // (low) operations are left as Legal, as there are single-result
414   // instructions for this in x86. Using the two-result multiply instructions
415   // when both high and low results are needed must be arranged by dagcombine.
416   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
417     MVT VT = IntVTs[i];
418     setOperationAction(ISD::MULHS, VT, Expand);
419     setOperationAction(ISD::MULHU, VT, Expand);
420     setOperationAction(ISD::SDIV, VT, Expand);
421     setOperationAction(ISD::UDIV, VT, Expand);
422     setOperationAction(ISD::SREM, VT, Expand);
423     setOperationAction(ISD::UREM, VT, Expand);
424
425     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
426     setOperationAction(ISD::ADDC, VT, Custom);
427     setOperationAction(ISD::ADDE, VT, Custom);
428     setOperationAction(ISD::SUBC, VT, Custom);
429     setOperationAction(ISD::SUBE, VT, Custom);
430   }
431
432   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
433   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
434   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
435   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
436   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
438   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
441   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
442   if (Subtarget->is64Bit())
443     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
445   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
447   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
448   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
449   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
451   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
452
453   // Promote the i8 variants and force them on up to i32 which has a shorter
454   // encoding.
455   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
456   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
457   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
458   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
459   if (Subtarget->hasBMI()) {
460     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
461     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
462     if (Subtarget->is64Bit())
463       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
464   } else {
465     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
466     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
467     if (Subtarget->is64Bit())
468       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
469   }
470
471   if (Subtarget->hasLZCNT()) {
472     // When promoting the i8 variants, force them to i32 for a shorter
473     // encoding.
474     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
475     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
476     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
477     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
478     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
479     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
480     if (Subtarget->is64Bit())
481       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
482   } else {
483     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
484     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
485     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
486     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
487     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
489     if (Subtarget->is64Bit()) {
490       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
491       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
492     }
493   }
494
495   if (Subtarget->hasPOPCNT()) {
496     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
497   } else {
498     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
499     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
500     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
501     if (Subtarget->is64Bit())
502       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
503   }
504
505   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
506   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
507
508   // These should be promoted to a larger select which is supported.
509   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
510   // X86 wants to expand cmov itself.
511   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
512   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
513   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
514   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
517   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
518   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
520   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
523   if (Subtarget->is64Bit()) {
524     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
525     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
526   }
527   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
528   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
529   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
530   // support continuation, user-level threading, and etc.. As a result, no
531   // other SjLj exception interfaces are implemented and please don't build
532   // your own exception handling based on them.
533   // LLVM/Clang supports zero-cost DWARF exception handling.
534   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
535   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
536
537   // Darwin ABI issue.
538   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
539   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
540   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
541   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
542   if (Subtarget->is64Bit())
543     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
544   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
545   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
546   if (Subtarget->is64Bit()) {
547     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
548     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
549     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
550     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
551     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
552   }
553   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
554   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
555   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
556   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
557   if (Subtarget->is64Bit()) {
558     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
559     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
560     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
561   }
562
563   if (Subtarget->hasSSE1())
564     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
565
566   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
567
568   // Expand certain atomics
569   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
570     MVT VT = IntVTs[i];
571     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
572     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
573     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
574   }
575
576   if (!Subtarget->is64Bit()) {
577     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
578     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
579     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
589   }
590
591   if (Subtarget->hasCmpxchg16b()) {
592     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
593   }
594
595   // FIXME - use subtarget debug flags
596   if (!Subtarget->isTargetDarwin() &&
597       !Subtarget->isTargetELF() &&
598       !Subtarget->isTargetCygMing()) {
599     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
600   }
601
602   if (Subtarget->is64Bit()) {
603     setExceptionPointerRegister(X86::RAX);
604     setExceptionSelectorRegister(X86::RDX);
605   } else {
606     setExceptionPointerRegister(X86::EAX);
607     setExceptionSelectorRegister(X86::EDX);
608   }
609   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
610   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
611
612   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
613   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
614
615   setOperationAction(ISD::TRAP, MVT::Other, Legal);
616   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
617
618   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
619   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
620   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
621   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
622     // TargetInfo::X86_64ABIBuiltinVaList
623     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
624     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
625   } else {
626     // TargetInfo::CharPtrBuiltinVaList
627     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
628     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
629   }
630
631   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
632   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
633
634   if (Subtarget->isOSWindows() && !Subtarget->isTargetMacho())
635     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
636                        MVT::i64 : MVT::i32, Custom);
637   else if (TM.Options.EnableSegmentedStacks)
638     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
639                        MVT::i64 : MVT::i32, Custom);
640   else
641     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
642                        MVT::i64 : MVT::i32, Expand);
643
644   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
645     // f32 and f64 use SSE.
646     // Set up the FP register classes.
647     addRegisterClass(MVT::f32, &X86::FR32RegClass);
648     addRegisterClass(MVT::f64, &X86::FR64RegClass);
649
650     // Use ANDPD to simulate FABS.
651     setOperationAction(ISD::FABS , MVT::f64, Custom);
652     setOperationAction(ISD::FABS , MVT::f32, Custom);
653
654     // Use XORP to simulate FNEG.
655     setOperationAction(ISD::FNEG , MVT::f64, Custom);
656     setOperationAction(ISD::FNEG , MVT::f32, Custom);
657
658     // Use ANDPD and ORPD to simulate FCOPYSIGN.
659     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
660     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
661
662     // Lower this to FGETSIGNx86 plus an AND.
663     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
664     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
665
666     // We don't support sin/cos/fmod
667     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
668     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
669     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
670     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
671     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
672     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
673
674     // Expand FP immediates into loads from the stack, except for the special
675     // cases we handle.
676     addLegalFPImmediate(APFloat(+0.0)); // xorpd
677     addLegalFPImmediate(APFloat(+0.0f)); // xorps
678   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
679     // Use SSE for f32, x87 for f64.
680     // Set up the FP register classes.
681     addRegisterClass(MVT::f32, &X86::FR32RegClass);
682     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
683
684     // Use ANDPS to simulate FABS.
685     setOperationAction(ISD::FABS , MVT::f32, Custom);
686
687     // Use XORP to simulate FNEG.
688     setOperationAction(ISD::FNEG , MVT::f32, Custom);
689
690     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
691
692     // Use ANDPS and ORPS to simulate FCOPYSIGN.
693     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
694     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
695
696     // We don't support sin/cos/fmod
697     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
698     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
699     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
700
701     // Special cases we handle for FP constants.
702     addLegalFPImmediate(APFloat(+0.0f)); // xorps
703     addLegalFPImmediate(APFloat(+0.0)); // FLD0
704     addLegalFPImmediate(APFloat(+1.0)); // FLD1
705     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
706     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
707
708     if (!TM.Options.UnsafeFPMath) {
709       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
710       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
711       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
712     }
713   } else if (!TM.Options.UseSoftFloat) {
714     // f32 and f64 in x87.
715     // Set up the FP register classes.
716     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
717     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
718
719     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
720     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
721     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
722     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
723
724     if (!TM.Options.UnsafeFPMath) {
725       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
726       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
727       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
728       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
729       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
730       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
731     }
732     addLegalFPImmediate(APFloat(+0.0)); // FLD0
733     addLegalFPImmediate(APFloat(+1.0)); // FLD1
734     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
735     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
736     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
737     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
738     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
739     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
740   }
741
742   // We don't support FMA.
743   setOperationAction(ISD::FMA, MVT::f64, Expand);
744   setOperationAction(ISD::FMA, MVT::f32, Expand);
745
746   // Long double always uses X87.
747   if (!TM.Options.UseSoftFloat) {
748     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
749     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
750     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
751     {
752       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
753       addLegalFPImmediate(TmpFlt);  // FLD0
754       TmpFlt.changeSign();
755       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
756
757       bool ignored;
758       APFloat TmpFlt2(+1.0);
759       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
760                       &ignored);
761       addLegalFPImmediate(TmpFlt2);  // FLD1
762       TmpFlt2.changeSign();
763       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
764     }
765
766     if (!TM.Options.UnsafeFPMath) {
767       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
768       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
769       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
770     }
771
772     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
773     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
774     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
775     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
776     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
777     setOperationAction(ISD::FMA, MVT::f80, Expand);
778   }
779
780   // Always use a library call for pow.
781   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
782   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
783   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
784
785   setOperationAction(ISD::FLOG, MVT::f80, Expand);
786   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
787   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
788   setOperationAction(ISD::FEXP, MVT::f80, Expand);
789   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
790
791   // First set operation action for all vector types to either promote
792   // (for widening) or expand (for scalarization). Then we will selectively
793   // turn on ones that can be effectively codegen'd.
794   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
795            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
796     MVT VT = (MVT::SimpleValueType)i;
797     setOperationAction(ISD::ADD , VT, Expand);
798     setOperationAction(ISD::SUB , VT, Expand);
799     setOperationAction(ISD::FADD, VT, Expand);
800     setOperationAction(ISD::FNEG, VT, Expand);
801     setOperationAction(ISD::FSUB, VT, Expand);
802     setOperationAction(ISD::MUL , VT, Expand);
803     setOperationAction(ISD::FMUL, VT, Expand);
804     setOperationAction(ISD::SDIV, VT, Expand);
805     setOperationAction(ISD::UDIV, VT, Expand);
806     setOperationAction(ISD::FDIV, VT, Expand);
807     setOperationAction(ISD::SREM, VT, Expand);
808     setOperationAction(ISD::UREM, VT, Expand);
809     setOperationAction(ISD::LOAD, VT, Expand);
810     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
811     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
812     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
813     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
814     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
815     setOperationAction(ISD::FABS, VT, Expand);
816     setOperationAction(ISD::FSIN, VT, Expand);
817     setOperationAction(ISD::FSINCOS, VT, Expand);
818     setOperationAction(ISD::FCOS, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FREM, VT, Expand);
821     setOperationAction(ISD::FMA,  VT, Expand);
822     setOperationAction(ISD::FPOWI, VT, Expand);
823     setOperationAction(ISD::FSQRT, VT, Expand);
824     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
825     setOperationAction(ISD::FFLOOR, VT, Expand);
826     setOperationAction(ISD::FCEIL, VT, Expand);
827     setOperationAction(ISD::FTRUNC, VT, Expand);
828     setOperationAction(ISD::FRINT, VT, Expand);
829     setOperationAction(ISD::FNEARBYINT, VT, Expand);
830     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
831     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
832     setOperationAction(ISD::SDIVREM, VT, Expand);
833     setOperationAction(ISD::UDIVREM, VT, Expand);
834     setOperationAction(ISD::FPOW, VT, Expand);
835     setOperationAction(ISD::CTPOP, VT, Expand);
836     setOperationAction(ISD::CTTZ, VT, Expand);
837     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
838     setOperationAction(ISD::CTLZ, VT, Expand);
839     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
840     setOperationAction(ISD::SHL, VT, Expand);
841     setOperationAction(ISD::SRA, VT, Expand);
842     setOperationAction(ISD::SRL, VT, Expand);
843     setOperationAction(ISD::ROTL, VT, Expand);
844     setOperationAction(ISD::ROTR, VT, Expand);
845     setOperationAction(ISD::BSWAP, VT, Expand);
846     setOperationAction(ISD::SETCC, VT, Expand);
847     setOperationAction(ISD::FLOG, VT, Expand);
848     setOperationAction(ISD::FLOG2, VT, Expand);
849     setOperationAction(ISD::FLOG10, VT, Expand);
850     setOperationAction(ISD::FEXP, VT, Expand);
851     setOperationAction(ISD::FEXP2, VT, Expand);
852     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
853     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
854     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
855     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
856     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
857     setOperationAction(ISD::TRUNCATE, VT, Expand);
858     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
859     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
860     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
861     setOperationAction(ISD::VSELECT, VT, Expand);
862     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
863              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
864       setTruncStoreAction(VT,
865                           (MVT::SimpleValueType)InnerVT, Expand);
866     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
867     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
868     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
869   }
870
871   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
872   // with -msoft-float, disable use of MMX as well.
873   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
874     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
875     // No operations on x86mmx supported, everything uses intrinsics.
876   }
877
878   // MMX-sized vectors (other than x86mmx) are expected to be expanded
879   // into smaller operations.
880   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
881   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
882   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
883   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
884   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
885   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
886   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
887   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
888   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
889   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
890   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
891   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
892   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
893   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
894   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
895   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
896   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
897   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
900   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
901   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
902   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
903   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
904   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
905   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
906   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
909
910   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
911     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
912
913     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
914     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
915     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
918     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
919     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
920     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
921     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
922     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
923     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
924     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
925   }
926
927   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
928     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
929
930     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
931     // registers cannot be used even for integer operations.
932     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
933     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
934     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
935     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
936
937     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
938     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
939     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
940     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
941     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
942     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
943     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
944     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
945     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
946     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
947     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
948     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
949     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
950     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
953     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
954     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
955
956     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
957     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
958     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
960
961     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
962     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
963     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
964     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
966
967     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
968     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
969       MVT VT = (MVT::SimpleValueType)i;
970       // Do not attempt to custom lower non-power-of-2 vectors
971       if (!isPowerOf2_32(VT.getVectorNumElements()))
972         continue;
973       // Do not attempt to custom lower non-128-bit vectors
974       if (!VT.is128BitVector())
975         continue;
976       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
977       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
978       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
979     }
980
981     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
982     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
983     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
984     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
985     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
986     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
987
988     if (Subtarget->is64Bit()) {
989       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
990       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
991     }
992
993     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
994     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
995       MVT VT = (MVT::SimpleValueType)i;
996
997       // Do not attempt to promote non-128-bit vectors
998       if (!VT.is128BitVector())
999         continue;
1000
1001       setOperationAction(ISD::AND,    VT, Promote);
1002       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1003       setOperationAction(ISD::OR,     VT, Promote);
1004       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1005       setOperationAction(ISD::XOR,    VT, Promote);
1006       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1007       setOperationAction(ISD::LOAD,   VT, Promote);
1008       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1009       setOperationAction(ISD::SELECT, VT, Promote);
1010       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1011     }
1012
1013     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1014
1015     // Custom lower v2i64 and v2f64 selects.
1016     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1017     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1018     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1019     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1020
1021     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1022     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1023
1024     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1025     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1026     // As there is no 64-bit GPR available, we need build a special custom
1027     // sequence to convert from v2i32 to v2f32.
1028     if (!Subtarget->is64Bit())
1029       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1030
1031     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1032     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1033
1034     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1035   }
1036
1037   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1038     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1039     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1040     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1041     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1042     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1043     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1044     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1045     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1046     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1047     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1048
1049     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1050     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1051     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1052     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1053     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1054     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1055     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1056     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1057     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1058     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1059
1060     // FIXME: Do we need to handle scalar-to-vector here?
1061     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1062
1063     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1064     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1065     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1068
1069     // i8 and i16 vectors are custom , because the source register and source
1070     // source memory operand types are not the same width.  f32 vectors are
1071     // custom since the immediate controlling the insert encodes additional
1072     // information.
1073     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1074     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1077
1078     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1079     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1082
1083     // FIXME: these should be Legal but thats only for the case where
1084     // the index is constant.  For now custom expand to deal with that.
1085     if (Subtarget->is64Bit()) {
1086       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1087       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1088     }
1089   }
1090
1091   if (Subtarget->hasSSE2()) {
1092     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1093     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1094
1095     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1096     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1097
1098     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1099     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1100
1101     // In the customized shift lowering, the legal cases in AVX2 will be
1102     // recognized.
1103     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1104     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1105
1106     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1107     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1108
1109     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1110
1111     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1112     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1113   }
1114
1115   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1116     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1117     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1118     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1119     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1120     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1122
1123     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1124     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1125     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1126
1127     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1128     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1129     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1132     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1133     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1134     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1135     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1136     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1137     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1138     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1139
1140     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1141     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1142     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1145     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1146     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1147     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1148     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1149     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1150     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1151     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1152
1153     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1154
1155     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1156     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1157     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1158     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1159
1160     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1161     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1162
1163     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1164
1165     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1166     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1167
1168     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1169     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1170
1171     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1172     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1173
1174     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1175
1176     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1177     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1178     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1179     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1180
1181     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1182     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1183     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1184
1185     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1186     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1187     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1188     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1189
1190     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1191     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1192     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1193     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1194     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1195     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1196     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1197     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1199     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1200     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1201     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1202
1203     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1204       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1205       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1206       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1208       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1209       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1210     }
1211
1212     if (Subtarget->hasInt256()) {
1213       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1214       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1215       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1216       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1217
1218       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1219       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1220       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1221       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1222
1223       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1224       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1225       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1226       // Don't lower v32i8 because there is no 128-bit byte mul
1227
1228       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1229
1230       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1231     } else {
1232       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1233       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1234       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1235       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1236
1237       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1238       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1239       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1240       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1241
1242       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1243       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1244       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1245       // Don't lower v32i8 because there is no 128-bit byte mul
1246     }
1247
1248     // In the customized shift lowering, the legal cases in AVX2 will be
1249     // recognized.
1250     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1251     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1252
1253     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1254     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1255
1256     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1257
1258     // Custom lower several nodes for 256-bit types.
1259     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1260              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1261       MVT VT = (MVT::SimpleValueType)i;
1262
1263       // Extract subvector is special because the value type
1264       // (result) is 128-bit but the source is 256-bit wide.
1265       if (VT.is128BitVector())
1266         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1267
1268       // Do not attempt to custom lower other non-256-bit vectors
1269       if (!VT.is256BitVector())
1270         continue;
1271
1272       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1273       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1274       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1275       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1276       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1277       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1278       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1279     }
1280
1281     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1282     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1283       MVT VT = (MVT::SimpleValueType)i;
1284
1285       // Do not attempt to promote non-256-bit vectors
1286       if (!VT.is256BitVector())
1287         continue;
1288
1289       setOperationAction(ISD::AND,    VT, Promote);
1290       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1291       setOperationAction(ISD::OR,     VT, Promote);
1292       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1293       setOperationAction(ISD::XOR,    VT, Promote);
1294       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1295       setOperationAction(ISD::LOAD,   VT, Promote);
1296       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1297       setOperationAction(ISD::SELECT, VT, Promote);
1298       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1299     }
1300   }
1301
1302   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1303     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1304     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1305     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1306     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1307
1308     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1309     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1310     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1311
1312     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1313     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1314     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1315     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1316     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1317     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1318     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1319     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1320     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1321     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1322     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1323
1324     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1325     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1326     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1327     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1328     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1329     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1330
1331     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1332     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1333     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1334     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1335     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1336     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1337     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1338     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1339     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1340
1341     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1342     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1343     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1344     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1345     if (Subtarget->is64Bit()) {
1346       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1347       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1348       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1349       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1350     }
1351     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1352     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1353     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1354     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1355     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1356     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1357     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1358     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1359
1360     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1361     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1362     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1363     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1364     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1365     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1366     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1367     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1368     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1369     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1370     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1371     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1372     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1373
1374     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1375     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1376     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1377     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1378     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1379     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1380
1381     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1382     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1383
1384     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1385
1386     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1387     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1388     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1389     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1390     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1391     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1392     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1393
1394     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1395     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1396
1397     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1398     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1399
1400     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1401
1402     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1403     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1404
1405     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1406     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1407
1408     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1409     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1410
1411     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1412     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1413     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1414     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1415     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1416     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1417
1418     // Custom lower several nodes.
1419     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1420              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1421       MVT VT = (MVT::SimpleValueType)i;
1422
1423       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1424       // Extract subvector is special because the value type
1425       // (result) is 256/128-bit but the source is 512-bit wide.
1426       if (VT.is128BitVector() || VT.is256BitVector())
1427         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1428
1429       if (VT.getVectorElementType() == MVT::i1)
1430         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1431
1432       // Do not attempt to custom lower other non-512-bit vectors
1433       if (!VT.is512BitVector())
1434         continue;
1435
1436       if ( EltSize >= 32) {
1437         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1438         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1439         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1440         setOperationAction(ISD::VSELECT,             VT, Legal);
1441         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1442         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1443         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1444       }
1445     }
1446     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1447       MVT VT = (MVT::SimpleValueType)i;
1448
1449       // Do not attempt to promote non-256-bit vectors
1450       if (!VT.is512BitVector())
1451         continue;
1452
1453       setOperationAction(ISD::SELECT, VT, Promote);
1454       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1455     }
1456   }// has  AVX-512
1457
1458   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1459   // of this type with custom code.
1460   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1461            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1462     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1463                        Custom);
1464   }
1465
1466   // We want to custom lower some of our intrinsics.
1467   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1468   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1469   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1470
1471   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1472   // handle type legalization for these operations here.
1473   //
1474   // FIXME: We really should do custom legalization for addition and
1475   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1476   // than generic legalization for 64-bit multiplication-with-overflow, though.
1477   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1478     // Add/Sub/Mul with overflow operations are custom lowered.
1479     MVT VT = IntVTs[i];
1480     setOperationAction(ISD::SADDO, VT, Custom);
1481     setOperationAction(ISD::UADDO, VT, Custom);
1482     setOperationAction(ISD::SSUBO, VT, Custom);
1483     setOperationAction(ISD::USUBO, VT, Custom);
1484     setOperationAction(ISD::SMULO, VT, Custom);
1485     setOperationAction(ISD::UMULO, VT, Custom);
1486   }
1487
1488   // There are no 8-bit 3-address imul/mul instructions
1489   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1490   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1491
1492   if (!Subtarget->is64Bit()) {
1493     // These libcalls are not available in 32-bit.
1494     setLibcallName(RTLIB::SHL_I128, 0);
1495     setLibcallName(RTLIB::SRL_I128, 0);
1496     setLibcallName(RTLIB::SRA_I128, 0);
1497   }
1498
1499   // Combine sin / cos into one node or libcall if possible.
1500   if (Subtarget->hasSinCos()) {
1501     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1502     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1503     if (Subtarget->isTargetDarwin()) {
1504       // For MacOSX, we don't want to the normal expansion of a libcall to
1505       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1506       // traffic.
1507       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1508       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1509     }
1510   }
1511
1512   // We have target-specific dag combine patterns for the following nodes:
1513   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1514   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1515   setTargetDAGCombine(ISD::VSELECT);
1516   setTargetDAGCombine(ISD::SELECT);
1517   setTargetDAGCombine(ISD::SHL);
1518   setTargetDAGCombine(ISD::SRA);
1519   setTargetDAGCombine(ISD::SRL);
1520   setTargetDAGCombine(ISD::OR);
1521   setTargetDAGCombine(ISD::AND);
1522   setTargetDAGCombine(ISD::ADD);
1523   setTargetDAGCombine(ISD::FADD);
1524   setTargetDAGCombine(ISD::FSUB);
1525   setTargetDAGCombine(ISD::FMA);
1526   setTargetDAGCombine(ISD::SUB);
1527   setTargetDAGCombine(ISD::LOAD);
1528   setTargetDAGCombine(ISD::STORE);
1529   setTargetDAGCombine(ISD::ZERO_EXTEND);
1530   setTargetDAGCombine(ISD::ANY_EXTEND);
1531   setTargetDAGCombine(ISD::SIGN_EXTEND);
1532   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1533   setTargetDAGCombine(ISD::TRUNCATE);
1534   setTargetDAGCombine(ISD::SINT_TO_FP);
1535   setTargetDAGCombine(ISD::SETCC);
1536   if (Subtarget->is64Bit())
1537     setTargetDAGCombine(ISD::MUL);
1538   setTargetDAGCombine(ISD::XOR);
1539
1540   computeRegisterProperties();
1541
1542   // On Darwin, -Os means optimize for size without hurting performance,
1543   // do not reduce the limit.
1544   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1545   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1546   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1547   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1548   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1549   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1550   setPrefLoopAlignment(4); // 2^4 bytes.
1551
1552   // Predictable cmov don't hurt on atom because it's in-order.
1553   PredictableSelectIsExpensive = !Subtarget->isAtom();
1554
1555   setPrefFunctionAlignment(4); // 2^4 bytes.
1556 }
1557
1558 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1559   if (!VT.isVector())
1560     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1561
1562   if (Subtarget->hasAVX512())
1563     switch(VT.getVectorNumElements()) {
1564     case  8: return MVT::v8i1;
1565     case 16: return MVT::v16i1;
1566   }
1567
1568   return VT.changeVectorElementTypeToInteger();
1569 }
1570
1571 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1572 /// the desired ByVal argument alignment.
1573 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1574   if (MaxAlign == 16)
1575     return;
1576   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1577     if (VTy->getBitWidth() == 128)
1578       MaxAlign = 16;
1579   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1580     unsigned EltAlign = 0;
1581     getMaxByValAlign(ATy->getElementType(), EltAlign);
1582     if (EltAlign > MaxAlign)
1583       MaxAlign = EltAlign;
1584   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1585     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1586       unsigned EltAlign = 0;
1587       getMaxByValAlign(STy->getElementType(i), EltAlign);
1588       if (EltAlign > MaxAlign)
1589         MaxAlign = EltAlign;
1590       if (MaxAlign == 16)
1591         break;
1592     }
1593   }
1594 }
1595
1596 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1597 /// function arguments in the caller parameter area. For X86, aggregates
1598 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1599 /// are at 4-byte boundaries.
1600 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1601   if (Subtarget->is64Bit()) {
1602     // Max of 8 and alignment of type.
1603     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1604     if (TyAlign > 8)
1605       return TyAlign;
1606     return 8;
1607   }
1608
1609   unsigned Align = 4;
1610   if (Subtarget->hasSSE1())
1611     getMaxByValAlign(Ty, Align);
1612   return Align;
1613 }
1614
1615 /// getOptimalMemOpType - Returns the target specific optimal type for load
1616 /// and store operations as a result of memset, memcpy, and memmove
1617 /// lowering. If DstAlign is zero that means it's safe to destination
1618 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1619 /// means there isn't a need to check it against alignment requirement,
1620 /// probably because the source does not need to be loaded. If 'IsMemset' is
1621 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1622 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1623 /// source is constant so it does not need to be loaded.
1624 /// It returns EVT::Other if the type should be determined using generic
1625 /// target-independent logic.
1626 EVT
1627 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1628                                        unsigned DstAlign, unsigned SrcAlign,
1629                                        bool IsMemset, bool ZeroMemset,
1630                                        bool MemcpyStrSrc,
1631                                        MachineFunction &MF) const {
1632   const Function *F = MF.getFunction();
1633   if ((!IsMemset || ZeroMemset) &&
1634       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1635                                        Attribute::NoImplicitFloat)) {
1636     if (Size >= 16 &&
1637         (Subtarget->isUnalignedMemAccessFast() ||
1638          ((DstAlign == 0 || DstAlign >= 16) &&
1639           (SrcAlign == 0 || SrcAlign >= 16)))) {
1640       if (Size >= 32) {
1641         if (Subtarget->hasInt256())
1642           return MVT::v8i32;
1643         if (Subtarget->hasFp256())
1644           return MVT::v8f32;
1645       }
1646       if (Subtarget->hasSSE2())
1647         return MVT::v4i32;
1648       if (Subtarget->hasSSE1())
1649         return MVT::v4f32;
1650     } else if (!MemcpyStrSrc && Size >= 8 &&
1651                !Subtarget->is64Bit() &&
1652                Subtarget->hasSSE2()) {
1653       // Do not use f64 to lower memcpy if source is string constant. It's
1654       // better to use i32 to avoid the loads.
1655       return MVT::f64;
1656     }
1657   }
1658   if (Subtarget->is64Bit() && Size >= 8)
1659     return MVT::i64;
1660   return MVT::i32;
1661 }
1662
1663 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1664   if (VT == MVT::f32)
1665     return X86ScalarSSEf32;
1666   else if (VT == MVT::f64)
1667     return X86ScalarSSEf64;
1668   return true;
1669 }
1670
1671 bool
1672 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const {
1673   if (Fast)
1674     *Fast = Subtarget->isUnalignedMemAccessFast();
1675   return true;
1676 }
1677
1678 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1679 /// current function.  The returned value is a member of the
1680 /// MachineJumpTableInfo::JTEntryKind enum.
1681 unsigned X86TargetLowering::getJumpTableEncoding() const {
1682   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1683   // symbol.
1684   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1685       Subtarget->isPICStyleGOT())
1686     return MachineJumpTableInfo::EK_Custom32;
1687
1688   // Otherwise, use the normal jump table encoding heuristics.
1689   return TargetLowering::getJumpTableEncoding();
1690 }
1691
1692 const MCExpr *
1693 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1694                                              const MachineBasicBlock *MBB,
1695                                              unsigned uid,MCContext &Ctx) const{
1696   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1697          Subtarget->isPICStyleGOT());
1698   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1699   // entries.
1700   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1701                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1702 }
1703
1704 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1705 /// jumptable.
1706 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1707                                                     SelectionDAG &DAG) const {
1708   if (!Subtarget->is64Bit())
1709     // This doesn't have SDLoc associated with it, but is not really the
1710     // same as a Register.
1711     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1712   return Table;
1713 }
1714
1715 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1716 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1717 /// MCExpr.
1718 const MCExpr *X86TargetLowering::
1719 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1720                              MCContext &Ctx) const {
1721   // X86-64 uses RIP relative addressing based on the jump table label.
1722   if (Subtarget->isPICStyleRIPRel())
1723     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1724
1725   // Otherwise, the reference is relative to the PIC base.
1726   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1727 }
1728
1729 // FIXME: Why this routine is here? Move to RegInfo!
1730 std::pair<const TargetRegisterClass*, uint8_t>
1731 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1732   const TargetRegisterClass *RRC = 0;
1733   uint8_t Cost = 1;
1734   switch (VT.SimpleTy) {
1735   default:
1736     return TargetLowering::findRepresentativeClass(VT);
1737   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1738     RRC = Subtarget->is64Bit() ?
1739       (const TargetRegisterClass*)&X86::GR64RegClass :
1740       (const TargetRegisterClass*)&X86::GR32RegClass;
1741     break;
1742   case MVT::x86mmx:
1743     RRC = &X86::VR64RegClass;
1744     break;
1745   case MVT::f32: case MVT::f64:
1746   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1747   case MVT::v4f32: case MVT::v2f64:
1748   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1749   case MVT::v4f64:
1750     RRC = &X86::VR128RegClass;
1751     break;
1752   }
1753   return std::make_pair(RRC, Cost);
1754 }
1755
1756 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1757                                                unsigned &Offset) const {
1758   if (!Subtarget->isTargetLinux())
1759     return false;
1760
1761   if (Subtarget->is64Bit()) {
1762     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1763     Offset = 0x28;
1764     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1765       AddressSpace = 256;
1766     else
1767       AddressSpace = 257;
1768   } else {
1769     // %gs:0x14 on i386
1770     Offset = 0x14;
1771     AddressSpace = 256;
1772   }
1773   return true;
1774 }
1775
1776 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1777                                             unsigned DestAS) const {
1778   assert(SrcAS != DestAS && "Expected different address spaces!");
1779
1780   return SrcAS < 256 && DestAS < 256;
1781 }
1782
1783 //===----------------------------------------------------------------------===//
1784 //               Return Value Calling Convention Implementation
1785 //===----------------------------------------------------------------------===//
1786
1787 #include "X86GenCallingConv.inc"
1788
1789 bool
1790 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1791                                   MachineFunction &MF, bool isVarArg,
1792                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1793                         LLVMContext &Context) const {
1794   SmallVector<CCValAssign, 16> RVLocs;
1795   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1796                  RVLocs, Context);
1797   return CCInfo.CheckReturn(Outs, RetCC_X86);
1798 }
1799
1800 const uint16_t *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1801   static const uint16_t ScratchRegs[] = { X86::R11, 0 };
1802   return ScratchRegs;
1803 }
1804
1805 SDValue
1806 X86TargetLowering::LowerReturn(SDValue Chain,
1807                                CallingConv::ID CallConv, bool isVarArg,
1808                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1809                                const SmallVectorImpl<SDValue> &OutVals,
1810                                SDLoc dl, SelectionDAG &DAG) const {
1811   MachineFunction &MF = DAG.getMachineFunction();
1812   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1813
1814   SmallVector<CCValAssign, 16> RVLocs;
1815   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1816                  RVLocs, *DAG.getContext());
1817   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1818
1819   SDValue Flag;
1820   SmallVector<SDValue, 6> RetOps;
1821   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1822   // Operand #1 = Bytes To Pop
1823   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1824                    MVT::i16));
1825
1826   // Copy the result values into the output registers.
1827   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1828     CCValAssign &VA = RVLocs[i];
1829     assert(VA.isRegLoc() && "Can only return in registers!");
1830     SDValue ValToCopy = OutVals[i];
1831     EVT ValVT = ValToCopy.getValueType();
1832
1833     // Promote values to the appropriate types
1834     if (VA.getLocInfo() == CCValAssign::SExt)
1835       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1836     else if (VA.getLocInfo() == CCValAssign::ZExt)
1837       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1838     else if (VA.getLocInfo() == CCValAssign::AExt)
1839       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1840     else if (VA.getLocInfo() == CCValAssign::BCvt)
1841       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1842
1843     // If this is x86-64, and we disabled SSE, we can't return FP values,
1844     // or SSE or MMX vectors.
1845     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1846          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1847           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1848       report_fatal_error("SSE register return with SSE disabled");
1849     }
1850     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1851     // llvm-gcc has never done it right and no one has noticed, so this
1852     // should be OK for now.
1853     if (ValVT == MVT::f64 &&
1854         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1855       report_fatal_error("SSE2 register return with SSE2 disabled");
1856
1857     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1858     // the RET instruction and handled by the FP Stackifier.
1859     if (VA.getLocReg() == X86::ST0 ||
1860         VA.getLocReg() == X86::ST1) {
1861       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1862       // change the value to the FP stack register class.
1863       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1864         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1865       RetOps.push_back(ValToCopy);
1866       // Don't emit a copytoreg.
1867       continue;
1868     }
1869
1870     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1871     // which is returned in RAX / RDX.
1872     if (Subtarget->is64Bit()) {
1873       if (ValVT == MVT::x86mmx) {
1874         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1875           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1876           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1877                                   ValToCopy);
1878           // If we don't have SSE2 available, convert to v4f32 so the generated
1879           // register is legal.
1880           if (!Subtarget->hasSSE2())
1881             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1882         }
1883       }
1884     }
1885
1886     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1887     Flag = Chain.getValue(1);
1888     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1889   }
1890
1891   // The x86-64 ABIs require that for returning structs by value we copy
1892   // the sret argument into %rax/%eax (depending on ABI) for the return.
1893   // Win32 requires us to put the sret argument to %eax as well.
1894   // We saved the argument into a virtual register in the entry block,
1895   // so now we copy the value out and into %rax/%eax.
1896   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1897       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1898     MachineFunction &MF = DAG.getMachineFunction();
1899     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1900     unsigned Reg = FuncInfo->getSRetReturnReg();
1901     assert(Reg &&
1902            "SRetReturnReg should have been set in LowerFormalArguments().");
1903     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1904
1905     unsigned RetValReg
1906         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1907           X86::RAX : X86::EAX;
1908     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1909     Flag = Chain.getValue(1);
1910
1911     // RAX/EAX now acts like a return value.
1912     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1913   }
1914
1915   RetOps[0] = Chain;  // Update chain.
1916
1917   // Add the flag if we have it.
1918   if (Flag.getNode())
1919     RetOps.push_back(Flag);
1920
1921   return DAG.getNode(X86ISD::RET_FLAG, dl,
1922                      MVT::Other, &RetOps[0], RetOps.size());
1923 }
1924
1925 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1926   if (N->getNumValues() != 1)
1927     return false;
1928   if (!N->hasNUsesOfValue(1, 0))
1929     return false;
1930
1931   SDValue TCChain = Chain;
1932   SDNode *Copy = *N->use_begin();
1933   if (Copy->getOpcode() == ISD::CopyToReg) {
1934     // If the copy has a glue operand, we conservatively assume it isn't safe to
1935     // perform a tail call.
1936     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1937       return false;
1938     TCChain = Copy->getOperand(0);
1939   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1940     return false;
1941
1942   bool HasRet = false;
1943   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1944        UI != UE; ++UI) {
1945     if (UI->getOpcode() != X86ISD::RET_FLAG)
1946       return false;
1947     HasRet = true;
1948   }
1949
1950   if (!HasRet)
1951     return false;
1952
1953   Chain = TCChain;
1954   return true;
1955 }
1956
1957 MVT
1958 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1959                                             ISD::NodeType ExtendKind) const {
1960   MVT ReturnMVT;
1961   // TODO: Is this also valid on 32-bit?
1962   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1963     ReturnMVT = MVT::i8;
1964   else
1965     ReturnMVT = MVT::i32;
1966
1967   MVT MinVT = getRegisterType(ReturnMVT);
1968   return VT.bitsLT(MinVT) ? MinVT : VT;
1969 }
1970
1971 /// LowerCallResult - Lower the result values of a call into the
1972 /// appropriate copies out of appropriate physical registers.
1973 ///
1974 SDValue
1975 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1976                                    CallingConv::ID CallConv, bool isVarArg,
1977                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1978                                    SDLoc dl, SelectionDAG &DAG,
1979                                    SmallVectorImpl<SDValue> &InVals) const {
1980
1981   // Assign locations to each value returned by this call.
1982   SmallVector<CCValAssign, 16> RVLocs;
1983   bool Is64Bit = Subtarget->is64Bit();
1984   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1985                  getTargetMachine(), RVLocs, *DAG.getContext());
1986   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1987
1988   // Copy all of the result registers out of their specified physreg.
1989   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1990     CCValAssign &VA = RVLocs[i];
1991     EVT CopyVT = VA.getValVT();
1992
1993     // If this is x86-64, and we disabled SSE, we can't return FP values
1994     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1995         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1996       report_fatal_error("SSE register return with SSE disabled");
1997     }
1998
1999     SDValue Val;
2000
2001     // If this is a call to a function that returns an fp value on the floating
2002     // point stack, we must guarantee the value is popped from the stack, so
2003     // a CopyFromReg is not good enough - the copy instruction may be eliminated
2004     // if the return value is not used. We use the FpPOP_RETVAL instruction
2005     // instead.
2006     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2007       // If we prefer to use the value in xmm registers, copy it out as f80 and
2008       // use a truncate to move it from fp stack reg to xmm reg.
2009       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
2010       SDValue Ops[] = { Chain, InFlag };
2011       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
2012                                          MVT::Other, MVT::Glue, Ops), 1);
2013       Val = Chain.getValue(0);
2014
2015       // Round the f80 to the right size, which also moves it to the appropriate
2016       // xmm register.
2017       if (CopyVT != VA.getValVT())
2018         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2019                           // This truncation won't change the value.
2020                           DAG.getIntPtrConstant(1));
2021     } else {
2022       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2023                                  CopyVT, InFlag).getValue(1);
2024       Val = Chain.getValue(0);
2025     }
2026     InFlag = Chain.getValue(2);
2027     InVals.push_back(Val);
2028   }
2029
2030   return Chain;
2031 }
2032
2033 //===----------------------------------------------------------------------===//
2034 //                C & StdCall & Fast Calling Convention implementation
2035 //===----------------------------------------------------------------------===//
2036 //  StdCall calling convention seems to be standard for many Windows' API
2037 //  routines and around. It differs from C calling convention just a little:
2038 //  callee should clean up the stack, not caller. Symbols should be also
2039 //  decorated in some fancy way :) It doesn't support any vector arguments.
2040 //  For info on fast calling convention see Fast Calling Convention (tail call)
2041 //  implementation LowerX86_32FastCCCallTo.
2042
2043 /// CallIsStructReturn - Determines whether a call uses struct return
2044 /// semantics.
2045 enum StructReturnType {
2046   NotStructReturn,
2047   RegStructReturn,
2048   StackStructReturn
2049 };
2050 static StructReturnType
2051 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2052   if (Outs.empty())
2053     return NotStructReturn;
2054
2055   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2056   if (!Flags.isSRet())
2057     return NotStructReturn;
2058   if (Flags.isInReg())
2059     return RegStructReturn;
2060   return StackStructReturn;
2061 }
2062
2063 /// ArgsAreStructReturn - Determines whether a function uses struct
2064 /// return semantics.
2065 static StructReturnType
2066 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2067   if (Ins.empty())
2068     return NotStructReturn;
2069
2070   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2071   if (!Flags.isSRet())
2072     return NotStructReturn;
2073   if (Flags.isInReg())
2074     return RegStructReturn;
2075   return StackStructReturn;
2076 }
2077
2078 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2079 /// by "Src" to address "Dst" with size and alignment information specified by
2080 /// the specific parameter attribute. The copy will be passed as a byval
2081 /// function parameter.
2082 static SDValue
2083 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2084                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2085                           SDLoc dl) {
2086   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2087
2088   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2089                        /*isVolatile*/false, /*AlwaysInline=*/true,
2090                        MachinePointerInfo(), MachinePointerInfo());
2091 }
2092
2093 /// IsTailCallConvention - Return true if the calling convention is one that
2094 /// supports tail call optimization.
2095 static bool IsTailCallConvention(CallingConv::ID CC) {
2096   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2097           CC == CallingConv::HiPE);
2098 }
2099
2100 /// \brief Return true if the calling convention is a C calling convention.
2101 static bool IsCCallConvention(CallingConv::ID CC) {
2102   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2103           CC == CallingConv::X86_64_SysV);
2104 }
2105
2106 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2107   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2108     return false;
2109
2110   CallSite CS(CI);
2111   CallingConv::ID CalleeCC = CS.getCallingConv();
2112   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2113     return false;
2114
2115   return true;
2116 }
2117
2118 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2119 /// a tailcall target by changing its ABI.
2120 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2121                                    bool GuaranteedTailCallOpt) {
2122   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2123 }
2124
2125 SDValue
2126 X86TargetLowering::LowerMemArgument(SDValue Chain,
2127                                     CallingConv::ID CallConv,
2128                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2129                                     SDLoc dl, SelectionDAG &DAG,
2130                                     const CCValAssign &VA,
2131                                     MachineFrameInfo *MFI,
2132                                     unsigned i) const {
2133   // Create the nodes corresponding to a load from this parameter slot.
2134   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2135   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2136                               getTargetMachine().Options.GuaranteedTailCallOpt);
2137   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2138   EVT ValVT;
2139
2140   // If value is passed by pointer we have address passed instead of the value
2141   // itself.
2142   if (VA.getLocInfo() == CCValAssign::Indirect)
2143     ValVT = VA.getLocVT();
2144   else
2145     ValVT = VA.getValVT();
2146
2147   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2148   // changed with more analysis.
2149   // In case of tail call optimization mark all arguments mutable. Since they
2150   // could be overwritten by lowering of arguments in case of a tail call.
2151   if (Flags.isByVal()) {
2152     unsigned Bytes = Flags.getByValSize();
2153     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2154     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2155     return DAG.getFrameIndex(FI, getPointerTy());
2156   } else {
2157     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2158                                     VA.getLocMemOffset(), isImmutable);
2159     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2160     return DAG.getLoad(ValVT, dl, Chain, FIN,
2161                        MachinePointerInfo::getFixedStack(FI),
2162                        false, false, false, 0);
2163   }
2164 }
2165
2166 SDValue
2167 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2168                                         CallingConv::ID CallConv,
2169                                         bool isVarArg,
2170                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2171                                         SDLoc dl,
2172                                         SelectionDAG &DAG,
2173                                         SmallVectorImpl<SDValue> &InVals)
2174                                           const {
2175   MachineFunction &MF = DAG.getMachineFunction();
2176   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2177
2178   const Function* Fn = MF.getFunction();
2179   if (Fn->hasExternalLinkage() &&
2180       Subtarget->isTargetCygMing() &&
2181       Fn->getName() == "main")
2182     FuncInfo->setForceFramePointer(true);
2183
2184   MachineFrameInfo *MFI = MF.getFrameInfo();
2185   bool Is64Bit = Subtarget->is64Bit();
2186   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2187
2188   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2189          "Var args not supported with calling convention fastcc, ghc or hipe");
2190
2191   // Assign locations to all of the incoming arguments.
2192   SmallVector<CCValAssign, 16> ArgLocs;
2193   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2194                  ArgLocs, *DAG.getContext());
2195
2196   // Allocate shadow area for Win64
2197   if (IsWin64)
2198     CCInfo.AllocateStack(32, 8);
2199
2200   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2201
2202   unsigned LastVal = ~0U;
2203   SDValue ArgValue;
2204   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2205     CCValAssign &VA = ArgLocs[i];
2206     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2207     // places.
2208     assert(VA.getValNo() != LastVal &&
2209            "Don't support value assigned to multiple locs yet");
2210     (void)LastVal;
2211     LastVal = VA.getValNo();
2212
2213     if (VA.isRegLoc()) {
2214       EVT RegVT = VA.getLocVT();
2215       const TargetRegisterClass *RC;
2216       if (RegVT == MVT::i32)
2217         RC = &X86::GR32RegClass;
2218       else if (Is64Bit && RegVT == MVT::i64)
2219         RC = &X86::GR64RegClass;
2220       else if (RegVT == MVT::f32)
2221         RC = &X86::FR32RegClass;
2222       else if (RegVT == MVT::f64)
2223         RC = &X86::FR64RegClass;
2224       else if (RegVT.is512BitVector())
2225         RC = &X86::VR512RegClass;
2226       else if (RegVT.is256BitVector())
2227         RC = &X86::VR256RegClass;
2228       else if (RegVT.is128BitVector())
2229         RC = &X86::VR128RegClass;
2230       else if (RegVT == MVT::x86mmx)
2231         RC = &X86::VR64RegClass;
2232       else if (RegVT == MVT::i1)
2233         RC = &X86::VK1RegClass;
2234       else if (RegVT == MVT::v8i1)
2235         RC = &X86::VK8RegClass;
2236       else if (RegVT == MVT::v16i1)
2237         RC = &X86::VK16RegClass;
2238       else
2239         llvm_unreachable("Unknown argument type!");
2240
2241       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2242       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2243
2244       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2245       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2246       // right size.
2247       if (VA.getLocInfo() == CCValAssign::SExt)
2248         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2249                                DAG.getValueType(VA.getValVT()));
2250       else if (VA.getLocInfo() == CCValAssign::ZExt)
2251         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2252                                DAG.getValueType(VA.getValVT()));
2253       else if (VA.getLocInfo() == CCValAssign::BCvt)
2254         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2255
2256       if (VA.isExtInLoc()) {
2257         // Handle MMX values passed in XMM regs.
2258         if (RegVT.isVector())
2259           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2260         else
2261           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2262       }
2263     } else {
2264       assert(VA.isMemLoc());
2265       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2266     }
2267
2268     // If value is passed via pointer - do a load.
2269     if (VA.getLocInfo() == CCValAssign::Indirect)
2270       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2271                              MachinePointerInfo(), false, false, false, 0);
2272
2273     InVals.push_back(ArgValue);
2274   }
2275
2276   // The x86-64 ABIs require that for returning structs by value we copy
2277   // the sret argument into %rax/%eax (depending on ABI) for the return.
2278   // Win32 requires us to put the sret argument to %eax as well.
2279   // Save the argument into a virtual register so that we can access it
2280   // from the return points.
2281   if (MF.getFunction()->hasStructRetAttr() &&
2282       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2283     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2284     unsigned Reg = FuncInfo->getSRetReturnReg();
2285     if (!Reg) {
2286       MVT PtrTy = getPointerTy();
2287       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2288       FuncInfo->setSRetReturnReg(Reg);
2289     }
2290     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2291     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2292   }
2293
2294   unsigned StackSize = CCInfo.getNextStackOffset();
2295   // Align stack specially for tail calls.
2296   if (FuncIsMadeTailCallSafe(CallConv,
2297                              MF.getTarget().Options.GuaranteedTailCallOpt))
2298     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2299
2300   // If the function takes variable number of arguments, make a frame index for
2301   // the start of the first vararg value... for expansion of llvm.va_start.
2302   if (isVarArg) {
2303     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2304                     CallConv != CallingConv::X86_ThisCall)) {
2305       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2306     }
2307     if (Is64Bit) {
2308       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2309
2310       // FIXME: We should really autogenerate these arrays
2311       static const uint16_t GPR64ArgRegsWin64[] = {
2312         X86::RCX, X86::RDX, X86::R8,  X86::R9
2313       };
2314       static const uint16_t GPR64ArgRegs64Bit[] = {
2315         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2316       };
2317       static const uint16_t XMMArgRegs64Bit[] = {
2318         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2319         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2320       };
2321       const uint16_t *GPR64ArgRegs;
2322       unsigned NumXMMRegs = 0;
2323
2324       if (IsWin64) {
2325         // The XMM registers which might contain var arg parameters are shadowed
2326         // in their paired GPR.  So we only need to save the GPR to their home
2327         // slots.
2328         TotalNumIntRegs = 4;
2329         GPR64ArgRegs = GPR64ArgRegsWin64;
2330       } else {
2331         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2332         GPR64ArgRegs = GPR64ArgRegs64Bit;
2333
2334         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2335                                                 TotalNumXMMRegs);
2336       }
2337       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2338                                                        TotalNumIntRegs);
2339
2340       bool NoImplicitFloatOps = Fn->getAttributes().
2341         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2342       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2343              "SSE register cannot be used when SSE is disabled!");
2344       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2345                NoImplicitFloatOps) &&
2346              "SSE register cannot be used when SSE is disabled!");
2347       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2348           !Subtarget->hasSSE1())
2349         // Kernel mode asks for SSE to be disabled, so don't push them
2350         // on the stack.
2351         TotalNumXMMRegs = 0;
2352
2353       if (IsWin64) {
2354         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2355         // Get to the caller-allocated home save location.  Add 8 to account
2356         // for the return address.
2357         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2358         FuncInfo->setRegSaveFrameIndex(
2359           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2360         // Fixup to set vararg frame on shadow area (4 x i64).
2361         if (NumIntRegs < 4)
2362           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2363       } else {
2364         // For X86-64, if there are vararg parameters that are passed via
2365         // registers, then we must store them to their spots on the stack so
2366         // they may be loaded by deferencing the result of va_next.
2367         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2368         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2369         FuncInfo->setRegSaveFrameIndex(
2370           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2371                                false));
2372       }
2373
2374       // Store the integer parameter registers.
2375       SmallVector<SDValue, 8> MemOps;
2376       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2377                                         getPointerTy());
2378       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2379       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2380         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2381                                   DAG.getIntPtrConstant(Offset));
2382         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2383                                      &X86::GR64RegClass);
2384         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2385         SDValue Store =
2386           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2387                        MachinePointerInfo::getFixedStack(
2388                          FuncInfo->getRegSaveFrameIndex(), Offset),
2389                        false, false, 0);
2390         MemOps.push_back(Store);
2391         Offset += 8;
2392       }
2393
2394       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2395         // Now store the XMM (fp + vector) parameter registers.
2396         SmallVector<SDValue, 11> SaveXMMOps;
2397         SaveXMMOps.push_back(Chain);
2398
2399         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2400         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2401         SaveXMMOps.push_back(ALVal);
2402
2403         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2404                                FuncInfo->getRegSaveFrameIndex()));
2405         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2406                                FuncInfo->getVarArgsFPOffset()));
2407
2408         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2409           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2410                                        &X86::VR128RegClass);
2411           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2412           SaveXMMOps.push_back(Val);
2413         }
2414         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2415                                      MVT::Other,
2416                                      &SaveXMMOps[0], SaveXMMOps.size()));
2417       }
2418
2419       if (!MemOps.empty())
2420         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2421                             &MemOps[0], MemOps.size());
2422     }
2423   }
2424
2425   // Some CCs need callee pop.
2426   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2427                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2428     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2429   } else {
2430     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2431     // If this is an sret function, the return should pop the hidden pointer.
2432     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2433         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2434         argsAreStructReturn(Ins) == StackStructReturn)
2435       FuncInfo->setBytesToPopOnReturn(4);
2436   }
2437
2438   if (!Is64Bit) {
2439     // RegSaveFrameIndex is X86-64 only.
2440     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2441     if (CallConv == CallingConv::X86_FastCall ||
2442         CallConv == CallingConv::X86_ThisCall)
2443       // fastcc functions can't have varargs.
2444       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2445   }
2446
2447   FuncInfo->setArgumentStackSize(StackSize);
2448
2449   return Chain;
2450 }
2451
2452 SDValue
2453 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2454                                     SDValue StackPtr, SDValue Arg,
2455                                     SDLoc dl, SelectionDAG &DAG,
2456                                     const CCValAssign &VA,
2457                                     ISD::ArgFlagsTy Flags) const {
2458   unsigned LocMemOffset = VA.getLocMemOffset();
2459   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2460   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2461   if (Flags.isByVal())
2462     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2463
2464   return DAG.getStore(Chain, dl, Arg, PtrOff,
2465                       MachinePointerInfo::getStack(LocMemOffset),
2466                       false, false, 0);
2467 }
2468
2469 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2470 /// optimization is performed and it is required.
2471 SDValue
2472 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2473                                            SDValue &OutRetAddr, SDValue Chain,
2474                                            bool IsTailCall, bool Is64Bit,
2475                                            int FPDiff, SDLoc dl) const {
2476   // Adjust the Return address stack slot.
2477   EVT VT = getPointerTy();
2478   OutRetAddr = getReturnAddressFrameIndex(DAG);
2479
2480   // Load the "old" Return address.
2481   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2482                            false, false, false, 0);
2483   return SDValue(OutRetAddr.getNode(), 1);
2484 }
2485
2486 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2487 /// optimization is performed and it is required (FPDiff!=0).
2488 static SDValue
2489 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2490                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2491                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2492   // Store the return address to the appropriate stack slot.
2493   if (!FPDiff) return Chain;
2494   // Calculate the new stack slot for the return address.
2495   int NewReturnAddrFI =
2496     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2497                                          false);
2498   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2499   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2500                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2501                        false, false, 0);
2502   return Chain;
2503 }
2504
2505 SDValue
2506 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2507                              SmallVectorImpl<SDValue> &InVals) const {
2508   SelectionDAG &DAG                     = CLI.DAG;
2509   SDLoc &dl                             = CLI.DL;
2510   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2511   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2512   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2513   SDValue Chain                         = CLI.Chain;
2514   SDValue Callee                        = CLI.Callee;
2515   CallingConv::ID CallConv              = CLI.CallConv;
2516   bool &isTailCall                      = CLI.IsTailCall;
2517   bool isVarArg                         = CLI.IsVarArg;
2518
2519   MachineFunction &MF = DAG.getMachineFunction();
2520   bool Is64Bit        = Subtarget->is64Bit();
2521   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2522   StructReturnType SR = callIsStructReturn(Outs);
2523   bool IsSibcall      = false;
2524
2525   if (MF.getTarget().Options.DisableTailCalls)
2526     isTailCall = false;
2527
2528   if (isTailCall) {
2529     // Check if it's really possible to do a tail call.
2530     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2531                     isVarArg, SR != NotStructReturn,
2532                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2533                     Outs, OutVals, Ins, DAG);
2534
2535     // Sibcalls are automatically detected tailcalls which do not require
2536     // ABI changes.
2537     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2538       IsSibcall = true;
2539
2540     if (isTailCall)
2541       ++NumTailCalls;
2542   }
2543
2544   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2545          "Var args not supported with calling convention fastcc, ghc or hipe");
2546
2547   // Analyze operands of the call, assigning locations to each operand.
2548   SmallVector<CCValAssign, 16> ArgLocs;
2549   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2550                  ArgLocs, *DAG.getContext());
2551
2552   // Allocate shadow area for Win64
2553   if (IsWin64)
2554     CCInfo.AllocateStack(32, 8);
2555
2556   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2557
2558   // Get a count of how many bytes are to be pushed on the stack.
2559   unsigned NumBytes = CCInfo.getNextStackOffset();
2560   if (IsSibcall)
2561     // This is a sibcall. The memory operands are available in caller's
2562     // own caller's stack.
2563     NumBytes = 0;
2564   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2565            IsTailCallConvention(CallConv))
2566     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2567
2568   int FPDiff = 0;
2569   if (isTailCall && !IsSibcall) {
2570     // Lower arguments at fp - stackoffset + fpdiff.
2571     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2572     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2573
2574     FPDiff = NumBytesCallerPushed - NumBytes;
2575
2576     // Set the delta of movement of the returnaddr stackslot.
2577     // But only set if delta is greater than previous delta.
2578     if (FPDiff < X86Info->getTCReturnAddrDelta())
2579       X86Info->setTCReturnAddrDelta(FPDiff);
2580   }
2581
2582   if (!IsSibcall)
2583     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2584                                  dl);
2585
2586   SDValue RetAddrFrIdx;
2587   // Load return address for tail calls.
2588   if (isTailCall && FPDiff)
2589     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2590                                     Is64Bit, FPDiff, dl);
2591
2592   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2593   SmallVector<SDValue, 8> MemOpChains;
2594   SDValue StackPtr;
2595
2596   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2597   // of tail call optimization arguments are handle later.
2598   const X86RegisterInfo *RegInfo =
2599     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2600   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2601     CCValAssign &VA = ArgLocs[i];
2602     EVT RegVT = VA.getLocVT();
2603     SDValue Arg = OutVals[i];
2604     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2605     bool isByVal = Flags.isByVal();
2606
2607     // Promote the value if needed.
2608     switch (VA.getLocInfo()) {
2609     default: llvm_unreachable("Unknown loc info!");
2610     case CCValAssign::Full: break;
2611     case CCValAssign::SExt:
2612       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2613       break;
2614     case CCValAssign::ZExt:
2615       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2616       break;
2617     case CCValAssign::AExt:
2618       if (RegVT.is128BitVector()) {
2619         // Special case: passing MMX values in XMM registers.
2620         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2621         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2622         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2623       } else
2624         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2625       break;
2626     case CCValAssign::BCvt:
2627       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2628       break;
2629     case CCValAssign::Indirect: {
2630       // Store the argument.
2631       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2632       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2633       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2634                            MachinePointerInfo::getFixedStack(FI),
2635                            false, false, 0);
2636       Arg = SpillSlot;
2637       break;
2638     }
2639     }
2640
2641     if (VA.isRegLoc()) {
2642       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2643       if (isVarArg && IsWin64) {
2644         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2645         // shadow reg if callee is a varargs function.
2646         unsigned ShadowReg = 0;
2647         switch (VA.getLocReg()) {
2648         case X86::XMM0: ShadowReg = X86::RCX; break;
2649         case X86::XMM1: ShadowReg = X86::RDX; break;
2650         case X86::XMM2: ShadowReg = X86::R8; break;
2651         case X86::XMM3: ShadowReg = X86::R9; break;
2652         }
2653         if (ShadowReg)
2654           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2655       }
2656     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2657       assert(VA.isMemLoc());
2658       if (StackPtr.getNode() == 0)
2659         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2660                                       getPointerTy());
2661       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2662                                              dl, DAG, VA, Flags));
2663     }
2664   }
2665
2666   if (!MemOpChains.empty())
2667     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2668                         &MemOpChains[0], MemOpChains.size());
2669
2670   if (Subtarget->isPICStyleGOT()) {
2671     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2672     // GOT pointer.
2673     if (!isTailCall) {
2674       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2675                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2676     } else {
2677       // If we are tail calling and generating PIC/GOT style code load the
2678       // address of the callee into ECX. The value in ecx is used as target of
2679       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2680       // for tail calls on PIC/GOT architectures. Normally we would just put the
2681       // address of GOT into ebx and then call target@PLT. But for tail calls
2682       // ebx would be restored (since ebx is callee saved) before jumping to the
2683       // target@PLT.
2684
2685       // Note: The actual moving to ECX is done further down.
2686       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2687       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2688           !G->getGlobal()->hasProtectedVisibility())
2689         Callee = LowerGlobalAddress(Callee, DAG);
2690       else if (isa<ExternalSymbolSDNode>(Callee))
2691         Callee = LowerExternalSymbol(Callee, DAG);
2692     }
2693   }
2694
2695   if (Is64Bit && isVarArg && !IsWin64) {
2696     // From AMD64 ABI document:
2697     // For calls that may call functions that use varargs or stdargs
2698     // (prototype-less calls or calls to functions containing ellipsis (...) in
2699     // the declaration) %al is used as hidden argument to specify the number
2700     // of SSE registers used. The contents of %al do not need to match exactly
2701     // the number of registers, but must be an ubound on the number of SSE
2702     // registers used and is in the range 0 - 8 inclusive.
2703
2704     // Count the number of XMM registers allocated.
2705     static const uint16_t XMMArgRegs[] = {
2706       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2707       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2708     };
2709     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2710     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2711            && "SSE registers cannot be used when SSE is disabled");
2712
2713     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2714                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2715   }
2716
2717   // For tail calls lower the arguments to the 'real' stack slot.
2718   if (isTailCall) {
2719     // Force all the incoming stack arguments to be loaded from the stack
2720     // before any new outgoing arguments are stored to the stack, because the
2721     // outgoing stack slots may alias the incoming argument stack slots, and
2722     // the alias isn't otherwise explicit. This is slightly more conservative
2723     // than necessary, because it means that each store effectively depends
2724     // on every argument instead of just those arguments it would clobber.
2725     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2726
2727     SmallVector<SDValue, 8> MemOpChains2;
2728     SDValue FIN;
2729     int FI = 0;
2730     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2731       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2732         CCValAssign &VA = ArgLocs[i];
2733         if (VA.isRegLoc())
2734           continue;
2735         assert(VA.isMemLoc());
2736         SDValue Arg = OutVals[i];
2737         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2738         // Create frame index.
2739         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2740         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2741         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2742         FIN = DAG.getFrameIndex(FI, getPointerTy());
2743
2744         if (Flags.isByVal()) {
2745           // Copy relative to framepointer.
2746           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2747           if (StackPtr.getNode() == 0)
2748             StackPtr = DAG.getCopyFromReg(Chain, dl,
2749                                           RegInfo->getStackRegister(),
2750                                           getPointerTy());
2751           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2752
2753           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2754                                                            ArgChain,
2755                                                            Flags, DAG, dl));
2756         } else {
2757           // Store relative to framepointer.
2758           MemOpChains2.push_back(
2759             DAG.getStore(ArgChain, dl, Arg, FIN,
2760                          MachinePointerInfo::getFixedStack(FI),
2761                          false, false, 0));
2762         }
2763       }
2764     }
2765
2766     if (!MemOpChains2.empty())
2767       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2768                           &MemOpChains2[0], MemOpChains2.size());
2769
2770     // Store the return address to the appropriate stack slot.
2771     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2772                                      getPointerTy(), RegInfo->getSlotSize(),
2773                                      FPDiff, dl);
2774   }
2775
2776   // Build a sequence of copy-to-reg nodes chained together with token chain
2777   // and flag operands which copy the outgoing args into registers.
2778   SDValue InFlag;
2779   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2780     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2781                              RegsToPass[i].second, InFlag);
2782     InFlag = Chain.getValue(1);
2783   }
2784
2785   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2786     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2787     // In the 64-bit large code model, we have to make all calls
2788     // through a register, since the call instruction's 32-bit
2789     // pc-relative offset may not be large enough to hold the whole
2790     // address.
2791   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2792     // If the callee is a GlobalAddress node (quite common, every direct call
2793     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2794     // it.
2795
2796     // We should use extra load for direct calls to dllimported functions in
2797     // non-JIT mode.
2798     const GlobalValue *GV = G->getGlobal();
2799     if (!GV->hasDLLImportLinkage()) {
2800       unsigned char OpFlags = 0;
2801       bool ExtraLoad = false;
2802       unsigned WrapperKind = ISD::DELETED_NODE;
2803
2804       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2805       // external symbols most go through the PLT in PIC mode.  If the symbol
2806       // has hidden or protected visibility, or if it is static or local, then
2807       // we don't need to use the PLT - we can directly call it.
2808       if (Subtarget->isTargetELF() &&
2809           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2810           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2811         OpFlags = X86II::MO_PLT;
2812       } else if (Subtarget->isPICStyleStubAny() &&
2813                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2814                  (!Subtarget->getTargetTriple().isMacOSX() ||
2815                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2816         // PC-relative references to external symbols should go through $stub,
2817         // unless we're building with the leopard linker or later, which
2818         // automatically synthesizes these stubs.
2819         OpFlags = X86II::MO_DARWIN_STUB;
2820       } else if (Subtarget->isPICStyleRIPRel() &&
2821                  isa<Function>(GV) &&
2822                  cast<Function>(GV)->getAttributes().
2823                    hasAttribute(AttributeSet::FunctionIndex,
2824                                 Attribute::NonLazyBind)) {
2825         // If the function is marked as non-lazy, generate an indirect call
2826         // which loads from the GOT directly. This avoids runtime overhead
2827         // at the cost of eager binding (and one extra byte of encoding).
2828         OpFlags = X86II::MO_GOTPCREL;
2829         WrapperKind = X86ISD::WrapperRIP;
2830         ExtraLoad = true;
2831       }
2832
2833       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2834                                           G->getOffset(), OpFlags);
2835
2836       // Add a wrapper if needed.
2837       if (WrapperKind != ISD::DELETED_NODE)
2838         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2839       // Add extra indirection if needed.
2840       if (ExtraLoad)
2841         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2842                              MachinePointerInfo::getGOT(),
2843                              false, false, false, 0);
2844     }
2845   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2846     unsigned char OpFlags = 0;
2847
2848     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2849     // external symbols should go through the PLT.
2850     if (Subtarget->isTargetELF() &&
2851         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2852       OpFlags = X86II::MO_PLT;
2853     } else if (Subtarget->isPICStyleStubAny() &&
2854                (!Subtarget->getTargetTriple().isMacOSX() ||
2855                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2856       // PC-relative references to external symbols should go through $stub,
2857       // unless we're building with the leopard linker or later, which
2858       // automatically synthesizes these stubs.
2859       OpFlags = X86II::MO_DARWIN_STUB;
2860     }
2861
2862     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2863                                          OpFlags);
2864   }
2865
2866   // Returns a chain & a flag for retval copy to use.
2867   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2868   SmallVector<SDValue, 8> Ops;
2869
2870   if (!IsSibcall && isTailCall) {
2871     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2872                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2873     InFlag = Chain.getValue(1);
2874   }
2875
2876   Ops.push_back(Chain);
2877   Ops.push_back(Callee);
2878
2879   if (isTailCall)
2880     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2881
2882   // Add argument registers to the end of the list so that they are known live
2883   // into the call.
2884   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2885     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2886                                   RegsToPass[i].second.getValueType()));
2887
2888   // Add a register mask operand representing the call-preserved registers.
2889   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2890   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2891   assert(Mask && "Missing call preserved mask for calling convention");
2892   Ops.push_back(DAG.getRegisterMask(Mask));
2893
2894   if (InFlag.getNode())
2895     Ops.push_back(InFlag);
2896
2897   if (isTailCall) {
2898     // We used to do:
2899     //// If this is the first return lowered for this function, add the regs
2900     //// to the liveout set for the function.
2901     // This isn't right, although it's probably harmless on x86; liveouts
2902     // should be computed from returns not tail calls.  Consider a void
2903     // function making a tail call to a function returning int.
2904     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2905   }
2906
2907   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2908   InFlag = Chain.getValue(1);
2909
2910   // Create the CALLSEQ_END node.
2911   unsigned NumBytesForCalleeToPush;
2912   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2913                        getTargetMachine().Options.GuaranteedTailCallOpt))
2914     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2915   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2916            !Subtarget->getTargetTriple().isOSMSVCRT() &&
2917            SR == StackStructReturn)
2918     // If this is a call to a struct-return function, the callee
2919     // pops the hidden struct pointer, so we have to push it back.
2920     // This is common for Darwin/X86, Linux & Mingw32 targets.
2921     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2922     NumBytesForCalleeToPush = 4;
2923   else
2924     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2925
2926   // Returns a flag for retval copy to use.
2927   if (!IsSibcall) {
2928     Chain = DAG.getCALLSEQ_END(Chain,
2929                                DAG.getIntPtrConstant(NumBytes, true),
2930                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2931                                                      true),
2932                                InFlag, dl);
2933     InFlag = Chain.getValue(1);
2934   }
2935
2936   // Handle result values, copying them out of physregs into vregs that we
2937   // return.
2938   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2939                          Ins, dl, DAG, InVals);
2940 }
2941
2942 //===----------------------------------------------------------------------===//
2943 //                Fast Calling Convention (tail call) implementation
2944 //===----------------------------------------------------------------------===//
2945
2946 //  Like std call, callee cleans arguments, convention except that ECX is
2947 //  reserved for storing the tail called function address. Only 2 registers are
2948 //  free for argument passing (inreg). Tail call optimization is performed
2949 //  provided:
2950 //                * tailcallopt is enabled
2951 //                * caller/callee are fastcc
2952 //  On X86_64 architecture with GOT-style position independent code only local
2953 //  (within module) calls are supported at the moment.
2954 //  To keep the stack aligned according to platform abi the function
2955 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2956 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2957 //  If a tail called function callee has more arguments than the caller the
2958 //  caller needs to make sure that there is room to move the RETADDR to. This is
2959 //  achieved by reserving an area the size of the argument delta right after the
2960 //  original REtADDR, but before the saved framepointer or the spilled registers
2961 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2962 //  stack layout:
2963 //    arg1
2964 //    arg2
2965 //    RETADDR
2966 //    [ new RETADDR
2967 //      move area ]
2968 //    (possible EBP)
2969 //    ESI
2970 //    EDI
2971 //    local1 ..
2972
2973 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2974 /// for a 16 byte align requirement.
2975 unsigned
2976 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2977                                                SelectionDAG& DAG) const {
2978   MachineFunction &MF = DAG.getMachineFunction();
2979   const TargetMachine &TM = MF.getTarget();
2980   const X86RegisterInfo *RegInfo =
2981     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2982   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2983   unsigned StackAlignment = TFI.getStackAlignment();
2984   uint64_t AlignMask = StackAlignment - 1;
2985   int64_t Offset = StackSize;
2986   unsigned SlotSize = RegInfo->getSlotSize();
2987   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2988     // Number smaller than 12 so just add the difference.
2989     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2990   } else {
2991     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2992     Offset = ((~AlignMask) & Offset) + StackAlignment +
2993       (StackAlignment-SlotSize);
2994   }
2995   return Offset;
2996 }
2997
2998 /// MatchingStackOffset - Return true if the given stack call argument is
2999 /// already available in the same position (relatively) of the caller's
3000 /// incoming argument stack.
3001 static
3002 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3003                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3004                          const X86InstrInfo *TII) {
3005   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3006   int FI = INT_MAX;
3007   if (Arg.getOpcode() == ISD::CopyFromReg) {
3008     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3009     if (!TargetRegisterInfo::isVirtualRegister(VR))
3010       return false;
3011     MachineInstr *Def = MRI->getVRegDef(VR);
3012     if (!Def)
3013       return false;
3014     if (!Flags.isByVal()) {
3015       if (!TII->isLoadFromStackSlot(Def, FI))
3016         return false;
3017     } else {
3018       unsigned Opcode = Def->getOpcode();
3019       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3020           Def->getOperand(1).isFI()) {
3021         FI = Def->getOperand(1).getIndex();
3022         Bytes = Flags.getByValSize();
3023       } else
3024         return false;
3025     }
3026   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3027     if (Flags.isByVal())
3028       // ByVal argument is passed in as a pointer but it's now being
3029       // dereferenced. e.g.
3030       // define @foo(%struct.X* %A) {
3031       //   tail call @bar(%struct.X* byval %A)
3032       // }
3033       return false;
3034     SDValue Ptr = Ld->getBasePtr();
3035     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3036     if (!FINode)
3037       return false;
3038     FI = FINode->getIndex();
3039   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3040     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3041     FI = FINode->getIndex();
3042     Bytes = Flags.getByValSize();
3043   } else
3044     return false;
3045
3046   assert(FI != INT_MAX);
3047   if (!MFI->isFixedObjectIndex(FI))
3048     return false;
3049   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3050 }
3051
3052 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3053 /// for tail call optimization. Targets which want to do tail call
3054 /// optimization should implement this function.
3055 bool
3056 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3057                                                      CallingConv::ID CalleeCC,
3058                                                      bool isVarArg,
3059                                                      bool isCalleeStructRet,
3060                                                      bool isCallerStructRet,
3061                                                      Type *RetTy,
3062                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3063                                     const SmallVectorImpl<SDValue> &OutVals,
3064                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3065                                                      SelectionDAG &DAG) const {
3066   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3067     return false;
3068
3069   // If -tailcallopt is specified, make fastcc functions tail-callable.
3070   const MachineFunction &MF = DAG.getMachineFunction();
3071   const Function *CallerF = MF.getFunction();
3072
3073   // If the function return type is x86_fp80 and the callee return type is not,
3074   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3075   // perform a tailcall optimization here.
3076   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3077     return false;
3078
3079   CallingConv::ID CallerCC = CallerF->getCallingConv();
3080   bool CCMatch = CallerCC == CalleeCC;
3081   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3082   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3083
3084   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3085     if (IsTailCallConvention(CalleeCC) && CCMatch)
3086       return true;
3087     return false;
3088   }
3089
3090   // Look for obvious safe cases to perform tail call optimization that do not
3091   // require ABI changes. This is what gcc calls sibcall.
3092
3093   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3094   // emit a special epilogue.
3095   const X86RegisterInfo *RegInfo =
3096     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3097   if (RegInfo->needsStackRealignment(MF))
3098     return false;
3099
3100   // Also avoid sibcall optimization if either caller or callee uses struct
3101   // return semantics.
3102   if (isCalleeStructRet || isCallerStructRet)
3103     return false;
3104
3105   // An stdcall/thiscall caller is expected to clean up its arguments; the
3106   // callee isn't going to do that.
3107   // FIXME: this is more restrictive than needed. We could produce a tailcall
3108   // when the stack adjustment matches. For example, with a thiscall that takes
3109   // only one argument.
3110   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3111                    CallerCC == CallingConv::X86_ThisCall))
3112     return false;
3113
3114   // Do not sibcall optimize vararg calls unless all arguments are passed via
3115   // registers.
3116   if (isVarArg && !Outs.empty()) {
3117
3118     // Optimizing for varargs on Win64 is unlikely to be safe without
3119     // additional testing.
3120     if (IsCalleeWin64 || IsCallerWin64)
3121       return false;
3122
3123     SmallVector<CCValAssign, 16> ArgLocs;
3124     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3125                    getTargetMachine(), ArgLocs, *DAG.getContext());
3126
3127     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3128     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3129       if (!ArgLocs[i].isRegLoc())
3130         return false;
3131   }
3132
3133   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3134   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3135   // this into a sibcall.
3136   bool Unused = false;
3137   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3138     if (!Ins[i].Used) {
3139       Unused = true;
3140       break;
3141     }
3142   }
3143   if (Unused) {
3144     SmallVector<CCValAssign, 16> RVLocs;
3145     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3146                    getTargetMachine(), RVLocs, *DAG.getContext());
3147     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3148     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3149       CCValAssign &VA = RVLocs[i];
3150       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3151         return false;
3152     }
3153   }
3154
3155   // If the calling conventions do not match, then we'd better make sure the
3156   // results are returned in the same way as what the caller expects.
3157   if (!CCMatch) {
3158     SmallVector<CCValAssign, 16> RVLocs1;
3159     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3160                     getTargetMachine(), RVLocs1, *DAG.getContext());
3161     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3162
3163     SmallVector<CCValAssign, 16> RVLocs2;
3164     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3165                     getTargetMachine(), RVLocs2, *DAG.getContext());
3166     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3167
3168     if (RVLocs1.size() != RVLocs2.size())
3169       return false;
3170     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3171       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3172         return false;
3173       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3174         return false;
3175       if (RVLocs1[i].isRegLoc()) {
3176         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3177           return false;
3178       } else {
3179         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3180           return false;
3181       }
3182     }
3183   }
3184
3185   // If the callee takes no arguments then go on to check the results of the
3186   // call.
3187   if (!Outs.empty()) {
3188     // Check if stack adjustment is needed. For now, do not do this if any
3189     // argument is passed on the stack.
3190     SmallVector<CCValAssign, 16> ArgLocs;
3191     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3192                    getTargetMachine(), ArgLocs, *DAG.getContext());
3193
3194     // Allocate shadow area for Win64
3195     if (IsCalleeWin64)
3196       CCInfo.AllocateStack(32, 8);
3197
3198     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3199     if (CCInfo.getNextStackOffset()) {
3200       MachineFunction &MF = DAG.getMachineFunction();
3201       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3202         return false;
3203
3204       // Check if the arguments are already laid out in the right way as
3205       // the caller's fixed stack objects.
3206       MachineFrameInfo *MFI = MF.getFrameInfo();
3207       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3208       const X86InstrInfo *TII =
3209         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3210       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3211         CCValAssign &VA = ArgLocs[i];
3212         SDValue Arg = OutVals[i];
3213         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3214         if (VA.getLocInfo() == CCValAssign::Indirect)
3215           return false;
3216         if (!VA.isRegLoc()) {
3217           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3218                                    MFI, MRI, TII))
3219             return false;
3220         }
3221       }
3222     }
3223
3224     // If the tailcall address may be in a register, then make sure it's
3225     // possible to register allocate for it. In 32-bit, the call address can
3226     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3227     // callee-saved registers are restored. These happen to be the same
3228     // registers used to pass 'inreg' arguments so watch out for those.
3229     if (!Subtarget->is64Bit() &&
3230         ((!isa<GlobalAddressSDNode>(Callee) &&
3231           !isa<ExternalSymbolSDNode>(Callee)) ||
3232          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3233       unsigned NumInRegs = 0;
3234       // In PIC we need an extra register to formulate the address computation
3235       // for the callee.
3236       unsigned MaxInRegs =
3237           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3238
3239       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3240         CCValAssign &VA = ArgLocs[i];
3241         if (!VA.isRegLoc())
3242           continue;
3243         unsigned Reg = VA.getLocReg();
3244         switch (Reg) {
3245         default: break;
3246         case X86::EAX: case X86::EDX: case X86::ECX:
3247           if (++NumInRegs == MaxInRegs)
3248             return false;
3249           break;
3250         }
3251       }
3252     }
3253   }
3254
3255   return true;
3256 }
3257
3258 FastISel *
3259 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3260                                   const TargetLibraryInfo *libInfo) const {
3261   return X86::createFastISel(funcInfo, libInfo);
3262 }
3263
3264 //===----------------------------------------------------------------------===//
3265 //                           Other Lowering Hooks
3266 //===----------------------------------------------------------------------===//
3267
3268 static bool MayFoldLoad(SDValue Op) {
3269   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3270 }
3271
3272 static bool MayFoldIntoStore(SDValue Op) {
3273   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3274 }
3275
3276 static bool isTargetShuffle(unsigned Opcode) {
3277   switch(Opcode) {
3278   default: return false;
3279   case X86ISD::PSHUFD:
3280   case X86ISD::PSHUFHW:
3281   case X86ISD::PSHUFLW:
3282   case X86ISD::SHUFP:
3283   case X86ISD::PALIGNR:
3284   case X86ISD::MOVLHPS:
3285   case X86ISD::MOVLHPD:
3286   case X86ISD::MOVHLPS:
3287   case X86ISD::MOVLPS:
3288   case X86ISD::MOVLPD:
3289   case X86ISD::MOVSHDUP:
3290   case X86ISD::MOVSLDUP:
3291   case X86ISD::MOVDDUP:
3292   case X86ISD::MOVSS:
3293   case X86ISD::MOVSD:
3294   case X86ISD::UNPCKL:
3295   case X86ISD::UNPCKH:
3296   case X86ISD::VPERMILP:
3297   case X86ISD::VPERM2X128:
3298   case X86ISD::VPERMI:
3299     return true;
3300   }
3301 }
3302
3303 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3304                                     SDValue V1, SelectionDAG &DAG) {
3305   switch(Opc) {
3306   default: llvm_unreachable("Unknown x86 shuffle node");
3307   case X86ISD::MOVSHDUP:
3308   case X86ISD::MOVSLDUP:
3309   case X86ISD::MOVDDUP:
3310     return DAG.getNode(Opc, dl, VT, V1);
3311   }
3312 }
3313
3314 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3315                                     SDValue V1, unsigned TargetMask,
3316                                     SelectionDAG &DAG) {
3317   switch(Opc) {
3318   default: llvm_unreachable("Unknown x86 shuffle node");
3319   case X86ISD::PSHUFD:
3320   case X86ISD::PSHUFHW:
3321   case X86ISD::PSHUFLW:
3322   case X86ISD::VPERMILP:
3323   case X86ISD::VPERMI:
3324     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3325   }
3326 }
3327
3328 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3329                                     SDValue V1, SDValue V2, unsigned TargetMask,
3330                                     SelectionDAG &DAG) {
3331   switch(Opc) {
3332   default: llvm_unreachable("Unknown x86 shuffle node");
3333   case X86ISD::PALIGNR:
3334   case X86ISD::SHUFP:
3335   case X86ISD::VPERM2X128:
3336     return DAG.getNode(Opc, dl, VT, V1, V2,
3337                        DAG.getConstant(TargetMask, MVT::i8));
3338   }
3339 }
3340
3341 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3342                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3343   switch(Opc) {
3344   default: llvm_unreachable("Unknown x86 shuffle node");
3345   case X86ISD::MOVLHPS:
3346   case X86ISD::MOVLHPD:
3347   case X86ISD::MOVHLPS:
3348   case X86ISD::MOVLPS:
3349   case X86ISD::MOVLPD:
3350   case X86ISD::MOVSS:
3351   case X86ISD::MOVSD:
3352   case X86ISD::UNPCKL:
3353   case X86ISD::UNPCKH:
3354     return DAG.getNode(Opc, dl, VT, V1, V2);
3355   }
3356 }
3357
3358 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3359   MachineFunction &MF = DAG.getMachineFunction();
3360   const X86RegisterInfo *RegInfo =
3361     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3362   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3363   int ReturnAddrIndex = FuncInfo->getRAIndex();
3364
3365   if (ReturnAddrIndex == 0) {
3366     // Set up a frame object for the return address.
3367     unsigned SlotSize = RegInfo->getSlotSize();
3368     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3369                                                            -(int64_t)SlotSize,
3370                                                            false);
3371     FuncInfo->setRAIndex(ReturnAddrIndex);
3372   }
3373
3374   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3375 }
3376
3377 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3378                                        bool hasSymbolicDisplacement) {
3379   // Offset should fit into 32 bit immediate field.
3380   if (!isInt<32>(Offset))
3381     return false;
3382
3383   // If we don't have a symbolic displacement - we don't have any extra
3384   // restrictions.
3385   if (!hasSymbolicDisplacement)
3386     return true;
3387
3388   // FIXME: Some tweaks might be needed for medium code model.
3389   if (M != CodeModel::Small && M != CodeModel::Kernel)
3390     return false;
3391
3392   // For small code model we assume that latest object is 16MB before end of 31
3393   // bits boundary. We may also accept pretty large negative constants knowing
3394   // that all objects are in the positive half of address space.
3395   if (M == CodeModel::Small && Offset < 16*1024*1024)
3396     return true;
3397
3398   // For kernel code model we know that all object resist in the negative half
3399   // of 32bits address space. We may not accept negative offsets, since they may
3400   // be just off and we may accept pretty large positive ones.
3401   if (M == CodeModel::Kernel && Offset > 0)
3402     return true;
3403
3404   return false;
3405 }
3406
3407 /// isCalleePop - Determines whether the callee is required to pop its
3408 /// own arguments. Callee pop is necessary to support tail calls.
3409 bool X86::isCalleePop(CallingConv::ID CallingConv,
3410                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3411   if (IsVarArg)
3412     return false;
3413
3414   switch (CallingConv) {
3415   default:
3416     return false;
3417   case CallingConv::X86_StdCall:
3418     return !is64Bit;
3419   case CallingConv::X86_FastCall:
3420     return !is64Bit;
3421   case CallingConv::X86_ThisCall:
3422     return !is64Bit;
3423   case CallingConv::Fast:
3424     return TailCallOpt;
3425   case CallingConv::GHC:
3426     return TailCallOpt;
3427   case CallingConv::HiPE:
3428     return TailCallOpt;
3429   }
3430 }
3431
3432 /// \brief Return true if the condition is an unsigned comparison operation.
3433 static bool isX86CCUnsigned(unsigned X86CC) {
3434   switch (X86CC) {
3435   default: llvm_unreachable("Invalid integer condition!");
3436   case X86::COND_E:     return true;
3437   case X86::COND_G:     return false;
3438   case X86::COND_GE:    return false;
3439   case X86::COND_L:     return false;
3440   case X86::COND_LE:    return false;
3441   case X86::COND_NE:    return true;
3442   case X86::COND_B:     return true;
3443   case X86::COND_A:     return true;
3444   case X86::COND_BE:    return true;
3445   case X86::COND_AE:    return true;
3446   }
3447   llvm_unreachable("covered switch fell through?!");
3448 }
3449
3450 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3451 /// specific condition code, returning the condition code and the LHS/RHS of the
3452 /// comparison to make.
3453 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3454                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3455   if (!isFP) {
3456     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3457       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3458         // X > -1   -> X == 0, jump !sign.
3459         RHS = DAG.getConstant(0, RHS.getValueType());
3460         return X86::COND_NS;
3461       }
3462       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3463         // X < 0   -> X == 0, jump on sign.
3464         return X86::COND_S;
3465       }
3466       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3467         // X < 1   -> X <= 0
3468         RHS = DAG.getConstant(0, RHS.getValueType());
3469         return X86::COND_LE;
3470       }
3471     }
3472
3473     switch (SetCCOpcode) {
3474     default: llvm_unreachable("Invalid integer condition!");
3475     case ISD::SETEQ:  return X86::COND_E;
3476     case ISD::SETGT:  return X86::COND_G;
3477     case ISD::SETGE:  return X86::COND_GE;
3478     case ISD::SETLT:  return X86::COND_L;
3479     case ISD::SETLE:  return X86::COND_LE;
3480     case ISD::SETNE:  return X86::COND_NE;
3481     case ISD::SETULT: return X86::COND_B;
3482     case ISD::SETUGT: return X86::COND_A;
3483     case ISD::SETULE: return X86::COND_BE;
3484     case ISD::SETUGE: return X86::COND_AE;
3485     }
3486   }
3487
3488   // First determine if it is required or is profitable to flip the operands.
3489
3490   // If LHS is a foldable load, but RHS is not, flip the condition.
3491   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3492       !ISD::isNON_EXTLoad(RHS.getNode())) {
3493     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3494     std::swap(LHS, RHS);
3495   }
3496
3497   switch (SetCCOpcode) {
3498   default: break;
3499   case ISD::SETOLT:
3500   case ISD::SETOLE:
3501   case ISD::SETUGT:
3502   case ISD::SETUGE:
3503     std::swap(LHS, RHS);
3504     break;
3505   }
3506
3507   // On a floating point condition, the flags are set as follows:
3508   // ZF  PF  CF   op
3509   //  0 | 0 | 0 | X > Y
3510   //  0 | 0 | 1 | X < Y
3511   //  1 | 0 | 0 | X == Y
3512   //  1 | 1 | 1 | unordered
3513   switch (SetCCOpcode) {
3514   default: llvm_unreachable("Condcode should be pre-legalized away");
3515   case ISD::SETUEQ:
3516   case ISD::SETEQ:   return X86::COND_E;
3517   case ISD::SETOLT:              // flipped
3518   case ISD::SETOGT:
3519   case ISD::SETGT:   return X86::COND_A;
3520   case ISD::SETOLE:              // flipped
3521   case ISD::SETOGE:
3522   case ISD::SETGE:   return X86::COND_AE;
3523   case ISD::SETUGT:              // flipped
3524   case ISD::SETULT:
3525   case ISD::SETLT:   return X86::COND_B;
3526   case ISD::SETUGE:              // flipped
3527   case ISD::SETULE:
3528   case ISD::SETLE:   return X86::COND_BE;
3529   case ISD::SETONE:
3530   case ISD::SETNE:   return X86::COND_NE;
3531   case ISD::SETUO:   return X86::COND_P;
3532   case ISD::SETO:    return X86::COND_NP;
3533   case ISD::SETOEQ:
3534   case ISD::SETUNE:  return X86::COND_INVALID;
3535   }
3536 }
3537
3538 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3539 /// code. Current x86 isa includes the following FP cmov instructions:
3540 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3541 static bool hasFPCMov(unsigned X86CC) {
3542   switch (X86CC) {
3543   default:
3544     return false;
3545   case X86::COND_B:
3546   case X86::COND_BE:
3547   case X86::COND_E:
3548   case X86::COND_P:
3549   case X86::COND_A:
3550   case X86::COND_AE:
3551   case X86::COND_NE:
3552   case X86::COND_NP:
3553     return true;
3554   }
3555 }
3556
3557 /// isFPImmLegal - Returns true if the target can instruction select the
3558 /// specified FP immediate natively. If false, the legalizer will
3559 /// materialize the FP immediate as a load from a constant pool.
3560 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3561   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3562     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3563       return true;
3564   }
3565   return false;
3566 }
3567
3568 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3569 /// the specified range (L, H].
3570 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3571   return (Val < 0) || (Val >= Low && Val < Hi);
3572 }
3573
3574 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3575 /// specified value.
3576 static bool isUndefOrEqual(int Val, int CmpVal) {
3577   return (Val < 0 || Val == CmpVal);
3578 }
3579
3580 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3581 /// from position Pos and ending in Pos+Size, falls within the specified
3582 /// sequential range (L, L+Pos]. or is undef.
3583 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3584                                        unsigned Pos, unsigned Size, int Low) {
3585   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3586     if (!isUndefOrEqual(Mask[i], Low))
3587       return false;
3588   return true;
3589 }
3590
3591 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3592 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3593 /// the second operand.
3594 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3595   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3596     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3597   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3598     return (Mask[0] < 2 && Mask[1] < 2);
3599   return false;
3600 }
3601
3602 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3603 /// is suitable for input to PSHUFHW.
3604 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3605   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3606     return false;
3607
3608   // Lower quadword copied in order or undef.
3609   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3610     return false;
3611
3612   // Upper quadword shuffled.
3613   for (unsigned i = 4; i != 8; ++i)
3614     if (!isUndefOrInRange(Mask[i], 4, 8))
3615       return false;
3616
3617   if (VT == MVT::v16i16) {
3618     // Lower quadword copied in order or undef.
3619     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3620       return false;
3621
3622     // Upper quadword shuffled.
3623     for (unsigned i = 12; i != 16; ++i)
3624       if (!isUndefOrInRange(Mask[i], 12, 16))
3625         return false;
3626   }
3627
3628   return true;
3629 }
3630
3631 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3632 /// is suitable for input to PSHUFLW.
3633 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3634   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3635     return false;
3636
3637   // Upper quadword copied in order.
3638   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3639     return false;
3640
3641   // Lower quadword shuffled.
3642   for (unsigned i = 0; i != 4; ++i)
3643     if (!isUndefOrInRange(Mask[i], 0, 4))
3644       return false;
3645
3646   if (VT == MVT::v16i16) {
3647     // Upper quadword copied in order.
3648     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3649       return false;
3650
3651     // Lower quadword shuffled.
3652     for (unsigned i = 8; i != 12; ++i)
3653       if (!isUndefOrInRange(Mask[i], 8, 12))
3654         return false;
3655   }
3656
3657   return true;
3658 }
3659
3660 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3661 /// is suitable for input to PALIGNR.
3662 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3663                           const X86Subtarget *Subtarget) {
3664   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3665       (VT.is256BitVector() && !Subtarget->hasInt256()))
3666     return false;
3667
3668   unsigned NumElts = VT.getVectorNumElements();
3669   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3670   unsigned NumLaneElts = NumElts/NumLanes;
3671
3672   // Do not handle 64-bit element shuffles with palignr.
3673   if (NumLaneElts == 2)
3674     return false;
3675
3676   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3677     unsigned i;
3678     for (i = 0; i != NumLaneElts; ++i) {
3679       if (Mask[i+l] >= 0)
3680         break;
3681     }
3682
3683     // Lane is all undef, go to next lane
3684     if (i == NumLaneElts)
3685       continue;
3686
3687     int Start = Mask[i+l];
3688
3689     // Make sure its in this lane in one of the sources
3690     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3691         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3692       return false;
3693
3694     // If not lane 0, then we must match lane 0
3695     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3696       return false;
3697
3698     // Correct second source to be contiguous with first source
3699     if (Start >= (int)NumElts)
3700       Start -= NumElts - NumLaneElts;
3701
3702     // Make sure we're shifting in the right direction.
3703     if (Start <= (int)(i+l))
3704       return false;
3705
3706     Start -= i;
3707
3708     // Check the rest of the elements to see if they are consecutive.
3709     for (++i; i != NumLaneElts; ++i) {
3710       int Idx = Mask[i+l];
3711
3712       // Make sure its in this lane
3713       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3714           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3715         return false;
3716
3717       // If not lane 0, then we must match lane 0
3718       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3719         return false;
3720
3721       if (Idx >= (int)NumElts)
3722         Idx -= NumElts - NumLaneElts;
3723
3724       if (!isUndefOrEqual(Idx, Start+i))
3725         return false;
3726
3727     }
3728   }
3729
3730   return true;
3731 }
3732
3733 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3734 /// the two vector operands have swapped position.
3735 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3736                                      unsigned NumElems) {
3737   for (unsigned i = 0; i != NumElems; ++i) {
3738     int idx = Mask[i];
3739     if (idx < 0)
3740       continue;
3741     else if (idx < (int)NumElems)
3742       Mask[i] = idx + NumElems;
3743     else
3744       Mask[i] = idx - NumElems;
3745   }
3746 }
3747
3748 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3749 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3750 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3751 /// reverse of what x86 shuffles want.
3752 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3753
3754   unsigned NumElems = VT.getVectorNumElements();
3755   unsigned NumLanes = VT.getSizeInBits()/128;
3756   unsigned NumLaneElems = NumElems/NumLanes;
3757
3758   if (NumLaneElems != 2 && NumLaneElems != 4)
3759     return false;
3760
3761   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3762   bool symetricMaskRequired =
3763     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3764
3765   // VSHUFPSY divides the resulting vector into 4 chunks.
3766   // The sources are also splitted into 4 chunks, and each destination
3767   // chunk must come from a different source chunk.
3768   //
3769   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3770   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3771   //
3772   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3773   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3774   //
3775   // VSHUFPDY divides the resulting vector into 4 chunks.
3776   // The sources are also splitted into 4 chunks, and each destination
3777   // chunk must come from a different source chunk.
3778   //
3779   //  SRC1 =>      X3       X2       X1       X0
3780   //  SRC2 =>      Y3       Y2       Y1       Y0
3781   //
3782   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3783   //
3784   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3785   unsigned HalfLaneElems = NumLaneElems/2;
3786   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3787     for (unsigned i = 0; i != NumLaneElems; ++i) {
3788       int Idx = Mask[i+l];
3789       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3790       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3791         return false;
3792       // For VSHUFPSY, the mask of the second half must be the same as the
3793       // first but with the appropriate offsets. This works in the same way as
3794       // VPERMILPS works with masks.
3795       if (!symetricMaskRequired || Idx < 0)
3796         continue;
3797       if (MaskVal[i] < 0) {
3798         MaskVal[i] = Idx - l;
3799         continue;
3800       }
3801       if ((signed)(Idx - l) != MaskVal[i])
3802         return false;
3803     }
3804   }
3805
3806   return true;
3807 }
3808
3809 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3810 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3811 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3812   if (!VT.is128BitVector())
3813     return false;
3814
3815   unsigned NumElems = VT.getVectorNumElements();
3816
3817   if (NumElems != 4)
3818     return false;
3819
3820   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3821   return isUndefOrEqual(Mask[0], 6) &&
3822          isUndefOrEqual(Mask[1], 7) &&
3823          isUndefOrEqual(Mask[2], 2) &&
3824          isUndefOrEqual(Mask[3], 3);
3825 }
3826
3827 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3828 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3829 /// <2, 3, 2, 3>
3830 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3831   if (!VT.is128BitVector())
3832     return false;
3833
3834   unsigned NumElems = VT.getVectorNumElements();
3835
3836   if (NumElems != 4)
3837     return false;
3838
3839   return isUndefOrEqual(Mask[0], 2) &&
3840          isUndefOrEqual(Mask[1], 3) &&
3841          isUndefOrEqual(Mask[2], 2) &&
3842          isUndefOrEqual(Mask[3], 3);
3843 }
3844
3845 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3846 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3847 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3848   if (!VT.is128BitVector())
3849     return false;
3850
3851   unsigned NumElems = VT.getVectorNumElements();
3852
3853   if (NumElems != 2 && NumElems != 4)
3854     return false;
3855
3856   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3857     if (!isUndefOrEqual(Mask[i], i + NumElems))
3858       return false;
3859
3860   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3861     if (!isUndefOrEqual(Mask[i], i))
3862       return false;
3863
3864   return true;
3865 }
3866
3867 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3868 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3869 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3870   if (!VT.is128BitVector())
3871     return false;
3872
3873   unsigned NumElems = VT.getVectorNumElements();
3874
3875   if (NumElems != 2 && NumElems != 4)
3876     return false;
3877
3878   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3879     if (!isUndefOrEqual(Mask[i], i))
3880       return false;
3881
3882   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3883     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3884       return false;
3885
3886   return true;
3887 }
3888
3889 //
3890 // Some special combinations that can be optimized.
3891 //
3892 static
3893 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3894                                SelectionDAG &DAG) {
3895   MVT VT = SVOp->getSimpleValueType(0);
3896   SDLoc dl(SVOp);
3897
3898   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3899     return SDValue();
3900
3901   ArrayRef<int> Mask = SVOp->getMask();
3902
3903   // These are the special masks that may be optimized.
3904   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3905   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3906   bool MatchEvenMask = true;
3907   bool MatchOddMask  = true;
3908   for (int i=0; i<8; ++i) {
3909     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3910       MatchEvenMask = false;
3911     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3912       MatchOddMask = false;
3913   }
3914
3915   if (!MatchEvenMask && !MatchOddMask)
3916     return SDValue();
3917
3918   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3919
3920   SDValue Op0 = SVOp->getOperand(0);
3921   SDValue Op1 = SVOp->getOperand(1);
3922
3923   if (MatchEvenMask) {
3924     // Shift the second operand right to 32 bits.
3925     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3926     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3927   } else {
3928     // Shift the first operand left to 32 bits.
3929     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3930     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3931   }
3932   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3933   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3934 }
3935
3936 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3937 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3938 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3939                          bool HasInt256, bool V2IsSplat = false) {
3940
3941   assert(VT.getSizeInBits() >= 128 &&
3942          "Unsupported vector type for unpckl");
3943
3944   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3945   unsigned NumLanes;
3946   unsigned NumOf256BitLanes;
3947   unsigned NumElts = VT.getVectorNumElements();
3948   if (VT.is256BitVector()) {
3949     if (NumElts != 4 && NumElts != 8 &&
3950         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3951     return false;
3952     NumLanes = 2;
3953     NumOf256BitLanes = 1;
3954   } else if (VT.is512BitVector()) {
3955     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3956            "Unsupported vector type for unpckh");
3957     NumLanes = 2;
3958     NumOf256BitLanes = 2;
3959   } else {
3960     NumLanes = 1;
3961     NumOf256BitLanes = 1;
3962   }
3963
3964   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3965   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3966
3967   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3968     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3969       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3970         int BitI  = Mask[l256*NumEltsInStride+l+i];
3971         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3972         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3973           return false;
3974         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3975           return false;
3976         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3977           return false;
3978       }
3979     }
3980   }
3981   return true;
3982 }
3983
3984 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3985 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3986 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3987                          bool HasInt256, bool V2IsSplat = false) {
3988   assert(VT.getSizeInBits() >= 128 &&
3989          "Unsupported vector type for unpckh");
3990
3991   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3992   unsigned NumLanes;
3993   unsigned NumOf256BitLanes;
3994   unsigned NumElts = VT.getVectorNumElements();
3995   if (VT.is256BitVector()) {
3996     if (NumElts != 4 && NumElts != 8 &&
3997         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3998     return false;
3999     NumLanes = 2;
4000     NumOf256BitLanes = 1;
4001   } else if (VT.is512BitVector()) {
4002     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4003            "Unsupported vector type for unpckh");
4004     NumLanes = 2;
4005     NumOf256BitLanes = 2;
4006   } else {
4007     NumLanes = 1;
4008     NumOf256BitLanes = 1;
4009   }
4010
4011   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4012   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4013
4014   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4015     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4016       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4017         int BitI  = Mask[l256*NumEltsInStride+l+i];
4018         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4019         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4020           return false;
4021         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4022           return false;
4023         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4024           return false;
4025       }
4026     }
4027   }
4028   return true;
4029 }
4030
4031 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4032 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4033 /// <0, 0, 1, 1>
4034 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4035   unsigned NumElts = VT.getVectorNumElements();
4036   bool Is256BitVec = VT.is256BitVector();
4037
4038   if (VT.is512BitVector())
4039     return false;
4040   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4041          "Unsupported vector type for unpckh");
4042
4043   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4044       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4045     return false;
4046
4047   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4048   // FIXME: Need a better way to get rid of this, there's no latency difference
4049   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4050   // the former later. We should also remove the "_undef" special mask.
4051   if (NumElts == 4 && Is256BitVec)
4052     return false;
4053
4054   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4055   // independently on 128-bit lanes.
4056   unsigned NumLanes = VT.getSizeInBits()/128;
4057   unsigned NumLaneElts = NumElts/NumLanes;
4058
4059   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4060     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4061       int BitI  = Mask[l+i];
4062       int BitI1 = Mask[l+i+1];
4063
4064       if (!isUndefOrEqual(BitI, j))
4065         return false;
4066       if (!isUndefOrEqual(BitI1, j))
4067         return false;
4068     }
4069   }
4070
4071   return true;
4072 }
4073
4074 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4075 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4076 /// <2, 2, 3, 3>
4077 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4078   unsigned NumElts = VT.getVectorNumElements();
4079
4080   if (VT.is512BitVector())
4081     return false;
4082
4083   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4084          "Unsupported vector type for unpckh");
4085
4086   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4087       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4088     return false;
4089
4090   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4091   // independently on 128-bit lanes.
4092   unsigned NumLanes = VT.getSizeInBits()/128;
4093   unsigned NumLaneElts = NumElts/NumLanes;
4094
4095   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4096     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4097       int BitI  = Mask[l+i];
4098       int BitI1 = Mask[l+i+1];
4099       if (!isUndefOrEqual(BitI, j))
4100         return false;
4101       if (!isUndefOrEqual(BitI1, j))
4102         return false;
4103     }
4104   }
4105   return true;
4106 }
4107
4108 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4109 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4110 /// MOVSD, and MOVD, i.e. setting the lowest element.
4111 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4112   if (VT.getVectorElementType().getSizeInBits() < 32)
4113     return false;
4114   if (!VT.is128BitVector())
4115     return false;
4116
4117   unsigned NumElts = VT.getVectorNumElements();
4118
4119   if (!isUndefOrEqual(Mask[0], NumElts))
4120     return false;
4121
4122   for (unsigned i = 1; i != NumElts; ++i)
4123     if (!isUndefOrEqual(Mask[i], i))
4124       return false;
4125
4126   return true;
4127 }
4128
4129 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4130 /// as permutations between 128-bit chunks or halves. As an example: this
4131 /// shuffle bellow:
4132 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4133 /// The first half comes from the second half of V1 and the second half from the
4134 /// the second half of V2.
4135 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4136   if (!HasFp256 || !VT.is256BitVector())
4137     return false;
4138
4139   // The shuffle result is divided into half A and half B. In total the two
4140   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4141   // B must come from C, D, E or F.
4142   unsigned HalfSize = VT.getVectorNumElements()/2;
4143   bool MatchA = false, MatchB = false;
4144
4145   // Check if A comes from one of C, D, E, F.
4146   for (unsigned Half = 0; Half != 4; ++Half) {
4147     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4148       MatchA = true;
4149       break;
4150     }
4151   }
4152
4153   // Check if B comes from one of C, D, E, F.
4154   for (unsigned Half = 0; Half != 4; ++Half) {
4155     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4156       MatchB = true;
4157       break;
4158     }
4159   }
4160
4161   return MatchA && MatchB;
4162 }
4163
4164 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4165 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4166 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4167   MVT VT = SVOp->getSimpleValueType(0);
4168
4169   unsigned HalfSize = VT.getVectorNumElements()/2;
4170
4171   unsigned FstHalf = 0, SndHalf = 0;
4172   for (unsigned i = 0; i < HalfSize; ++i) {
4173     if (SVOp->getMaskElt(i) > 0) {
4174       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4175       break;
4176     }
4177   }
4178   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4179     if (SVOp->getMaskElt(i) > 0) {
4180       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4181       break;
4182     }
4183   }
4184
4185   return (FstHalf | (SndHalf << 4));
4186 }
4187
4188 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4189 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4190   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4191   if (EltSize < 32)
4192     return false;
4193
4194   unsigned NumElts = VT.getVectorNumElements();
4195   Imm8 = 0;
4196   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4197     for (unsigned i = 0; i != NumElts; ++i) {
4198       if (Mask[i] < 0)
4199         continue;
4200       Imm8 |= Mask[i] << (i*2);
4201     }
4202     return true;
4203   }
4204
4205   unsigned LaneSize = 4;
4206   SmallVector<int, 4> MaskVal(LaneSize, -1);
4207
4208   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4209     for (unsigned i = 0; i != LaneSize; ++i) {
4210       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4211         return false;
4212       if (Mask[i+l] < 0)
4213         continue;
4214       if (MaskVal[i] < 0) {
4215         MaskVal[i] = Mask[i+l] - l;
4216         Imm8 |= MaskVal[i] << (i*2);
4217         continue;
4218       }
4219       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4220         return false;
4221     }
4222   }
4223   return true;
4224 }
4225
4226 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4227 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4228 /// Note that VPERMIL mask matching is different depending whether theunderlying
4229 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4230 /// to the same elements of the low, but to the higher half of the source.
4231 /// In VPERMILPD the two lanes could be shuffled independently of each other
4232 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4233 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4234   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4235   if (VT.getSizeInBits() < 256 || EltSize < 32)
4236     return false;
4237   bool symetricMaskRequired = (EltSize == 32);
4238   unsigned NumElts = VT.getVectorNumElements();
4239
4240   unsigned NumLanes = VT.getSizeInBits()/128;
4241   unsigned LaneSize = NumElts/NumLanes;
4242   // 2 or 4 elements in one lane
4243
4244   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4245   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4246     for (unsigned i = 0; i != LaneSize; ++i) {
4247       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4248         return false;
4249       if (symetricMaskRequired) {
4250         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4251           ExpectedMaskVal[i] = Mask[i+l] - l;
4252           continue;
4253         }
4254         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4255           return false;
4256       }
4257     }
4258   }
4259   return true;
4260 }
4261
4262 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4263 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4264 /// element of vector 2 and the other elements to come from vector 1 in order.
4265 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4266                                bool V2IsSplat = false, bool V2IsUndef = false) {
4267   if (!VT.is128BitVector())
4268     return false;
4269
4270   unsigned NumOps = VT.getVectorNumElements();
4271   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4272     return false;
4273
4274   if (!isUndefOrEqual(Mask[0], 0))
4275     return false;
4276
4277   for (unsigned i = 1; i != NumOps; ++i)
4278     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4279           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4280           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4281       return false;
4282
4283   return true;
4284 }
4285
4286 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4287 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4288 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4289 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4290                            const X86Subtarget *Subtarget) {
4291   if (!Subtarget->hasSSE3())
4292     return false;
4293
4294   unsigned NumElems = VT.getVectorNumElements();
4295
4296   if ((VT.is128BitVector() && NumElems != 4) ||
4297       (VT.is256BitVector() && NumElems != 8) ||
4298       (VT.is512BitVector() && NumElems != 16))
4299     return false;
4300
4301   // "i+1" is the value the indexed mask element must have
4302   for (unsigned i = 0; i != NumElems; i += 2)
4303     if (!isUndefOrEqual(Mask[i], i+1) ||
4304         !isUndefOrEqual(Mask[i+1], i+1))
4305       return false;
4306
4307   return true;
4308 }
4309
4310 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4311 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4312 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4313 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4314                            const X86Subtarget *Subtarget) {
4315   if (!Subtarget->hasSSE3())
4316     return false;
4317
4318   unsigned NumElems = VT.getVectorNumElements();
4319
4320   if ((VT.is128BitVector() && NumElems != 4) ||
4321       (VT.is256BitVector() && NumElems != 8) ||
4322       (VT.is512BitVector() && NumElems != 16))
4323     return false;
4324
4325   // "i" is the value the indexed mask element must have
4326   for (unsigned i = 0; i != NumElems; i += 2)
4327     if (!isUndefOrEqual(Mask[i], i) ||
4328         !isUndefOrEqual(Mask[i+1], i))
4329       return false;
4330
4331   return true;
4332 }
4333
4334 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4335 /// specifies a shuffle of elements that is suitable for input to 256-bit
4336 /// version of MOVDDUP.
4337 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4338   if (!HasFp256 || !VT.is256BitVector())
4339     return false;
4340
4341   unsigned NumElts = VT.getVectorNumElements();
4342   if (NumElts != 4)
4343     return false;
4344
4345   for (unsigned i = 0; i != NumElts/2; ++i)
4346     if (!isUndefOrEqual(Mask[i], 0))
4347       return false;
4348   for (unsigned i = NumElts/2; i != NumElts; ++i)
4349     if (!isUndefOrEqual(Mask[i], NumElts/2))
4350       return false;
4351   return true;
4352 }
4353
4354 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4355 /// specifies a shuffle of elements that is suitable for input to 128-bit
4356 /// version of MOVDDUP.
4357 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4358   if (!VT.is128BitVector())
4359     return false;
4360
4361   unsigned e = VT.getVectorNumElements() / 2;
4362   for (unsigned i = 0; i != e; ++i)
4363     if (!isUndefOrEqual(Mask[i], i))
4364       return false;
4365   for (unsigned i = 0; i != e; ++i)
4366     if (!isUndefOrEqual(Mask[e+i], i))
4367       return false;
4368   return true;
4369 }
4370
4371 /// isVEXTRACTIndex - Return true if the specified
4372 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4373 /// suitable for instruction that extract 128 or 256 bit vectors
4374 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4375   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4376   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4377     return false;
4378
4379   // The index should be aligned on a vecWidth-bit boundary.
4380   uint64_t Index =
4381     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4382
4383   MVT VT = N->getSimpleValueType(0);
4384   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4385   bool Result = (Index * ElSize) % vecWidth == 0;
4386
4387   return Result;
4388 }
4389
4390 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4391 /// operand specifies a subvector insert that is suitable for input to
4392 /// insertion of 128 or 256-bit subvectors
4393 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4394   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4395   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4396     return false;
4397   // The index should be aligned on a vecWidth-bit boundary.
4398   uint64_t Index =
4399     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4400
4401   MVT VT = N->getSimpleValueType(0);
4402   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4403   bool Result = (Index * ElSize) % vecWidth == 0;
4404
4405   return Result;
4406 }
4407
4408 bool X86::isVINSERT128Index(SDNode *N) {
4409   return isVINSERTIndex(N, 128);
4410 }
4411
4412 bool X86::isVINSERT256Index(SDNode *N) {
4413   return isVINSERTIndex(N, 256);
4414 }
4415
4416 bool X86::isVEXTRACT128Index(SDNode *N) {
4417   return isVEXTRACTIndex(N, 128);
4418 }
4419
4420 bool X86::isVEXTRACT256Index(SDNode *N) {
4421   return isVEXTRACTIndex(N, 256);
4422 }
4423
4424 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4425 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4426 /// Handles 128-bit and 256-bit.
4427 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4428   MVT VT = N->getSimpleValueType(0);
4429
4430   assert((VT.getSizeInBits() >= 128) &&
4431          "Unsupported vector type for PSHUF/SHUFP");
4432
4433   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4434   // independently on 128-bit lanes.
4435   unsigned NumElts = VT.getVectorNumElements();
4436   unsigned NumLanes = VT.getSizeInBits()/128;
4437   unsigned NumLaneElts = NumElts/NumLanes;
4438
4439   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4440          "Only supports 2, 4 or 8 elements per lane");
4441
4442   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4443   unsigned Mask = 0;
4444   for (unsigned i = 0; i != NumElts; ++i) {
4445     int Elt = N->getMaskElt(i);
4446     if (Elt < 0) continue;
4447     Elt &= NumLaneElts - 1;
4448     unsigned ShAmt = (i << Shift) % 8;
4449     Mask |= Elt << ShAmt;
4450   }
4451
4452   return Mask;
4453 }
4454
4455 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4456 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4457 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4458   MVT VT = N->getSimpleValueType(0);
4459
4460   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4461          "Unsupported vector type for PSHUFHW");
4462
4463   unsigned NumElts = VT.getVectorNumElements();
4464
4465   unsigned Mask = 0;
4466   for (unsigned l = 0; l != NumElts; l += 8) {
4467     // 8 nodes per lane, but we only care about the last 4.
4468     for (unsigned i = 0; i < 4; ++i) {
4469       int Elt = N->getMaskElt(l+i+4);
4470       if (Elt < 0) continue;
4471       Elt &= 0x3; // only 2-bits.
4472       Mask |= Elt << (i * 2);
4473     }
4474   }
4475
4476   return Mask;
4477 }
4478
4479 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4480 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4481 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4482   MVT VT = N->getSimpleValueType(0);
4483
4484   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4485          "Unsupported vector type for PSHUFHW");
4486
4487   unsigned NumElts = VT.getVectorNumElements();
4488
4489   unsigned Mask = 0;
4490   for (unsigned l = 0; l != NumElts; l += 8) {
4491     // 8 nodes per lane, but we only care about the first 4.
4492     for (unsigned i = 0; i < 4; ++i) {
4493       int Elt = N->getMaskElt(l+i);
4494       if (Elt < 0) continue;
4495       Elt &= 0x3; // only 2-bits
4496       Mask |= Elt << (i * 2);
4497     }
4498   }
4499
4500   return Mask;
4501 }
4502
4503 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4504 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4505 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4506   MVT VT = SVOp->getSimpleValueType(0);
4507   unsigned EltSize = VT.is512BitVector() ? 1 :
4508     VT.getVectorElementType().getSizeInBits() >> 3;
4509
4510   unsigned NumElts = VT.getVectorNumElements();
4511   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4512   unsigned NumLaneElts = NumElts/NumLanes;
4513
4514   int Val = 0;
4515   unsigned i;
4516   for (i = 0; i != NumElts; ++i) {
4517     Val = SVOp->getMaskElt(i);
4518     if (Val >= 0)
4519       break;
4520   }
4521   if (Val >= (int)NumElts)
4522     Val -= NumElts - NumLaneElts;
4523
4524   assert(Val - i > 0 && "PALIGNR imm should be positive");
4525   return (Val - i) * EltSize;
4526 }
4527
4528 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4529   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4530   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4531     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4532
4533   uint64_t Index =
4534     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4535
4536   MVT VecVT = N->getOperand(0).getSimpleValueType();
4537   MVT ElVT = VecVT.getVectorElementType();
4538
4539   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4540   return Index / NumElemsPerChunk;
4541 }
4542
4543 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4544   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4545   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4546     llvm_unreachable("Illegal insert subvector for VINSERT");
4547
4548   uint64_t Index =
4549     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4550
4551   MVT VecVT = N->getSimpleValueType(0);
4552   MVT ElVT = VecVT.getVectorElementType();
4553
4554   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4555   return Index / NumElemsPerChunk;
4556 }
4557
4558 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4559 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4560 /// and VINSERTI128 instructions.
4561 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4562   return getExtractVEXTRACTImmediate(N, 128);
4563 }
4564
4565 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4566 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4567 /// and VINSERTI64x4 instructions.
4568 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4569   return getExtractVEXTRACTImmediate(N, 256);
4570 }
4571
4572 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4573 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4574 /// and VINSERTI128 instructions.
4575 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4576   return getInsertVINSERTImmediate(N, 128);
4577 }
4578
4579 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4580 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4581 /// and VINSERTI64x4 instructions.
4582 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4583   return getInsertVINSERTImmediate(N, 256);
4584 }
4585
4586 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4587 /// constant +0.0.
4588 bool X86::isZeroNode(SDValue Elt) {
4589   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4590     return CN->isNullValue();
4591   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4592     return CFP->getValueAPF().isPosZero();
4593   return false;
4594 }
4595
4596 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4597 /// their permute mask.
4598 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4599                                     SelectionDAG &DAG) {
4600   MVT VT = SVOp->getSimpleValueType(0);
4601   unsigned NumElems = VT.getVectorNumElements();
4602   SmallVector<int, 8> MaskVec;
4603
4604   for (unsigned i = 0; i != NumElems; ++i) {
4605     int Idx = SVOp->getMaskElt(i);
4606     if (Idx >= 0) {
4607       if (Idx < (int)NumElems)
4608         Idx += NumElems;
4609       else
4610         Idx -= NumElems;
4611     }
4612     MaskVec.push_back(Idx);
4613   }
4614   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4615                               SVOp->getOperand(0), &MaskVec[0]);
4616 }
4617
4618 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4619 /// match movhlps. The lower half elements should come from upper half of
4620 /// V1 (and in order), and the upper half elements should come from the upper
4621 /// half of V2 (and in order).
4622 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4623   if (!VT.is128BitVector())
4624     return false;
4625   if (VT.getVectorNumElements() != 4)
4626     return false;
4627   for (unsigned i = 0, e = 2; i != e; ++i)
4628     if (!isUndefOrEqual(Mask[i], i+2))
4629       return false;
4630   for (unsigned i = 2; i != 4; ++i)
4631     if (!isUndefOrEqual(Mask[i], i+4))
4632       return false;
4633   return true;
4634 }
4635
4636 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4637 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4638 /// required.
4639 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4640   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4641     return false;
4642   N = N->getOperand(0).getNode();
4643   if (!ISD::isNON_EXTLoad(N))
4644     return false;
4645   if (LD)
4646     *LD = cast<LoadSDNode>(N);
4647   return true;
4648 }
4649
4650 // Test whether the given value is a vector value which will be legalized
4651 // into a load.
4652 static bool WillBeConstantPoolLoad(SDNode *N) {
4653   if (N->getOpcode() != ISD::BUILD_VECTOR)
4654     return false;
4655
4656   // Check for any non-constant elements.
4657   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4658     switch (N->getOperand(i).getNode()->getOpcode()) {
4659     case ISD::UNDEF:
4660     case ISD::ConstantFP:
4661     case ISD::Constant:
4662       break;
4663     default:
4664       return false;
4665     }
4666
4667   // Vectors of all-zeros and all-ones are materialized with special
4668   // instructions rather than being loaded.
4669   return !ISD::isBuildVectorAllZeros(N) &&
4670          !ISD::isBuildVectorAllOnes(N);
4671 }
4672
4673 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4674 /// match movlp{s|d}. The lower half elements should come from lower half of
4675 /// V1 (and in order), and the upper half elements should come from the upper
4676 /// half of V2 (and in order). And since V1 will become the source of the
4677 /// MOVLP, it must be either a vector load or a scalar load to vector.
4678 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4679                                ArrayRef<int> Mask, MVT VT) {
4680   if (!VT.is128BitVector())
4681     return false;
4682
4683   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4684     return false;
4685   // Is V2 is a vector load, don't do this transformation. We will try to use
4686   // load folding shufps op.
4687   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4688     return false;
4689
4690   unsigned NumElems = VT.getVectorNumElements();
4691
4692   if (NumElems != 2 && NumElems != 4)
4693     return false;
4694   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4695     if (!isUndefOrEqual(Mask[i], i))
4696       return false;
4697   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4698     if (!isUndefOrEqual(Mask[i], i+NumElems))
4699       return false;
4700   return true;
4701 }
4702
4703 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4704 /// all the same.
4705 static bool isSplatVector(SDNode *N) {
4706   if (N->getOpcode() != ISD::BUILD_VECTOR)
4707     return false;
4708
4709   SDValue SplatValue = N->getOperand(0);
4710   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4711     if (N->getOperand(i) != SplatValue)
4712       return false;
4713   return true;
4714 }
4715
4716 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4717 /// to an zero vector.
4718 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4719 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4720   SDValue V1 = N->getOperand(0);
4721   SDValue V2 = N->getOperand(1);
4722   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4723   for (unsigned i = 0; i != NumElems; ++i) {
4724     int Idx = N->getMaskElt(i);
4725     if (Idx >= (int)NumElems) {
4726       unsigned Opc = V2.getOpcode();
4727       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4728         continue;
4729       if (Opc != ISD::BUILD_VECTOR ||
4730           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4731         return false;
4732     } else if (Idx >= 0) {
4733       unsigned Opc = V1.getOpcode();
4734       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4735         continue;
4736       if (Opc != ISD::BUILD_VECTOR ||
4737           !X86::isZeroNode(V1.getOperand(Idx)))
4738         return false;
4739     }
4740   }
4741   return true;
4742 }
4743
4744 /// getZeroVector - Returns a vector of specified type with all zero elements.
4745 ///
4746 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4747                              SelectionDAG &DAG, SDLoc dl) {
4748   assert(VT.isVector() && "Expected a vector type");
4749
4750   // Always build SSE zero vectors as <4 x i32> bitcasted
4751   // to their dest type. This ensures they get CSE'd.
4752   SDValue Vec;
4753   if (VT.is128BitVector()) {  // SSE
4754     if (Subtarget->hasSSE2()) {  // SSE2
4755       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4756       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4757     } else { // SSE1
4758       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4759       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4760     }
4761   } else if (VT.is256BitVector()) { // AVX
4762     if (Subtarget->hasInt256()) { // AVX2
4763       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4764       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4765       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4766                         array_lengthof(Ops));
4767     } else {
4768       // 256-bit logic and arithmetic instructions in AVX are all
4769       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4770       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4771       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4772       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4773                         array_lengthof(Ops));
4774     }
4775   } else if (VT.is512BitVector()) { // AVX-512
4776       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4777       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4778                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4779       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4780   } else
4781     llvm_unreachable("Unexpected vector type");
4782
4783   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4784 }
4785
4786 /// getOnesVector - Returns a vector of specified type with all bits set.
4787 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4788 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4789 /// Then bitcast to their original type, ensuring they get CSE'd.
4790 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4791                              SDLoc dl) {
4792   assert(VT.isVector() && "Expected a vector type");
4793
4794   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4795   SDValue Vec;
4796   if (VT.is256BitVector()) {
4797     if (HasInt256) { // AVX2
4798       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4799       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4800                         array_lengthof(Ops));
4801     } else { // AVX
4802       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4803       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4804     }
4805   } else if (VT.is128BitVector()) {
4806     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4807   } else
4808     llvm_unreachable("Unexpected vector type");
4809
4810   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4811 }
4812
4813 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4814 /// that point to V2 points to its first element.
4815 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4816   for (unsigned i = 0; i != NumElems; ++i) {
4817     if (Mask[i] > (int)NumElems) {
4818       Mask[i] = NumElems;
4819     }
4820   }
4821 }
4822
4823 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4824 /// operation of specified width.
4825 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4826                        SDValue V2) {
4827   unsigned NumElems = VT.getVectorNumElements();
4828   SmallVector<int, 8> Mask;
4829   Mask.push_back(NumElems);
4830   for (unsigned i = 1; i != NumElems; ++i)
4831     Mask.push_back(i);
4832   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4833 }
4834
4835 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4836 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4837                           SDValue V2) {
4838   unsigned NumElems = VT.getVectorNumElements();
4839   SmallVector<int, 8> Mask;
4840   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4841     Mask.push_back(i);
4842     Mask.push_back(i + NumElems);
4843   }
4844   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4845 }
4846
4847 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4848 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4849                           SDValue V2) {
4850   unsigned NumElems = VT.getVectorNumElements();
4851   SmallVector<int, 8> Mask;
4852   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4853     Mask.push_back(i + Half);
4854     Mask.push_back(i + NumElems + Half);
4855   }
4856   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4857 }
4858
4859 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4860 // a generic shuffle instruction because the target has no such instructions.
4861 // Generate shuffles which repeat i16 and i8 several times until they can be
4862 // represented by v4f32 and then be manipulated by target suported shuffles.
4863 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4864   MVT VT = V.getSimpleValueType();
4865   int NumElems = VT.getVectorNumElements();
4866   SDLoc dl(V);
4867
4868   while (NumElems > 4) {
4869     if (EltNo < NumElems/2) {
4870       V = getUnpackl(DAG, dl, VT, V, V);
4871     } else {
4872       V = getUnpackh(DAG, dl, VT, V, V);
4873       EltNo -= NumElems/2;
4874     }
4875     NumElems >>= 1;
4876   }
4877   return V;
4878 }
4879
4880 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4881 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4882   MVT VT = V.getSimpleValueType();
4883   SDLoc dl(V);
4884
4885   if (VT.is128BitVector()) {
4886     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4887     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4888     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4889                              &SplatMask[0]);
4890   } else if (VT.is256BitVector()) {
4891     // To use VPERMILPS to splat scalars, the second half of indicies must
4892     // refer to the higher part, which is a duplication of the lower one,
4893     // because VPERMILPS can only handle in-lane permutations.
4894     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4895                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4896
4897     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4898     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4899                              &SplatMask[0]);
4900   } else
4901     llvm_unreachable("Vector size not supported");
4902
4903   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4904 }
4905
4906 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4907 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4908   MVT SrcVT = SV->getSimpleValueType(0);
4909   SDValue V1 = SV->getOperand(0);
4910   SDLoc dl(SV);
4911
4912   int EltNo = SV->getSplatIndex();
4913   int NumElems = SrcVT.getVectorNumElements();
4914   bool Is256BitVec = SrcVT.is256BitVector();
4915
4916   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4917          "Unknown how to promote splat for type");
4918
4919   // Extract the 128-bit part containing the splat element and update
4920   // the splat element index when it refers to the higher register.
4921   if (Is256BitVec) {
4922     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4923     if (EltNo >= NumElems/2)
4924       EltNo -= NumElems/2;
4925   }
4926
4927   // All i16 and i8 vector types can't be used directly by a generic shuffle
4928   // instruction because the target has no such instruction. Generate shuffles
4929   // which repeat i16 and i8 several times until they fit in i32, and then can
4930   // be manipulated by target suported shuffles.
4931   MVT EltVT = SrcVT.getVectorElementType();
4932   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4933     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4934
4935   // Recreate the 256-bit vector and place the same 128-bit vector
4936   // into the low and high part. This is necessary because we want
4937   // to use VPERM* to shuffle the vectors
4938   if (Is256BitVec) {
4939     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4940   }
4941
4942   return getLegalSplat(DAG, V1, EltNo);
4943 }
4944
4945 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4946 /// vector of zero or undef vector.  This produces a shuffle where the low
4947 /// element of V2 is swizzled into the zero/undef vector, landing at element
4948 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4949 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4950                                            bool IsZero,
4951                                            const X86Subtarget *Subtarget,
4952                                            SelectionDAG &DAG) {
4953   MVT VT = V2.getSimpleValueType();
4954   SDValue V1 = IsZero
4955     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4956   unsigned NumElems = VT.getVectorNumElements();
4957   SmallVector<int, 16> MaskVec;
4958   for (unsigned i = 0; i != NumElems; ++i)
4959     // If this is the insertion idx, put the low elt of V2 here.
4960     MaskVec.push_back(i == Idx ? NumElems : i);
4961   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4962 }
4963
4964 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4965 /// target specific opcode. Returns true if the Mask could be calculated.
4966 /// Sets IsUnary to true if only uses one source.
4967 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4968                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4969   unsigned NumElems = VT.getVectorNumElements();
4970   SDValue ImmN;
4971
4972   IsUnary = false;
4973   switch(N->getOpcode()) {
4974   case X86ISD::SHUFP:
4975     ImmN = N->getOperand(N->getNumOperands()-1);
4976     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4977     break;
4978   case X86ISD::UNPCKH:
4979     DecodeUNPCKHMask(VT, Mask);
4980     break;
4981   case X86ISD::UNPCKL:
4982     DecodeUNPCKLMask(VT, Mask);
4983     break;
4984   case X86ISD::MOVHLPS:
4985     DecodeMOVHLPSMask(NumElems, Mask);
4986     break;
4987   case X86ISD::MOVLHPS:
4988     DecodeMOVLHPSMask(NumElems, Mask);
4989     break;
4990   case X86ISD::PALIGNR:
4991     ImmN = N->getOperand(N->getNumOperands()-1);
4992     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4993     break;
4994   case X86ISD::PSHUFD:
4995   case X86ISD::VPERMILP:
4996     ImmN = N->getOperand(N->getNumOperands()-1);
4997     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4998     IsUnary = true;
4999     break;
5000   case X86ISD::PSHUFHW:
5001     ImmN = N->getOperand(N->getNumOperands()-1);
5002     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5003     IsUnary = true;
5004     break;
5005   case X86ISD::PSHUFLW:
5006     ImmN = N->getOperand(N->getNumOperands()-1);
5007     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5008     IsUnary = true;
5009     break;
5010   case X86ISD::VPERMI:
5011     ImmN = N->getOperand(N->getNumOperands()-1);
5012     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5013     IsUnary = true;
5014     break;
5015   case X86ISD::MOVSS:
5016   case X86ISD::MOVSD: {
5017     // The index 0 always comes from the first element of the second source,
5018     // this is why MOVSS and MOVSD are used in the first place. The other
5019     // elements come from the other positions of the first source vector
5020     Mask.push_back(NumElems);
5021     for (unsigned i = 1; i != NumElems; ++i) {
5022       Mask.push_back(i);
5023     }
5024     break;
5025   }
5026   case X86ISD::VPERM2X128:
5027     ImmN = N->getOperand(N->getNumOperands()-1);
5028     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5029     if (Mask.empty()) return false;
5030     break;
5031   case X86ISD::MOVDDUP:
5032   case X86ISD::MOVLHPD:
5033   case X86ISD::MOVLPD:
5034   case X86ISD::MOVLPS:
5035   case X86ISD::MOVSHDUP:
5036   case X86ISD::MOVSLDUP:
5037     // Not yet implemented
5038     return false;
5039   default: llvm_unreachable("unknown target shuffle node");
5040   }
5041
5042   return true;
5043 }
5044
5045 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5046 /// element of the result of the vector shuffle.
5047 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5048                                    unsigned Depth) {
5049   if (Depth == 6)
5050     return SDValue();  // Limit search depth.
5051
5052   SDValue V = SDValue(N, 0);
5053   EVT VT = V.getValueType();
5054   unsigned Opcode = V.getOpcode();
5055
5056   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5057   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5058     int Elt = SV->getMaskElt(Index);
5059
5060     if (Elt < 0)
5061       return DAG.getUNDEF(VT.getVectorElementType());
5062
5063     unsigned NumElems = VT.getVectorNumElements();
5064     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5065                                          : SV->getOperand(1);
5066     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5067   }
5068
5069   // Recurse into target specific vector shuffles to find scalars.
5070   if (isTargetShuffle(Opcode)) {
5071     MVT ShufVT = V.getSimpleValueType();
5072     unsigned NumElems = ShufVT.getVectorNumElements();
5073     SmallVector<int, 16> ShuffleMask;
5074     bool IsUnary;
5075
5076     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5077       return SDValue();
5078
5079     int Elt = ShuffleMask[Index];
5080     if (Elt < 0)
5081       return DAG.getUNDEF(ShufVT.getVectorElementType());
5082
5083     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5084                                          : N->getOperand(1);
5085     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5086                                Depth+1);
5087   }
5088
5089   // Actual nodes that may contain scalar elements
5090   if (Opcode == ISD::BITCAST) {
5091     V = V.getOperand(0);
5092     EVT SrcVT = V.getValueType();
5093     unsigned NumElems = VT.getVectorNumElements();
5094
5095     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5096       return SDValue();
5097   }
5098
5099   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5100     return (Index == 0) ? V.getOperand(0)
5101                         : DAG.getUNDEF(VT.getVectorElementType());
5102
5103   if (V.getOpcode() == ISD::BUILD_VECTOR)
5104     return V.getOperand(Index);
5105
5106   return SDValue();
5107 }
5108
5109 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5110 /// shuffle operation which come from a consecutively from a zero. The
5111 /// search can start in two different directions, from left or right.
5112 /// We count undefs as zeros until PreferredNum is reached.
5113 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5114                                          unsigned NumElems, bool ZerosFromLeft,
5115                                          SelectionDAG &DAG,
5116                                          unsigned PreferredNum = -1U) {
5117   unsigned NumZeros = 0;
5118   for (unsigned i = 0; i != NumElems; ++i) {
5119     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5120     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5121     if (!Elt.getNode())
5122       break;
5123
5124     if (X86::isZeroNode(Elt))
5125       ++NumZeros;
5126     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5127       NumZeros = std::min(NumZeros + 1, PreferredNum);
5128     else
5129       break;
5130   }
5131
5132   return NumZeros;
5133 }
5134
5135 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5136 /// correspond consecutively to elements from one of the vector operands,
5137 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5138 static
5139 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5140                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5141                               unsigned NumElems, unsigned &OpNum) {
5142   bool SeenV1 = false;
5143   bool SeenV2 = false;
5144
5145   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5146     int Idx = SVOp->getMaskElt(i);
5147     // Ignore undef indicies
5148     if (Idx < 0)
5149       continue;
5150
5151     if (Idx < (int)NumElems)
5152       SeenV1 = true;
5153     else
5154       SeenV2 = true;
5155
5156     // Only accept consecutive elements from the same vector
5157     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5158       return false;
5159   }
5160
5161   OpNum = SeenV1 ? 0 : 1;
5162   return true;
5163 }
5164
5165 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5166 /// logical left shift of a vector.
5167 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5168                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5169   unsigned NumElems =
5170     SVOp->getSimpleValueType(0).getVectorNumElements();
5171   unsigned NumZeros = getNumOfConsecutiveZeros(
5172       SVOp, NumElems, false /* check zeros from right */, DAG,
5173       SVOp->getMaskElt(0));
5174   unsigned OpSrc;
5175
5176   if (!NumZeros)
5177     return false;
5178
5179   // Considering the elements in the mask that are not consecutive zeros,
5180   // check if they consecutively come from only one of the source vectors.
5181   //
5182   //               V1 = {X, A, B, C}     0
5183   //                         \  \  \    /
5184   //   vector_shuffle V1, V2 <1, 2, 3, X>
5185   //
5186   if (!isShuffleMaskConsecutive(SVOp,
5187             0,                   // Mask Start Index
5188             NumElems-NumZeros,   // Mask End Index(exclusive)
5189             NumZeros,            // Where to start looking in the src vector
5190             NumElems,            // Number of elements in vector
5191             OpSrc))              // Which source operand ?
5192     return false;
5193
5194   isLeft = false;
5195   ShAmt = NumZeros;
5196   ShVal = SVOp->getOperand(OpSrc);
5197   return true;
5198 }
5199
5200 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5201 /// logical left shift of a vector.
5202 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5203                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5204   unsigned NumElems =
5205     SVOp->getSimpleValueType(0).getVectorNumElements();
5206   unsigned NumZeros = getNumOfConsecutiveZeros(
5207       SVOp, NumElems, true /* check zeros from left */, DAG,
5208       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5209   unsigned OpSrc;
5210
5211   if (!NumZeros)
5212     return false;
5213
5214   // Considering the elements in the mask that are not consecutive zeros,
5215   // check if they consecutively come from only one of the source vectors.
5216   //
5217   //                           0    { A, B, X, X } = V2
5218   //                          / \    /  /
5219   //   vector_shuffle V1, V2 <X, X, 4, 5>
5220   //
5221   if (!isShuffleMaskConsecutive(SVOp,
5222             NumZeros,     // Mask Start Index
5223             NumElems,     // Mask End Index(exclusive)
5224             0,            // Where to start looking in the src vector
5225             NumElems,     // Number of elements in vector
5226             OpSrc))       // Which source operand ?
5227     return false;
5228
5229   isLeft = true;
5230   ShAmt = NumZeros;
5231   ShVal = SVOp->getOperand(OpSrc);
5232   return true;
5233 }
5234
5235 /// isVectorShift - Returns true if the shuffle can be implemented as a
5236 /// logical left or right shift of a vector.
5237 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5238                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5239   // Although the logic below support any bitwidth size, there are no
5240   // shift instructions which handle more than 128-bit vectors.
5241   if (!SVOp->getSimpleValueType(0).is128BitVector())
5242     return false;
5243
5244   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5245       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5246     return true;
5247
5248   return false;
5249 }
5250
5251 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5252 ///
5253 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5254                                        unsigned NumNonZero, unsigned NumZero,
5255                                        SelectionDAG &DAG,
5256                                        const X86Subtarget* Subtarget,
5257                                        const TargetLowering &TLI) {
5258   if (NumNonZero > 8)
5259     return SDValue();
5260
5261   SDLoc dl(Op);
5262   SDValue V(0, 0);
5263   bool First = true;
5264   for (unsigned i = 0; i < 16; ++i) {
5265     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5266     if (ThisIsNonZero && First) {
5267       if (NumZero)
5268         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5269       else
5270         V = DAG.getUNDEF(MVT::v8i16);
5271       First = false;
5272     }
5273
5274     if ((i & 1) != 0) {
5275       SDValue ThisElt(0, 0), LastElt(0, 0);
5276       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5277       if (LastIsNonZero) {
5278         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5279                               MVT::i16, Op.getOperand(i-1));
5280       }
5281       if (ThisIsNonZero) {
5282         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5283         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5284                               ThisElt, DAG.getConstant(8, MVT::i8));
5285         if (LastIsNonZero)
5286           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5287       } else
5288         ThisElt = LastElt;
5289
5290       if (ThisElt.getNode())
5291         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5292                         DAG.getIntPtrConstant(i/2));
5293     }
5294   }
5295
5296   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5297 }
5298
5299 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5300 ///
5301 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5302                                      unsigned NumNonZero, unsigned NumZero,
5303                                      SelectionDAG &DAG,
5304                                      const X86Subtarget* Subtarget,
5305                                      const TargetLowering &TLI) {
5306   if (NumNonZero > 4)
5307     return SDValue();
5308
5309   SDLoc dl(Op);
5310   SDValue V(0, 0);
5311   bool First = true;
5312   for (unsigned i = 0; i < 8; ++i) {
5313     bool isNonZero = (NonZeros & (1 << i)) != 0;
5314     if (isNonZero) {
5315       if (First) {
5316         if (NumZero)
5317           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5318         else
5319           V = DAG.getUNDEF(MVT::v8i16);
5320         First = false;
5321       }
5322       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5323                       MVT::v8i16, V, Op.getOperand(i),
5324                       DAG.getIntPtrConstant(i));
5325     }
5326   }
5327
5328   return V;
5329 }
5330
5331 /// getVShift - Return a vector logical shift node.
5332 ///
5333 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5334                          unsigned NumBits, SelectionDAG &DAG,
5335                          const TargetLowering &TLI, SDLoc dl) {
5336   assert(VT.is128BitVector() && "Unknown type for VShift");
5337   EVT ShVT = MVT::v2i64;
5338   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5339   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5340   return DAG.getNode(ISD::BITCAST, dl, VT,
5341                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5342                              DAG.getConstant(NumBits,
5343                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5344 }
5345
5346 static SDValue
5347 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5348
5349   // Check if the scalar load can be widened into a vector load. And if
5350   // the address is "base + cst" see if the cst can be "absorbed" into
5351   // the shuffle mask.
5352   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5353     SDValue Ptr = LD->getBasePtr();
5354     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5355       return SDValue();
5356     EVT PVT = LD->getValueType(0);
5357     if (PVT != MVT::i32 && PVT != MVT::f32)
5358       return SDValue();
5359
5360     int FI = -1;
5361     int64_t Offset = 0;
5362     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5363       FI = FINode->getIndex();
5364       Offset = 0;
5365     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5366                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5367       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5368       Offset = Ptr.getConstantOperandVal(1);
5369       Ptr = Ptr.getOperand(0);
5370     } else {
5371       return SDValue();
5372     }
5373
5374     // FIXME: 256-bit vector instructions don't require a strict alignment,
5375     // improve this code to support it better.
5376     unsigned RequiredAlign = VT.getSizeInBits()/8;
5377     SDValue Chain = LD->getChain();
5378     // Make sure the stack object alignment is at least 16 or 32.
5379     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5380     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5381       if (MFI->isFixedObjectIndex(FI)) {
5382         // Can't change the alignment. FIXME: It's possible to compute
5383         // the exact stack offset and reference FI + adjust offset instead.
5384         // If someone *really* cares about this. That's the way to implement it.
5385         return SDValue();
5386       } else {
5387         MFI->setObjectAlignment(FI, RequiredAlign);
5388       }
5389     }
5390
5391     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5392     // Ptr + (Offset & ~15).
5393     if (Offset < 0)
5394       return SDValue();
5395     if ((Offset % RequiredAlign) & 3)
5396       return SDValue();
5397     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5398     if (StartOffset)
5399       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5400                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5401
5402     int EltNo = (Offset - StartOffset) >> 2;
5403     unsigned NumElems = VT.getVectorNumElements();
5404
5405     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5406     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5407                              LD->getPointerInfo().getWithOffset(StartOffset),
5408                              false, false, false, 0);
5409
5410     SmallVector<int, 8> Mask;
5411     for (unsigned i = 0; i != NumElems; ++i)
5412       Mask.push_back(EltNo);
5413
5414     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5415   }
5416
5417   return SDValue();
5418 }
5419
5420 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5421 /// vector of type 'VT', see if the elements can be replaced by a single large
5422 /// load which has the same value as a build_vector whose operands are 'elts'.
5423 ///
5424 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5425 ///
5426 /// FIXME: we'd also like to handle the case where the last elements are zero
5427 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5428 /// There's even a handy isZeroNode for that purpose.
5429 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5430                                         SDLoc &DL, SelectionDAG &DAG,
5431                                         bool isAfterLegalize) {
5432   EVT EltVT = VT.getVectorElementType();
5433   unsigned NumElems = Elts.size();
5434
5435   LoadSDNode *LDBase = NULL;
5436   unsigned LastLoadedElt = -1U;
5437
5438   // For each element in the initializer, see if we've found a load or an undef.
5439   // If we don't find an initial load element, or later load elements are
5440   // non-consecutive, bail out.
5441   for (unsigned i = 0; i < NumElems; ++i) {
5442     SDValue Elt = Elts[i];
5443
5444     if (!Elt.getNode() ||
5445         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5446       return SDValue();
5447     if (!LDBase) {
5448       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5449         return SDValue();
5450       LDBase = cast<LoadSDNode>(Elt.getNode());
5451       LastLoadedElt = i;
5452       continue;
5453     }
5454     if (Elt.getOpcode() == ISD::UNDEF)
5455       continue;
5456
5457     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5458     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5459       return SDValue();
5460     LastLoadedElt = i;
5461   }
5462
5463   // If we have found an entire vector of loads and undefs, then return a large
5464   // load of the entire vector width starting at the base pointer.  If we found
5465   // consecutive loads for the low half, generate a vzext_load node.
5466   if (LastLoadedElt == NumElems - 1) {
5467
5468     if (isAfterLegalize &&
5469         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5470       return SDValue();
5471
5472     SDValue NewLd = SDValue();
5473
5474     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5475       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5476                           LDBase->getPointerInfo(),
5477                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5478                           LDBase->isInvariant(), 0);
5479     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5480                         LDBase->getPointerInfo(),
5481                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5482                         LDBase->isInvariant(), LDBase->getAlignment());
5483
5484     if (LDBase->hasAnyUseOfValue(1)) {
5485       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5486                                      SDValue(LDBase, 1),
5487                                      SDValue(NewLd.getNode(), 1));
5488       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5489       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5490                              SDValue(NewLd.getNode(), 1));
5491     }
5492
5493     return NewLd;
5494   }
5495   if (NumElems == 4 && LastLoadedElt == 1 &&
5496       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5497     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5498     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5499     SDValue ResNode =
5500         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5501                                 array_lengthof(Ops), MVT::i64,
5502                                 LDBase->getPointerInfo(),
5503                                 LDBase->getAlignment(),
5504                                 false/*isVolatile*/, true/*ReadMem*/,
5505                                 false/*WriteMem*/);
5506
5507     // Make sure the newly-created LOAD is in the same position as LDBase in
5508     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5509     // update uses of LDBase's output chain to use the TokenFactor.
5510     if (LDBase->hasAnyUseOfValue(1)) {
5511       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5512                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5513       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5514       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5515                              SDValue(ResNode.getNode(), 1));
5516     }
5517
5518     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5519   }
5520   return SDValue();
5521 }
5522
5523 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5524 /// to generate a splat value for the following cases:
5525 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5526 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5527 /// a scalar load, or a constant.
5528 /// The VBROADCAST node is returned when a pattern is found,
5529 /// or SDValue() otherwise.
5530 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5531                                     SelectionDAG &DAG) {
5532   if (!Subtarget->hasFp256())
5533     return SDValue();
5534
5535   MVT VT = Op.getSimpleValueType();
5536   SDLoc dl(Op);
5537
5538   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5539          "Unsupported vector type for broadcast.");
5540
5541   SDValue Ld;
5542   bool ConstSplatVal;
5543
5544   switch (Op.getOpcode()) {
5545     default:
5546       // Unknown pattern found.
5547       return SDValue();
5548
5549     case ISD::BUILD_VECTOR: {
5550       // The BUILD_VECTOR node must be a splat.
5551       if (!isSplatVector(Op.getNode()))
5552         return SDValue();
5553
5554       Ld = Op.getOperand(0);
5555       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5556                      Ld.getOpcode() == ISD::ConstantFP);
5557
5558       // The suspected load node has several users. Make sure that all
5559       // of its users are from the BUILD_VECTOR node.
5560       // Constants may have multiple users.
5561       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5562         return SDValue();
5563       break;
5564     }
5565
5566     case ISD::VECTOR_SHUFFLE: {
5567       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5568
5569       // Shuffles must have a splat mask where the first element is
5570       // broadcasted.
5571       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5572         return SDValue();
5573
5574       SDValue Sc = Op.getOperand(0);
5575       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5576           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5577
5578         if (!Subtarget->hasInt256())
5579           return SDValue();
5580
5581         // Use the register form of the broadcast instruction available on AVX2.
5582         if (VT.getSizeInBits() >= 256)
5583           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5584         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5585       }
5586
5587       Ld = Sc.getOperand(0);
5588       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5589                        Ld.getOpcode() == ISD::ConstantFP);
5590
5591       // The scalar_to_vector node and the suspected
5592       // load node must have exactly one user.
5593       // Constants may have multiple users.
5594
5595       // AVX-512 has register version of the broadcast
5596       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5597         Ld.getValueType().getSizeInBits() >= 32;
5598       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5599           !hasRegVer))
5600         return SDValue();
5601       break;
5602     }
5603   }
5604
5605   bool IsGE256 = (VT.getSizeInBits() >= 256);
5606
5607   // Handle the broadcasting a single constant scalar from the constant pool
5608   // into a vector. On Sandybridge it is still better to load a constant vector
5609   // from the constant pool and not to broadcast it from a scalar.
5610   if (ConstSplatVal && Subtarget->hasInt256()) {
5611     EVT CVT = Ld.getValueType();
5612     assert(!CVT.isVector() && "Must not broadcast a vector type");
5613     unsigned ScalarSize = CVT.getSizeInBits();
5614
5615     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5616       const Constant *C = 0;
5617       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5618         C = CI->getConstantIntValue();
5619       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5620         C = CF->getConstantFPValue();
5621
5622       assert(C && "Invalid constant type");
5623
5624       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5625       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5626       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5627       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5628                        MachinePointerInfo::getConstantPool(),
5629                        false, false, false, Alignment);
5630
5631       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5632     }
5633   }
5634
5635   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5636   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5637
5638   // Handle AVX2 in-register broadcasts.
5639   if (!IsLoad && Subtarget->hasInt256() &&
5640       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5641     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5642
5643   // The scalar source must be a normal load.
5644   if (!IsLoad)
5645     return SDValue();
5646
5647   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5648     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5649
5650   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5651   // double since there is no vbroadcastsd xmm
5652   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5653     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5654       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5655   }
5656
5657   // Unsupported broadcast.
5658   return SDValue();
5659 }
5660
5661 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5662   MVT VT = Op.getSimpleValueType();
5663
5664   // Skip if insert_vec_elt is not supported.
5665   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5666   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5667     return SDValue();
5668
5669   SDLoc DL(Op);
5670   unsigned NumElems = Op.getNumOperands();
5671
5672   SDValue VecIn1;
5673   SDValue VecIn2;
5674   SmallVector<unsigned, 4> InsertIndices;
5675   SmallVector<int, 8> Mask(NumElems, -1);
5676
5677   for (unsigned i = 0; i != NumElems; ++i) {
5678     unsigned Opc = Op.getOperand(i).getOpcode();
5679
5680     if (Opc == ISD::UNDEF)
5681       continue;
5682
5683     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5684       // Quit if more than 1 elements need inserting.
5685       if (InsertIndices.size() > 1)
5686         return SDValue();
5687
5688       InsertIndices.push_back(i);
5689       continue;
5690     }
5691
5692     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5693     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5694
5695     // Quit if extracted from vector of different type.
5696     if (ExtractedFromVec.getValueType() != VT)
5697       return SDValue();
5698
5699     // Quit if non-constant index.
5700     if (!isa<ConstantSDNode>(ExtIdx))
5701       return SDValue();
5702
5703     if (VecIn1.getNode() == 0)
5704       VecIn1 = ExtractedFromVec;
5705     else if (VecIn1 != ExtractedFromVec) {
5706       if (VecIn2.getNode() == 0)
5707         VecIn2 = ExtractedFromVec;
5708       else if (VecIn2 != ExtractedFromVec)
5709         // Quit if more than 2 vectors to shuffle
5710         return SDValue();
5711     }
5712
5713     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5714
5715     if (ExtractedFromVec == VecIn1)
5716       Mask[i] = Idx;
5717     else if (ExtractedFromVec == VecIn2)
5718       Mask[i] = Idx + NumElems;
5719   }
5720
5721   if (VecIn1.getNode() == 0)
5722     return SDValue();
5723
5724   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5725   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5726   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5727     unsigned Idx = InsertIndices[i];
5728     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5729                      DAG.getIntPtrConstant(Idx));
5730   }
5731
5732   return NV;
5733 }
5734
5735 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5736 SDValue
5737 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5738
5739   MVT VT = Op.getSimpleValueType();
5740   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5741          "Unexpected type in LowerBUILD_VECTORvXi1!");
5742
5743   SDLoc dl(Op);
5744   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5745     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5746     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5747                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5748     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5749                        Ops, VT.getVectorNumElements());
5750   }
5751
5752   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5753     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5754     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5755                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5756     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5757                        Ops, VT.getVectorNumElements());
5758   }
5759
5760   bool AllContants = true;
5761   uint64_t Immediate = 0;
5762   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5763     SDValue In = Op.getOperand(idx);
5764     if (In.getOpcode() == ISD::UNDEF)
5765       continue;
5766     if (!isa<ConstantSDNode>(In)) {
5767       AllContants = false;
5768       break;
5769     }
5770     if (cast<ConstantSDNode>(In)->getZExtValue())
5771       Immediate |= (1ULL << idx);
5772   }
5773
5774   if (AllContants) {
5775     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5776       DAG.getConstant(Immediate, MVT::i16));
5777     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5778                        DAG.getIntPtrConstant(0));
5779   }
5780
5781   // Splat vector (with undefs)
5782   SDValue In = Op.getOperand(0);
5783   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5784     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5785       llvm_unreachable("Unsupported predicate operation");
5786   }
5787
5788   SDValue EFLAGS, X86CC;
5789   if (In.getOpcode() == ISD::SETCC) {
5790     SDValue Op0 = In.getOperand(0);
5791     SDValue Op1 = In.getOperand(1);
5792     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5793     bool isFP = Op1.getValueType().isFloatingPoint();
5794     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5795
5796     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5797
5798     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5799     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5800     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5801   } else if (In.getOpcode() == X86ISD::SETCC) {
5802     X86CC = In.getOperand(0);
5803     EFLAGS = In.getOperand(1);
5804   } else {
5805     // The algorithm:
5806     //   Bit1 = In & 0x1
5807     //   if (Bit1 != 0)
5808     //     ZF = 0
5809     //   else
5810     //     ZF = 1
5811     //   if (ZF == 0)
5812     //     res = allOnes ### CMOVNE -1, %res
5813     //   else
5814     //     res = allZero
5815     MVT InVT = In.getSimpleValueType();
5816     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5817     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5818     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5819   }
5820
5821   if (VT == MVT::v16i1) {
5822     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5823     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5824     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5825           Cst0, Cst1, X86CC, EFLAGS);
5826     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5827   }
5828
5829   if (VT == MVT::v8i1) {
5830     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5831     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5832     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5833           Cst0, Cst1, X86CC, EFLAGS);
5834     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5835     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5836   }
5837   llvm_unreachable("Unsupported predicate operation");
5838 }
5839
5840 SDValue
5841 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5842   SDLoc dl(Op);
5843
5844   MVT VT = Op.getSimpleValueType();
5845   MVT ExtVT = VT.getVectorElementType();
5846   unsigned NumElems = Op.getNumOperands();
5847
5848   // Generate vectors for predicate vectors.
5849   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5850     return LowerBUILD_VECTORvXi1(Op, DAG);
5851
5852   // Vectors containing all zeros can be matched by pxor and xorps later
5853   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5854     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5855     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5856     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5857       return Op;
5858
5859     return getZeroVector(VT, Subtarget, DAG, dl);
5860   }
5861
5862   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5863   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5864   // vpcmpeqd on 256-bit vectors.
5865   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5866     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5867       return Op;
5868
5869     if (!VT.is512BitVector())
5870       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5871   }
5872
5873   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5874   if (Broadcast.getNode())
5875     return Broadcast;
5876
5877   unsigned EVTBits = ExtVT.getSizeInBits();
5878
5879   unsigned NumZero  = 0;
5880   unsigned NumNonZero = 0;
5881   unsigned NonZeros = 0;
5882   bool IsAllConstants = true;
5883   SmallSet<SDValue, 8> Values;
5884   for (unsigned i = 0; i < NumElems; ++i) {
5885     SDValue Elt = Op.getOperand(i);
5886     if (Elt.getOpcode() == ISD::UNDEF)
5887       continue;
5888     Values.insert(Elt);
5889     if (Elt.getOpcode() != ISD::Constant &&
5890         Elt.getOpcode() != ISD::ConstantFP)
5891       IsAllConstants = false;
5892     if (X86::isZeroNode(Elt))
5893       NumZero++;
5894     else {
5895       NonZeros |= (1 << i);
5896       NumNonZero++;
5897     }
5898   }
5899
5900   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5901   if (NumNonZero == 0)
5902     return DAG.getUNDEF(VT);
5903
5904   // Special case for single non-zero, non-undef, element.
5905   if (NumNonZero == 1) {
5906     unsigned Idx = countTrailingZeros(NonZeros);
5907     SDValue Item = Op.getOperand(Idx);
5908
5909     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5910     // the value are obviously zero, truncate the value to i32 and do the
5911     // insertion that way.  Only do this if the value is non-constant or if the
5912     // value is a constant being inserted into element 0.  It is cheaper to do
5913     // a constant pool load than it is to do a movd + shuffle.
5914     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5915         (!IsAllConstants || Idx == 0)) {
5916       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5917         // Handle SSE only.
5918         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5919         EVT VecVT = MVT::v4i32;
5920         unsigned VecElts = 4;
5921
5922         // Truncate the value (which may itself be a constant) to i32, and
5923         // convert it to a vector with movd (S2V+shuffle to zero extend).
5924         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5925         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5926         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5927
5928         // Now we have our 32-bit value zero extended in the low element of
5929         // a vector.  If Idx != 0, swizzle it into place.
5930         if (Idx != 0) {
5931           SmallVector<int, 4> Mask;
5932           Mask.push_back(Idx);
5933           for (unsigned i = 1; i != VecElts; ++i)
5934             Mask.push_back(i);
5935           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5936                                       &Mask[0]);
5937         }
5938         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5939       }
5940     }
5941
5942     // If we have a constant or non-constant insertion into the low element of
5943     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5944     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5945     // depending on what the source datatype is.
5946     if (Idx == 0) {
5947       if (NumZero == 0)
5948         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5949
5950       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5951           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5952         if (VT.is256BitVector() || VT.is512BitVector()) {
5953           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5954           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5955                              Item, DAG.getIntPtrConstant(0));
5956         }
5957         assert(VT.is128BitVector() && "Expected an SSE value type!");
5958         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5959         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5960         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5961       }
5962
5963       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5964         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5965         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5966         if (VT.is256BitVector()) {
5967           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5968           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5969         } else {
5970           assert(VT.is128BitVector() && "Expected an SSE value type!");
5971           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5972         }
5973         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5974       }
5975     }
5976
5977     // Is it a vector logical left shift?
5978     if (NumElems == 2 && Idx == 1 &&
5979         X86::isZeroNode(Op.getOperand(0)) &&
5980         !X86::isZeroNode(Op.getOperand(1))) {
5981       unsigned NumBits = VT.getSizeInBits();
5982       return getVShift(true, VT,
5983                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5984                                    VT, Op.getOperand(1)),
5985                        NumBits/2, DAG, *this, dl);
5986     }
5987
5988     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5989       return SDValue();
5990
5991     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5992     // is a non-constant being inserted into an element other than the low one,
5993     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5994     // movd/movss) to move this into the low element, then shuffle it into
5995     // place.
5996     if (EVTBits == 32) {
5997       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5998
5999       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6000       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6001       SmallVector<int, 8> MaskVec;
6002       for (unsigned i = 0; i != NumElems; ++i)
6003         MaskVec.push_back(i == Idx ? 0 : 1);
6004       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6005     }
6006   }
6007
6008   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6009   if (Values.size() == 1) {
6010     if (EVTBits == 32) {
6011       // Instead of a shuffle like this:
6012       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6013       // Check if it's possible to issue this instead.
6014       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6015       unsigned Idx = countTrailingZeros(NonZeros);
6016       SDValue Item = Op.getOperand(Idx);
6017       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6018         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6019     }
6020     return SDValue();
6021   }
6022
6023   // A vector full of immediates; various special cases are already
6024   // handled, so this is best done with a single constant-pool load.
6025   if (IsAllConstants)
6026     return SDValue();
6027
6028   // For AVX-length vectors, build the individual 128-bit pieces and use
6029   // shuffles to put them in place.
6030   if (VT.is256BitVector()) {
6031     SmallVector<SDValue, 32> V;
6032     for (unsigned i = 0; i != NumElems; ++i)
6033       V.push_back(Op.getOperand(i));
6034
6035     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6036
6037     // Build both the lower and upper subvector.
6038     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
6039     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
6040                                 NumElems/2);
6041
6042     // Recreate the wider vector with the lower and upper part.
6043     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6044   }
6045
6046   // Let legalizer expand 2-wide build_vectors.
6047   if (EVTBits == 64) {
6048     if (NumNonZero == 1) {
6049       // One half is zero or undef.
6050       unsigned Idx = countTrailingZeros(NonZeros);
6051       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6052                                  Op.getOperand(Idx));
6053       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6054     }
6055     return SDValue();
6056   }
6057
6058   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6059   if (EVTBits == 8 && NumElems == 16) {
6060     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6061                                         Subtarget, *this);
6062     if (V.getNode()) return V;
6063   }
6064
6065   if (EVTBits == 16 && NumElems == 8) {
6066     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6067                                       Subtarget, *this);
6068     if (V.getNode()) return V;
6069   }
6070
6071   // If element VT is == 32 bits, turn it into a number of shuffles.
6072   SmallVector<SDValue, 8> V(NumElems);
6073   if (NumElems == 4 && NumZero > 0) {
6074     for (unsigned i = 0; i < 4; ++i) {
6075       bool isZero = !(NonZeros & (1 << i));
6076       if (isZero)
6077         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6078       else
6079         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6080     }
6081
6082     for (unsigned i = 0; i < 2; ++i) {
6083       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6084         default: break;
6085         case 0:
6086           V[i] = V[i*2];  // Must be a zero vector.
6087           break;
6088         case 1:
6089           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6090           break;
6091         case 2:
6092           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6093           break;
6094         case 3:
6095           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6096           break;
6097       }
6098     }
6099
6100     bool Reverse1 = (NonZeros & 0x3) == 2;
6101     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6102     int MaskVec[] = {
6103       Reverse1 ? 1 : 0,
6104       Reverse1 ? 0 : 1,
6105       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6106       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6107     };
6108     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6109   }
6110
6111   if (Values.size() > 1 && VT.is128BitVector()) {
6112     // Check for a build vector of consecutive loads.
6113     for (unsigned i = 0; i < NumElems; ++i)
6114       V[i] = Op.getOperand(i);
6115
6116     // Check for elements which are consecutive loads.
6117     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6118     if (LD.getNode())
6119       return LD;
6120
6121     // Check for a build vector from mostly shuffle plus few inserting.
6122     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6123     if (Sh.getNode())
6124       return Sh;
6125
6126     // For SSE 4.1, use insertps to put the high elements into the low element.
6127     if (getSubtarget()->hasSSE41()) {
6128       SDValue Result;
6129       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6130         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6131       else
6132         Result = DAG.getUNDEF(VT);
6133
6134       for (unsigned i = 1; i < NumElems; ++i) {
6135         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6136         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6137                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6138       }
6139       return Result;
6140     }
6141
6142     // Otherwise, expand into a number of unpckl*, start by extending each of
6143     // our (non-undef) elements to the full vector width with the element in the
6144     // bottom slot of the vector (which generates no code for SSE).
6145     for (unsigned i = 0; i < NumElems; ++i) {
6146       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6147         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6148       else
6149         V[i] = DAG.getUNDEF(VT);
6150     }
6151
6152     // Next, we iteratively mix elements, e.g. for v4f32:
6153     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6154     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6155     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6156     unsigned EltStride = NumElems >> 1;
6157     while (EltStride != 0) {
6158       for (unsigned i = 0; i < EltStride; ++i) {
6159         // If V[i+EltStride] is undef and this is the first round of mixing,
6160         // then it is safe to just drop this shuffle: V[i] is already in the
6161         // right place, the one element (since it's the first round) being
6162         // inserted as undef can be dropped.  This isn't safe for successive
6163         // rounds because they will permute elements within both vectors.
6164         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6165             EltStride == NumElems/2)
6166           continue;
6167
6168         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6169       }
6170       EltStride >>= 1;
6171     }
6172     return V[0];
6173   }
6174   return SDValue();
6175 }
6176
6177 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6178 // to create 256-bit vectors from two other 128-bit ones.
6179 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6180   SDLoc dl(Op);
6181   MVT ResVT = Op.getSimpleValueType();
6182
6183   assert((ResVT.is256BitVector() ||
6184           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6185
6186   SDValue V1 = Op.getOperand(0);
6187   SDValue V2 = Op.getOperand(1);
6188   unsigned NumElems = ResVT.getVectorNumElements();
6189   if(ResVT.is256BitVector())
6190     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6191
6192   if (Op.getNumOperands() == 4) {
6193     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6194                                 ResVT.getVectorNumElements()/2);
6195     SDValue V3 = Op.getOperand(2);
6196     SDValue V4 = Op.getOperand(3);
6197     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6198       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6199   }
6200   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6201 }
6202
6203 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6204   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6205   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6206          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6207           Op.getNumOperands() == 4)));
6208
6209   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6210   // from two other 128-bit ones.
6211
6212   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6213   return LowerAVXCONCAT_VECTORS(Op, DAG);
6214 }
6215
6216 // Try to lower a shuffle node into a simple blend instruction.
6217 static SDValue
6218 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6219                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6220   SDValue V1 = SVOp->getOperand(0);
6221   SDValue V2 = SVOp->getOperand(1);
6222   SDLoc dl(SVOp);
6223   MVT VT = SVOp->getSimpleValueType(0);
6224   MVT EltVT = VT.getVectorElementType();
6225   unsigned NumElems = VT.getVectorNumElements();
6226
6227   // There is no blend with immediate in AVX-512.
6228   if (VT.is512BitVector())
6229     return SDValue();
6230
6231   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6232     return SDValue();
6233   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6234     return SDValue();
6235
6236   // Check the mask for BLEND and build the value.
6237   unsigned MaskValue = 0;
6238   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6239   unsigned NumLanes = (NumElems-1)/8 + 1;
6240   unsigned NumElemsInLane = NumElems / NumLanes;
6241
6242   // Blend for v16i16 should be symetric for the both lanes.
6243   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6244
6245     int SndLaneEltIdx = (NumLanes == 2) ?
6246       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6247     int EltIdx = SVOp->getMaskElt(i);
6248
6249     if ((EltIdx < 0 || EltIdx == (int)i) &&
6250         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6251       continue;
6252
6253     if (((unsigned)EltIdx == (i + NumElems)) &&
6254         (SndLaneEltIdx < 0 ||
6255          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6256       MaskValue |= (1<<i);
6257     else
6258       return SDValue();
6259   }
6260
6261   // Convert i32 vectors to floating point if it is not AVX2.
6262   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6263   MVT BlendVT = VT;
6264   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6265     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6266                                NumElems);
6267     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6268     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6269   }
6270
6271   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6272                             DAG.getConstant(MaskValue, MVT::i32));
6273   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6274 }
6275
6276 // v8i16 shuffles - Prefer shuffles in the following order:
6277 // 1. [all]   pshuflw, pshufhw, optional move
6278 // 2. [ssse3] 1 x pshufb
6279 // 3. [ssse3] 2 x pshufb + 1 x por
6280 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6281 static SDValue
6282 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6283                          SelectionDAG &DAG) {
6284   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6285   SDValue V1 = SVOp->getOperand(0);
6286   SDValue V2 = SVOp->getOperand(1);
6287   SDLoc dl(SVOp);
6288   SmallVector<int, 8> MaskVals;
6289
6290   // Determine if more than 1 of the words in each of the low and high quadwords
6291   // of the result come from the same quadword of one of the two inputs.  Undef
6292   // mask values count as coming from any quadword, for better codegen.
6293   unsigned LoQuad[] = { 0, 0, 0, 0 };
6294   unsigned HiQuad[] = { 0, 0, 0, 0 };
6295   std::bitset<4> InputQuads;
6296   for (unsigned i = 0; i < 8; ++i) {
6297     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6298     int EltIdx = SVOp->getMaskElt(i);
6299     MaskVals.push_back(EltIdx);
6300     if (EltIdx < 0) {
6301       ++Quad[0];
6302       ++Quad[1];
6303       ++Quad[2];
6304       ++Quad[3];
6305       continue;
6306     }
6307     ++Quad[EltIdx / 4];
6308     InputQuads.set(EltIdx / 4);
6309   }
6310
6311   int BestLoQuad = -1;
6312   unsigned MaxQuad = 1;
6313   for (unsigned i = 0; i < 4; ++i) {
6314     if (LoQuad[i] > MaxQuad) {
6315       BestLoQuad = i;
6316       MaxQuad = LoQuad[i];
6317     }
6318   }
6319
6320   int BestHiQuad = -1;
6321   MaxQuad = 1;
6322   for (unsigned i = 0; i < 4; ++i) {
6323     if (HiQuad[i] > MaxQuad) {
6324       BestHiQuad = i;
6325       MaxQuad = HiQuad[i];
6326     }
6327   }
6328
6329   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6330   // of the two input vectors, shuffle them into one input vector so only a
6331   // single pshufb instruction is necessary. If There are more than 2 input
6332   // quads, disable the next transformation since it does not help SSSE3.
6333   bool V1Used = InputQuads[0] || InputQuads[1];
6334   bool V2Used = InputQuads[2] || InputQuads[3];
6335   if (Subtarget->hasSSSE3()) {
6336     if (InputQuads.count() == 2 && V1Used && V2Used) {
6337       BestLoQuad = InputQuads[0] ? 0 : 1;
6338       BestHiQuad = InputQuads[2] ? 2 : 3;
6339     }
6340     if (InputQuads.count() > 2) {
6341       BestLoQuad = -1;
6342       BestHiQuad = -1;
6343     }
6344   }
6345
6346   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6347   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6348   // words from all 4 input quadwords.
6349   SDValue NewV;
6350   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6351     int MaskV[] = {
6352       BestLoQuad < 0 ? 0 : BestLoQuad,
6353       BestHiQuad < 0 ? 1 : BestHiQuad
6354     };
6355     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6356                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6357                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6358     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6359
6360     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6361     // source words for the shuffle, to aid later transformations.
6362     bool AllWordsInNewV = true;
6363     bool InOrder[2] = { true, true };
6364     for (unsigned i = 0; i != 8; ++i) {
6365       int idx = MaskVals[i];
6366       if (idx != (int)i)
6367         InOrder[i/4] = false;
6368       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6369         continue;
6370       AllWordsInNewV = false;
6371       break;
6372     }
6373
6374     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6375     if (AllWordsInNewV) {
6376       for (int i = 0; i != 8; ++i) {
6377         int idx = MaskVals[i];
6378         if (idx < 0)
6379           continue;
6380         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6381         if ((idx != i) && idx < 4)
6382           pshufhw = false;
6383         if ((idx != i) && idx > 3)
6384           pshuflw = false;
6385       }
6386       V1 = NewV;
6387       V2Used = false;
6388       BestLoQuad = 0;
6389       BestHiQuad = 1;
6390     }
6391
6392     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6393     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6394     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6395       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6396       unsigned TargetMask = 0;
6397       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6398                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6399       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6400       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6401                              getShufflePSHUFLWImmediate(SVOp);
6402       V1 = NewV.getOperand(0);
6403       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6404     }
6405   }
6406
6407   // Promote splats to a larger type which usually leads to more efficient code.
6408   // FIXME: Is this true if pshufb is available?
6409   if (SVOp->isSplat())
6410     return PromoteSplat(SVOp, DAG);
6411
6412   // If we have SSSE3, and all words of the result are from 1 input vector,
6413   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6414   // is present, fall back to case 4.
6415   if (Subtarget->hasSSSE3()) {
6416     SmallVector<SDValue,16> pshufbMask;
6417
6418     // If we have elements from both input vectors, set the high bit of the
6419     // shuffle mask element to zero out elements that come from V2 in the V1
6420     // mask, and elements that come from V1 in the V2 mask, so that the two
6421     // results can be OR'd together.
6422     bool TwoInputs = V1Used && V2Used;
6423     for (unsigned i = 0; i != 8; ++i) {
6424       int EltIdx = MaskVals[i] * 2;
6425       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6426       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6427       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6428       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6429     }
6430     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6431     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6432                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6433                                  MVT::v16i8, &pshufbMask[0], 16));
6434     if (!TwoInputs)
6435       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6436
6437     // Calculate the shuffle mask for the second input, shuffle it, and
6438     // OR it with the first shuffled input.
6439     pshufbMask.clear();
6440     for (unsigned i = 0; i != 8; ++i) {
6441       int EltIdx = MaskVals[i] * 2;
6442       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6443       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6444       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6445       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6446     }
6447     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6448     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6449                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6450                                  MVT::v16i8, &pshufbMask[0], 16));
6451     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6452     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6453   }
6454
6455   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6456   // and update MaskVals with new element order.
6457   std::bitset<8> InOrder;
6458   if (BestLoQuad >= 0) {
6459     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6460     for (int i = 0; i != 4; ++i) {
6461       int idx = MaskVals[i];
6462       if (idx < 0) {
6463         InOrder.set(i);
6464       } else if ((idx / 4) == BestLoQuad) {
6465         MaskV[i] = idx & 3;
6466         InOrder.set(i);
6467       }
6468     }
6469     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6470                                 &MaskV[0]);
6471
6472     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6473       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6474       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6475                                   NewV.getOperand(0),
6476                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6477     }
6478   }
6479
6480   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6481   // and update MaskVals with the new element order.
6482   if (BestHiQuad >= 0) {
6483     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6484     for (unsigned i = 4; i != 8; ++i) {
6485       int idx = MaskVals[i];
6486       if (idx < 0) {
6487         InOrder.set(i);
6488       } else if ((idx / 4) == BestHiQuad) {
6489         MaskV[i] = (idx & 3) + 4;
6490         InOrder.set(i);
6491       }
6492     }
6493     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6494                                 &MaskV[0]);
6495
6496     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6497       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6498       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6499                                   NewV.getOperand(0),
6500                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6501     }
6502   }
6503
6504   // In case BestHi & BestLo were both -1, which means each quadword has a word
6505   // from each of the four input quadwords, calculate the InOrder bitvector now
6506   // before falling through to the insert/extract cleanup.
6507   if (BestLoQuad == -1 && BestHiQuad == -1) {
6508     NewV = V1;
6509     for (int i = 0; i != 8; ++i)
6510       if (MaskVals[i] < 0 || MaskVals[i] == i)
6511         InOrder.set(i);
6512   }
6513
6514   // The other elements are put in the right place using pextrw and pinsrw.
6515   for (unsigned i = 0; i != 8; ++i) {
6516     if (InOrder[i])
6517       continue;
6518     int EltIdx = MaskVals[i];
6519     if (EltIdx < 0)
6520       continue;
6521     SDValue ExtOp = (EltIdx < 8) ?
6522       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6523                   DAG.getIntPtrConstant(EltIdx)) :
6524       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6525                   DAG.getIntPtrConstant(EltIdx - 8));
6526     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6527                        DAG.getIntPtrConstant(i));
6528   }
6529   return NewV;
6530 }
6531
6532 // v16i8 shuffles - Prefer shuffles in the following order:
6533 // 1. [ssse3] 1 x pshufb
6534 // 2. [ssse3] 2 x pshufb + 1 x por
6535 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6536 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6537                                         const X86Subtarget* Subtarget,
6538                                         SelectionDAG &DAG) {
6539   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6540   SDValue V1 = SVOp->getOperand(0);
6541   SDValue V2 = SVOp->getOperand(1);
6542   SDLoc dl(SVOp);
6543   ArrayRef<int> MaskVals = SVOp->getMask();
6544
6545   // Promote splats to a larger type which usually leads to more efficient code.
6546   // FIXME: Is this true if pshufb is available?
6547   if (SVOp->isSplat())
6548     return PromoteSplat(SVOp, DAG);
6549
6550   // If we have SSSE3, case 1 is generated when all result bytes come from
6551   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6552   // present, fall back to case 3.
6553
6554   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6555   if (Subtarget->hasSSSE3()) {
6556     SmallVector<SDValue,16> pshufbMask;
6557
6558     // If all result elements are from one input vector, then only translate
6559     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6560     //
6561     // Otherwise, we have elements from both input vectors, and must zero out
6562     // elements that come from V2 in the first mask, and V1 in the second mask
6563     // so that we can OR them together.
6564     for (unsigned i = 0; i != 16; ++i) {
6565       int EltIdx = MaskVals[i];
6566       if (EltIdx < 0 || EltIdx >= 16)
6567         EltIdx = 0x80;
6568       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6569     }
6570     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6571                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6572                                  MVT::v16i8, &pshufbMask[0], 16));
6573
6574     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6575     // the 2nd operand if it's undefined or zero.
6576     if (V2.getOpcode() == ISD::UNDEF ||
6577         ISD::isBuildVectorAllZeros(V2.getNode()))
6578       return V1;
6579
6580     // Calculate the shuffle mask for the second input, shuffle it, and
6581     // OR it with the first shuffled input.
6582     pshufbMask.clear();
6583     for (unsigned i = 0; i != 16; ++i) {
6584       int EltIdx = MaskVals[i];
6585       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6586       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6587     }
6588     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6589                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6590                                  MVT::v16i8, &pshufbMask[0], 16));
6591     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6592   }
6593
6594   // No SSSE3 - Calculate in place words and then fix all out of place words
6595   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6596   // the 16 different words that comprise the two doublequadword input vectors.
6597   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6598   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6599   SDValue NewV = V1;
6600   for (int i = 0; i != 8; ++i) {
6601     int Elt0 = MaskVals[i*2];
6602     int Elt1 = MaskVals[i*2+1];
6603
6604     // This word of the result is all undef, skip it.
6605     if (Elt0 < 0 && Elt1 < 0)
6606       continue;
6607
6608     // This word of the result is already in the correct place, skip it.
6609     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6610       continue;
6611
6612     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6613     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6614     SDValue InsElt;
6615
6616     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6617     // using a single extract together, load it and store it.
6618     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6619       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6620                            DAG.getIntPtrConstant(Elt1 / 2));
6621       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6622                         DAG.getIntPtrConstant(i));
6623       continue;
6624     }
6625
6626     // If Elt1 is defined, extract it from the appropriate source.  If the
6627     // source byte is not also odd, shift the extracted word left 8 bits
6628     // otherwise clear the bottom 8 bits if we need to do an or.
6629     if (Elt1 >= 0) {
6630       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6631                            DAG.getIntPtrConstant(Elt1 / 2));
6632       if ((Elt1 & 1) == 0)
6633         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6634                              DAG.getConstant(8,
6635                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6636       else if (Elt0 >= 0)
6637         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6638                              DAG.getConstant(0xFF00, MVT::i16));
6639     }
6640     // If Elt0 is defined, extract it from the appropriate source.  If the
6641     // source byte is not also even, shift the extracted word right 8 bits. If
6642     // Elt1 was also defined, OR the extracted values together before
6643     // inserting them in the result.
6644     if (Elt0 >= 0) {
6645       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6646                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6647       if ((Elt0 & 1) != 0)
6648         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6649                               DAG.getConstant(8,
6650                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6651       else if (Elt1 >= 0)
6652         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6653                              DAG.getConstant(0x00FF, MVT::i16));
6654       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6655                          : InsElt0;
6656     }
6657     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6658                        DAG.getIntPtrConstant(i));
6659   }
6660   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6661 }
6662
6663 // v32i8 shuffles - Translate to VPSHUFB if possible.
6664 static
6665 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6666                                  const X86Subtarget *Subtarget,
6667                                  SelectionDAG &DAG) {
6668   MVT VT = SVOp->getSimpleValueType(0);
6669   SDValue V1 = SVOp->getOperand(0);
6670   SDValue V2 = SVOp->getOperand(1);
6671   SDLoc dl(SVOp);
6672   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6673
6674   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6675   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6676   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6677
6678   // VPSHUFB may be generated if
6679   // (1) one of input vector is undefined or zeroinitializer.
6680   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6681   // And (2) the mask indexes don't cross the 128-bit lane.
6682   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6683       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6684     return SDValue();
6685
6686   if (V1IsAllZero && !V2IsAllZero) {
6687     CommuteVectorShuffleMask(MaskVals, 32);
6688     V1 = V2;
6689   }
6690   SmallVector<SDValue, 32> pshufbMask;
6691   for (unsigned i = 0; i != 32; i++) {
6692     int EltIdx = MaskVals[i];
6693     if (EltIdx < 0 || EltIdx >= 32)
6694       EltIdx = 0x80;
6695     else {
6696       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6697         // Cross lane is not allowed.
6698         return SDValue();
6699       EltIdx &= 0xf;
6700     }
6701     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6702   }
6703   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6704                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6705                                   MVT::v32i8, &pshufbMask[0], 32));
6706 }
6707
6708 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6709 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6710 /// done when every pair / quad of shuffle mask elements point to elements in
6711 /// the right sequence. e.g.
6712 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6713 static
6714 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6715                                  SelectionDAG &DAG) {
6716   MVT VT = SVOp->getSimpleValueType(0);
6717   SDLoc dl(SVOp);
6718   unsigned NumElems = VT.getVectorNumElements();
6719   MVT NewVT;
6720   unsigned Scale;
6721   switch (VT.SimpleTy) {
6722   default: llvm_unreachable("Unexpected!");
6723   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6724   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6725   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6726   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6727   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6728   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6729   }
6730
6731   SmallVector<int, 8> MaskVec;
6732   for (unsigned i = 0; i != NumElems; i += Scale) {
6733     int StartIdx = -1;
6734     for (unsigned j = 0; j != Scale; ++j) {
6735       int EltIdx = SVOp->getMaskElt(i+j);
6736       if (EltIdx < 0)
6737         continue;
6738       if (StartIdx < 0)
6739         StartIdx = (EltIdx / Scale);
6740       if (EltIdx != (int)(StartIdx*Scale + j))
6741         return SDValue();
6742     }
6743     MaskVec.push_back(StartIdx);
6744   }
6745
6746   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6747   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6748   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6749 }
6750
6751 /// getVZextMovL - Return a zero-extending vector move low node.
6752 ///
6753 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6754                             SDValue SrcOp, SelectionDAG &DAG,
6755                             const X86Subtarget *Subtarget, SDLoc dl) {
6756   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6757     LoadSDNode *LD = NULL;
6758     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6759       LD = dyn_cast<LoadSDNode>(SrcOp);
6760     if (!LD) {
6761       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6762       // instead.
6763       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6764       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6765           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6766           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6767           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6768         // PR2108
6769         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6770         return DAG.getNode(ISD::BITCAST, dl, VT,
6771                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6772                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6773                                                    OpVT,
6774                                                    SrcOp.getOperand(0)
6775                                                           .getOperand(0))));
6776       }
6777     }
6778   }
6779
6780   return DAG.getNode(ISD::BITCAST, dl, VT,
6781                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6782                                  DAG.getNode(ISD::BITCAST, dl,
6783                                              OpVT, SrcOp)));
6784 }
6785
6786 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6787 /// which could not be matched by any known target speficic shuffle
6788 static SDValue
6789 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6790
6791   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6792   if (NewOp.getNode())
6793     return NewOp;
6794
6795   MVT VT = SVOp->getSimpleValueType(0);
6796
6797   unsigned NumElems = VT.getVectorNumElements();
6798   unsigned NumLaneElems = NumElems / 2;
6799
6800   SDLoc dl(SVOp);
6801   MVT EltVT = VT.getVectorElementType();
6802   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6803   SDValue Output[2];
6804
6805   SmallVector<int, 16> Mask;
6806   for (unsigned l = 0; l < 2; ++l) {
6807     // Build a shuffle mask for the output, discovering on the fly which
6808     // input vectors to use as shuffle operands (recorded in InputUsed).
6809     // If building a suitable shuffle vector proves too hard, then bail
6810     // out with UseBuildVector set.
6811     bool UseBuildVector = false;
6812     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6813     unsigned LaneStart = l * NumLaneElems;
6814     for (unsigned i = 0; i != NumLaneElems; ++i) {
6815       // The mask element.  This indexes into the input.
6816       int Idx = SVOp->getMaskElt(i+LaneStart);
6817       if (Idx < 0) {
6818         // the mask element does not index into any input vector.
6819         Mask.push_back(-1);
6820         continue;
6821       }
6822
6823       // The input vector this mask element indexes into.
6824       int Input = Idx / NumLaneElems;
6825
6826       // Turn the index into an offset from the start of the input vector.
6827       Idx -= Input * NumLaneElems;
6828
6829       // Find or create a shuffle vector operand to hold this input.
6830       unsigned OpNo;
6831       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6832         if (InputUsed[OpNo] == Input)
6833           // This input vector is already an operand.
6834           break;
6835         if (InputUsed[OpNo] < 0) {
6836           // Create a new operand for this input vector.
6837           InputUsed[OpNo] = Input;
6838           break;
6839         }
6840       }
6841
6842       if (OpNo >= array_lengthof(InputUsed)) {
6843         // More than two input vectors used!  Give up on trying to create a
6844         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6845         UseBuildVector = true;
6846         break;
6847       }
6848
6849       // Add the mask index for the new shuffle vector.
6850       Mask.push_back(Idx + OpNo * NumLaneElems);
6851     }
6852
6853     if (UseBuildVector) {
6854       SmallVector<SDValue, 16> SVOps;
6855       for (unsigned i = 0; i != NumLaneElems; ++i) {
6856         // The mask element.  This indexes into the input.
6857         int Idx = SVOp->getMaskElt(i+LaneStart);
6858         if (Idx < 0) {
6859           SVOps.push_back(DAG.getUNDEF(EltVT));
6860           continue;
6861         }
6862
6863         // The input vector this mask element indexes into.
6864         int Input = Idx / NumElems;
6865
6866         // Turn the index into an offset from the start of the input vector.
6867         Idx -= Input * NumElems;
6868
6869         // Extract the vector element by hand.
6870         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6871                                     SVOp->getOperand(Input),
6872                                     DAG.getIntPtrConstant(Idx)));
6873       }
6874
6875       // Construct the output using a BUILD_VECTOR.
6876       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6877                               SVOps.size());
6878     } else if (InputUsed[0] < 0) {
6879       // No input vectors were used! The result is undefined.
6880       Output[l] = DAG.getUNDEF(NVT);
6881     } else {
6882       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6883                                         (InputUsed[0] % 2) * NumLaneElems,
6884                                         DAG, dl);
6885       // If only one input was used, use an undefined vector for the other.
6886       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6887         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6888                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6889       // At least one input vector was used. Create a new shuffle vector.
6890       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6891     }
6892
6893     Mask.clear();
6894   }
6895
6896   // Concatenate the result back
6897   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6898 }
6899
6900 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6901 /// 4 elements, and match them with several different shuffle types.
6902 static SDValue
6903 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6904   SDValue V1 = SVOp->getOperand(0);
6905   SDValue V2 = SVOp->getOperand(1);
6906   SDLoc dl(SVOp);
6907   MVT VT = SVOp->getSimpleValueType(0);
6908
6909   assert(VT.is128BitVector() && "Unsupported vector size");
6910
6911   std::pair<int, int> Locs[4];
6912   int Mask1[] = { -1, -1, -1, -1 };
6913   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6914
6915   unsigned NumHi = 0;
6916   unsigned NumLo = 0;
6917   for (unsigned i = 0; i != 4; ++i) {
6918     int Idx = PermMask[i];
6919     if (Idx < 0) {
6920       Locs[i] = std::make_pair(-1, -1);
6921     } else {
6922       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6923       if (Idx < 4) {
6924         Locs[i] = std::make_pair(0, NumLo);
6925         Mask1[NumLo] = Idx;
6926         NumLo++;
6927       } else {
6928         Locs[i] = std::make_pair(1, NumHi);
6929         if (2+NumHi < 4)
6930           Mask1[2+NumHi] = Idx;
6931         NumHi++;
6932       }
6933     }
6934   }
6935
6936   if (NumLo <= 2 && NumHi <= 2) {
6937     // If no more than two elements come from either vector. This can be
6938     // implemented with two shuffles. First shuffle gather the elements.
6939     // The second shuffle, which takes the first shuffle as both of its
6940     // vector operands, put the elements into the right order.
6941     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6942
6943     int Mask2[] = { -1, -1, -1, -1 };
6944
6945     for (unsigned i = 0; i != 4; ++i)
6946       if (Locs[i].first != -1) {
6947         unsigned Idx = (i < 2) ? 0 : 4;
6948         Idx += Locs[i].first * 2 + Locs[i].second;
6949         Mask2[i] = Idx;
6950       }
6951
6952     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6953   }
6954
6955   if (NumLo == 3 || NumHi == 3) {
6956     // Otherwise, we must have three elements from one vector, call it X, and
6957     // one element from the other, call it Y.  First, use a shufps to build an
6958     // intermediate vector with the one element from Y and the element from X
6959     // that will be in the same half in the final destination (the indexes don't
6960     // matter). Then, use a shufps to build the final vector, taking the half
6961     // containing the element from Y from the intermediate, and the other half
6962     // from X.
6963     if (NumHi == 3) {
6964       // Normalize it so the 3 elements come from V1.
6965       CommuteVectorShuffleMask(PermMask, 4);
6966       std::swap(V1, V2);
6967     }
6968
6969     // Find the element from V2.
6970     unsigned HiIndex;
6971     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6972       int Val = PermMask[HiIndex];
6973       if (Val < 0)
6974         continue;
6975       if (Val >= 4)
6976         break;
6977     }
6978
6979     Mask1[0] = PermMask[HiIndex];
6980     Mask1[1] = -1;
6981     Mask1[2] = PermMask[HiIndex^1];
6982     Mask1[3] = -1;
6983     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6984
6985     if (HiIndex >= 2) {
6986       Mask1[0] = PermMask[0];
6987       Mask1[1] = PermMask[1];
6988       Mask1[2] = HiIndex & 1 ? 6 : 4;
6989       Mask1[3] = HiIndex & 1 ? 4 : 6;
6990       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6991     }
6992
6993     Mask1[0] = HiIndex & 1 ? 2 : 0;
6994     Mask1[1] = HiIndex & 1 ? 0 : 2;
6995     Mask1[2] = PermMask[2];
6996     Mask1[3] = PermMask[3];
6997     if (Mask1[2] >= 0)
6998       Mask1[2] += 4;
6999     if (Mask1[3] >= 0)
7000       Mask1[3] += 4;
7001     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
7002   }
7003
7004   // Break it into (shuffle shuffle_hi, shuffle_lo).
7005   int LoMask[] = { -1, -1, -1, -1 };
7006   int HiMask[] = { -1, -1, -1, -1 };
7007
7008   int *MaskPtr = LoMask;
7009   unsigned MaskIdx = 0;
7010   unsigned LoIdx = 0;
7011   unsigned HiIdx = 2;
7012   for (unsigned i = 0; i != 4; ++i) {
7013     if (i == 2) {
7014       MaskPtr = HiMask;
7015       MaskIdx = 1;
7016       LoIdx = 0;
7017       HiIdx = 2;
7018     }
7019     int Idx = PermMask[i];
7020     if (Idx < 0) {
7021       Locs[i] = std::make_pair(-1, -1);
7022     } else if (Idx < 4) {
7023       Locs[i] = std::make_pair(MaskIdx, LoIdx);
7024       MaskPtr[LoIdx] = Idx;
7025       LoIdx++;
7026     } else {
7027       Locs[i] = std::make_pair(MaskIdx, HiIdx);
7028       MaskPtr[HiIdx] = Idx;
7029       HiIdx++;
7030     }
7031   }
7032
7033   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
7034   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
7035   int MaskOps[] = { -1, -1, -1, -1 };
7036   for (unsigned i = 0; i != 4; ++i)
7037     if (Locs[i].first != -1)
7038       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
7039   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
7040 }
7041
7042 static bool MayFoldVectorLoad(SDValue V) {
7043   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
7044     V = V.getOperand(0);
7045
7046   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
7047     V = V.getOperand(0);
7048   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
7049       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
7050     // BUILD_VECTOR (load), undef
7051     V = V.getOperand(0);
7052
7053   return MayFoldLoad(V);
7054 }
7055
7056 static
7057 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
7058   MVT VT = Op.getSimpleValueType();
7059
7060   // Canonizalize to v2f64.
7061   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7062   return DAG.getNode(ISD::BITCAST, dl, VT,
7063                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7064                                           V1, DAG));
7065 }
7066
7067 static
7068 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
7069                         bool HasSSE2) {
7070   SDValue V1 = Op.getOperand(0);
7071   SDValue V2 = Op.getOperand(1);
7072   MVT VT = Op.getSimpleValueType();
7073
7074   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7075
7076   if (HasSSE2 && VT == MVT::v2f64)
7077     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7078
7079   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7080   return DAG.getNode(ISD::BITCAST, dl, VT,
7081                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7082                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7083                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7084 }
7085
7086 static
7087 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7088   SDValue V1 = Op.getOperand(0);
7089   SDValue V2 = Op.getOperand(1);
7090   MVT VT = Op.getSimpleValueType();
7091
7092   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7093          "unsupported shuffle type");
7094
7095   if (V2.getOpcode() == ISD::UNDEF)
7096     V2 = V1;
7097
7098   // v4i32 or v4f32
7099   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7100 }
7101
7102 static
7103 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7104   SDValue V1 = Op.getOperand(0);
7105   SDValue V2 = Op.getOperand(1);
7106   MVT VT = Op.getSimpleValueType();
7107   unsigned NumElems = VT.getVectorNumElements();
7108
7109   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7110   // operand of these instructions is only memory, so check if there's a
7111   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7112   // same masks.
7113   bool CanFoldLoad = false;
7114
7115   // Trivial case, when V2 comes from a load.
7116   if (MayFoldVectorLoad(V2))
7117     CanFoldLoad = true;
7118
7119   // When V1 is a load, it can be folded later into a store in isel, example:
7120   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7121   //    turns into:
7122   //  (MOVLPSmr addr:$src1, VR128:$src2)
7123   // So, recognize this potential and also use MOVLPS or MOVLPD
7124   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7125     CanFoldLoad = true;
7126
7127   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7128   if (CanFoldLoad) {
7129     if (HasSSE2 && NumElems == 2)
7130       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7131
7132     if (NumElems == 4)
7133       // If we don't care about the second element, proceed to use movss.
7134       if (SVOp->getMaskElt(1) != -1)
7135         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7136   }
7137
7138   // movl and movlp will both match v2i64, but v2i64 is never matched by
7139   // movl earlier because we make it strict to avoid messing with the movlp load
7140   // folding logic (see the code above getMOVLP call). Match it here then,
7141   // this is horrible, but will stay like this until we move all shuffle
7142   // matching to x86 specific nodes. Note that for the 1st condition all
7143   // types are matched with movsd.
7144   if (HasSSE2) {
7145     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7146     // as to remove this logic from here, as much as possible
7147     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7148       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7149     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7150   }
7151
7152   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7153
7154   // Invert the operand order and use SHUFPS to match it.
7155   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7156                               getShuffleSHUFImmediate(SVOp), DAG);
7157 }
7158
7159 // Reduce a vector shuffle to zext.
7160 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7161                                     SelectionDAG &DAG) {
7162   // PMOVZX is only available from SSE41.
7163   if (!Subtarget->hasSSE41())
7164     return SDValue();
7165
7166   MVT VT = Op.getSimpleValueType();
7167
7168   // Only AVX2 support 256-bit vector integer extending.
7169   if (!Subtarget->hasInt256() && VT.is256BitVector())
7170     return SDValue();
7171
7172   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7173   SDLoc DL(Op);
7174   SDValue V1 = Op.getOperand(0);
7175   SDValue V2 = Op.getOperand(1);
7176   unsigned NumElems = VT.getVectorNumElements();
7177
7178   // Extending is an unary operation and the element type of the source vector
7179   // won't be equal to or larger than i64.
7180   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7181       VT.getVectorElementType() == MVT::i64)
7182     return SDValue();
7183
7184   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7185   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7186   while ((1U << Shift) < NumElems) {
7187     if (SVOp->getMaskElt(1U << Shift) == 1)
7188       break;
7189     Shift += 1;
7190     // The maximal ratio is 8, i.e. from i8 to i64.
7191     if (Shift > 3)
7192       return SDValue();
7193   }
7194
7195   // Check the shuffle mask.
7196   unsigned Mask = (1U << Shift) - 1;
7197   for (unsigned i = 0; i != NumElems; ++i) {
7198     int EltIdx = SVOp->getMaskElt(i);
7199     if ((i & Mask) != 0 && EltIdx != -1)
7200       return SDValue();
7201     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7202       return SDValue();
7203   }
7204
7205   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7206   MVT NeVT = MVT::getIntegerVT(NBits);
7207   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7208
7209   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7210     return SDValue();
7211
7212   // Simplify the operand as it's prepared to be fed into shuffle.
7213   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7214   if (V1.getOpcode() == ISD::BITCAST &&
7215       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7216       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7217       V1.getOperand(0).getOperand(0)
7218         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7219     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7220     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7221     ConstantSDNode *CIdx =
7222       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7223     // If it's foldable, i.e. normal load with single use, we will let code
7224     // selection to fold it. Otherwise, we will short the conversion sequence.
7225     if (CIdx && CIdx->getZExtValue() == 0 &&
7226         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7227       MVT FullVT = V.getSimpleValueType();
7228       MVT V1VT = V1.getSimpleValueType();
7229       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7230         // The "ext_vec_elt" node is wider than the result node.
7231         // In this case we should extract subvector from V.
7232         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7233         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7234         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7235                                         FullVT.getVectorNumElements()/Ratio);
7236         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7237                         DAG.getIntPtrConstant(0));
7238       }
7239       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7240     }
7241   }
7242
7243   return DAG.getNode(ISD::BITCAST, DL, VT,
7244                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7245 }
7246
7247 static SDValue
7248 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7249                        SelectionDAG &DAG) {
7250   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7251   MVT VT = Op.getSimpleValueType();
7252   SDLoc dl(Op);
7253   SDValue V1 = Op.getOperand(0);
7254   SDValue V2 = Op.getOperand(1);
7255
7256   if (isZeroShuffle(SVOp))
7257     return getZeroVector(VT, Subtarget, DAG, dl);
7258
7259   // Handle splat operations
7260   if (SVOp->isSplat()) {
7261     // Use vbroadcast whenever the splat comes from a foldable load
7262     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7263     if (Broadcast.getNode())
7264       return Broadcast;
7265   }
7266
7267   // Check integer expanding shuffles.
7268   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7269   if (NewOp.getNode())
7270     return NewOp;
7271
7272   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7273   // do it!
7274   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7275       VT == MVT::v16i16 || VT == MVT::v32i8) {
7276     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7277     if (NewOp.getNode())
7278       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7279   } else if ((VT == MVT::v4i32 ||
7280              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7281     // FIXME: Figure out a cleaner way to do this.
7282     // Try to make use of movq to zero out the top part.
7283     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7284       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7285       if (NewOp.getNode()) {
7286         MVT NewVT = NewOp.getSimpleValueType();
7287         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7288                                NewVT, true, false))
7289           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7290                               DAG, Subtarget, dl);
7291       }
7292     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7293       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7294       if (NewOp.getNode()) {
7295         MVT NewVT = NewOp.getSimpleValueType();
7296         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7297           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7298                               DAG, Subtarget, dl);
7299       }
7300     }
7301   }
7302   return SDValue();
7303 }
7304
7305 SDValue
7306 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7307   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7308   SDValue V1 = Op.getOperand(0);
7309   SDValue V2 = Op.getOperand(1);
7310   MVT VT = Op.getSimpleValueType();
7311   SDLoc dl(Op);
7312   unsigned NumElems = VT.getVectorNumElements();
7313   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7314   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7315   bool V1IsSplat = false;
7316   bool V2IsSplat = false;
7317   bool HasSSE2 = Subtarget->hasSSE2();
7318   bool HasFp256    = Subtarget->hasFp256();
7319   bool HasInt256   = Subtarget->hasInt256();
7320   MachineFunction &MF = DAG.getMachineFunction();
7321   bool OptForSize = MF.getFunction()->getAttributes().
7322     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7323
7324   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7325
7326   if (V1IsUndef && V2IsUndef)
7327     return DAG.getUNDEF(VT);
7328
7329   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7330
7331   // Vector shuffle lowering takes 3 steps:
7332   //
7333   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7334   //    narrowing and commutation of operands should be handled.
7335   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7336   //    shuffle nodes.
7337   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7338   //    so the shuffle can be broken into other shuffles and the legalizer can
7339   //    try the lowering again.
7340   //
7341   // The general idea is that no vector_shuffle operation should be left to
7342   // be matched during isel, all of them must be converted to a target specific
7343   // node here.
7344
7345   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7346   // narrowing and commutation of operands should be handled. The actual code
7347   // doesn't include all of those, work in progress...
7348   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7349   if (NewOp.getNode())
7350     return NewOp;
7351
7352   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7353
7354   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7355   // unpckh_undef). Only use pshufd if speed is more important than size.
7356   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7357     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7358   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7359     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7360
7361   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7362       V2IsUndef && MayFoldVectorLoad(V1))
7363     return getMOVDDup(Op, dl, V1, DAG);
7364
7365   if (isMOVHLPS_v_undef_Mask(M, VT))
7366     return getMOVHighToLow(Op, dl, DAG);
7367
7368   // Use to match splats
7369   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7370       (VT == MVT::v2f64 || VT == MVT::v2i64))
7371     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7372
7373   if (isPSHUFDMask(M, VT)) {
7374     // The actual implementation will match the mask in the if above and then
7375     // during isel it can match several different instructions, not only pshufd
7376     // as its name says, sad but true, emulate the behavior for now...
7377     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7378       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7379
7380     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7381
7382     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7383       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7384
7385     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7386       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7387                                   DAG);
7388
7389     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7390                                 TargetMask, DAG);
7391   }
7392
7393   if (isPALIGNRMask(M, VT, Subtarget))
7394     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7395                                 getShufflePALIGNRImmediate(SVOp),
7396                                 DAG);
7397
7398   // Check if this can be converted into a logical shift.
7399   bool isLeft = false;
7400   unsigned ShAmt = 0;
7401   SDValue ShVal;
7402   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7403   if (isShift && ShVal.hasOneUse()) {
7404     // If the shifted value has multiple uses, it may be cheaper to use
7405     // v_set0 + movlhps or movhlps, etc.
7406     MVT EltVT = VT.getVectorElementType();
7407     ShAmt *= EltVT.getSizeInBits();
7408     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7409   }
7410
7411   if (isMOVLMask(M, VT)) {
7412     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7413       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7414     if (!isMOVLPMask(M, VT)) {
7415       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7416         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7417
7418       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7419         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7420     }
7421   }
7422
7423   // FIXME: fold these into legal mask.
7424   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7425     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7426
7427   if (isMOVHLPSMask(M, VT))
7428     return getMOVHighToLow(Op, dl, DAG);
7429
7430   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7431     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7432
7433   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7434     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7435
7436   if (isMOVLPMask(M, VT))
7437     return getMOVLP(Op, dl, DAG, HasSSE2);
7438
7439   if (ShouldXformToMOVHLPS(M, VT) ||
7440       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7441     return CommuteVectorShuffle(SVOp, DAG);
7442
7443   if (isShift) {
7444     // No better options. Use a vshldq / vsrldq.
7445     MVT EltVT = VT.getVectorElementType();
7446     ShAmt *= EltVT.getSizeInBits();
7447     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7448   }
7449
7450   bool Commuted = false;
7451   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7452   // 1,1,1,1 -> v8i16 though.
7453   V1IsSplat = isSplatVector(V1.getNode());
7454   V2IsSplat = isSplatVector(V2.getNode());
7455
7456   // Canonicalize the splat or undef, if present, to be on the RHS.
7457   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7458     CommuteVectorShuffleMask(M, NumElems);
7459     std::swap(V1, V2);
7460     std::swap(V1IsSplat, V2IsSplat);
7461     Commuted = true;
7462   }
7463
7464   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7465     // Shuffling low element of v1 into undef, just return v1.
7466     if (V2IsUndef)
7467       return V1;
7468     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7469     // the instruction selector will not match, so get a canonical MOVL with
7470     // swapped operands to undo the commute.
7471     return getMOVL(DAG, dl, VT, V2, V1);
7472   }
7473
7474   if (isUNPCKLMask(M, VT, HasInt256))
7475     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7476
7477   if (isUNPCKHMask(M, VT, HasInt256))
7478     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7479
7480   if (V2IsSplat) {
7481     // Normalize mask so all entries that point to V2 points to its first
7482     // element then try to match unpck{h|l} again. If match, return a
7483     // new vector_shuffle with the corrected mask.p
7484     SmallVector<int, 8> NewMask(M.begin(), M.end());
7485     NormalizeMask(NewMask, NumElems);
7486     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7487       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7488     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7489       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7490   }
7491
7492   if (Commuted) {
7493     // Commute is back and try unpck* again.
7494     // FIXME: this seems wrong.
7495     CommuteVectorShuffleMask(M, NumElems);
7496     std::swap(V1, V2);
7497     std::swap(V1IsSplat, V2IsSplat);
7498     Commuted = false;
7499
7500     if (isUNPCKLMask(M, VT, HasInt256))
7501       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7502
7503     if (isUNPCKHMask(M, VT, HasInt256))
7504       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7505   }
7506
7507   // Normalize the node to match x86 shuffle ops if needed
7508   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7509     return CommuteVectorShuffle(SVOp, DAG);
7510
7511   // The checks below are all present in isShuffleMaskLegal, but they are
7512   // inlined here right now to enable us to directly emit target specific
7513   // nodes, and remove one by one until they don't return Op anymore.
7514
7515   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7516       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7517     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7518       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7519   }
7520
7521   if (isPSHUFHWMask(M, VT, HasInt256))
7522     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7523                                 getShufflePSHUFHWImmediate(SVOp),
7524                                 DAG);
7525
7526   if (isPSHUFLWMask(M, VT, HasInt256))
7527     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7528                                 getShufflePSHUFLWImmediate(SVOp),
7529                                 DAG);
7530
7531   if (isSHUFPMask(M, VT))
7532     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7533                                 getShuffleSHUFImmediate(SVOp), DAG);
7534
7535   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7536     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7537   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7538     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7539
7540   //===--------------------------------------------------------------------===//
7541   // Generate target specific nodes for 128 or 256-bit shuffles only
7542   // supported in the AVX instruction set.
7543   //
7544
7545   // Handle VMOVDDUPY permutations
7546   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7547     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7548
7549   // Handle VPERMILPS/D* permutations
7550   if (isVPERMILPMask(M, VT)) {
7551     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7552       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7553                                   getShuffleSHUFImmediate(SVOp), DAG);
7554     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7555                                 getShuffleSHUFImmediate(SVOp), DAG);
7556   }
7557
7558   // Handle VPERM2F128/VPERM2I128 permutations
7559   if (isVPERM2X128Mask(M, VT, HasFp256))
7560     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7561                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7562
7563   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7564   if (BlendOp.getNode())
7565     return BlendOp;
7566
7567   unsigned Imm8;
7568   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7569     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7570
7571   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7572       VT.is512BitVector()) {
7573     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7574     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7575     SmallVector<SDValue, 16> permclMask;
7576     for (unsigned i = 0; i != NumElems; ++i) {
7577       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7578     }
7579
7580     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7581                                 &permclMask[0], NumElems);
7582     if (V2IsUndef)
7583       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7584       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7585                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7586     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7587                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7588   }
7589
7590   //===--------------------------------------------------------------------===//
7591   // Since no target specific shuffle was selected for this generic one,
7592   // lower it into other known shuffles. FIXME: this isn't true yet, but
7593   // this is the plan.
7594   //
7595
7596   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7597   if (VT == MVT::v8i16) {
7598     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7599     if (NewOp.getNode())
7600       return NewOp;
7601   }
7602
7603   if (VT == MVT::v16i8) {
7604     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7605     if (NewOp.getNode())
7606       return NewOp;
7607   }
7608
7609   if (VT == MVT::v32i8) {
7610     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7611     if (NewOp.getNode())
7612       return NewOp;
7613   }
7614
7615   // Handle all 128-bit wide vectors with 4 elements, and match them with
7616   // several different shuffle types.
7617   if (NumElems == 4 && VT.is128BitVector())
7618     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7619
7620   // Handle general 256-bit shuffles
7621   if (VT.is256BitVector())
7622     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7623
7624   return SDValue();
7625 }
7626
7627 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7628   MVT VT = Op.getSimpleValueType();
7629   SDLoc dl(Op);
7630
7631   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7632     return SDValue();
7633
7634   if (VT.getSizeInBits() == 8) {
7635     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7636                                   Op.getOperand(0), Op.getOperand(1));
7637     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7638                                   DAG.getValueType(VT));
7639     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7640   }
7641
7642   if (VT.getSizeInBits() == 16) {
7643     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7644     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7645     if (Idx == 0)
7646       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7647                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7648                                      DAG.getNode(ISD::BITCAST, dl,
7649                                                  MVT::v4i32,
7650                                                  Op.getOperand(0)),
7651                                      Op.getOperand(1)));
7652     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7653                                   Op.getOperand(0), Op.getOperand(1));
7654     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7655                                   DAG.getValueType(VT));
7656     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7657   }
7658
7659   if (VT == MVT::f32) {
7660     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7661     // the result back to FR32 register. It's only worth matching if the
7662     // result has a single use which is a store or a bitcast to i32.  And in
7663     // the case of a store, it's not worth it if the index is a constant 0,
7664     // because a MOVSSmr can be used instead, which is smaller and faster.
7665     if (!Op.hasOneUse())
7666       return SDValue();
7667     SDNode *User = *Op.getNode()->use_begin();
7668     if ((User->getOpcode() != ISD::STORE ||
7669          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7670           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7671         (User->getOpcode() != ISD::BITCAST ||
7672          User->getValueType(0) != MVT::i32))
7673       return SDValue();
7674     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7675                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7676                                               Op.getOperand(0)),
7677                                               Op.getOperand(1));
7678     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7679   }
7680
7681   if (VT == MVT::i32 || VT == MVT::i64) {
7682     // ExtractPS/pextrq works with constant index.
7683     if (isa<ConstantSDNode>(Op.getOperand(1)))
7684       return Op;
7685   }
7686   return SDValue();
7687 }
7688
7689 /// Extract one bit from mask vector, like v16i1 or v8i1.
7690 /// AVX-512 feature.
7691 static SDValue ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) {
7692   SDValue Vec = Op.getOperand(0);
7693   SDLoc dl(Vec);
7694   MVT VecVT = Vec.getSimpleValueType();
7695   SDValue Idx = Op.getOperand(1);
7696   MVT EltVT = Op.getSimpleValueType();
7697
7698   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
7699
7700   // variable index can't be handled in mask registers,
7701   // extend vector to VR512
7702   if (!isa<ConstantSDNode>(Idx)) {
7703     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
7704     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
7705     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
7706                               ExtVT.getVectorElementType(), Ext, Idx);
7707     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
7708   }
7709
7710   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7711   if (IdxVal) {
7712     unsigned MaxSift = VecVT.getSizeInBits() - 1;
7713     Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
7714                       DAG.getConstant(MaxSift - IdxVal, MVT::i8));
7715     Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
7716                       DAG.getConstant(MaxSift, MVT::i8));
7717   }
7718   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i1, Vec,
7719                        DAG.getIntPtrConstant(0));
7720 }
7721
7722 SDValue
7723 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7724                                            SelectionDAG &DAG) const {
7725   SDLoc dl(Op);
7726   SDValue Vec = Op.getOperand(0);
7727   MVT VecVT = Vec.getSimpleValueType();
7728   SDValue Idx = Op.getOperand(1);
7729
7730   if (Op.getSimpleValueType() == MVT::i1)
7731     return ExtractBitFromMaskVector(Op, DAG);
7732
7733   if (!isa<ConstantSDNode>(Idx)) {
7734     if (VecVT.is512BitVector() ||
7735         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7736          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7737
7738       MVT MaskEltVT =
7739         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7740       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7741                                     MaskEltVT.getSizeInBits());
7742
7743       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
7744       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7745                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7746                                 Idx, DAG.getConstant(0, getPointerTy()));
7747       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7748       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7749                         Perm, DAG.getConstant(0, getPointerTy()));
7750     }
7751     return SDValue();
7752   }
7753
7754   // If this is a 256-bit vector result, first extract the 128-bit vector and
7755   // then extract the element from the 128-bit vector.
7756   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7757
7758     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7759     // Get the 128-bit vector.
7760     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7761     MVT EltVT = VecVT.getVectorElementType();
7762
7763     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7764
7765     //if (IdxVal >= NumElems/2)
7766     //  IdxVal -= NumElems/2;
7767     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7768     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7769                        DAG.getConstant(IdxVal, MVT::i32));
7770   }
7771
7772   assert(VecVT.is128BitVector() && "Unexpected vector length");
7773
7774   if (Subtarget->hasSSE41()) {
7775     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7776     if (Res.getNode())
7777       return Res;
7778   }
7779
7780   MVT VT = Op.getSimpleValueType();
7781   // TODO: handle v16i8.
7782   if (VT.getSizeInBits() == 16) {
7783     SDValue Vec = Op.getOperand(0);
7784     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7785     if (Idx == 0)
7786       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7787                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7788                                      DAG.getNode(ISD::BITCAST, dl,
7789                                                  MVT::v4i32, Vec),
7790                                      Op.getOperand(1)));
7791     // Transform it so it match pextrw which produces a 32-bit result.
7792     MVT EltVT = MVT::i32;
7793     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7794                                   Op.getOperand(0), Op.getOperand(1));
7795     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7796                                   DAG.getValueType(VT));
7797     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7798   }
7799
7800   if (VT.getSizeInBits() == 32) {
7801     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7802     if (Idx == 0)
7803       return Op;
7804
7805     // SHUFPS the element to the lowest double word, then movss.
7806     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7807     MVT VVT = Op.getOperand(0).getSimpleValueType();
7808     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7809                                        DAG.getUNDEF(VVT), Mask);
7810     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7811                        DAG.getIntPtrConstant(0));
7812   }
7813
7814   if (VT.getSizeInBits() == 64) {
7815     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7816     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7817     //        to match extract_elt for f64.
7818     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7819     if (Idx == 0)
7820       return Op;
7821
7822     // UNPCKHPD the element to the lowest double word, then movsd.
7823     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7824     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7825     int Mask[2] = { 1, -1 };
7826     MVT VVT = Op.getOperand(0).getSimpleValueType();
7827     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7828                                        DAG.getUNDEF(VVT), Mask);
7829     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7830                        DAG.getIntPtrConstant(0));
7831   }
7832
7833   return SDValue();
7834 }
7835
7836 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7837   MVT VT = Op.getSimpleValueType();
7838   MVT EltVT = VT.getVectorElementType();
7839   SDLoc dl(Op);
7840
7841   SDValue N0 = Op.getOperand(0);
7842   SDValue N1 = Op.getOperand(1);
7843   SDValue N2 = Op.getOperand(2);
7844
7845   if (!VT.is128BitVector())
7846     return SDValue();
7847
7848   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7849       isa<ConstantSDNode>(N2)) {
7850     unsigned Opc;
7851     if (VT == MVT::v8i16)
7852       Opc = X86ISD::PINSRW;
7853     else if (VT == MVT::v16i8)
7854       Opc = X86ISD::PINSRB;
7855     else
7856       Opc = X86ISD::PINSRB;
7857
7858     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7859     // argument.
7860     if (N1.getValueType() != MVT::i32)
7861       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7862     if (N2.getValueType() != MVT::i32)
7863       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7864     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7865   }
7866
7867   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7868     // Bits [7:6] of the constant are the source select.  This will always be
7869     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7870     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7871     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7872     // Bits [5:4] of the constant are the destination select.  This is the
7873     //  value of the incoming immediate.
7874     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7875     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7876     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7877     // Create this as a scalar to vector..
7878     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7879     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7880   }
7881
7882   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7883     // PINSR* works with constant index.
7884     return Op;
7885   }
7886   return SDValue();
7887 }
7888
7889 SDValue
7890 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7891   MVT VT = Op.getSimpleValueType();
7892   MVT EltVT = VT.getVectorElementType();
7893
7894   SDLoc dl(Op);
7895   SDValue N0 = Op.getOperand(0);
7896   SDValue N1 = Op.getOperand(1);
7897   SDValue N2 = Op.getOperand(2);
7898
7899   // If this is a 256-bit vector result, first extract the 128-bit vector,
7900   // insert the element into the extracted half and then place it back.
7901   if (VT.is256BitVector() || VT.is512BitVector()) {
7902     if (!isa<ConstantSDNode>(N2))
7903       return SDValue();
7904
7905     // Get the desired 128-bit vector half.
7906     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7907     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7908
7909     // Insert the element into the desired half.
7910     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7911     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7912
7913     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7914                     DAG.getConstant(IdxIn128, MVT::i32));
7915
7916     // Insert the changed part back to the 256-bit vector
7917     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7918   }
7919
7920   if (Subtarget->hasSSE41())
7921     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7922
7923   if (EltVT == MVT::i8)
7924     return SDValue();
7925
7926   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7927     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7928     // as its second argument.
7929     if (N1.getValueType() != MVT::i32)
7930       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7931     if (N2.getValueType() != MVT::i32)
7932       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7933     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7934   }
7935   return SDValue();
7936 }
7937
7938 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7939   SDLoc dl(Op);
7940   MVT OpVT = Op.getSimpleValueType();
7941
7942   // If this is a 256-bit vector result, first insert into a 128-bit
7943   // vector and then insert into the 256-bit vector.
7944   if (!OpVT.is128BitVector()) {
7945     // Insert into a 128-bit vector.
7946     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7947     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7948                                  OpVT.getVectorNumElements() / SizeFactor);
7949
7950     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7951
7952     // Insert the 128-bit vector.
7953     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7954   }
7955
7956   if (OpVT == MVT::v1i64 &&
7957       Op.getOperand(0).getValueType() == MVT::i64)
7958     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7959
7960   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7961   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7962   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7963                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7964 }
7965
7966 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7967 // a simple subregister reference or explicit instructions to grab
7968 // upper bits of a vector.
7969 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7970                                       SelectionDAG &DAG) {
7971   SDLoc dl(Op);
7972   SDValue In =  Op.getOperand(0);
7973   SDValue Idx = Op.getOperand(1);
7974   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7975   MVT ResVT   = Op.getSimpleValueType();
7976   MVT InVT    = In.getSimpleValueType();
7977
7978   if (Subtarget->hasFp256()) {
7979     if (ResVT.is128BitVector() &&
7980         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7981         isa<ConstantSDNode>(Idx)) {
7982       return Extract128BitVector(In, IdxVal, DAG, dl);
7983     }
7984     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7985         isa<ConstantSDNode>(Idx)) {
7986       return Extract256BitVector(In, IdxVal, DAG, dl);
7987     }
7988   }
7989   return SDValue();
7990 }
7991
7992 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7993 // simple superregister reference or explicit instructions to insert
7994 // the upper bits of a vector.
7995 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7996                                      SelectionDAG &DAG) {
7997   if (Subtarget->hasFp256()) {
7998     SDLoc dl(Op.getNode());
7999     SDValue Vec = Op.getNode()->getOperand(0);
8000     SDValue SubVec = Op.getNode()->getOperand(1);
8001     SDValue Idx = Op.getNode()->getOperand(2);
8002
8003     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
8004          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
8005         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
8006         isa<ConstantSDNode>(Idx)) {
8007       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8008       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
8009     }
8010
8011     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
8012         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
8013         isa<ConstantSDNode>(Idx)) {
8014       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8015       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
8016     }
8017   }
8018   return SDValue();
8019 }
8020
8021 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
8022 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
8023 // one of the above mentioned nodes. It has to be wrapped because otherwise
8024 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
8025 // be used to form addressing mode. These wrapped nodes will be selected
8026 // into MOV32ri.
8027 SDValue
8028 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
8029   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
8030
8031   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8032   // global base reg.
8033   unsigned char OpFlag = 0;
8034   unsigned WrapperKind = X86ISD::Wrapper;
8035   CodeModel::Model M = getTargetMachine().getCodeModel();
8036
8037   if (Subtarget->isPICStyleRIPRel() &&
8038       (M == CodeModel::Small || M == CodeModel::Kernel))
8039     WrapperKind = X86ISD::WrapperRIP;
8040   else if (Subtarget->isPICStyleGOT())
8041     OpFlag = X86II::MO_GOTOFF;
8042   else if (Subtarget->isPICStyleStubPIC())
8043     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8044
8045   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
8046                                              CP->getAlignment(),
8047                                              CP->getOffset(), OpFlag);
8048   SDLoc DL(CP);
8049   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8050   // With PIC, the address is actually $g + Offset.
8051   if (OpFlag) {
8052     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8053                          DAG.getNode(X86ISD::GlobalBaseReg,
8054                                      SDLoc(), getPointerTy()),
8055                          Result);
8056   }
8057
8058   return Result;
8059 }
8060
8061 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
8062   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
8063
8064   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8065   // global base reg.
8066   unsigned char OpFlag = 0;
8067   unsigned WrapperKind = X86ISD::Wrapper;
8068   CodeModel::Model M = getTargetMachine().getCodeModel();
8069
8070   if (Subtarget->isPICStyleRIPRel() &&
8071       (M == CodeModel::Small || M == CodeModel::Kernel))
8072     WrapperKind = X86ISD::WrapperRIP;
8073   else if (Subtarget->isPICStyleGOT())
8074     OpFlag = X86II::MO_GOTOFF;
8075   else if (Subtarget->isPICStyleStubPIC())
8076     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8077
8078   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
8079                                           OpFlag);
8080   SDLoc DL(JT);
8081   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8082
8083   // With PIC, the address is actually $g + Offset.
8084   if (OpFlag)
8085     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8086                          DAG.getNode(X86ISD::GlobalBaseReg,
8087                                      SDLoc(), getPointerTy()),
8088                          Result);
8089
8090   return Result;
8091 }
8092
8093 SDValue
8094 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
8095   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
8096
8097   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8098   // global base reg.
8099   unsigned char OpFlag = 0;
8100   unsigned WrapperKind = X86ISD::Wrapper;
8101   CodeModel::Model M = getTargetMachine().getCodeModel();
8102
8103   if (Subtarget->isPICStyleRIPRel() &&
8104       (M == CodeModel::Small || M == CodeModel::Kernel)) {
8105     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8106       OpFlag = X86II::MO_GOTPCREL;
8107     WrapperKind = X86ISD::WrapperRIP;
8108   } else if (Subtarget->isPICStyleGOT()) {
8109     OpFlag = X86II::MO_GOT;
8110   } else if (Subtarget->isPICStyleStubPIC()) {
8111     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8112   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8113     OpFlag = X86II::MO_DARWIN_NONLAZY;
8114   }
8115
8116   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8117
8118   SDLoc DL(Op);
8119   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8120
8121   // With PIC, the address is actually $g + Offset.
8122   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8123       !Subtarget->is64Bit()) {
8124     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8125                          DAG.getNode(X86ISD::GlobalBaseReg,
8126                                      SDLoc(), getPointerTy()),
8127                          Result);
8128   }
8129
8130   // For symbols that require a load from a stub to get the address, emit the
8131   // load.
8132   if (isGlobalStubReference(OpFlag))
8133     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8134                          MachinePointerInfo::getGOT(), false, false, false, 0);
8135
8136   return Result;
8137 }
8138
8139 SDValue
8140 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8141   // Create the TargetBlockAddressAddress node.
8142   unsigned char OpFlags =
8143     Subtarget->ClassifyBlockAddressReference();
8144   CodeModel::Model M = getTargetMachine().getCodeModel();
8145   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8146   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8147   SDLoc dl(Op);
8148   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8149                                              OpFlags);
8150
8151   if (Subtarget->isPICStyleRIPRel() &&
8152       (M == CodeModel::Small || M == CodeModel::Kernel))
8153     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8154   else
8155     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8156
8157   // With PIC, the address is actually $g + Offset.
8158   if (isGlobalRelativeToPICBase(OpFlags)) {
8159     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8160                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8161                          Result);
8162   }
8163
8164   return Result;
8165 }
8166
8167 SDValue
8168 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8169                                       int64_t Offset, SelectionDAG &DAG) const {
8170   // Create the TargetGlobalAddress node, folding in the constant
8171   // offset if it is legal.
8172   unsigned char OpFlags =
8173     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8174   CodeModel::Model M = getTargetMachine().getCodeModel();
8175   SDValue Result;
8176   if (OpFlags == X86II::MO_NO_FLAG &&
8177       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8178     // A direct static reference to a global.
8179     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8180     Offset = 0;
8181   } else {
8182     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8183   }
8184
8185   if (Subtarget->isPICStyleRIPRel() &&
8186       (M == CodeModel::Small || M == CodeModel::Kernel))
8187     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8188   else
8189     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8190
8191   // With PIC, the address is actually $g + Offset.
8192   if (isGlobalRelativeToPICBase(OpFlags)) {
8193     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8194                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8195                          Result);
8196   }
8197
8198   // For globals that require a load from a stub to get the address, emit the
8199   // load.
8200   if (isGlobalStubReference(OpFlags))
8201     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8202                          MachinePointerInfo::getGOT(), false, false, false, 0);
8203
8204   // If there was a non-zero offset that we didn't fold, create an explicit
8205   // addition for it.
8206   if (Offset != 0)
8207     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8208                          DAG.getConstant(Offset, getPointerTy()));
8209
8210   return Result;
8211 }
8212
8213 SDValue
8214 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8215   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8216   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8217   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8218 }
8219
8220 static SDValue
8221 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8222            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8223            unsigned char OperandFlags, bool LocalDynamic = false) {
8224   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8225   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8226   SDLoc dl(GA);
8227   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8228                                            GA->getValueType(0),
8229                                            GA->getOffset(),
8230                                            OperandFlags);
8231
8232   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8233                                            : X86ISD::TLSADDR;
8234
8235   if (InFlag) {
8236     SDValue Ops[] = { Chain,  TGA, *InFlag };
8237     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8238   } else {
8239     SDValue Ops[]  = { Chain, TGA };
8240     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8241   }
8242
8243   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8244   MFI->setAdjustsStack(true);
8245
8246   SDValue Flag = Chain.getValue(1);
8247   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8248 }
8249
8250 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8251 static SDValue
8252 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8253                                 const EVT PtrVT) {
8254   SDValue InFlag;
8255   SDLoc dl(GA);  // ? function entry point might be better
8256   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8257                                    DAG.getNode(X86ISD::GlobalBaseReg,
8258                                                SDLoc(), PtrVT), InFlag);
8259   InFlag = Chain.getValue(1);
8260
8261   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8262 }
8263
8264 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8265 static SDValue
8266 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8267                                 const EVT PtrVT) {
8268   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8269                     X86::RAX, X86II::MO_TLSGD);
8270 }
8271
8272 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8273                                            SelectionDAG &DAG,
8274                                            const EVT PtrVT,
8275                                            bool is64Bit) {
8276   SDLoc dl(GA);
8277
8278   // Get the start address of the TLS block for this module.
8279   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8280       .getInfo<X86MachineFunctionInfo>();
8281   MFI->incNumLocalDynamicTLSAccesses();
8282
8283   SDValue Base;
8284   if (is64Bit) {
8285     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8286                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8287   } else {
8288     SDValue InFlag;
8289     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8290         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8291     InFlag = Chain.getValue(1);
8292     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8293                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8294   }
8295
8296   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8297   // of Base.
8298
8299   // Build x@dtpoff.
8300   unsigned char OperandFlags = X86II::MO_DTPOFF;
8301   unsigned WrapperKind = X86ISD::Wrapper;
8302   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8303                                            GA->getValueType(0),
8304                                            GA->getOffset(), OperandFlags);
8305   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8306
8307   // Add x@dtpoff with the base.
8308   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8309 }
8310
8311 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8312 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8313                                    const EVT PtrVT, TLSModel::Model model,
8314                                    bool is64Bit, bool isPIC) {
8315   SDLoc dl(GA);
8316
8317   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8318   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8319                                                          is64Bit ? 257 : 256));
8320
8321   SDValue ThreadPointer =
8322       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8323                   MachinePointerInfo(Ptr), false, false, false, 0);
8324
8325   unsigned char OperandFlags = 0;
8326   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8327   // initialexec.
8328   unsigned WrapperKind = X86ISD::Wrapper;
8329   if (model == TLSModel::LocalExec) {
8330     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8331   } else if (model == TLSModel::InitialExec) {
8332     if (is64Bit) {
8333       OperandFlags = X86II::MO_GOTTPOFF;
8334       WrapperKind = X86ISD::WrapperRIP;
8335     } else {
8336       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8337     }
8338   } else {
8339     llvm_unreachable("Unexpected model");
8340   }
8341
8342   // emit "addl x@ntpoff,%eax" (local exec)
8343   // or "addl x@indntpoff,%eax" (initial exec)
8344   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8345   SDValue TGA =
8346       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8347                                  GA->getOffset(), OperandFlags);
8348   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8349
8350   if (model == TLSModel::InitialExec) {
8351     if (isPIC && !is64Bit) {
8352       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8353                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8354                            Offset);
8355     }
8356
8357     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8358                          MachinePointerInfo::getGOT(), false, false, false, 0);
8359   }
8360
8361   // The address of the thread local variable is the add of the thread
8362   // pointer with the offset of the variable.
8363   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8364 }
8365
8366 SDValue
8367 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8368
8369   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8370   const GlobalValue *GV = GA->getGlobal();
8371
8372   if (Subtarget->isTargetELF()) {
8373     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8374
8375     switch (model) {
8376       case TLSModel::GeneralDynamic:
8377         if (Subtarget->is64Bit())
8378           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8379         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8380       case TLSModel::LocalDynamic:
8381         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8382                                            Subtarget->is64Bit());
8383       case TLSModel::InitialExec:
8384       case TLSModel::LocalExec:
8385         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8386                                    Subtarget->is64Bit(),
8387                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8388     }
8389     llvm_unreachable("Unknown TLS model.");
8390   }
8391
8392   if (Subtarget->isTargetDarwin()) {
8393     // Darwin only has one model of TLS.  Lower to that.
8394     unsigned char OpFlag = 0;
8395     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8396                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8397
8398     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8399     // global base reg.
8400     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8401                   !Subtarget->is64Bit();
8402     if (PIC32)
8403       OpFlag = X86II::MO_TLVP_PIC_BASE;
8404     else
8405       OpFlag = X86II::MO_TLVP;
8406     SDLoc DL(Op);
8407     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8408                                                 GA->getValueType(0),
8409                                                 GA->getOffset(), OpFlag);
8410     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8411
8412     // With PIC32, the address is actually $g + Offset.
8413     if (PIC32)
8414       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8415                            DAG.getNode(X86ISD::GlobalBaseReg,
8416                                        SDLoc(), getPointerTy()),
8417                            Offset);
8418
8419     // Lowering the machine isd will make sure everything is in the right
8420     // location.
8421     SDValue Chain = DAG.getEntryNode();
8422     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8423     SDValue Args[] = { Chain, Offset };
8424     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8425
8426     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8427     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8428     MFI->setAdjustsStack(true);
8429
8430     // And our return value (tls address) is in the standard call return value
8431     // location.
8432     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8433     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8434                               Chain.getValue(1));
8435   }
8436
8437   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8438     // Just use the implicit TLS architecture
8439     // Need to generate someting similar to:
8440     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8441     //                                  ; from TEB
8442     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8443     //   mov     rcx, qword [rdx+rcx*8]
8444     //   mov     eax, .tls$:tlsvar
8445     //   [rax+rcx] contains the address
8446     // Windows 64bit: gs:0x58
8447     // Windows 32bit: fs:__tls_array
8448
8449     // If GV is an alias then use the aliasee for determining
8450     // thread-localness.
8451     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8452       GV = GA->resolveAliasedGlobal(false);
8453     SDLoc dl(GA);
8454     SDValue Chain = DAG.getEntryNode();
8455
8456     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8457     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8458     // use its literal value of 0x2C.
8459     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8460                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8461                                                              256)
8462                                         : Type::getInt32PtrTy(*DAG.getContext(),
8463                                                               257));
8464
8465     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8466       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8467         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8468
8469     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8470                                         MachinePointerInfo(Ptr),
8471                                         false, false, false, 0);
8472
8473     // Load the _tls_index variable
8474     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8475     if (Subtarget->is64Bit())
8476       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8477                            IDX, MachinePointerInfo(), MVT::i32,
8478                            false, false, 0);
8479     else
8480       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8481                         false, false, false, 0);
8482
8483     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8484                                     getPointerTy());
8485     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8486
8487     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8488     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8489                       false, false, false, 0);
8490
8491     // Get the offset of start of .tls section
8492     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8493                                              GA->getValueType(0),
8494                                              GA->getOffset(), X86II::MO_SECREL);
8495     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8496
8497     // The address of the thread local variable is the add of the thread
8498     // pointer with the offset of the variable.
8499     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8500   }
8501
8502   llvm_unreachable("TLS not implemented for this target.");
8503 }
8504
8505 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8506 /// and take a 2 x i32 value to shift plus a shift amount.
8507 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
8508   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8509   MVT VT = Op.getSimpleValueType();
8510   unsigned VTBits = VT.getSizeInBits();
8511   SDLoc dl(Op);
8512   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8513   SDValue ShOpLo = Op.getOperand(0);
8514   SDValue ShOpHi = Op.getOperand(1);
8515   SDValue ShAmt  = Op.getOperand(2);
8516   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
8517   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
8518   // during isel.
8519   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8520                                   DAG.getConstant(VTBits - 1, MVT::i8));
8521   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8522                                      DAG.getConstant(VTBits - 1, MVT::i8))
8523                        : DAG.getConstant(0, VT);
8524
8525   SDValue Tmp2, Tmp3;
8526   if (Op.getOpcode() == ISD::SHL_PARTS) {
8527     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8528     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
8529   } else {
8530     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8531     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
8532   }
8533
8534   // If the shift amount is larger or equal than the width of a part we can't
8535   // rely on the results of shld/shrd. Insert a test and select the appropriate
8536   // values for large shift amounts.
8537   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8538                                 DAG.getConstant(VTBits, MVT::i8));
8539   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8540                              AndNode, DAG.getConstant(0, MVT::i8));
8541
8542   SDValue Hi, Lo;
8543   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8544   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8545   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8546
8547   if (Op.getOpcode() == ISD::SHL_PARTS) {
8548     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8549     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8550   } else {
8551     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8552     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8553   }
8554
8555   SDValue Ops[2] = { Lo, Hi };
8556   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8557 }
8558
8559 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8560                                            SelectionDAG &DAG) const {
8561   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
8562
8563   if (SrcVT.isVector())
8564     return SDValue();
8565
8566   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
8567          "Unknown SINT_TO_FP to lower!");
8568
8569   // These are really Legal; return the operand so the caller accepts it as
8570   // Legal.
8571   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8572     return Op;
8573   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8574       Subtarget->is64Bit()) {
8575     return Op;
8576   }
8577
8578   SDLoc dl(Op);
8579   unsigned Size = SrcVT.getSizeInBits()/8;
8580   MachineFunction &MF = DAG.getMachineFunction();
8581   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8582   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8583   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8584                                StackSlot,
8585                                MachinePointerInfo::getFixedStack(SSFI),
8586                                false, false, 0);
8587   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8588 }
8589
8590 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8591                                      SDValue StackSlot,
8592                                      SelectionDAG &DAG) const {
8593   // Build the FILD
8594   SDLoc DL(Op);
8595   SDVTList Tys;
8596   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8597   if (useSSE)
8598     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8599   else
8600     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8601
8602   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8603
8604   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8605   MachineMemOperand *MMO;
8606   if (FI) {
8607     int SSFI = FI->getIndex();
8608     MMO =
8609       DAG.getMachineFunction()
8610       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8611                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8612   } else {
8613     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8614     StackSlot = StackSlot.getOperand(1);
8615   }
8616   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8617   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8618                                            X86ISD::FILD, DL,
8619                                            Tys, Ops, array_lengthof(Ops),
8620                                            SrcVT, MMO);
8621
8622   if (useSSE) {
8623     Chain = Result.getValue(1);
8624     SDValue InFlag = Result.getValue(2);
8625
8626     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8627     // shouldn't be necessary except that RFP cannot be live across
8628     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8629     MachineFunction &MF = DAG.getMachineFunction();
8630     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8631     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8632     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8633     Tys = DAG.getVTList(MVT::Other);
8634     SDValue Ops[] = {
8635       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8636     };
8637     MachineMemOperand *MMO =
8638       DAG.getMachineFunction()
8639       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8640                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8641
8642     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8643                                     Ops, array_lengthof(Ops),
8644                                     Op.getValueType(), MMO);
8645     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8646                          MachinePointerInfo::getFixedStack(SSFI),
8647                          false, false, false, 0);
8648   }
8649
8650   return Result;
8651 }
8652
8653 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8654 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8655                                                SelectionDAG &DAG) const {
8656   // This algorithm is not obvious. Here it is what we're trying to output:
8657   /*
8658      movq       %rax,  %xmm0
8659      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8660      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8661      #ifdef __SSE3__
8662        haddpd   %xmm0, %xmm0
8663      #else
8664        pshufd   $0x4e, %xmm0, %xmm1
8665        addpd    %xmm1, %xmm0
8666      #endif
8667   */
8668
8669   SDLoc dl(Op);
8670   LLVMContext *Context = DAG.getContext();
8671
8672   // Build some magic constants.
8673   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8674   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8675   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8676
8677   SmallVector<Constant*,2> CV1;
8678   CV1.push_back(
8679     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8680                                       APInt(64, 0x4330000000000000ULL))));
8681   CV1.push_back(
8682     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8683                                       APInt(64, 0x4530000000000000ULL))));
8684   Constant *C1 = ConstantVector::get(CV1);
8685   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8686
8687   // Load the 64-bit value into an XMM register.
8688   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8689                             Op.getOperand(0));
8690   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8691                               MachinePointerInfo::getConstantPool(),
8692                               false, false, false, 16);
8693   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8694                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8695                               CLod0);
8696
8697   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8698                               MachinePointerInfo::getConstantPool(),
8699                               false, false, false, 16);
8700   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8701   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8702   SDValue Result;
8703
8704   if (Subtarget->hasSSE3()) {
8705     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8706     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8707   } else {
8708     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8709     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8710                                            S2F, 0x4E, DAG);
8711     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8712                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8713                          Sub);
8714   }
8715
8716   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8717                      DAG.getIntPtrConstant(0));
8718 }
8719
8720 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8721 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8722                                                SelectionDAG &DAG) const {
8723   SDLoc dl(Op);
8724   // FP constant to bias correct the final result.
8725   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8726                                    MVT::f64);
8727
8728   // Load the 32-bit value into an XMM register.
8729   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8730                              Op.getOperand(0));
8731
8732   // Zero out the upper parts of the register.
8733   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8734
8735   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8736                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8737                      DAG.getIntPtrConstant(0));
8738
8739   // Or the load with the bias.
8740   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8741                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8742                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8743                                                    MVT::v2f64, Load)),
8744                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8745                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8746                                                    MVT::v2f64, Bias)));
8747   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8748                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8749                    DAG.getIntPtrConstant(0));
8750
8751   // Subtract the bias.
8752   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8753
8754   // Handle final rounding.
8755   EVT DestVT = Op.getValueType();
8756
8757   if (DestVT.bitsLT(MVT::f64))
8758     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8759                        DAG.getIntPtrConstant(0));
8760   if (DestVT.bitsGT(MVT::f64))
8761     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8762
8763   // Handle final rounding.
8764   return Sub;
8765 }
8766
8767 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8768                                                SelectionDAG &DAG) const {
8769   SDValue N0 = Op.getOperand(0);
8770   MVT SVT = N0.getSimpleValueType();
8771   SDLoc dl(Op);
8772
8773   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8774           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8775          "Custom UINT_TO_FP is not supported!");
8776
8777   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
8778   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8779                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8780 }
8781
8782 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8783                                            SelectionDAG &DAG) const {
8784   SDValue N0 = Op.getOperand(0);
8785   SDLoc dl(Op);
8786
8787   if (Op.getValueType().isVector())
8788     return lowerUINT_TO_FP_vec(Op, DAG);
8789
8790   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8791   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8792   // the optimization here.
8793   if (DAG.SignBitIsZero(N0))
8794     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8795
8796   MVT SrcVT = N0.getSimpleValueType();
8797   MVT DstVT = Op.getSimpleValueType();
8798   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8799     return LowerUINT_TO_FP_i64(Op, DAG);
8800   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8801     return LowerUINT_TO_FP_i32(Op, DAG);
8802   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8803     return SDValue();
8804
8805   // Make a 64-bit buffer, and use it to build an FILD.
8806   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8807   if (SrcVT == MVT::i32) {
8808     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8809     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8810                                      getPointerTy(), StackSlot, WordOff);
8811     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8812                                   StackSlot, MachinePointerInfo(),
8813                                   false, false, 0);
8814     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8815                                   OffsetSlot, MachinePointerInfo(),
8816                                   false, false, 0);
8817     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8818     return Fild;
8819   }
8820
8821   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8822   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8823                                StackSlot, MachinePointerInfo(),
8824                                false, false, 0);
8825   // For i64 source, we need to add the appropriate power of 2 if the input
8826   // was negative.  This is the same as the optimization in
8827   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8828   // we must be careful to do the computation in x87 extended precision, not
8829   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8830   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8831   MachineMemOperand *MMO =
8832     DAG.getMachineFunction()
8833     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8834                           MachineMemOperand::MOLoad, 8, 8);
8835
8836   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8837   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8838   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8839                                          array_lengthof(Ops), MVT::i64, MMO);
8840
8841   APInt FF(32, 0x5F800000ULL);
8842
8843   // Check whether the sign bit is set.
8844   SDValue SignSet = DAG.getSetCC(dl,
8845                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8846                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8847                                  ISD::SETLT);
8848
8849   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8850   SDValue FudgePtr = DAG.getConstantPool(
8851                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8852                                          getPointerTy());
8853
8854   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8855   SDValue Zero = DAG.getIntPtrConstant(0);
8856   SDValue Four = DAG.getIntPtrConstant(4);
8857   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8858                                Zero, Four);
8859   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8860
8861   // Load the value out, extending it from f32 to f80.
8862   // FIXME: Avoid the extend by constructing the right constant pool?
8863   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8864                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8865                                  MVT::f32, false, false, 4);
8866   // Extend everything to 80 bits to force it to be done on x87.
8867   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8868   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8869 }
8870
8871 std::pair<SDValue,SDValue>
8872 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8873                                     bool IsSigned, bool IsReplace) const {
8874   SDLoc DL(Op);
8875
8876   EVT DstTy = Op.getValueType();
8877
8878   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8879     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8880     DstTy = MVT::i64;
8881   }
8882
8883   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8884          DstTy.getSimpleVT() >= MVT::i16 &&
8885          "Unknown FP_TO_INT to lower!");
8886
8887   // These are really Legal.
8888   if (DstTy == MVT::i32 &&
8889       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8890     return std::make_pair(SDValue(), SDValue());
8891   if (Subtarget->is64Bit() &&
8892       DstTy == MVT::i64 &&
8893       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8894     return std::make_pair(SDValue(), SDValue());
8895
8896   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8897   // stack slot, or into the FTOL runtime function.
8898   MachineFunction &MF = DAG.getMachineFunction();
8899   unsigned MemSize = DstTy.getSizeInBits()/8;
8900   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8901   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8902
8903   unsigned Opc;
8904   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8905     Opc = X86ISD::WIN_FTOL;
8906   else
8907     switch (DstTy.getSimpleVT().SimpleTy) {
8908     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8909     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8910     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8911     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8912     }
8913
8914   SDValue Chain = DAG.getEntryNode();
8915   SDValue Value = Op.getOperand(0);
8916   EVT TheVT = Op.getOperand(0).getValueType();
8917   // FIXME This causes a redundant load/store if the SSE-class value is already
8918   // in memory, such as if it is on the callstack.
8919   if (isScalarFPTypeInSSEReg(TheVT)) {
8920     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8921     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8922                          MachinePointerInfo::getFixedStack(SSFI),
8923                          false, false, 0);
8924     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8925     SDValue Ops[] = {
8926       Chain, StackSlot, DAG.getValueType(TheVT)
8927     };
8928
8929     MachineMemOperand *MMO =
8930       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8931                               MachineMemOperand::MOLoad, MemSize, MemSize);
8932     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8933                                     array_lengthof(Ops), DstTy, MMO);
8934     Chain = Value.getValue(1);
8935     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8936     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8937   }
8938
8939   MachineMemOperand *MMO =
8940     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8941                             MachineMemOperand::MOStore, MemSize, MemSize);
8942
8943   if (Opc != X86ISD::WIN_FTOL) {
8944     // Build the FP_TO_INT*_IN_MEM
8945     SDValue Ops[] = { Chain, Value, StackSlot };
8946     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8947                                            Ops, array_lengthof(Ops), DstTy,
8948                                            MMO);
8949     return std::make_pair(FIST, StackSlot);
8950   } else {
8951     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8952       DAG.getVTList(MVT::Other, MVT::Glue),
8953       Chain, Value);
8954     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8955       MVT::i32, ftol.getValue(1));
8956     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8957       MVT::i32, eax.getValue(2));
8958     SDValue Ops[] = { eax, edx };
8959     SDValue pair = IsReplace
8960       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8961       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8962     return std::make_pair(pair, SDValue());
8963   }
8964 }
8965
8966 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8967                               const X86Subtarget *Subtarget) {
8968   MVT VT = Op->getSimpleValueType(0);
8969   SDValue In = Op->getOperand(0);
8970   MVT InVT = In.getSimpleValueType();
8971   SDLoc dl(Op);
8972
8973   // Optimize vectors in AVX mode:
8974   //
8975   //   v8i16 -> v8i32
8976   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8977   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8978   //   Concat upper and lower parts.
8979   //
8980   //   v4i32 -> v4i64
8981   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8982   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8983   //   Concat upper and lower parts.
8984   //
8985
8986   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8987       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8988       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8989     return SDValue();
8990
8991   if (Subtarget->hasInt256())
8992     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8993
8994   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8995   SDValue Undef = DAG.getUNDEF(InVT);
8996   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8997   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8998   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8999
9000   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
9001                              VT.getVectorNumElements()/2);
9002
9003   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
9004   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
9005
9006   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
9007 }
9008
9009 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
9010                                         SelectionDAG &DAG) {
9011   MVT VT = Op->getSimpleValueType(0);
9012   SDValue In = Op->getOperand(0);
9013   MVT InVT = In.getSimpleValueType();
9014   SDLoc DL(Op);
9015   unsigned int NumElts = VT.getVectorNumElements();
9016   if (NumElts != 8 && NumElts != 16)
9017     return SDValue();
9018
9019   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
9020     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
9021
9022   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
9023   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9024   // Now we have only mask extension
9025   assert(InVT.getVectorElementType() == MVT::i1);
9026   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
9027   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9028   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
9029   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9030   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9031                            MachinePointerInfo::getConstantPool(),
9032                            false, false, false, Alignment);
9033
9034   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
9035   if (VT.is512BitVector())
9036     return Brcst;
9037   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
9038 }
9039
9040 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9041                                SelectionDAG &DAG) {
9042   if (Subtarget->hasFp256()) {
9043     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9044     if (Res.getNode())
9045       return Res;
9046   }
9047
9048   return SDValue();
9049 }
9050
9051 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9052                                 SelectionDAG &DAG) {
9053   SDLoc DL(Op);
9054   MVT VT = Op.getSimpleValueType();
9055   SDValue In = Op.getOperand(0);
9056   MVT SVT = In.getSimpleValueType();
9057
9058   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
9059     return LowerZERO_EXTEND_AVX512(Op, DAG);
9060
9061   if (Subtarget->hasFp256()) {
9062     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9063     if (Res.getNode())
9064       return Res;
9065   }
9066
9067   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
9068          VT.getVectorNumElements() != SVT.getVectorNumElements());
9069   return SDValue();
9070 }
9071
9072 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
9073   SDLoc DL(Op);
9074   MVT VT = Op.getSimpleValueType();
9075   SDValue In = Op.getOperand(0);
9076   MVT InVT = In.getSimpleValueType();
9077
9078   if (VT == MVT::i1) {
9079     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
9080            "Invalid scalar TRUNCATE operation");
9081     if (InVT == MVT::i32)
9082       return SDValue();
9083     if (InVT.getSizeInBits() == 64)
9084       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
9085     else if (InVT.getSizeInBits() < 32)
9086       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
9087     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
9088   }
9089   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
9090          "Invalid TRUNCATE operation");
9091
9092   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
9093     if (VT.getVectorElementType().getSizeInBits() >=8)
9094       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
9095
9096     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
9097     unsigned NumElts = InVT.getVectorNumElements();
9098     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
9099     if (InVT.getSizeInBits() < 512) {
9100       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
9101       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
9102       InVT = ExtVT;
9103     }
9104     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
9105     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9106     SDValue CP = DAG.getConstantPool(C, getPointerTy());
9107     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9108     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9109                            MachinePointerInfo::getConstantPool(),
9110                            false, false, false, Alignment);
9111     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
9112     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9113     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9114   }
9115
9116   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9117     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9118     if (Subtarget->hasInt256()) {
9119       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9120       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9121       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9122                                 ShufMask);
9123       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9124                          DAG.getIntPtrConstant(0));
9125     }
9126
9127     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9128     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9129                                DAG.getIntPtrConstant(0));
9130     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9131                                DAG.getIntPtrConstant(2));
9132
9133     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9134     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9135
9136     // The PSHUFD mask:
9137     static const int ShufMask1[] = {0, 2, 0, 0};
9138     SDValue Undef = DAG.getUNDEF(VT);
9139     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9140     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9141
9142     // The MOVLHPS mask:
9143     static const int ShufMask2[] = {0, 1, 4, 5};
9144     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9145   }
9146
9147   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9148     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9149     if (Subtarget->hasInt256()) {
9150       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9151
9152       SmallVector<SDValue,32> pshufbMask;
9153       for (unsigned i = 0; i < 2; ++i) {
9154         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9155         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9156         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9157         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9158         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9159         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9160         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9161         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9162         for (unsigned j = 0; j < 8; ++j)
9163           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9164       }
9165       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9166                                &pshufbMask[0], 32);
9167       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9168       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9169
9170       static const int ShufMask[] = {0,  2,  -1,  -1};
9171       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9172                                 &ShufMask[0]);
9173       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9174                        DAG.getIntPtrConstant(0));
9175       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9176     }
9177
9178     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9179                                DAG.getIntPtrConstant(0));
9180
9181     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9182                                DAG.getIntPtrConstant(4));
9183
9184     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9185     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9186
9187     // The PSHUFB mask:
9188     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9189                                    -1, -1, -1, -1, -1, -1, -1, -1};
9190
9191     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9192     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9193     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9194
9195     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9196     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9197
9198     // The MOVLHPS Mask:
9199     static const int ShufMask2[] = {0, 1, 4, 5};
9200     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9201     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9202   }
9203
9204   // Handle truncation of V256 to V128 using shuffles.
9205   if (!VT.is128BitVector() || !InVT.is256BitVector())
9206     return SDValue();
9207
9208   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9209
9210   unsigned NumElems = VT.getVectorNumElements();
9211   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
9212
9213   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9214   // Prepare truncation shuffle mask
9215   for (unsigned i = 0; i != NumElems; ++i)
9216     MaskVec[i] = i * 2;
9217   SDValue V = DAG.getVectorShuffle(NVT, DL,
9218                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9219                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9220   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9221                      DAG.getIntPtrConstant(0));
9222 }
9223
9224 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9225                                            SelectionDAG &DAG) const {
9226   MVT VT = Op.getSimpleValueType();
9227   if (VT.isVector()) {
9228     if (VT == MVT::v8i16)
9229       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9230                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9231                                      MVT::v8i32, Op.getOperand(0)));
9232     return SDValue();
9233   }
9234
9235   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9236     /*IsSigned=*/ true, /*IsReplace=*/ false);
9237   SDValue FIST = Vals.first, StackSlot = Vals.second;
9238   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9239   if (FIST.getNode() == 0) return Op;
9240
9241   if (StackSlot.getNode())
9242     // Load the result.
9243     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9244                        FIST, StackSlot, MachinePointerInfo(),
9245                        false, false, false, 0);
9246
9247   // The node is the result.
9248   return FIST;
9249 }
9250
9251 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9252                                            SelectionDAG &DAG) const {
9253   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9254     /*IsSigned=*/ false, /*IsReplace=*/ false);
9255   SDValue FIST = Vals.first, StackSlot = Vals.second;
9256   assert(FIST.getNode() && "Unexpected failure");
9257
9258   if (StackSlot.getNode())
9259     // Load the result.
9260     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9261                        FIST, StackSlot, MachinePointerInfo(),
9262                        false, false, false, 0);
9263
9264   // The node is the result.
9265   return FIST;
9266 }
9267
9268 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9269   SDLoc DL(Op);
9270   MVT VT = Op.getSimpleValueType();
9271   SDValue In = Op.getOperand(0);
9272   MVT SVT = In.getSimpleValueType();
9273
9274   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9275
9276   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9277                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9278                                  In, DAG.getUNDEF(SVT)));
9279 }
9280
9281 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
9282   LLVMContext *Context = DAG.getContext();
9283   SDLoc dl(Op);
9284   MVT VT = Op.getSimpleValueType();
9285   MVT EltVT = VT;
9286   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9287   if (VT.isVector()) {
9288     EltVT = VT.getVectorElementType();
9289     NumElts = VT.getVectorNumElements();
9290   }
9291   Constant *C;
9292   if (EltVT == MVT::f64)
9293     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9294                                           APInt(64, ~(1ULL << 63))));
9295   else
9296     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9297                                           APInt(32, ~(1U << 31))));
9298   C = ConstantVector::getSplat(NumElts, C);
9299   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9300   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9301   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9302   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9303                              MachinePointerInfo::getConstantPool(),
9304                              false, false, false, Alignment);
9305   if (VT.isVector()) {
9306     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9307     return DAG.getNode(ISD::BITCAST, dl, VT,
9308                        DAG.getNode(ISD::AND, dl, ANDVT,
9309                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9310                                                Op.getOperand(0)),
9311                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9312   }
9313   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9314 }
9315
9316 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
9317   LLVMContext *Context = DAG.getContext();
9318   SDLoc dl(Op);
9319   MVT VT = Op.getSimpleValueType();
9320   MVT EltVT = VT;
9321   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9322   if (VT.isVector()) {
9323     EltVT = VT.getVectorElementType();
9324     NumElts = VT.getVectorNumElements();
9325   }
9326   Constant *C;
9327   if (EltVT == MVT::f64)
9328     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9329                                           APInt(64, 1ULL << 63)));
9330   else
9331     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9332                                           APInt(32, 1U << 31)));
9333   C = ConstantVector::getSplat(NumElts, C);
9334   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9335   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9336   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9337   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9338                              MachinePointerInfo::getConstantPool(),
9339                              false, false, false, Alignment);
9340   if (VT.isVector()) {
9341     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9342     return DAG.getNode(ISD::BITCAST, dl, VT,
9343                        DAG.getNode(ISD::XOR, dl, XORVT,
9344                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9345                                                Op.getOperand(0)),
9346                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9347   }
9348
9349   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9350 }
9351
9352 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
9353   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9354   LLVMContext *Context = DAG.getContext();
9355   SDValue Op0 = Op.getOperand(0);
9356   SDValue Op1 = Op.getOperand(1);
9357   SDLoc dl(Op);
9358   MVT VT = Op.getSimpleValueType();
9359   MVT SrcVT = Op1.getSimpleValueType();
9360
9361   // If second operand is smaller, extend it first.
9362   if (SrcVT.bitsLT(VT)) {
9363     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9364     SrcVT = VT;
9365   }
9366   // And if it is bigger, shrink it first.
9367   if (SrcVT.bitsGT(VT)) {
9368     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9369     SrcVT = VT;
9370   }
9371
9372   // At this point the operands and the result should have the same
9373   // type, and that won't be f80 since that is not custom lowered.
9374
9375   // First get the sign bit of second operand.
9376   SmallVector<Constant*,4> CV;
9377   if (SrcVT == MVT::f64) {
9378     const fltSemantics &Sem = APFloat::IEEEdouble;
9379     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9380     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9381   } else {
9382     const fltSemantics &Sem = APFloat::IEEEsingle;
9383     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9384     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9385     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9386     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9387   }
9388   Constant *C = ConstantVector::get(CV);
9389   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9390   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9391                               MachinePointerInfo::getConstantPool(),
9392                               false, false, false, 16);
9393   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9394
9395   // Shift sign bit right or left if the two operands have different types.
9396   if (SrcVT.bitsGT(VT)) {
9397     // Op0 is MVT::f32, Op1 is MVT::f64.
9398     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9399     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9400                           DAG.getConstant(32, MVT::i32));
9401     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9402     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9403                           DAG.getIntPtrConstant(0));
9404   }
9405
9406   // Clear first operand sign bit.
9407   CV.clear();
9408   if (VT == MVT::f64) {
9409     const fltSemantics &Sem = APFloat::IEEEdouble;
9410     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9411                                                    APInt(64, ~(1ULL << 63)))));
9412     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9413   } else {
9414     const fltSemantics &Sem = APFloat::IEEEsingle;
9415     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9416                                                    APInt(32, ~(1U << 31)))));
9417     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9418     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9419     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9420   }
9421   C = ConstantVector::get(CV);
9422   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9423   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9424                               MachinePointerInfo::getConstantPool(),
9425                               false, false, false, 16);
9426   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9427
9428   // Or the value with the sign bit.
9429   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9430 }
9431
9432 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9433   SDValue N0 = Op.getOperand(0);
9434   SDLoc dl(Op);
9435   MVT VT = Op.getSimpleValueType();
9436
9437   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9438   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9439                                   DAG.getConstant(1, VT));
9440   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9441 }
9442
9443 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9444 //
9445 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9446                                       SelectionDAG &DAG) {
9447   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9448
9449   if (!Subtarget->hasSSE41())
9450     return SDValue();
9451
9452   if (!Op->hasOneUse())
9453     return SDValue();
9454
9455   SDNode *N = Op.getNode();
9456   SDLoc DL(N);
9457
9458   SmallVector<SDValue, 8> Opnds;
9459   DenseMap<SDValue, unsigned> VecInMap;
9460   EVT VT = MVT::Other;
9461
9462   // Recognize a special case where a vector is casted into wide integer to
9463   // test all 0s.
9464   Opnds.push_back(N->getOperand(0));
9465   Opnds.push_back(N->getOperand(1));
9466
9467   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9468     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9469     // BFS traverse all OR'd operands.
9470     if (I->getOpcode() == ISD::OR) {
9471       Opnds.push_back(I->getOperand(0));
9472       Opnds.push_back(I->getOperand(1));
9473       // Re-evaluate the number of nodes to be traversed.
9474       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9475       continue;
9476     }
9477
9478     // Quit if a non-EXTRACT_VECTOR_ELT
9479     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9480       return SDValue();
9481
9482     // Quit if without a constant index.
9483     SDValue Idx = I->getOperand(1);
9484     if (!isa<ConstantSDNode>(Idx))
9485       return SDValue();
9486
9487     SDValue ExtractedFromVec = I->getOperand(0);
9488     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9489     if (M == VecInMap.end()) {
9490       VT = ExtractedFromVec.getValueType();
9491       // Quit if not 128/256-bit vector.
9492       if (!VT.is128BitVector() && !VT.is256BitVector())
9493         return SDValue();
9494       // Quit if not the same type.
9495       if (VecInMap.begin() != VecInMap.end() &&
9496           VT != VecInMap.begin()->first.getValueType())
9497         return SDValue();
9498       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9499     }
9500     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9501   }
9502
9503   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9504          "Not extracted from 128-/256-bit vector.");
9505
9506   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9507   SmallVector<SDValue, 8> VecIns;
9508
9509   for (DenseMap<SDValue, unsigned>::const_iterator
9510         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9511     // Quit if not all elements are used.
9512     if (I->second != FullMask)
9513       return SDValue();
9514     VecIns.push_back(I->first);
9515   }
9516
9517   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9518
9519   // Cast all vectors into TestVT for PTEST.
9520   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9521     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9522
9523   // If more than one full vectors are evaluated, OR them first before PTEST.
9524   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9525     // Each iteration will OR 2 nodes and append the result until there is only
9526     // 1 node left, i.e. the final OR'd value of all vectors.
9527     SDValue LHS = VecIns[Slot];
9528     SDValue RHS = VecIns[Slot + 1];
9529     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9530   }
9531
9532   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9533                      VecIns.back(), VecIns.back());
9534 }
9535
9536 /// Emit nodes that will be selected as "test Op0,Op0", or something
9537 /// equivalent.
9538 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9539                                     SelectionDAG &DAG) const {
9540   SDLoc dl(Op);
9541
9542   // CF and OF aren't always set the way we want. Determine which
9543   // of these we need.
9544   bool NeedCF = false;
9545   bool NeedOF = false;
9546   switch (X86CC) {
9547   default: break;
9548   case X86::COND_A: case X86::COND_AE:
9549   case X86::COND_B: case X86::COND_BE:
9550     NeedCF = true;
9551     break;
9552   case X86::COND_G: case X86::COND_GE:
9553   case X86::COND_L: case X86::COND_LE:
9554   case X86::COND_O: case X86::COND_NO:
9555     NeedOF = true;
9556     break;
9557   }
9558
9559   // See if we can use the EFLAGS value from the operand instead of
9560   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9561   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9562   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
9563     // Emit a CMP with 0, which is the TEST pattern.
9564     if (Op.getValueType() == MVT::i1)
9565       return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
9566                          DAG.getConstant(0, MVT::i1));
9567     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9568                        DAG.getConstant(0, Op.getValueType()));
9569   }
9570   unsigned Opcode = 0;
9571   unsigned NumOperands = 0;
9572
9573   // Truncate operations may prevent the merge of the SETCC instruction
9574   // and the arithmetic instruction before it. Attempt to truncate the operands
9575   // of the arithmetic instruction and use a reduced bit-width instruction.
9576   bool NeedTruncation = false;
9577   SDValue ArithOp = Op;
9578   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9579     SDValue Arith = Op->getOperand(0);
9580     // Both the trunc and the arithmetic op need to have one user each.
9581     if (Arith->hasOneUse())
9582       switch (Arith.getOpcode()) {
9583         default: break;
9584         case ISD::ADD:
9585         case ISD::SUB:
9586         case ISD::AND:
9587         case ISD::OR:
9588         case ISD::XOR: {
9589           NeedTruncation = true;
9590           ArithOp = Arith;
9591         }
9592       }
9593   }
9594
9595   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9596   // which may be the result of a CAST.  We use the variable 'Op', which is the
9597   // non-casted variable when we check for possible users.
9598   switch (ArithOp.getOpcode()) {
9599   case ISD::ADD:
9600     // Due to an isel shortcoming, be conservative if this add is likely to be
9601     // selected as part of a load-modify-store instruction. When the root node
9602     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9603     // uses of other nodes in the match, such as the ADD in this case. This
9604     // leads to the ADD being left around and reselected, with the result being
9605     // two adds in the output.  Alas, even if none our users are stores, that
9606     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9607     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9608     // climbing the DAG back to the root, and it doesn't seem to be worth the
9609     // effort.
9610     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9611          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9612       if (UI->getOpcode() != ISD::CopyToReg &&
9613           UI->getOpcode() != ISD::SETCC &&
9614           UI->getOpcode() != ISD::STORE)
9615         goto default_case;
9616
9617     if (ConstantSDNode *C =
9618         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9619       // An add of one will be selected as an INC.
9620       if (C->getAPIntValue() == 1) {
9621         Opcode = X86ISD::INC;
9622         NumOperands = 1;
9623         break;
9624       }
9625
9626       // An add of negative one (subtract of one) will be selected as a DEC.
9627       if (C->getAPIntValue().isAllOnesValue()) {
9628         Opcode = X86ISD::DEC;
9629         NumOperands = 1;
9630         break;
9631       }
9632     }
9633
9634     // Otherwise use a regular EFLAGS-setting add.
9635     Opcode = X86ISD::ADD;
9636     NumOperands = 2;
9637     break;
9638   case ISD::AND: {
9639     // If the primary and result isn't used, don't bother using X86ISD::AND,
9640     // because a TEST instruction will be better.
9641     bool NonFlagUse = false;
9642     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9643            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9644       SDNode *User = *UI;
9645       unsigned UOpNo = UI.getOperandNo();
9646       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9647         // Look pass truncate.
9648         UOpNo = User->use_begin().getOperandNo();
9649         User = *User->use_begin();
9650       }
9651
9652       if (User->getOpcode() != ISD::BRCOND &&
9653           User->getOpcode() != ISD::SETCC &&
9654           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9655         NonFlagUse = true;
9656         break;
9657       }
9658     }
9659
9660     if (!NonFlagUse)
9661       break;
9662   }
9663     // FALL THROUGH
9664   case ISD::SUB:
9665   case ISD::OR:
9666   case ISD::XOR:
9667     // Due to the ISEL shortcoming noted above, be conservative if this op is
9668     // likely to be selected as part of a load-modify-store instruction.
9669     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9670            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9671       if (UI->getOpcode() == ISD::STORE)
9672         goto default_case;
9673
9674     // Otherwise use a regular EFLAGS-setting instruction.
9675     switch (ArithOp.getOpcode()) {
9676     default: llvm_unreachable("unexpected operator!");
9677     case ISD::SUB: Opcode = X86ISD::SUB; break;
9678     case ISD::XOR: Opcode = X86ISD::XOR; break;
9679     case ISD::AND: Opcode = X86ISD::AND; break;
9680     case ISD::OR: {
9681       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9682         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9683         if (EFLAGS.getNode())
9684           return EFLAGS;
9685       }
9686       Opcode = X86ISD::OR;
9687       break;
9688     }
9689     }
9690
9691     NumOperands = 2;
9692     break;
9693   case X86ISD::ADD:
9694   case X86ISD::SUB:
9695   case X86ISD::INC:
9696   case X86ISD::DEC:
9697   case X86ISD::OR:
9698   case X86ISD::XOR:
9699   case X86ISD::AND:
9700     return SDValue(Op.getNode(), 1);
9701   default:
9702   default_case:
9703     break;
9704   }
9705
9706   // If we found that truncation is beneficial, perform the truncation and
9707   // update 'Op'.
9708   if (NeedTruncation) {
9709     EVT VT = Op.getValueType();
9710     SDValue WideVal = Op->getOperand(0);
9711     EVT WideVT = WideVal.getValueType();
9712     unsigned ConvertedOp = 0;
9713     // Use a target machine opcode to prevent further DAGCombine
9714     // optimizations that may separate the arithmetic operations
9715     // from the setcc node.
9716     switch (WideVal.getOpcode()) {
9717       default: break;
9718       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9719       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9720       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9721       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9722       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9723     }
9724
9725     if (ConvertedOp) {
9726       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9727       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9728         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9729         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9730         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9731       }
9732     }
9733   }
9734
9735   if (Opcode == 0)
9736     // Emit a CMP with 0, which is the TEST pattern.
9737     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9738                        DAG.getConstant(0, Op.getValueType()));
9739
9740   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9741   SmallVector<SDValue, 4> Ops;
9742   for (unsigned i = 0; i != NumOperands; ++i)
9743     Ops.push_back(Op.getOperand(i));
9744
9745   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9746   DAG.ReplaceAllUsesWith(Op, New);
9747   return SDValue(New.getNode(), 1);
9748 }
9749
9750 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9751 /// equivalent.
9752 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9753                                    SelectionDAG &DAG) const {
9754   SDLoc dl(Op0);
9755   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
9756     if (C->getAPIntValue() == 0)
9757       return EmitTest(Op0, X86CC, DAG);
9758
9759      if (Op0.getValueType() == MVT::i1) {
9760       Op0 = DAG.getNode(ISD::XOR, dl, MVT::i1, Op0,
9761                         DAG.getConstant(-1, MVT::i1));
9762       return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op0,
9763                          DAG.getConstant(0, MVT::i1));
9764      }
9765   }
9766  
9767   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9768        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9769     // Do the comparison at i32 if it's smaller. This avoids subregister
9770     // aliasing issues. Keep the smaller reference if we're optimizing for
9771     // size, however, as that'll allow better folding of memory operations.
9772     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
9773         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
9774              AttributeSet::FunctionIndex, Attribute::MinSize)) {
9775       unsigned ExtendOp =
9776           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
9777       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
9778       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
9779     }
9780     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9781     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9782     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9783                               Op0, Op1);
9784     return SDValue(Sub.getNode(), 1);
9785   }
9786   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9787 }
9788
9789 /// Convert a comparison if required by the subtarget.
9790 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9791                                                  SelectionDAG &DAG) const {
9792   // If the subtarget does not support the FUCOMI instruction, floating-point
9793   // comparisons have to be converted.
9794   if (Subtarget->hasCMov() ||
9795       Cmp.getOpcode() != X86ISD::CMP ||
9796       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9797       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9798     return Cmp;
9799
9800   // The instruction selector will select an FUCOM instruction instead of
9801   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9802   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9803   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9804   SDLoc dl(Cmp);
9805   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9806   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9807   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9808                             DAG.getConstant(8, MVT::i8));
9809   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9810   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9811 }
9812
9813 static bool isAllOnes(SDValue V) {
9814   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9815   return C && C->isAllOnesValue();
9816 }
9817
9818 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9819 /// if it's possible.
9820 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9821                                      SDLoc dl, SelectionDAG &DAG) const {
9822   SDValue Op0 = And.getOperand(0);
9823   SDValue Op1 = And.getOperand(1);
9824   if (Op0.getOpcode() == ISD::TRUNCATE)
9825     Op0 = Op0.getOperand(0);
9826   if (Op1.getOpcode() == ISD::TRUNCATE)
9827     Op1 = Op1.getOperand(0);
9828
9829   SDValue LHS, RHS;
9830   if (Op1.getOpcode() == ISD::SHL)
9831     std::swap(Op0, Op1);
9832   if (Op0.getOpcode() == ISD::SHL) {
9833     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9834       if (And00C->getZExtValue() == 1) {
9835         // If we looked past a truncate, check that it's only truncating away
9836         // known zeros.
9837         unsigned BitWidth = Op0.getValueSizeInBits();
9838         unsigned AndBitWidth = And.getValueSizeInBits();
9839         if (BitWidth > AndBitWidth) {
9840           APInt Zeros, Ones;
9841           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9842           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9843             return SDValue();
9844         }
9845         LHS = Op1;
9846         RHS = Op0.getOperand(1);
9847       }
9848   } else if (Op1.getOpcode() == ISD::Constant) {
9849     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9850     uint64_t AndRHSVal = AndRHS->getZExtValue();
9851     SDValue AndLHS = Op0;
9852
9853     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9854       LHS = AndLHS.getOperand(0);
9855       RHS = AndLHS.getOperand(1);
9856     }
9857
9858     // Use BT if the immediate can't be encoded in a TEST instruction.
9859     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9860       LHS = AndLHS;
9861       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9862     }
9863   }
9864
9865   if (LHS.getNode()) {
9866     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9867     // instruction.  Since the shift amount is in-range-or-undefined, we know
9868     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9869     // the encoding for the i16 version is larger than the i32 version.
9870     // Also promote i16 to i32 for performance / code size reason.
9871     if (LHS.getValueType() == MVT::i8 ||
9872         LHS.getValueType() == MVT::i16)
9873       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9874
9875     // If the operand types disagree, extend the shift amount to match.  Since
9876     // BT ignores high bits (like shifts) we can use anyextend.
9877     if (LHS.getValueType() != RHS.getValueType())
9878       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9879
9880     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9881     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9882     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9883                        DAG.getConstant(Cond, MVT::i8), BT);
9884   }
9885
9886   return SDValue();
9887 }
9888
9889 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9890 /// mask CMPs.
9891 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9892                               SDValue &Op1) {
9893   unsigned SSECC;
9894   bool Swap = false;
9895
9896   // SSE Condition code mapping:
9897   //  0 - EQ
9898   //  1 - LT
9899   //  2 - LE
9900   //  3 - UNORD
9901   //  4 - NEQ
9902   //  5 - NLT
9903   //  6 - NLE
9904   //  7 - ORD
9905   switch (SetCCOpcode) {
9906   default: llvm_unreachable("Unexpected SETCC condition");
9907   case ISD::SETOEQ:
9908   case ISD::SETEQ:  SSECC = 0; break;
9909   case ISD::SETOGT:
9910   case ISD::SETGT:  Swap = true; // Fallthrough
9911   case ISD::SETLT:
9912   case ISD::SETOLT: SSECC = 1; break;
9913   case ISD::SETOGE:
9914   case ISD::SETGE:  Swap = true; // Fallthrough
9915   case ISD::SETLE:
9916   case ISD::SETOLE: SSECC = 2; break;
9917   case ISD::SETUO:  SSECC = 3; break;
9918   case ISD::SETUNE:
9919   case ISD::SETNE:  SSECC = 4; break;
9920   case ISD::SETULE: Swap = true; // Fallthrough
9921   case ISD::SETUGE: SSECC = 5; break;
9922   case ISD::SETULT: Swap = true; // Fallthrough
9923   case ISD::SETUGT: SSECC = 6; break;
9924   case ISD::SETO:   SSECC = 7; break;
9925   case ISD::SETUEQ:
9926   case ISD::SETONE: SSECC = 8; break;
9927   }
9928   if (Swap)
9929     std::swap(Op0, Op1);
9930
9931   return SSECC;
9932 }
9933
9934 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9935 // ones, and then concatenate the result back.
9936 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9937   MVT VT = Op.getSimpleValueType();
9938
9939   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9940          "Unsupported value type for operation");
9941
9942   unsigned NumElems = VT.getVectorNumElements();
9943   SDLoc dl(Op);
9944   SDValue CC = Op.getOperand(2);
9945
9946   // Extract the LHS vectors
9947   SDValue LHS = Op.getOperand(0);
9948   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9949   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9950
9951   // Extract the RHS vectors
9952   SDValue RHS = Op.getOperand(1);
9953   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9954   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9955
9956   // Issue the operation on the smaller types and concatenate the result back
9957   MVT EltVT = VT.getVectorElementType();
9958   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9959   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9960                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9961                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9962 }
9963
9964 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9965   SDValue Op0 = Op.getOperand(0);
9966   SDValue Op1 = Op.getOperand(1);
9967   SDValue CC = Op.getOperand(2);
9968   MVT VT = Op.getSimpleValueType();
9969
9970   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9971          Op.getValueType().getScalarType() == MVT::i1 &&
9972          "Cannot set masked compare for this operation");
9973
9974   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9975   SDLoc dl(Op);
9976
9977   bool Unsigned = false;
9978   unsigned SSECC;
9979   switch (SetCCOpcode) {
9980   default: llvm_unreachable("Unexpected SETCC condition");
9981   case ISD::SETNE:  SSECC = 4; break;
9982   case ISD::SETEQ:  SSECC = 0; break;
9983   case ISD::SETUGT: Unsigned = true;
9984   case ISD::SETGT:  SSECC = 6; break; // NLE
9985   case ISD::SETULT: Unsigned = true;
9986   case ISD::SETLT:  SSECC = 1; break;
9987   case ISD::SETUGE: Unsigned = true;
9988   case ISD::SETGE:  SSECC = 5; break; // NLT
9989   case ISD::SETULE: Unsigned = true;
9990   case ISD::SETLE:  SSECC = 2; break;
9991   }
9992   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9993   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9994                      DAG.getConstant(SSECC, MVT::i8));
9995
9996 }
9997
9998 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9999                            SelectionDAG &DAG) {
10000   SDValue Op0 = Op.getOperand(0);
10001   SDValue Op1 = Op.getOperand(1);
10002   SDValue CC = Op.getOperand(2);
10003   MVT VT = Op.getSimpleValueType();
10004   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10005   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
10006   SDLoc dl(Op);
10007
10008   if (isFP) {
10009 #ifndef NDEBUG
10010     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
10011     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
10012 #endif
10013
10014     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
10015     unsigned Opc = X86ISD::CMPP;
10016     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
10017       assert(VT.getVectorNumElements() <= 16);
10018       Opc = X86ISD::CMPM;
10019     }
10020     // In the two special cases we can't handle, emit two comparisons.
10021     if (SSECC == 8) {
10022       unsigned CC0, CC1;
10023       unsigned CombineOpc;
10024       if (SetCCOpcode == ISD::SETUEQ) {
10025         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
10026       } else {
10027         assert(SetCCOpcode == ISD::SETONE);
10028         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
10029       }
10030
10031       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10032                                  DAG.getConstant(CC0, MVT::i8));
10033       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10034                                  DAG.getConstant(CC1, MVT::i8));
10035       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
10036     }
10037     // Handle all other FP comparisons here.
10038     return DAG.getNode(Opc, dl, VT, Op0, Op1,
10039                        DAG.getConstant(SSECC, MVT::i8));
10040   }
10041
10042   // Break 256-bit integer vector compare into smaller ones.
10043   if (VT.is256BitVector() && !Subtarget->hasInt256())
10044     return Lower256IntVSETCC(Op, DAG);
10045
10046   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
10047   EVT OpVT = Op1.getValueType();
10048   if (Subtarget->hasAVX512()) {
10049     if (Op1.getValueType().is512BitVector() ||
10050         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
10051       return LowerIntVSETCC_AVX512(Op, DAG);
10052
10053     // In AVX-512 architecture setcc returns mask with i1 elements,
10054     // But there is no compare instruction for i8 and i16 elements.
10055     // We are not talking about 512-bit operands in this case, these
10056     // types are illegal.
10057     if (MaskResult &&
10058         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
10059          OpVT.getVectorElementType().getSizeInBits() >= 8))
10060       return DAG.getNode(ISD::TRUNCATE, dl, VT,
10061                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
10062   }
10063
10064   // We are handling one of the integer comparisons here.  Since SSE only has
10065   // GT and EQ comparisons for integer, swapping operands and multiple
10066   // operations may be required for some comparisons.
10067   unsigned Opc;
10068   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
10069
10070   switch (SetCCOpcode) {
10071   default: llvm_unreachable("Unexpected SETCC condition");
10072   case ISD::SETNE:  Invert = true;
10073   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
10074   case ISD::SETLT:  Swap = true;
10075   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
10076   case ISD::SETGE:  Swap = true;
10077   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10078                     Invert = true; break;
10079   case ISD::SETULT: Swap = true;
10080   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10081                     FlipSigns = true; break;
10082   case ISD::SETUGE: Swap = true;
10083   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10084                     FlipSigns = true; Invert = true; break;
10085   }
10086
10087   // Special case: Use min/max operations for SETULE/SETUGE
10088   MVT VET = VT.getVectorElementType();
10089   bool hasMinMax =
10090        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
10091     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
10092
10093   if (hasMinMax) {
10094     switch (SetCCOpcode) {
10095     default: break;
10096     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
10097     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
10098     }
10099
10100     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
10101   }
10102
10103   if (Swap)
10104     std::swap(Op0, Op1);
10105
10106   // Check that the operation in question is available (most are plain SSE2,
10107   // but PCMPGTQ and PCMPEQQ have different requirements).
10108   if (VT == MVT::v2i64) {
10109     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
10110       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
10111
10112       // First cast everything to the right type.
10113       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10114       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10115
10116       // Since SSE has no unsigned integer comparisons, we need to flip the sign
10117       // bits of the inputs before performing those operations. The lower
10118       // compare is always unsigned.
10119       SDValue SB;
10120       if (FlipSigns) {
10121         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10122       } else {
10123         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10124         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10125         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10126                          Sign, Zero, Sign, Zero);
10127       }
10128       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10129       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
10130
10131       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10132       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10133       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10134
10135       // Create masks for only the low parts/high parts of the 64 bit integers.
10136       static const int MaskHi[] = { 1, 1, 3, 3 };
10137       static const int MaskLo[] = { 0, 0, 2, 2 };
10138       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10139       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10140       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10141
10142       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10143       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10144
10145       if (Invert)
10146         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10147
10148       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10149     }
10150
10151     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10152       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10153       // pcmpeqd + pshufd + pand.
10154       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10155
10156       // First cast everything to the right type.
10157       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10158       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10159
10160       // Do the compare.
10161       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10162
10163       // Make sure the lower and upper halves are both all-ones.
10164       static const int Mask[] = { 1, 0, 3, 2 };
10165       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10166       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10167
10168       if (Invert)
10169         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10170
10171       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10172     }
10173   }
10174
10175   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10176   // bits of the inputs before performing those operations.
10177   if (FlipSigns) {
10178     EVT EltVT = VT.getVectorElementType();
10179     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10180     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10181     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10182   }
10183
10184   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10185
10186   // If the logical-not of the result is required, perform that now.
10187   if (Invert)
10188     Result = DAG.getNOT(dl, Result, VT);
10189
10190   if (MinMax)
10191     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10192
10193   return Result;
10194 }
10195
10196 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10197
10198   MVT VT = Op.getSimpleValueType();
10199
10200   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10201
10202   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
10203          && "SetCC type must be 8-bit or 1-bit integer");
10204   SDValue Op0 = Op.getOperand(0);
10205   SDValue Op1 = Op.getOperand(1);
10206   SDLoc dl(Op);
10207   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10208
10209   // Optimize to BT if possible.
10210   // Lower (X & (1 << N)) == 0 to BT(X, N).
10211   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10212   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10213   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10214       Op1.getOpcode() == ISD::Constant &&
10215       cast<ConstantSDNode>(Op1)->isNullValue() &&
10216       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10217     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10218     if (NewSetCC.getNode())
10219       return NewSetCC;
10220   }
10221
10222   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10223   // these.
10224   if (Op1.getOpcode() == ISD::Constant &&
10225       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10226        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10227       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10228
10229     // If the input is a setcc, then reuse the input setcc or use a new one with
10230     // the inverted condition.
10231     if (Op0.getOpcode() == X86ISD::SETCC) {
10232       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10233       bool Invert = (CC == ISD::SETNE) ^
10234         cast<ConstantSDNode>(Op1)->isNullValue();
10235       if (!Invert) return Op0;
10236
10237       CCode = X86::GetOppositeBranchCondition(CCode);
10238       return DAG.getNode(X86ISD::SETCC, dl, VT,
10239                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10240     }
10241   }
10242
10243   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10244   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10245   if (X86CC == X86::COND_INVALID)
10246     return SDValue();
10247
10248   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10249   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10250   return DAG.getNode(X86ISD::SETCC, dl, VT,
10251                       DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10252 }
10253
10254 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10255 static bool isX86LogicalCmp(SDValue Op) {
10256   unsigned Opc = Op.getNode()->getOpcode();
10257   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10258       Opc == X86ISD::SAHF)
10259     return true;
10260   if (Op.getResNo() == 1 &&
10261       (Opc == X86ISD::ADD ||
10262        Opc == X86ISD::SUB ||
10263        Opc == X86ISD::ADC ||
10264        Opc == X86ISD::SBB ||
10265        Opc == X86ISD::SMUL ||
10266        Opc == X86ISD::UMUL ||
10267        Opc == X86ISD::INC ||
10268        Opc == X86ISD::DEC ||
10269        Opc == X86ISD::OR ||
10270        Opc == X86ISD::XOR ||
10271        Opc == X86ISD::AND))
10272     return true;
10273
10274   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10275     return true;
10276
10277   return false;
10278 }
10279
10280 static bool isZero(SDValue V) {
10281   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10282   return C && C->isNullValue();
10283 }
10284
10285 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10286   if (V.getOpcode() != ISD::TRUNCATE)
10287     return false;
10288
10289   SDValue VOp0 = V.getOperand(0);
10290   unsigned InBits = VOp0.getValueSizeInBits();
10291   unsigned Bits = V.getValueSizeInBits();
10292   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10293 }
10294
10295 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10296   bool addTest = true;
10297   SDValue Cond  = Op.getOperand(0);
10298   SDValue Op1 = Op.getOperand(1);
10299   SDValue Op2 = Op.getOperand(2);
10300   SDLoc DL(Op);
10301   EVT VT = Op1.getValueType();
10302   SDValue CC;
10303
10304   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10305   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10306   // sequence later on.
10307   if (Cond.getOpcode() == ISD::SETCC &&
10308       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10309        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10310       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10311     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10312     int SSECC = translateX86FSETCC(
10313         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10314
10315     if (SSECC != 8) {
10316       if (Subtarget->hasAVX512()) {
10317         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
10318                                   DAG.getConstant(SSECC, MVT::i8));
10319         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
10320       }
10321       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
10322                                 DAG.getConstant(SSECC, MVT::i8));
10323       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10324       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10325       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10326     }
10327   }
10328
10329   if (Cond.getOpcode() == ISD::SETCC) {
10330     SDValue NewCond = LowerSETCC(Cond, DAG);
10331     if (NewCond.getNode())
10332       Cond = NewCond;
10333   }
10334
10335   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10336   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10337   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10338   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10339   if (Cond.getOpcode() == X86ISD::SETCC &&
10340       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10341       isZero(Cond.getOperand(1).getOperand(1))) {
10342     SDValue Cmp = Cond.getOperand(1);
10343
10344     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10345
10346     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10347         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10348       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10349
10350       SDValue CmpOp0 = Cmp.getOperand(0);
10351       // Apply further optimizations for special cases
10352       // (select (x != 0), -1, 0) -> neg & sbb
10353       // (select (x == 0), 0, -1) -> neg & sbb
10354       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10355         if (YC->isNullValue() &&
10356             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10357           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10358           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10359                                     DAG.getConstant(0, CmpOp0.getValueType()),
10360                                     CmpOp0);
10361           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10362                                     DAG.getConstant(X86::COND_B, MVT::i8),
10363                                     SDValue(Neg.getNode(), 1));
10364           return Res;
10365         }
10366
10367       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10368                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10369       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10370
10371       SDValue Res =   // Res = 0 or -1.
10372         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10373                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10374
10375       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10376         Res = DAG.getNOT(DL, Res, Res.getValueType());
10377
10378       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10379       if (N2C == 0 || !N2C->isNullValue())
10380         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10381       return Res;
10382     }
10383   }
10384
10385   // Look past (and (setcc_carry (cmp ...)), 1).
10386   if (Cond.getOpcode() == ISD::AND &&
10387       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10388     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10389     if (C && C->getAPIntValue() == 1)
10390       Cond = Cond.getOperand(0);
10391   }
10392
10393   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10394   // setting operand in place of the X86ISD::SETCC.
10395   unsigned CondOpcode = Cond.getOpcode();
10396   if (CondOpcode == X86ISD::SETCC ||
10397       CondOpcode == X86ISD::SETCC_CARRY) {
10398     CC = Cond.getOperand(0);
10399
10400     SDValue Cmp = Cond.getOperand(1);
10401     unsigned Opc = Cmp.getOpcode();
10402     MVT VT = Op.getSimpleValueType();
10403
10404     bool IllegalFPCMov = false;
10405     if (VT.isFloatingPoint() && !VT.isVector() &&
10406         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10407       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10408
10409     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10410         Opc == X86ISD::BT) { // FIXME
10411       Cond = Cmp;
10412       addTest = false;
10413     }
10414   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10415              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10416              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10417               Cond.getOperand(0).getValueType() != MVT::i8)) {
10418     SDValue LHS = Cond.getOperand(0);
10419     SDValue RHS = Cond.getOperand(1);
10420     unsigned X86Opcode;
10421     unsigned X86Cond;
10422     SDVTList VTs;
10423     switch (CondOpcode) {
10424     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10425     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10426     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10427     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10428     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10429     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10430     default: llvm_unreachable("unexpected overflowing operator");
10431     }
10432     if (CondOpcode == ISD::UMULO)
10433       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10434                           MVT::i32);
10435     else
10436       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10437
10438     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10439
10440     if (CondOpcode == ISD::UMULO)
10441       Cond = X86Op.getValue(2);
10442     else
10443       Cond = X86Op.getValue(1);
10444
10445     CC = DAG.getConstant(X86Cond, MVT::i8);
10446     addTest = false;
10447   }
10448
10449   if (addTest) {
10450     // Look pass the truncate if the high bits are known zero.
10451     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10452         Cond = Cond.getOperand(0);
10453
10454     // We know the result of AND is compared against zero. Try to match
10455     // it to BT.
10456     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10457       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10458       if (NewSetCC.getNode()) {
10459         CC = NewSetCC.getOperand(0);
10460         Cond = NewSetCC.getOperand(1);
10461         addTest = false;
10462       }
10463     }
10464   }
10465
10466   if (addTest) {
10467     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10468     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10469   }
10470
10471   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10472   // a <  b ?  0 : -1 -> RES = setcc_carry
10473   // a >= b ? -1 :  0 -> RES = setcc_carry
10474   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10475   if (Cond.getOpcode() == X86ISD::SUB) {
10476     Cond = ConvertCmpIfNecessary(Cond, DAG);
10477     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10478
10479     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10480         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10481       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10482                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10483       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10484         return DAG.getNOT(DL, Res, Res.getValueType());
10485       return Res;
10486     }
10487   }
10488
10489   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10490   // widen the cmov and push the truncate through. This avoids introducing a new
10491   // branch during isel and doesn't add any extensions.
10492   if (Op.getValueType() == MVT::i8 &&
10493       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10494     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10495     if (T1.getValueType() == T2.getValueType() &&
10496         // Blacklist CopyFromReg to avoid partial register stalls.
10497         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10498       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10499       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10500       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10501     }
10502   }
10503
10504   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10505   // condition is true.
10506   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10507   SDValue Ops[] = { Op2, Op1, CC, Cond };
10508   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10509 }
10510
10511 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10512   MVT VT = Op->getSimpleValueType(0);
10513   SDValue In = Op->getOperand(0);
10514   MVT InVT = In.getSimpleValueType();
10515   SDLoc dl(Op);
10516
10517   unsigned int NumElts = VT.getVectorNumElements();
10518   if (NumElts != 8 && NumElts != 16)
10519     return SDValue();
10520
10521   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10522     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10523
10524   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10525   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10526
10527   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10528   Constant *C = ConstantInt::get(*DAG.getContext(),
10529     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10530
10531   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10532   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10533   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10534                           MachinePointerInfo::getConstantPool(),
10535                           false, false, false, Alignment);
10536   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10537   if (VT.is512BitVector())
10538     return Brcst;
10539   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10540 }
10541
10542 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10543                                 SelectionDAG &DAG) {
10544   MVT VT = Op->getSimpleValueType(0);
10545   SDValue In = Op->getOperand(0);
10546   MVT InVT = In.getSimpleValueType();
10547   SDLoc dl(Op);
10548
10549   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10550     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10551
10552   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10553       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10554       (VT != MVT::v16i16 || InVT != MVT::v16i8))
10555     return SDValue();
10556
10557   if (Subtarget->hasInt256())
10558     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10559
10560   // Optimize vectors in AVX mode
10561   // Sign extend  v8i16 to v8i32 and
10562   //              v4i32 to v4i64
10563   //
10564   // Divide input vector into two parts
10565   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10566   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10567   // concat the vectors to original VT
10568
10569   unsigned NumElems = InVT.getVectorNumElements();
10570   SDValue Undef = DAG.getUNDEF(InVT);
10571
10572   SmallVector<int,8> ShufMask1(NumElems, -1);
10573   for (unsigned i = 0; i != NumElems/2; ++i)
10574     ShufMask1[i] = i;
10575
10576   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10577
10578   SmallVector<int,8> ShufMask2(NumElems, -1);
10579   for (unsigned i = 0; i != NumElems/2; ++i)
10580     ShufMask2[i] = i + NumElems/2;
10581
10582   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10583
10584   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10585                                 VT.getVectorNumElements()/2);
10586
10587   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10588   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10589
10590   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10591 }
10592
10593 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10594 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10595 // from the AND / OR.
10596 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10597   Opc = Op.getOpcode();
10598   if (Opc != ISD::OR && Opc != ISD::AND)
10599     return false;
10600   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10601           Op.getOperand(0).hasOneUse() &&
10602           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10603           Op.getOperand(1).hasOneUse());
10604 }
10605
10606 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10607 // 1 and that the SETCC node has a single use.
10608 static bool isXor1OfSetCC(SDValue Op) {
10609   if (Op.getOpcode() != ISD::XOR)
10610     return false;
10611   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10612   if (N1C && N1C->getAPIntValue() == 1) {
10613     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10614       Op.getOperand(0).hasOneUse();
10615   }
10616   return false;
10617 }
10618
10619 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10620   bool addTest = true;
10621   SDValue Chain = Op.getOperand(0);
10622   SDValue Cond  = Op.getOperand(1);
10623   SDValue Dest  = Op.getOperand(2);
10624   SDLoc dl(Op);
10625   SDValue CC;
10626   bool Inverted = false;
10627
10628   if (Cond.getOpcode() == ISD::SETCC) {
10629     // Check for setcc([su]{add,sub,mul}o == 0).
10630     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10631         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10632         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10633         Cond.getOperand(0).getResNo() == 1 &&
10634         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10635          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10636          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10637          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10638          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10639          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10640       Inverted = true;
10641       Cond = Cond.getOperand(0);
10642     } else {
10643       SDValue NewCond = LowerSETCC(Cond, DAG);
10644       if (NewCond.getNode())
10645         Cond = NewCond;
10646     }
10647   }
10648 #if 0
10649   // FIXME: LowerXALUO doesn't handle these!!
10650   else if (Cond.getOpcode() == X86ISD::ADD  ||
10651            Cond.getOpcode() == X86ISD::SUB  ||
10652            Cond.getOpcode() == X86ISD::SMUL ||
10653            Cond.getOpcode() == X86ISD::UMUL)
10654     Cond = LowerXALUO(Cond, DAG);
10655 #endif
10656
10657   // Look pass (and (setcc_carry (cmp ...)), 1).
10658   if (Cond.getOpcode() == ISD::AND &&
10659       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10660     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10661     if (C && C->getAPIntValue() == 1)
10662       Cond = Cond.getOperand(0);
10663   }
10664
10665   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10666   // setting operand in place of the X86ISD::SETCC.
10667   unsigned CondOpcode = Cond.getOpcode();
10668   if (CondOpcode == X86ISD::SETCC ||
10669       CondOpcode == X86ISD::SETCC_CARRY) {
10670     CC = Cond.getOperand(0);
10671
10672     SDValue Cmp = Cond.getOperand(1);
10673     unsigned Opc = Cmp.getOpcode();
10674     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10675     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10676       Cond = Cmp;
10677       addTest = false;
10678     } else {
10679       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10680       default: break;
10681       case X86::COND_O:
10682       case X86::COND_B:
10683         // These can only come from an arithmetic instruction with overflow,
10684         // e.g. SADDO, UADDO.
10685         Cond = Cond.getNode()->getOperand(1);
10686         addTest = false;
10687         break;
10688       }
10689     }
10690   }
10691   CondOpcode = Cond.getOpcode();
10692   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10693       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10694       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10695        Cond.getOperand(0).getValueType() != MVT::i8)) {
10696     SDValue LHS = Cond.getOperand(0);
10697     SDValue RHS = Cond.getOperand(1);
10698     unsigned X86Opcode;
10699     unsigned X86Cond;
10700     SDVTList VTs;
10701     switch (CondOpcode) {
10702     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10703     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10704     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10705     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10706     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10707     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10708     default: llvm_unreachable("unexpected overflowing operator");
10709     }
10710     if (Inverted)
10711       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10712     if (CondOpcode == ISD::UMULO)
10713       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10714                           MVT::i32);
10715     else
10716       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10717
10718     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10719
10720     if (CondOpcode == ISD::UMULO)
10721       Cond = X86Op.getValue(2);
10722     else
10723       Cond = X86Op.getValue(1);
10724
10725     CC = DAG.getConstant(X86Cond, MVT::i8);
10726     addTest = false;
10727   } else {
10728     unsigned CondOpc;
10729     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10730       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10731       if (CondOpc == ISD::OR) {
10732         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10733         // two branches instead of an explicit OR instruction with a
10734         // separate test.
10735         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10736             isX86LogicalCmp(Cmp)) {
10737           CC = Cond.getOperand(0).getOperand(0);
10738           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10739                               Chain, Dest, CC, Cmp);
10740           CC = Cond.getOperand(1).getOperand(0);
10741           Cond = Cmp;
10742           addTest = false;
10743         }
10744       } else { // ISD::AND
10745         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10746         // two branches instead of an explicit AND instruction with a
10747         // separate test. However, we only do this if this block doesn't
10748         // have a fall-through edge, because this requires an explicit
10749         // jmp when the condition is false.
10750         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10751             isX86LogicalCmp(Cmp) &&
10752             Op.getNode()->hasOneUse()) {
10753           X86::CondCode CCode =
10754             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10755           CCode = X86::GetOppositeBranchCondition(CCode);
10756           CC = DAG.getConstant(CCode, MVT::i8);
10757           SDNode *User = *Op.getNode()->use_begin();
10758           // Look for an unconditional branch following this conditional branch.
10759           // We need this because we need to reverse the successors in order
10760           // to implement FCMP_OEQ.
10761           if (User->getOpcode() == ISD::BR) {
10762             SDValue FalseBB = User->getOperand(1);
10763             SDNode *NewBR =
10764               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10765             assert(NewBR == User);
10766             (void)NewBR;
10767             Dest = FalseBB;
10768
10769             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10770                                 Chain, Dest, CC, Cmp);
10771             X86::CondCode CCode =
10772               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10773             CCode = X86::GetOppositeBranchCondition(CCode);
10774             CC = DAG.getConstant(CCode, MVT::i8);
10775             Cond = Cmp;
10776             addTest = false;
10777           }
10778         }
10779       }
10780     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10781       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10782       // It should be transformed during dag combiner except when the condition
10783       // is set by a arithmetics with overflow node.
10784       X86::CondCode CCode =
10785         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10786       CCode = X86::GetOppositeBranchCondition(CCode);
10787       CC = DAG.getConstant(CCode, MVT::i8);
10788       Cond = Cond.getOperand(0).getOperand(1);
10789       addTest = false;
10790     } else if (Cond.getOpcode() == ISD::SETCC &&
10791                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10792       // For FCMP_OEQ, we can emit
10793       // two branches instead of an explicit AND instruction with a
10794       // separate test. However, we only do this if this block doesn't
10795       // have a fall-through edge, because this requires an explicit
10796       // jmp when the condition is false.
10797       if (Op.getNode()->hasOneUse()) {
10798         SDNode *User = *Op.getNode()->use_begin();
10799         // Look for an unconditional branch following this conditional branch.
10800         // We need this because we need to reverse the successors in order
10801         // to implement FCMP_OEQ.
10802         if (User->getOpcode() == ISD::BR) {
10803           SDValue FalseBB = User->getOperand(1);
10804           SDNode *NewBR =
10805             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10806           assert(NewBR == User);
10807           (void)NewBR;
10808           Dest = FalseBB;
10809
10810           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10811                                     Cond.getOperand(0), Cond.getOperand(1));
10812           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10813           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10814           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10815                               Chain, Dest, CC, Cmp);
10816           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10817           Cond = Cmp;
10818           addTest = false;
10819         }
10820       }
10821     } else if (Cond.getOpcode() == ISD::SETCC &&
10822                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10823       // For FCMP_UNE, we can emit
10824       // two branches instead of an explicit AND instruction with a
10825       // separate test. However, we only do this if this block doesn't
10826       // have a fall-through edge, because this requires an explicit
10827       // jmp when the condition is false.
10828       if (Op.getNode()->hasOneUse()) {
10829         SDNode *User = *Op.getNode()->use_begin();
10830         // Look for an unconditional branch following this conditional branch.
10831         // We need this because we need to reverse the successors in order
10832         // to implement FCMP_UNE.
10833         if (User->getOpcode() == ISD::BR) {
10834           SDValue FalseBB = User->getOperand(1);
10835           SDNode *NewBR =
10836             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10837           assert(NewBR == User);
10838           (void)NewBR;
10839
10840           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10841                                     Cond.getOperand(0), Cond.getOperand(1));
10842           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10843           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10844           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10845                               Chain, Dest, CC, Cmp);
10846           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10847           Cond = Cmp;
10848           addTest = false;
10849           Dest = FalseBB;
10850         }
10851       }
10852     }
10853   }
10854
10855   if (addTest) {
10856     // Look pass the truncate if the high bits are known zero.
10857     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10858         Cond = Cond.getOperand(0);
10859
10860     // We know the result of AND is compared against zero. Try to match
10861     // it to BT.
10862     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10863       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10864       if (NewSetCC.getNode()) {
10865         CC = NewSetCC.getOperand(0);
10866         Cond = NewSetCC.getOperand(1);
10867         addTest = false;
10868       }
10869     }
10870   }
10871
10872   if (addTest) {
10873     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10874     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10875   }
10876   Cond = ConvertCmpIfNecessary(Cond, DAG);
10877   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10878                      Chain, Dest, CC, Cond);
10879 }
10880
10881 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10882 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10883 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10884 // that the guard pages used by the OS virtual memory manager are allocated in
10885 // correct sequence.
10886 SDValue
10887 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10888                                            SelectionDAG &DAG) const {
10889   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10890           getTargetMachine().Options.EnableSegmentedStacks) &&
10891          "This should be used only on Windows targets or when segmented stacks "
10892          "are being used");
10893   assert(!Subtarget->isTargetMacho() && "Not implemented");
10894   SDLoc dl(Op);
10895
10896   // Get the inputs.
10897   SDValue Chain = Op.getOperand(0);
10898   SDValue Size  = Op.getOperand(1);
10899   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10900   EVT VT = Op.getNode()->getValueType(0);
10901
10902   bool Is64Bit = Subtarget->is64Bit();
10903   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10904
10905   if (getTargetMachine().Options.EnableSegmentedStacks) {
10906     MachineFunction &MF = DAG.getMachineFunction();
10907     MachineRegisterInfo &MRI = MF.getRegInfo();
10908
10909     if (Is64Bit) {
10910       // The 64 bit implementation of segmented stacks needs to clobber both r10
10911       // r11. This makes it impossible to use it along with nested parameters.
10912       const Function *F = MF.getFunction();
10913
10914       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10915            I != E; ++I)
10916         if (I->hasNestAttr())
10917           report_fatal_error("Cannot use segmented stacks with functions that "
10918                              "have nested arguments.");
10919     }
10920
10921     const TargetRegisterClass *AddrRegClass =
10922       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10923     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10924     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10925     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10926                                 DAG.getRegister(Vreg, SPTy));
10927     SDValue Ops1[2] = { Value, Chain };
10928     return DAG.getMergeValues(Ops1, 2, dl);
10929   } else {
10930     SDValue Flag;
10931     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10932
10933     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10934     Flag = Chain.getValue(1);
10935     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10936
10937     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10938
10939     const X86RegisterInfo *RegInfo =
10940       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10941     unsigned SPReg = RegInfo->getStackRegister();
10942     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10943     Chain = SP.getValue(1);
10944
10945     if (Align) {
10946       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10947                        DAG.getConstant(-(uint64_t)Align, VT));
10948       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10949     }
10950
10951     SDValue Ops1[2] = { SP, Chain };
10952     return DAG.getMergeValues(Ops1, 2, dl);
10953   }
10954 }
10955
10956 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10957   MachineFunction &MF = DAG.getMachineFunction();
10958   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10959
10960   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10961   SDLoc DL(Op);
10962
10963   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10964     // vastart just stores the address of the VarArgsFrameIndex slot into the
10965     // memory location argument.
10966     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10967                                    getPointerTy());
10968     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10969                         MachinePointerInfo(SV), false, false, 0);
10970   }
10971
10972   // __va_list_tag:
10973   //   gp_offset         (0 - 6 * 8)
10974   //   fp_offset         (48 - 48 + 8 * 16)
10975   //   overflow_arg_area (point to parameters coming in memory).
10976   //   reg_save_area
10977   SmallVector<SDValue, 8> MemOps;
10978   SDValue FIN = Op.getOperand(1);
10979   // Store gp_offset
10980   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10981                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10982                                                MVT::i32),
10983                                FIN, MachinePointerInfo(SV), false, false, 0);
10984   MemOps.push_back(Store);
10985
10986   // Store fp_offset
10987   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10988                     FIN, DAG.getIntPtrConstant(4));
10989   Store = DAG.getStore(Op.getOperand(0), DL,
10990                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10991                                        MVT::i32),
10992                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10993   MemOps.push_back(Store);
10994
10995   // Store ptr to overflow_arg_area
10996   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10997                     FIN, DAG.getIntPtrConstant(4));
10998   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10999                                     getPointerTy());
11000   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
11001                        MachinePointerInfo(SV, 8),
11002                        false, false, 0);
11003   MemOps.push_back(Store);
11004
11005   // Store ptr to reg_save_area.
11006   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11007                     FIN, DAG.getIntPtrConstant(8));
11008   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
11009                                     getPointerTy());
11010   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
11011                        MachinePointerInfo(SV, 16), false, false, 0);
11012   MemOps.push_back(Store);
11013   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
11014                      &MemOps[0], MemOps.size());
11015 }
11016
11017 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
11018   assert(Subtarget->is64Bit() &&
11019          "LowerVAARG only handles 64-bit va_arg!");
11020   assert((Subtarget->isTargetLinux() ||
11021           Subtarget->isTargetDarwin()) &&
11022           "Unhandled target in LowerVAARG");
11023   assert(Op.getNode()->getNumOperands() == 4);
11024   SDValue Chain = Op.getOperand(0);
11025   SDValue SrcPtr = Op.getOperand(1);
11026   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11027   unsigned Align = Op.getConstantOperandVal(3);
11028   SDLoc dl(Op);
11029
11030   EVT ArgVT = Op.getNode()->getValueType(0);
11031   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11032   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
11033   uint8_t ArgMode;
11034
11035   // Decide which area this value should be read from.
11036   // TODO: Implement the AMD64 ABI in its entirety. This simple
11037   // selection mechanism works only for the basic types.
11038   if (ArgVT == MVT::f80) {
11039     llvm_unreachable("va_arg for f80 not yet implemented");
11040   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
11041     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
11042   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
11043     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
11044   } else {
11045     llvm_unreachable("Unhandled argument type in LowerVAARG");
11046   }
11047
11048   if (ArgMode == 2) {
11049     // Sanity Check: Make sure using fp_offset makes sense.
11050     assert(!getTargetMachine().Options.UseSoftFloat &&
11051            !(DAG.getMachineFunction()
11052                 .getFunction()->getAttributes()
11053                 .hasAttribute(AttributeSet::FunctionIndex,
11054                               Attribute::NoImplicitFloat)) &&
11055            Subtarget->hasSSE1());
11056   }
11057
11058   // Insert VAARG_64 node into the DAG
11059   // VAARG_64 returns two values: Variable Argument Address, Chain
11060   SmallVector<SDValue, 11> InstOps;
11061   InstOps.push_back(Chain);
11062   InstOps.push_back(SrcPtr);
11063   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11064   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
11065   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
11066   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
11067   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
11068                                           VTs, &InstOps[0], InstOps.size(),
11069                                           MVT::i64,
11070                                           MachinePointerInfo(SV),
11071                                           /*Align=*/0,
11072                                           /*Volatile=*/false,
11073                                           /*ReadMem=*/true,
11074                                           /*WriteMem=*/true);
11075   Chain = VAARG.getValue(1);
11076
11077   // Load the next argument and return it
11078   return DAG.getLoad(ArgVT, dl,
11079                      Chain,
11080                      VAARG,
11081                      MachinePointerInfo(),
11082                      false, false, false, 0);
11083 }
11084
11085 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
11086                            SelectionDAG &DAG) {
11087   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
11088   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
11089   SDValue Chain = Op.getOperand(0);
11090   SDValue DstPtr = Op.getOperand(1);
11091   SDValue SrcPtr = Op.getOperand(2);
11092   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
11093   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11094   SDLoc DL(Op);
11095
11096   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
11097                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
11098                        false,
11099                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
11100 }
11101
11102 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
11103 // amount is a constant. Takes immediate version of shift as input.
11104 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
11105                                           SDValue SrcOp, uint64_t ShiftAmt,
11106                                           SelectionDAG &DAG) {
11107   MVT ElementType = VT.getVectorElementType();
11108
11109   // Check for ShiftAmt >= element width
11110   if (ShiftAmt >= ElementType.getSizeInBits()) {
11111     if (Opc == X86ISD::VSRAI)
11112       ShiftAmt = ElementType.getSizeInBits() - 1;
11113     else
11114       return DAG.getConstant(0, VT);
11115   }
11116
11117   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
11118          && "Unknown target vector shift-by-constant node");
11119
11120   // Fold this packed vector shift into a build vector if SrcOp is a
11121   // vector of ConstantSDNodes or UNDEFs.
11122   if (ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
11123     SmallVector<SDValue, 8> Elts;
11124     unsigned NumElts = SrcOp->getNumOperands();
11125     ConstantSDNode *ND;
11126
11127     switch(Opc) {
11128     default: llvm_unreachable(0);
11129     case X86ISD::VSHLI:
11130       for (unsigned i=0; i!=NumElts; ++i) {
11131         SDValue CurrentOp = SrcOp->getOperand(i);
11132         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11133           Elts.push_back(CurrentOp);
11134           continue;
11135         }
11136         ND = cast<ConstantSDNode>(CurrentOp);
11137         const APInt &C = ND->getAPIntValue();
11138         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
11139       }
11140       break;
11141     case X86ISD::VSRLI:
11142       for (unsigned i=0; i!=NumElts; ++i) {
11143         SDValue CurrentOp = SrcOp->getOperand(i);
11144         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11145           Elts.push_back(CurrentOp);
11146           continue;
11147         }
11148         ND = cast<ConstantSDNode>(CurrentOp);
11149         const APInt &C = ND->getAPIntValue();
11150         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
11151       }
11152       break;
11153     case X86ISD::VSRAI:
11154       for (unsigned i=0; i!=NumElts; ++i) {
11155         SDValue CurrentOp = SrcOp->getOperand(i);
11156         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11157           Elts.push_back(CurrentOp);
11158           continue;
11159         }
11160         ND = cast<ConstantSDNode>(CurrentOp);
11161         const APInt &C = ND->getAPIntValue();
11162         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
11163       }
11164       break;
11165     }
11166
11167     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Elts[0], NumElts);
11168   }
11169
11170   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
11171 }
11172
11173 // getTargetVShiftNode - Handle vector element shifts where the shift amount
11174 // may or may not be a constant. Takes immediate version of shift as input.
11175 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
11176                                    SDValue SrcOp, SDValue ShAmt,
11177                                    SelectionDAG &DAG) {
11178   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11179
11180   // Catch shift-by-constant.
11181   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11182     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11183                                       CShAmt->getZExtValue(), DAG);
11184
11185   // Change opcode to non-immediate version
11186   switch (Opc) {
11187     default: llvm_unreachable("Unknown target vector shift node");
11188     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11189     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11190     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11191   }
11192
11193   // Need to build a vector containing shift amount
11194   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11195   SDValue ShOps[4];
11196   ShOps[0] = ShAmt;
11197   ShOps[1] = DAG.getConstant(0, MVT::i32);
11198   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
11199   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
11200
11201   // The return type has to be a 128-bit type with the same element
11202   // type as the input type.
11203   MVT EltVT = VT.getVectorElementType();
11204   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11205
11206   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11207   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11208 }
11209
11210 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11211   SDLoc dl(Op);
11212   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11213   switch (IntNo) {
11214   default: return SDValue();    // Don't custom lower most intrinsics.
11215   // Comparison intrinsics.
11216   case Intrinsic::x86_sse_comieq_ss:
11217   case Intrinsic::x86_sse_comilt_ss:
11218   case Intrinsic::x86_sse_comile_ss:
11219   case Intrinsic::x86_sse_comigt_ss:
11220   case Intrinsic::x86_sse_comige_ss:
11221   case Intrinsic::x86_sse_comineq_ss:
11222   case Intrinsic::x86_sse_ucomieq_ss:
11223   case Intrinsic::x86_sse_ucomilt_ss:
11224   case Intrinsic::x86_sse_ucomile_ss:
11225   case Intrinsic::x86_sse_ucomigt_ss:
11226   case Intrinsic::x86_sse_ucomige_ss:
11227   case Intrinsic::x86_sse_ucomineq_ss:
11228   case Intrinsic::x86_sse2_comieq_sd:
11229   case Intrinsic::x86_sse2_comilt_sd:
11230   case Intrinsic::x86_sse2_comile_sd:
11231   case Intrinsic::x86_sse2_comigt_sd:
11232   case Intrinsic::x86_sse2_comige_sd:
11233   case Intrinsic::x86_sse2_comineq_sd:
11234   case Intrinsic::x86_sse2_ucomieq_sd:
11235   case Intrinsic::x86_sse2_ucomilt_sd:
11236   case Intrinsic::x86_sse2_ucomile_sd:
11237   case Intrinsic::x86_sse2_ucomigt_sd:
11238   case Intrinsic::x86_sse2_ucomige_sd:
11239   case Intrinsic::x86_sse2_ucomineq_sd: {
11240     unsigned Opc;
11241     ISD::CondCode CC;
11242     switch (IntNo) {
11243     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11244     case Intrinsic::x86_sse_comieq_ss:
11245     case Intrinsic::x86_sse2_comieq_sd:
11246       Opc = X86ISD::COMI;
11247       CC = ISD::SETEQ;
11248       break;
11249     case Intrinsic::x86_sse_comilt_ss:
11250     case Intrinsic::x86_sse2_comilt_sd:
11251       Opc = X86ISD::COMI;
11252       CC = ISD::SETLT;
11253       break;
11254     case Intrinsic::x86_sse_comile_ss:
11255     case Intrinsic::x86_sse2_comile_sd:
11256       Opc = X86ISD::COMI;
11257       CC = ISD::SETLE;
11258       break;
11259     case Intrinsic::x86_sse_comigt_ss:
11260     case Intrinsic::x86_sse2_comigt_sd:
11261       Opc = X86ISD::COMI;
11262       CC = ISD::SETGT;
11263       break;
11264     case Intrinsic::x86_sse_comige_ss:
11265     case Intrinsic::x86_sse2_comige_sd:
11266       Opc = X86ISD::COMI;
11267       CC = ISD::SETGE;
11268       break;
11269     case Intrinsic::x86_sse_comineq_ss:
11270     case Intrinsic::x86_sse2_comineq_sd:
11271       Opc = X86ISD::COMI;
11272       CC = ISD::SETNE;
11273       break;
11274     case Intrinsic::x86_sse_ucomieq_ss:
11275     case Intrinsic::x86_sse2_ucomieq_sd:
11276       Opc = X86ISD::UCOMI;
11277       CC = ISD::SETEQ;
11278       break;
11279     case Intrinsic::x86_sse_ucomilt_ss:
11280     case Intrinsic::x86_sse2_ucomilt_sd:
11281       Opc = X86ISD::UCOMI;
11282       CC = ISD::SETLT;
11283       break;
11284     case Intrinsic::x86_sse_ucomile_ss:
11285     case Intrinsic::x86_sse2_ucomile_sd:
11286       Opc = X86ISD::UCOMI;
11287       CC = ISD::SETLE;
11288       break;
11289     case Intrinsic::x86_sse_ucomigt_ss:
11290     case Intrinsic::x86_sse2_ucomigt_sd:
11291       Opc = X86ISD::UCOMI;
11292       CC = ISD::SETGT;
11293       break;
11294     case Intrinsic::x86_sse_ucomige_ss:
11295     case Intrinsic::x86_sse2_ucomige_sd:
11296       Opc = X86ISD::UCOMI;
11297       CC = ISD::SETGE;
11298       break;
11299     case Intrinsic::x86_sse_ucomineq_ss:
11300     case Intrinsic::x86_sse2_ucomineq_sd:
11301       Opc = X86ISD::UCOMI;
11302       CC = ISD::SETNE;
11303       break;
11304     }
11305
11306     SDValue LHS = Op.getOperand(1);
11307     SDValue RHS = Op.getOperand(2);
11308     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11309     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11310     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11311     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11312                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11313     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11314   }
11315
11316   // Arithmetic intrinsics.
11317   case Intrinsic::x86_sse2_pmulu_dq:
11318   case Intrinsic::x86_avx2_pmulu_dq:
11319     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11320                        Op.getOperand(1), Op.getOperand(2));
11321
11322   // SSE2/AVX2 sub with unsigned saturation intrinsics
11323   case Intrinsic::x86_sse2_psubus_b:
11324   case Intrinsic::x86_sse2_psubus_w:
11325   case Intrinsic::x86_avx2_psubus_b:
11326   case Intrinsic::x86_avx2_psubus_w:
11327     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11328                        Op.getOperand(1), Op.getOperand(2));
11329
11330   // SSE3/AVX horizontal add/sub intrinsics
11331   case Intrinsic::x86_sse3_hadd_ps:
11332   case Intrinsic::x86_sse3_hadd_pd:
11333   case Intrinsic::x86_avx_hadd_ps_256:
11334   case Intrinsic::x86_avx_hadd_pd_256:
11335   case Intrinsic::x86_sse3_hsub_ps:
11336   case Intrinsic::x86_sse3_hsub_pd:
11337   case Intrinsic::x86_avx_hsub_ps_256:
11338   case Intrinsic::x86_avx_hsub_pd_256:
11339   case Intrinsic::x86_ssse3_phadd_w_128:
11340   case Intrinsic::x86_ssse3_phadd_d_128:
11341   case Intrinsic::x86_avx2_phadd_w:
11342   case Intrinsic::x86_avx2_phadd_d:
11343   case Intrinsic::x86_ssse3_phsub_w_128:
11344   case Intrinsic::x86_ssse3_phsub_d_128:
11345   case Intrinsic::x86_avx2_phsub_w:
11346   case Intrinsic::x86_avx2_phsub_d: {
11347     unsigned Opcode;
11348     switch (IntNo) {
11349     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11350     case Intrinsic::x86_sse3_hadd_ps:
11351     case Intrinsic::x86_sse3_hadd_pd:
11352     case Intrinsic::x86_avx_hadd_ps_256:
11353     case Intrinsic::x86_avx_hadd_pd_256:
11354       Opcode = X86ISD::FHADD;
11355       break;
11356     case Intrinsic::x86_sse3_hsub_ps:
11357     case Intrinsic::x86_sse3_hsub_pd:
11358     case Intrinsic::x86_avx_hsub_ps_256:
11359     case Intrinsic::x86_avx_hsub_pd_256:
11360       Opcode = X86ISD::FHSUB;
11361       break;
11362     case Intrinsic::x86_ssse3_phadd_w_128:
11363     case Intrinsic::x86_ssse3_phadd_d_128:
11364     case Intrinsic::x86_avx2_phadd_w:
11365     case Intrinsic::x86_avx2_phadd_d:
11366       Opcode = X86ISD::HADD;
11367       break;
11368     case Intrinsic::x86_ssse3_phsub_w_128:
11369     case Intrinsic::x86_ssse3_phsub_d_128:
11370     case Intrinsic::x86_avx2_phsub_w:
11371     case Intrinsic::x86_avx2_phsub_d:
11372       Opcode = X86ISD::HSUB;
11373       break;
11374     }
11375     return DAG.getNode(Opcode, dl, Op.getValueType(),
11376                        Op.getOperand(1), Op.getOperand(2));
11377   }
11378
11379   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11380   case Intrinsic::x86_sse2_pmaxu_b:
11381   case Intrinsic::x86_sse41_pmaxuw:
11382   case Intrinsic::x86_sse41_pmaxud:
11383   case Intrinsic::x86_avx2_pmaxu_b:
11384   case Intrinsic::x86_avx2_pmaxu_w:
11385   case Intrinsic::x86_avx2_pmaxu_d:
11386   case Intrinsic::x86_sse2_pminu_b:
11387   case Intrinsic::x86_sse41_pminuw:
11388   case Intrinsic::x86_sse41_pminud:
11389   case Intrinsic::x86_avx2_pminu_b:
11390   case Intrinsic::x86_avx2_pminu_w:
11391   case Intrinsic::x86_avx2_pminu_d:
11392   case Intrinsic::x86_sse41_pmaxsb:
11393   case Intrinsic::x86_sse2_pmaxs_w:
11394   case Intrinsic::x86_sse41_pmaxsd:
11395   case Intrinsic::x86_avx2_pmaxs_b:
11396   case Intrinsic::x86_avx2_pmaxs_w:
11397   case Intrinsic::x86_avx2_pmaxs_d:
11398   case Intrinsic::x86_sse41_pminsb:
11399   case Intrinsic::x86_sse2_pmins_w:
11400   case Intrinsic::x86_sse41_pminsd:
11401   case Intrinsic::x86_avx2_pmins_b:
11402   case Intrinsic::x86_avx2_pmins_w:
11403   case Intrinsic::x86_avx2_pmins_d: {
11404     unsigned Opcode;
11405     switch (IntNo) {
11406     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11407     case Intrinsic::x86_sse2_pmaxu_b:
11408     case Intrinsic::x86_sse41_pmaxuw:
11409     case Intrinsic::x86_sse41_pmaxud:
11410     case Intrinsic::x86_avx2_pmaxu_b:
11411     case Intrinsic::x86_avx2_pmaxu_w:
11412     case Intrinsic::x86_avx2_pmaxu_d:
11413       Opcode = X86ISD::UMAX;
11414       break;
11415     case Intrinsic::x86_sse2_pminu_b:
11416     case Intrinsic::x86_sse41_pminuw:
11417     case Intrinsic::x86_sse41_pminud:
11418     case Intrinsic::x86_avx2_pminu_b:
11419     case Intrinsic::x86_avx2_pminu_w:
11420     case Intrinsic::x86_avx2_pminu_d:
11421       Opcode = X86ISD::UMIN;
11422       break;
11423     case Intrinsic::x86_sse41_pmaxsb:
11424     case Intrinsic::x86_sse2_pmaxs_w:
11425     case Intrinsic::x86_sse41_pmaxsd:
11426     case Intrinsic::x86_avx2_pmaxs_b:
11427     case Intrinsic::x86_avx2_pmaxs_w:
11428     case Intrinsic::x86_avx2_pmaxs_d:
11429       Opcode = X86ISD::SMAX;
11430       break;
11431     case Intrinsic::x86_sse41_pminsb:
11432     case Intrinsic::x86_sse2_pmins_w:
11433     case Intrinsic::x86_sse41_pminsd:
11434     case Intrinsic::x86_avx2_pmins_b:
11435     case Intrinsic::x86_avx2_pmins_w:
11436     case Intrinsic::x86_avx2_pmins_d:
11437       Opcode = X86ISD::SMIN;
11438       break;
11439     }
11440     return DAG.getNode(Opcode, dl, Op.getValueType(),
11441                        Op.getOperand(1), Op.getOperand(2));
11442   }
11443
11444   // SSE/SSE2/AVX floating point max/min intrinsics.
11445   case Intrinsic::x86_sse_max_ps:
11446   case Intrinsic::x86_sse2_max_pd:
11447   case Intrinsic::x86_avx_max_ps_256:
11448   case Intrinsic::x86_avx_max_pd_256:
11449   case Intrinsic::x86_sse_min_ps:
11450   case Intrinsic::x86_sse2_min_pd:
11451   case Intrinsic::x86_avx_min_ps_256:
11452   case Intrinsic::x86_avx_min_pd_256: {
11453     unsigned Opcode;
11454     switch (IntNo) {
11455     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11456     case Intrinsic::x86_sse_max_ps:
11457     case Intrinsic::x86_sse2_max_pd:
11458     case Intrinsic::x86_avx_max_ps_256:
11459     case Intrinsic::x86_avx_max_pd_256:
11460       Opcode = X86ISD::FMAX;
11461       break;
11462     case Intrinsic::x86_sse_min_ps:
11463     case Intrinsic::x86_sse2_min_pd:
11464     case Intrinsic::x86_avx_min_ps_256:
11465     case Intrinsic::x86_avx_min_pd_256:
11466       Opcode = X86ISD::FMIN;
11467       break;
11468     }
11469     return DAG.getNode(Opcode, dl, Op.getValueType(),
11470                        Op.getOperand(1), Op.getOperand(2));
11471   }
11472
11473   // AVX2 variable shift intrinsics
11474   case Intrinsic::x86_avx2_psllv_d:
11475   case Intrinsic::x86_avx2_psllv_q:
11476   case Intrinsic::x86_avx2_psllv_d_256:
11477   case Intrinsic::x86_avx2_psllv_q_256:
11478   case Intrinsic::x86_avx2_psrlv_d:
11479   case Intrinsic::x86_avx2_psrlv_q:
11480   case Intrinsic::x86_avx2_psrlv_d_256:
11481   case Intrinsic::x86_avx2_psrlv_q_256:
11482   case Intrinsic::x86_avx2_psrav_d:
11483   case Intrinsic::x86_avx2_psrav_d_256: {
11484     unsigned Opcode;
11485     switch (IntNo) {
11486     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11487     case Intrinsic::x86_avx2_psllv_d:
11488     case Intrinsic::x86_avx2_psllv_q:
11489     case Intrinsic::x86_avx2_psllv_d_256:
11490     case Intrinsic::x86_avx2_psllv_q_256:
11491       Opcode = ISD::SHL;
11492       break;
11493     case Intrinsic::x86_avx2_psrlv_d:
11494     case Intrinsic::x86_avx2_psrlv_q:
11495     case Intrinsic::x86_avx2_psrlv_d_256:
11496     case Intrinsic::x86_avx2_psrlv_q_256:
11497       Opcode = ISD::SRL;
11498       break;
11499     case Intrinsic::x86_avx2_psrav_d:
11500     case Intrinsic::x86_avx2_psrav_d_256:
11501       Opcode = ISD::SRA;
11502       break;
11503     }
11504     return DAG.getNode(Opcode, dl, Op.getValueType(),
11505                        Op.getOperand(1), Op.getOperand(2));
11506   }
11507
11508   case Intrinsic::x86_ssse3_pshuf_b_128:
11509   case Intrinsic::x86_avx2_pshuf_b:
11510     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11511                        Op.getOperand(1), Op.getOperand(2));
11512
11513   case Intrinsic::x86_ssse3_psign_b_128:
11514   case Intrinsic::x86_ssse3_psign_w_128:
11515   case Intrinsic::x86_ssse3_psign_d_128:
11516   case Intrinsic::x86_avx2_psign_b:
11517   case Intrinsic::x86_avx2_psign_w:
11518   case Intrinsic::x86_avx2_psign_d:
11519     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11520                        Op.getOperand(1), Op.getOperand(2));
11521
11522   case Intrinsic::x86_sse41_insertps:
11523     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11524                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11525
11526   case Intrinsic::x86_avx_vperm2f128_ps_256:
11527   case Intrinsic::x86_avx_vperm2f128_pd_256:
11528   case Intrinsic::x86_avx_vperm2f128_si_256:
11529   case Intrinsic::x86_avx2_vperm2i128:
11530     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11531                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11532
11533   case Intrinsic::x86_avx2_permd:
11534   case Intrinsic::x86_avx2_permps:
11535     // Operands intentionally swapped. Mask is last operand to intrinsic,
11536     // but second operand for node/instruction.
11537     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11538                        Op.getOperand(2), Op.getOperand(1));
11539
11540   case Intrinsic::x86_sse_sqrt_ps:
11541   case Intrinsic::x86_sse2_sqrt_pd:
11542   case Intrinsic::x86_avx_sqrt_ps_256:
11543   case Intrinsic::x86_avx_sqrt_pd_256:
11544     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11545
11546   // ptest and testp intrinsics. The intrinsic these come from are designed to
11547   // return an integer value, not just an instruction so lower it to the ptest
11548   // or testp pattern and a setcc for the result.
11549   case Intrinsic::x86_sse41_ptestz:
11550   case Intrinsic::x86_sse41_ptestc:
11551   case Intrinsic::x86_sse41_ptestnzc:
11552   case Intrinsic::x86_avx_ptestz_256:
11553   case Intrinsic::x86_avx_ptestc_256:
11554   case Intrinsic::x86_avx_ptestnzc_256:
11555   case Intrinsic::x86_avx_vtestz_ps:
11556   case Intrinsic::x86_avx_vtestc_ps:
11557   case Intrinsic::x86_avx_vtestnzc_ps:
11558   case Intrinsic::x86_avx_vtestz_pd:
11559   case Intrinsic::x86_avx_vtestc_pd:
11560   case Intrinsic::x86_avx_vtestnzc_pd:
11561   case Intrinsic::x86_avx_vtestz_ps_256:
11562   case Intrinsic::x86_avx_vtestc_ps_256:
11563   case Intrinsic::x86_avx_vtestnzc_ps_256:
11564   case Intrinsic::x86_avx_vtestz_pd_256:
11565   case Intrinsic::x86_avx_vtestc_pd_256:
11566   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11567     bool IsTestPacked = false;
11568     unsigned X86CC;
11569     switch (IntNo) {
11570     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11571     case Intrinsic::x86_avx_vtestz_ps:
11572     case Intrinsic::x86_avx_vtestz_pd:
11573     case Intrinsic::x86_avx_vtestz_ps_256:
11574     case Intrinsic::x86_avx_vtestz_pd_256:
11575       IsTestPacked = true; // Fallthrough
11576     case Intrinsic::x86_sse41_ptestz:
11577     case Intrinsic::x86_avx_ptestz_256:
11578       // ZF = 1
11579       X86CC = X86::COND_E;
11580       break;
11581     case Intrinsic::x86_avx_vtestc_ps:
11582     case Intrinsic::x86_avx_vtestc_pd:
11583     case Intrinsic::x86_avx_vtestc_ps_256:
11584     case Intrinsic::x86_avx_vtestc_pd_256:
11585       IsTestPacked = true; // Fallthrough
11586     case Intrinsic::x86_sse41_ptestc:
11587     case Intrinsic::x86_avx_ptestc_256:
11588       // CF = 1
11589       X86CC = X86::COND_B;
11590       break;
11591     case Intrinsic::x86_avx_vtestnzc_ps:
11592     case Intrinsic::x86_avx_vtestnzc_pd:
11593     case Intrinsic::x86_avx_vtestnzc_ps_256:
11594     case Intrinsic::x86_avx_vtestnzc_pd_256:
11595       IsTestPacked = true; // Fallthrough
11596     case Intrinsic::x86_sse41_ptestnzc:
11597     case Intrinsic::x86_avx_ptestnzc_256:
11598       // ZF and CF = 0
11599       X86CC = X86::COND_A;
11600       break;
11601     }
11602
11603     SDValue LHS = Op.getOperand(1);
11604     SDValue RHS = Op.getOperand(2);
11605     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11606     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11607     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11608     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11609     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11610   }
11611   case Intrinsic::x86_avx512_kortestz_w:
11612   case Intrinsic::x86_avx512_kortestc_w: {
11613     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
11614     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11615     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11616     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11617     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11618     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
11619     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11620   }
11621
11622   // SSE/AVX shift intrinsics
11623   case Intrinsic::x86_sse2_psll_w:
11624   case Intrinsic::x86_sse2_psll_d:
11625   case Intrinsic::x86_sse2_psll_q:
11626   case Intrinsic::x86_avx2_psll_w:
11627   case Intrinsic::x86_avx2_psll_d:
11628   case Intrinsic::x86_avx2_psll_q:
11629   case Intrinsic::x86_sse2_psrl_w:
11630   case Intrinsic::x86_sse2_psrl_d:
11631   case Intrinsic::x86_sse2_psrl_q:
11632   case Intrinsic::x86_avx2_psrl_w:
11633   case Intrinsic::x86_avx2_psrl_d:
11634   case Intrinsic::x86_avx2_psrl_q:
11635   case Intrinsic::x86_sse2_psra_w:
11636   case Intrinsic::x86_sse2_psra_d:
11637   case Intrinsic::x86_avx2_psra_w:
11638   case Intrinsic::x86_avx2_psra_d: {
11639     unsigned Opcode;
11640     switch (IntNo) {
11641     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11642     case Intrinsic::x86_sse2_psll_w:
11643     case Intrinsic::x86_sse2_psll_d:
11644     case Intrinsic::x86_sse2_psll_q:
11645     case Intrinsic::x86_avx2_psll_w:
11646     case Intrinsic::x86_avx2_psll_d:
11647     case Intrinsic::x86_avx2_psll_q:
11648       Opcode = X86ISD::VSHL;
11649       break;
11650     case Intrinsic::x86_sse2_psrl_w:
11651     case Intrinsic::x86_sse2_psrl_d:
11652     case Intrinsic::x86_sse2_psrl_q:
11653     case Intrinsic::x86_avx2_psrl_w:
11654     case Intrinsic::x86_avx2_psrl_d:
11655     case Intrinsic::x86_avx2_psrl_q:
11656       Opcode = X86ISD::VSRL;
11657       break;
11658     case Intrinsic::x86_sse2_psra_w:
11659     case Intrinsic::x86_sse2_psra_d:
11660     case Intrinsic::x86_avx2_psra_w:
11661     case Intrinsic::x86_avx2_psra_d:
11662       Opcode = X86ISD::VSRA;
11663       break;
11664     }
11665     return DAG.getNode(Opcode, dl, Op.getValueType(),
11666                        Op.getOperand(1), Op.getOperand(2));
11667   }
11668
11669   // SSE/AVX immediate shift intrinsics
11670   case Intrinsic::x86_sse2_pslli_w:
11671   case Intrinsic::x86_sse2_pslli_d:
11672   case Intrinsic::x86_sse2_pslli_q:
11673   case Intrinsic::x86_avx2_pslli_w:
11674   case Intrinsic::x86_avx2_pslli_d:
11675   case Intrinsic::x86_avx2_pslli_q:
11676   case Intrinsic::x86_sse2_psrli_w:
11677   case Intrinsic::x86_sse2_psrli_d:
11678   case Intrinsic::x86_sse2_psrli_q:
11679   case Intrinsic::x86_avx2_psrli_w:
11680   case Intrinsic::x86_avx2_psrli_d:
11681   case Intrinsic::x86_avx2_psrli_q:
11682   case Intrinsic::x86_sse2_psrai_w:
11683   case Intrinsic::x86_sse2_psrai_d:
11684   case Intrinsic::x86_avx2_psrai_w:
11685   case Intrinsic::x86_avx2_psrai_d: {
11686     unsigned Opcode;
11687     switch (IntNo) {
11688     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11689     case Intrinsic::x86_sse2_pslli_w:
11690     case Intrinsic::x86_sse2_pslli_d:
11691     case Intrinsic::x86_sse2_pslli_q:
11692     case Intrinsic::x86_avx2_pslli_w:
11693     case Intrinsic::x86_avx2_pslli_d:
11694     case Intrinsic::x86_avx2_pslli_q:
11695       Opcode = X86ISD::VSHLI;
11696       break;
11697     case Intrinsic::x86_sse2_psrli_w:
11698     case Intrinsic::x86_sse2_psrli_d:
11699     case Intrinsic::x86_sse2_psrli_q:
11700     case Intrinsic::x86_avx2_psrli_w:
11701     case Intrinsic::x86_avx2_psrli_d:
11702     case Intrinsic::x86_avx2_psrli_q:
11703       Opcode = X86ISD::VSRLI;
11704       break;
11705     case Intrinsic::x86_sse2_psrai_w:
11706     case Intrinsic::x86_sse2_psrai_d:
11707     case Intrinsic::x86_avx2_psrai_w:
11708     case Intrinsic::x86_avx2_psrai_d:
11709       Opcode = X86ISD::VSRAI;
11710       break;
11711     }
11712     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
11713                                Op.getOperand(1), Op.getOperand(2), DAG);
11714   }
11715
11716   case Intrinsic::x86_sse42_pcmpistria128:
11717   case Intrinsic::x86_sse42_pcmpestria128:
11718   case Intrinsic::x86_sse42_pcmpistric128:
11719   case Intrinsic::x86_sse42_pcmpestric128:
11720   case Intrinsic::x86_sse42_pcmpistrio128:
11721   case Intrinsic::x86_sse42_pcmpestrio128:
11722   case Intrinsic::x86_sse42_pcmpistris128:
11723   case Intrinsic::x86_sse42_pcmpestris128:
11724   case Intrinsic::x86_sse42_pcmpistriz128:
11725   case Intrinsic::x86_sse42_pcmpestriz128: {
11726     unsigned Opcode;
11727     unsigned X86CC;
11728     switch (IntNo) {
11729     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11730     case Intrinsic::x86_sse42_pcmpistria128:
11731       Opcode = X86ISD::PCMPISTRI;
11732       X86CC = X86::COND_A;
11733       break;
11734     case Intrinsic::x86_sse42_pcmpestria128:
11735       Opcode = X86ISD::PCMPESTRI;
11736       X86CC = X86::COND_A;
11737       break;
11738     case Intrinsic::x86_sse42_pcmpistric128:
11739       Opcode = X86ISD::PCMPISTRI;
11740       X86CC = X86::COND_B;
11741       break;
11742     case Intrinsic::x86_sse42_pcmpestric128:
11743       Opcode = X86ISD::PCMPESTRI;
11744       X86CC = X86::COND_B;
11745       break;
11746     case Intrinsic::x86_sse42_pcmpistrio128:
11747       Opcode = X86ISD::PCMPISTRI;
11748       X86CC = X86::COND_O;
11749       break;
11750     case Intrinsic::x86_sse42_pcmpestrio128:
11751       Opcode = X86ISD::PCMPESTRI;
11752       X86CC = X86::COND_O;
11753       break;
11754     case Intrinsic::x86_sse42_pcmpistris128:
11755       Opcode = X86ISD::PCMPISTRI;
11756       X86CC = X86::COND_S;
11757       break;
11758     case Intrinsic::x86_sse42_pcmpestris128:
11759       Opcode = X86ISD::PCMPESTRI;
11760       X86CC = X86::COND_S;
11761       break;
11762     case Intrinsic::x86_sse42_pcmpistriz128:
11763       Opcode = X86ISD::PCMPISTRI;
11764       X86CC = X86::COND_E;
11765       break;
11766     case Intrinsic::x86_sse42_pcmpestriz128:
11767       Opcode = X86ISD::PCMPESTRI;
11768       X86CC = X86::COND_E;
11769       break;
11770     }
11771     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11772     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11773     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11774     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11775                                 DAG.getConstant(X86CC, MVT::i8),
11776                                 SDValue(PCMP.getNode(), 1));
11777     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11778   }
11779
11780   case Intrinsic::x86_sse42_pcmpistri128:
11781   case Intrinsic::x86_sse42_pcmpestri128: {
11782     unsigned Opcode;
11783     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11784       Opcode = X86ISD::PCMPISTRI;
11785     else
11786       Opcode = X86ISD::PCMPESTRI;
11787
11788     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11789     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11790     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11791   }
11792   case Intrinsic::x86_fma_vfmadd_ps:
11793   case Intrinsic::x86_fma_vfmadd_pd:
11794   case Intrinsic::x86_fma_vfmsub_ps:
11795   case Intrinsic::x86_fma_vfmsub_pd:
11796   case Intrinsic::x86_fma_vfnmadd_ps:
11797   case Intrinsic::x86_fma_vfnmadd_pd:
11798   case Intrinsic::x86_fma_vfnmsub_ps:
11799   case Intrinsic::x86_fma_vfnmsub_pd:
11800   case Intrinsic::x86_fma_vfmaddsub_ps:
11801   case Intrinsic::x86_fma_vfmaddsub_pd:
11802   case Intrinsic::x86_fma_vfmsubadd_ps:
11803   case Intrinsic::x86_fma_vfmsubadd_pd:
11804   case Intrinsic::x86_fma_vfmadd_ps_256:
11805   case Intrinsic::x86_fma_vfmadd_pd_256:
11806   case Intrinsic::x86_fma_vfmsub_ps_256:
11807   case Intrinsic::x86_fma_vfmsub_pd_256:
11808   case Intrinsic::x86_fma_vfnmadd_ps_256:
11809   case Intrinsic::x86_fma_vfnmadd_pd_256:
11810   case Intrinsic::x86_fma_vfnmsub_ps_256:
11811   case Intrinsic::x86_fma_vfnmsub_pd_256:
11812   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11813   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11814   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11815   case Intrinsic::x86_fma_vfmsubadd_pd_256:
11816   case Intrinsic::x86_fma_vfmadd_ps_512:
11817   case Intrinsic::x86_fma_vfmadd_pd_512:
11818   case Intrinsic::x86_fma_vfmsub_ps_512:
11819   case Intrinsic::x86_fma_vfmsub_pd_512:
11820   case Intrinsic::x86_fma_vfnmadd_ps_512:
11821   case Intrinsic::x86_fma_vfnmadd_pd_512:
11822   case Intrinsic::x86_fma_vfnmsub_ps_512:
11823   case Intrinsic::x86_fma_vfnmsub_pd_512:
11824   case Intrinsic::x86_fma_vfmaddsub_ps_512:
11825   case Intrinsic::x86_fma_vfmaddsub_pd_512:
11826   case Intrinsic::x86_fma_vfmsubadd_ps_512:
11827   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
11828     unsigned Opc;
11829     switch (IntNo) {
11830     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11831     case Intrinsic::x86_fma_vfmadd_ps:
11832     case Intrinsic::x86_fma_vfmadd_pd:
11833     case Intrinsic::x86_fma_vfmadd_ps_256:
11834     case Intrinsic::x86_fma_vfmadd_pd_256:
11835     case Intrinsic::x86_fma_vfmadd_ps_512:
11836     case Intrinsic::x86_fma_vfmadd_pd_512:
11837       Opc = X86ISD::FMADD;
11838       break;
11839     case Intrinsic::x86_fma_vfmsub_ps:
11840     case Intrinsic::x86_fma_vfmsub_pd:
11841     case Intrinsic::x86_fma_vfmsub_ps_256:
11842     case Intrinsic::x86_fma_vfmsub_pd_256:
11843     case Intrinsic::x86_fma_vfmsub_ps_512:
11844     case Intrinsic::x86_fma_vfmsub_pd_512:
11845       Opc = X86ISD::FMSUB;
11846       break;
11847     case Intrinsic::x86_fma_vfnmadd_ps:
11848     case Intrinsic::x86_fma_vfnmadd_pd:
11849     case Intrinsic::x86_fma_vfnmadd_ps_256:
11850     case Intrinsic::x86_fma_vfnmadd_pd_256:
11851     case Intrinsic::x86_fma_vfnmadd_ps_512:
11852     case Intrinsic::x86_fma_vfnmadd_pd_512:
11853       Opc = X86ISD::FNMADD;
11854       break;
11855     case Intrinsic::x86_fma_vfnmsub_ps:
11856     case Intrinsic::x86_fma_vfnmsub_pd:
11857     case Intrinsic::x86_fma_vfnmsub_ps_256:
11858     case Intrinsic::x86_fma_vfnmsub_pd_256:
11859     case Intrinsic::x86_fma_vfnmsub_ps_512:
11860     case Intrinsic::x86_fma_vfnmsub_pd_512:
11861       Opc = X86ISD::FNMSUB;
11862       break;
11863     case Intrinsic::x86_fma_vfmaddsub_ps:
11864     case Intrinsic::x86_fma_vfmaddsub_pd:
11865     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11866     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11867     case Intrinsic::x86_fma_vfmaddsub_ps_512:
11868     case Intrinsic::x86_fma_vfmaddsub_pd_512:
11869       Opc = X86ISD::FMADDSUB;
11870       break;
11871     case Intrinsic::x86_fma_vfmsubadd_ps:
11872     case Intrinsic::x86_fma_vfmsubadd_pd:
11873     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11874     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11875     case Intrinsic::x86_fma_vfmsubadd_ps_512:
11876     case Intrinsic::x86_fma_vfmsubadd_pd_512:
11877       Opc = X86ISD::FMSUBADD;
11878       break;
11879     }
11880
11881     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11882                        Op.getOperand(2), Op.getOperand(3));
11883   }
11884   }
11885 }
11886
11887 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11888                              SDValue Base, SDValue Index,
11889                              SDValue ScaleOp, SDValue Chain,
11890                              const X86Subtarget * Subtarget) {
11891   SDLoc dl(Op);
11892   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11893   assert(C && "Invalid scale type");
11894   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11895   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11896   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11897                              Index.getSimpleValueType().getVectorNumElements());
11898   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11899   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11900   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11901   SDValue Segment = DAG.getRegister(0, MVT::i32);
11902   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11903   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11904   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11905   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11906 }
11907
11908 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11909                               SDValue Src, SDValue Mask, SDValue Base,
11910                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11911                               const X86Subtarget * Subtarget) {
11912   SDLoc dl(Op);
11913   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11914   assert(C && "Invalid scale type");
11915   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11916   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11917                              Index.getSimpleValueType().getVectorNumElements());
11918   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11919   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11920   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11921   SDValue Segment = DAG.getRegister(0, MVT::i32);
11922   if (Src.getOpcode() == ISD::UNDEF)
11923     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11924   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11925   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11926   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11927   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11928 }
11929
11930 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11931                               SDValue Src, SDValue Base, SDValue Index,
11932                               SDValue ScaleOp, SDValue Chain) {
11933   SDLoc dl(Op);
11934   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11935   assert(C && "Invalid scale type");
11936   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11937   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11938   SDValue Segment = DAG.getRegister(0, MVT::i32);
11939   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11940                              Index.getSimpleValueType().getVectorNumElements());
11941   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11942   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11943   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11944   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11945   return SDValue(Res, 1);
11946 }
11947
11948 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11949                                SDValue Src, SDValue Mask, SDValue Base,
11950                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11951   SDLoc dl(Op);
11952   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11953   assert(C && "Invalid scale type");
11954   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11955   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11956   SDValue Segment = DAG.getRegister(0, MVT::i32);
11957   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11958                              Index.getSimpleValueType().getVectorNumElements());
11959   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11960   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11961   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11962   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11963   return SDValue(Res, 1);
11964 }
11965
11966 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11967                                       SelectionDAG &DAG) {
11968   SDLoc dl(Op);
11969   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11970   switch (IntNo) {
11971   default: return SDValue();    // Don't custom lower most intrinsics.
11972
11973   // RDRAND/RDSEED intrinsics.
11974   case Intrinsic::x86_rdrand_16:
11975   case Intrinsic::x86_rdrand_32:
11976   case Intrinsic::x86_rdrand_64:
11977   case Intrinsic::x86_rdseed_16:
11978   case Intrinsic::x86_rdseed_32:
11979   case Intrinsic::x86_rdseed_64: {
11980     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11981                        IntNo == Intrinsic::x86_rdseed_32 ||
11982                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11983                                                             X86ISD::RDRAND;
11984     // Emit the node with the right value type.
11985     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
11986     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
11987
11988     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11989     // Otherwise return the value from Rand, which is always 0, casted to i32.
11990     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11991                       DAG.getConstant(1, Op->getValueType(1)),
11992                       DAG.getConstant(X86::COND_B, MVT::i32),
11993                       SDValue(Result.getNode(), 1) };
11994     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11995                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
11996                                   Ops, array_lengthof(Ops));
11997
11998     // Return { result, isValid, chain }.
11999     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12000                        SDValue(Result.getNode(), 2));
12001   }
12002   //int_gather(index, base, scale);
12003   case Intrinsic::x86_avx512_gather_qpd_512:
12004   case Intrinsic::x86_avx512_gather_qps_512:
12005   case Intrinsic::x86_avx512_gather_dpd_512:
12006   case Intrinsic::x86_avx512_gather_qpi_512:
12007   case Intrinsic::x86_avx512_gather_qpq_512:
12008   case Intrinsic::x86_avx512_gather_dpq_512:
12009   case Intrinsic::x86_avx512_gather_dps_512:
12010   case Intrinsic::x86_avx512_gather_dpi_512: {
12011     unsigned Opc;
12012     switch (IntNo) {
12013     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12014     case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
12015     case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
12016     case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
12017     case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
12018     case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
12019     case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
12020     case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
12021     case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
12022     }
12023     SDValue Chain = Op.getOperand(0);
12024     SDValue Index = Op.getOperand(2);
12025     SDValue Base  = Op.getOperand(3);
12026     SDValue Scale = Op.getOperand(4);
12027     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
12028   }
12029   //int_gather_mask(v1, mask, index, base, scale);
12030   case Intrinsic::x86_avx512_gather_qps_mask_512:
12031   case Intrinsic::x86_avx512_gather_qpd_mask_512:
12032   case Intrinsic::x86_avx512_gather_dpd_mask_512:
12033   case Intrinsic::x86_avx512_gather_dps_mask_512:
12034   case Intrinsic::x86_avx512_gather_qpi_mask_512:
12035   case Intrinsic::x86_avx512_gather_qpq_mask_512:
12036   case Intrinsic::x86_avx512_gather_dpi_mask_512:
12037   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
12038     unsigned Opc;
12039     switch (IntNo) {
12040     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12041     case Intrinsic::x86_avx512_gather_qps_mask_512:
12042       Opc = X86::VGATHERQPSZrm; break;
12043     case Intrinsic::x86_avx512_gather_qpd_mask_512:
12044       Opc = X86::VGATHERQPDZrm; break;
12045     case Intrinsic::x86_avx512_gather_dpd_mask_512:
12046       Opc = X86::VGATHERDPDZrm; break;
12047     case Intrinsic::x86_avx512_gather_dps_mask_512:
12048       Opc = X86::VGATHERDPSZrm; break;
12049     case Intrinsic::x86_avx512_gather_qpi_mask_512:
12050       Opc = X86::VPGATHERQDZrm; break;
12051     case Intrinsic::x86_avx512_gather_qpq_mask_512:
12052       Opc = X86::VPGATHERQQZrm; break;
12053     case Intrinsic::x86_avx512_gather_dpi_mask_512:
12054       Opc = X86::VPGATHERDDZrm; break;
12055     case Intrinsic::x86_avx512_gather_dpq_mask_512:
12056       Opc = X86::VPGATHERDQZrm; break;
12057     }
12058     SDValue Chain = Op.getOperand(0);
12059     SDValue Src   = Op.getOperand(2);
12060     SDValue Mask  = Op.getOperand(3);
12061     SDValue Index = Op.getOperand(4);
12062     SDValue Base  = Op.getOperand(5);
12063     SDValue Scale = Op.getOperand(6);
12064     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12065                           Subtarget);
12066   }
12067   //int_scatter(base, index, v1, scale);
12068   case Intrinsic::x86_avx512_scatter_qpd_512:
12069   case Intrinsic::x86_avx512_scatter_qps_512:
12070   case Intrinsic::x86_avx512_scatter_dpd_512:
12071   case Intrinsic::x86_avx512_scatter_qpi_512:
12072   case Intrinsic::x86_avx512_scatter_qpq_512:
12073   case Intrinsic::x86_avx512_scatter_dpq_512:
12074   case Intrinsic::x86_avx512_scatter_dps_512:
12075   case Intrinsic::x86_avx512_scatter_dpi_512: {
12076     unsigned Opc;
12077     switch (IntNo) {
12078     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12079     case Intrinsic::x86_avx512_scatter_qpd_512:
12080       Opc = X86::VSCATTERQPDZmr; break;
12081     case Intrinsic::x86_avx512_scatter_qps_512:
12082       Opc = X86::VSCATTERQPSZmr; break;
12083     case Intrinsic::x86_avx512_scatter_dpd_512:
12084       Opc = X86::VSCATTERDPDZmr; break;
12085     case Intrinsic::x86_avx512_scatter_dps_512:
12086       Opc = X86::VSCATTERDPSZmr; break;
12087     case Intrinsic::x86_avx512_scatter_qpi_512:
12088       Opc = X86::VPSCATTERQDZmr; break;
12089     case Intrinsic::x86_avx512_scatter_qpq_512:
12090       Opc = X86::VPSCATTERQQZmr; break;
12091     case Intrinsic::x86_avx512_scatter_dpq_512:
12092       Opc = X86::VPSCATTERDQZmr; break;
12093     case Intrinsic::x86_avx512_scatter_dpi_512:
12094       Opc = X86::VPSCATTERDDZmr; break;
12095     }
12096     SDValue Chain = Op.getOperand(0);
12097     SDValue Base  = Op.getOperand(2);
12098     SDValue Index = Op.getOperand(3);
12099     SDValue Src   = Op.getOperand(4);
12100     SDValue Scale = Op.getOperand(5);
12101     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
12102   }
12103   //int_scatter_mask(base, mask, index, v1, scale);
12104   case Intrinsic::x86_avx512_scatter_qps_mask_512:
12105   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12106   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12107   case Intrinsic::x86_avx512_scatter_dps_mask_512:
12108   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12109   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12110   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12111   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
12112     unsigned Opc;
12113     switch (IntNo) {
12114     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12115     case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12116       Opc = X86::VSCATTERQPDZmr; break;
12117     case Intrinsic::x86_avx512_scatter_qps_mask_512:
12118       Opc = X86::VSCATTERQPSZmr; break;
12119     case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12120       Opc = X86::VSCATTERDPDZmr; break;
12121     case Intrinsic::x86_avx512_scatter_dps_mask_512:
12122       Opc = X86::VSCATTERDPSZmr; break;
12123     case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12124       Opc = X86::VPSCATTERQDZmr; break;
12125     case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12126       Opc = X86::VPSCATTERQQZmr; break;
12127     case Intrinsic::x86_avx512_scatter_dpq_mask_512:
12128       Opc = X86::VPSCATTERDQZmr; break;
12129     case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12130       Opc = X86::VPSCATTERDDZmr; break;
12131     }
12132     SDValue Chain = Op.getOperand(0);
12133     SDValue Base  = Op.getOperand(2);
12134     SDValue Mask  = Op.getOperand(3);
12135     SDValue Index = Op.getOperand(4);
12136     SDValue Src   = Op.getOperand(5);
12137     SDValue Scale = Op.getOperand(6);
12138     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12139   }
12140   // XTEST intrinsics.
12141   case Intrinsic::x86_xtest: {
12142     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12143     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12144     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12145                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12146                                 InTrans);
12147     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12148     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12149                        Ret, SDValue(InTrans.getNode(), 1));
12150   }
12151   }
12152 }
12153
12154 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12155                                            SelectionDAG &DAG) const {
12156   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12157   MFI->setReturnAddressIsTaken(true);
12158
12159   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
12160     return SDValue();
12161
12162   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12163   SDLoc dl(Op);
12164   EVT PtrVT = getPointerTy();
12165
12166   if (Depth > 0) {
12167     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12168     const X86RegisterInfo *RegInfo =
12169       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12170     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12171     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12172                        DAG.getNode(ISD::ADD, dl, PtrVT,
12173                                    FrameAddr, Offset),
12174                        MachinePointerInfo(), false, false, false, 0);
12175   }
12176
12177   // Just load the return address.
12178   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12179   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12180                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12181 }
12182
12183 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12184   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12185   MFI->setFrameAddressIsTaken(true);
12186
12187   EVT VT = Op.getValueType();
12188   SDLoc dl(Op);  // FIXME probably not meaningful
12189   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12190   const X86RegisterInfo *RegInfo =
12191     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12192   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12193   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12194           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12195          "Invalid Frame Register!");
12196   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12197   while (Depth--)
12198     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12199                             MachinePointerInfo(),
12200                             false, false, false, 0);
12201   return FrameAddr;
12202 }
12203
12204 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12205                                                      SelectionDAG &DAG) const {
12206   const X86RegisterInfo *RegInfo =
12207     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12208   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12209 }
12210
12211 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12212   SDValue Chain     = Op.getOperand(0);
12213   SDValue Offset    = Op.getOperand(1);
12214   SDValue Handler   = Op.getOperand(2);
12215   SDLoc dl      (Op);
12216
12217   EVT PtrVT = getPointerTy();
12218   const X86RegisterInfo *RegInfo =
12219     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12220   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12221   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12222           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12223          "Invalid Frame Register!");
12224   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12225   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12226
12227   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12228                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12229   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12230   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12231                        false, false, 0);
12232   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12233
12234   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12235                      DAG.getRegister(StoreAddrReg, PtrVT));
12236 }
12237
12238 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12239                                                SelectionDAG &DAG) const {
12240   SDLoc DL(Op);
12241   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12242                      DAG.getVTList(MVT::i32, MVT::Other),
12243                      Op.getOperand(0), Op.getOperand(1));
12244 }
12245
12246 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12247                                                 SelectionDAG &DAG) const {
12248   SDLoc DL(Op);
12249   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12250                      Op.getOperand(0), Op.getOperand(1));
12251 }
12252
12253 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12254   return Op.getOperand(0);
12255 }
12256
12257 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12258                                                 SelectionDAG &DAG) const {
12259   SDValue Root = Op.getOperand(0);
12260   SDValue Trmp = Op.getOperand(1); // trampoline
12261   SDValue FPtr = Op.getOperand(2); // nested function
12262   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12263   SDLoc dl (Op);
12264
12265   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12266   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12267
12268   if (Subtarget->is64Bit()) {
12269     SDValue OutChains[6];
12270
12271     // Large code-model.
12272     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12273     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12274
12275     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12276     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12277
12278     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12279
12280     // Load the pointer to the nested function into R11.
12281     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12282     SDValue Addr = Trmp;
12283     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12284                                 Addr, MachinePointerInfo(TrmpAddr),
12285                                 false, false, 0);
12286
12287     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12288                        DAG.getConstant(2, MVT::i64));
12289     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12290                                 MachinePointerInfo(TrmpAddr, 2),
12291                                 false, false, 2);
12292
12293     // Load the 'nest' parameter value into R10.
12294     // R10 is specified in X86CallingConv.td
12295     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12296     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12297                        DAG.getConstant(10, MVT::i64));
12298     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12299                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12300                                 false, false, 0);
12301
12302     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12303                        DAG.getConstant(12, MVT::i64));
12304     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12305                                 MachinePointerInfo(TrmpAddr, 12),
12306                                 false, false, 2);
12307
12308     // Jump to the nested function.
12309     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12310     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12311                        DAG.getConstant(20, MVT::i64));
12312     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12313                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12314                                 false, false, 0);
12315
12316     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12317     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12318                        DAG.getConstant(22, MVT::i64));
12319     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12320                                 MachinePointerInfo(TrmpAddr, 22),
12321                                 false, false, 0);
12322
12323     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12324   } else {
12325     const Function *Func =
12326       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12327     CallingConv::ID CC = Func->getCallingConv();
12328     unsigned NestReg;
12329
12330     switch (CC) {
12331     default:
12332       llvm_unreachable("Unsupported calling convention");
12333     case CallingConv::C:
12334     case CallingConv::X86_StdCall: {
12335       // Pass 'nest' parameter in ECX.
12336       // Must be kept in sync with X86CallingConv.td
12337       NestReg = X86::ECX;
12338
12339       // Check that ECX wasn't needed by an 'inreg' parameter.
12340       FunctionType *FTy = Func->getFunctionType();
12341       const AttributeSet &Attrs = Func->getAttributes();
12342
12343       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12344         unsigned InRegCount = 0;
12345         unsigned Idx = 1;
12346
12347         for (FunctionType::param_iterator I = FTy->param_begin(),
12348              E = FTy->param_end(); I != E; ++I, ++Idx)
12349           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12350             // FIXME: should only count parameters that are lowered to integers.
12351             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12352
12353         if (InRegCount > 2) {
12354           report_fatal_error("Nest register in use - reduce number of inreg"
12355                              " parameters!");
12356         }
12357       }
12358       break;
12359     }
12360     case CallingConv::X86_FastCall:
12361     case CallingConv::X86_ThisCall:
12362     case CallingConv::Fast:
12363       // Pass 'nest' parameter in EAX.
12364       // Must be kept in sync with X86CallingConv.td
12365       NestReg = X86::EAX;
12366       break;
12367     }
12368
12369     SDValue OutChains[4];
12370     SDValue Addr, Disp;
12371
12372     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12373                        DAG.getConstant(10, MVT::i32));
12374     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12375
12376     // This is storing the opcode for MOV32ri.
12377     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12378     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12379     OutChains[0] = DAG.getStore(Root, dl,
12380                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12381                                 Trmp, MachinePointerInfo(TrmpAddr),
12382                                 false, false, 0);
12383
12384     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12385                        DAG.getConstant(1, MVT::i32));
12386     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12387                                 MachinePointerInfo(TrmpAddr, 1),
12388                                 false, false, 1);
12389
12390     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12391     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12392                        DAG.getConstant(5, MVT::i32));
12393     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12394                                 MachinePointerInfo(TrmpAddr, 5),
12395                                 false, false, 1);
12396
12397     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12398                        DAG.getConstant(6, MVT::i32));
12399     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12400                                 MachinePointerInfo(TrmpAddr, 6),
12401                                 false, false, 1);
12402
12403     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12404   }
12405 }
12406
12407 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12408                                             SelectionDAG &DAG) const {
12409   /*
12410    The rounding mode is in bits 11:10 of FPSR, and has the following
12411    settings:
12412      00 Round to nearest
12413      01 Round to -inf
12414      10 Round to +inf
12415      11 Round to 0
12416
12417   FLT_ROUNDS, on the other hand, expects the following:
12418     -1 Undefined
12419      0 Round to 0
12420      1 Round to nearest
12421      2 Round to +inf
12422      3 Round to -inf
12423
12424   To perform the conversion, we do:
12425     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12426   */
12427
12428   MachineFunction &MF = DAG.getMachineFunction();
12429   const TargetMachine &TM = MF.getTarget();
12430   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12431   unsigned StackAlignment = TFI.getStackAlignment();
12432   MVT VT = Op.getSimpleValueType();
12433   SDLoc DL(Op);
12434
12435   // Save FP Control Word to stack slot
12436   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12437   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12438
12439   MachineMemOperand *MMO =
12440    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12441                            MachineMemOperand::MOStore, 2, 2);
12442
12443   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12444   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12445                                           DAG.getVTList(MVT::Other),
12446                                           Ops, array_lengthof(Ops), MVT::i16,
12447                                           MMO);
12448
12449   // Load FP Control Word from stack slot
12450   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12451                             MachinePointerInfo(), false, false, false, 0);
12452
12453   // Transform as necessary
12454   SDValue CWD1 =
12455     DAG.getNode(ISD::SRL, DL, MVT::i16,
12456                 DAG.getNode(ISD::AND, DL, MVT::i16,
12457                             CWD, DAG.getConstant(0x800, MVT::i16)),
12458                 DAG.getConstant(11, MVT::i8));
12459   SDValue CWD2 =
12460     DAG.getNode(ISD::SRL, DL, MVT::i16,
12461                 DAG.getNode(ISD::AND, DL, MVT::i16,
12462                             CWD, DAG.getConstant(0x400, MVT::i16)),
12463                 DAG.getConstant(9, MVT::i8));
12464
12465   SDValue RetVal =
12466     DAG.getNode(ISD::AND, DL, MVT::i16,
12467                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12468                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12469                             DAG.getConstant(1, MVT::i16)),
12470                 DAG.getConstant(3, MVT::i16));
12471
12472   return DAG.getNode((VT.getSizeInBits() < 16 ?
12473                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12474 }
12475
12476 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12477   MVT VT = Op.getSimpleValueType();
12478   EVT OpVT = VT;
12479   unsigned NumBits = VT.getSizeInBits();
12480   SDLoc dl(Op);
12481
12482   Op = Op.getOperand(0);
12483   if (VT == MVT::i8) {
12484     // Zero extend to i32 since there is not an i8 bsr.
12485     OpVT = MVT::i32;
12486     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12487   }
12488
12489   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12490   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12491   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12492
12493   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12494   SDValue Ops[] = {
12495     Op,
12496     DAG.getConstant(NumBits+NumBits-1, OpVT),
12497     DAG.getConstant(X86::COND_E, MVT::i8),
12498     Op.getValue(1)
12499   };
12500   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12501
12502   // Finally xor with NumBits-1.
12503   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12504
12505   if (VT == MVT::i8)
12506     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12507   return Op;
12508 }
12509
12510 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12511   MVT VT = Op.getSimpleValueType();
12512   EVT OpVT = VT;
12513   unsigned NumBits = VT.getSizeInBits();
12514   SDLoc dl(Op);
12515
12516   Op = Op.getOperand(0);
12517   if (VT == MVT::i8) {
12518     // Zero extend to i32 since there is not an i8 bsr.
12519     OpVT = MVT::i32;
12520     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12521   }
12522
12523   // Issue a bsr (scan bits in reverse).
12524   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12525   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12526
12527   // And xor with NumBits-1.
12528   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12529
12530   if (VT == MVT::i8)
12531     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12532   return Op;
12533 }
12534
12535 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12536   MVT VT = Op.getSimpleValueType();
12537   unsigned NumBits = VT.getSizeInBits();
12538   SDLoc dl(Op);
12539   Op = Op.getOperand(0);
12540
12541   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12542   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12543   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12544
12545   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12546   SDValue Ops[] = {
12547     Op,
12548     DAG.getConstant(NumBits, VT),
12549     DAG.getConstant(X86::COND_E, MVT::i8),
12550     Op.getValue(1)
12551   };
12552   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12553 }
12554
12555 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12556 // ones, and then concatenate the result back.
12557 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12558   MVT VT = Op.getSimpleValueType();
12559
12560   assert(VT.is256BitVector() && VT.isInteger() &&
12561          "Unsupported value type for operation");
12562
12563   unsigned NumElems = VT.getVectorNumElements();
12564   SDLoc dl(Op);
12565
12566   // Extract the LHS vectors
12567   SDValue LHS = Op.getOperand(0);
12568   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12569   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12570
12571   // Extract the RHS vectors
12572   SDValue RHS = Op.getOperand(1);
12573   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12574   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12575
12576   MVT EltVT = VT.getVectorElementType();
12577   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12578
12579   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12580                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12581                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12582 }
12583
12584 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12585   assert(Op.getSimpleValueType().is256BitVector() &&
12586          Op.getSimpleValueType().isInteger() &&
12587          "Only handle AVX 256-bit vector integer operation");
12588   return Lower256IntArith(Op, DAG);
12589 }
12590
12591 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12592   assert(Op.getSimpleValueType().is256BitVector() &&
12593          Op.getSimpleValueType().isInteger() &&
12594          "Only handle AVX 256-bit vector integer operation");
12595   return Lower256IntArith(Op, DAG);
12596 }
12597
12598 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12599                         SelectionDAG &DAG) {
12600   SDLoc dl(Op);
12601   MVT VT = Op.getSimpleValueType();
12602
12603   // Decompose 256-bit ops into smaller 128-bit ops.
12604   if (VT.is256BitVector() && !Subtarget->hasInt256())
12605     return Lower256IntArith(Op, DAG);
12606
12607   SDValue A = Op.getOperand(0);
12608   SDValue B = Op.getOperand(1);
12609
12610   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12611   if (VT == MVT::v4i32) {
12612     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12613            "Should not custom lower when pmuldq is available!");
12614
12615     // Extract the odd parts.
12616     static const int UnpackMask[] = { 1, -1, 3, -1 };
12617     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12618     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12619
12620     // Multiply the even parts.
12621     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12622     // Now multiply odd parts.
12623     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12624
12625     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12626     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12627
12628     // Merge the two vectors back together with a shuffle. This expands into 2
12629     // shuffles.
12630     static const int ShufMask[] = { 0, 4, 2, 6 };
12631     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12632   }
12633
12634   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12635          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12636
12637   //  Ahi = psrlqi(a, 32);
12638   //  Bhi = psrlqi(b, 32);
12639   //
12640   //  AloBlo = pmuludq(a, b);
12641   //  AloBhi = pmuludq(a, Bhi);
12642   //  AhiBlo = pmuludq(Ahi, b);
12643
12644   //  AloBhi = psllqi(AloBhi, 32);
12645   //  AhiBlo = psllqi(AhiBlo, 32);
12646   //  return AloBlo + AloBhi + AhiBlo;
12647
12648   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12649   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
12650
12651   // Bit cast to 32-bit vectors for MULUDQ
12652   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12653                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12654   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12655   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12656   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12657   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12658
12659   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12660   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12661   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12662
12663   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12664   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
12665
12666   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12667   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12668 }
12669
12670 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12671   MVT VT = Op.getSimpleValueType();
12672   MVT EltTy = VT.getVectorElementType();
12673   unsigned NumElts = VT.getVectorNumElements();
12674   SDValue N0 = Op.getOperand(0);
12675   SDLoc dl(Op);
12676
12677   // Lower sdiv X, pow2-const.
12678   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12679   if (!C)
12680     return SDValue();
12681
12682   APInt SplatValue, SplatUndef;
12683   unsigned SplatBitSize;
12684   bool HasAnyUndefs;
12685   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12686                           HasAnyUndefs) ||
12687       EltTy.getSizeInBits() < SplatBitSize)
12688     return SDValue();
12689
12690   if ((SplatValue != 0) &&
12691       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12692     unsigned Lg2 = SplatValue.countTrailingZeros();
12693     // Splat the sign bit.
12694     SmallVector<SDValue, 16> Sz(NumElts,
12695                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12696                                                 EltTy));
12697     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12698                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12699                                           NumElts));
12700     // Add (N0 < 0) ? abs2 - 1 : 0;
12701     SmallVector<SDValue, 16> Amt(NumElts,
12702                                  DAG.getConstant(EltTy.getSizeInBits() - Lg2,
12703                                                  EltTy));
12704     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12705                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12706                                           NumElts));
12707     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12708     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
12709     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12710                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12711                                           NumElts));
12712
12713     // If we're dividing by a positive value, we're done.  Otherwise, we must
12714     // negate the result.
12715     if (SplatValue.isNonNegative())
12716       return SRA;
12717
12718     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12719     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12720     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12721   }
12722   return SDValue();
12723 }
12724
12725 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12726                                          const X86Subtarget *Subtarget) {
12727   MVT VT = Op.getSimpleValueType();
12728   SDLoc dl(Op);
12729   SDValue R = Op.getOperand(0);
12730   SDValue Amt = Op.getOperand(1);
12731
12732   // Optimize shl/srl/sra with constant shift amount.
12733   if (isSplatVector(Amt.getNode())) {
12734     SDValue SclrAmt = Amt->getOperand(0);
12735     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12736       uint64_t ShiftAmt = C->getZExtValue();
12737
12738       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12739           (Subtarget->hasInt256() &&
12740            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12741           (Subtarget->hasAVX512() &&
12742            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12743         if (Op.getOpcode() == ISD::SHL)
12744           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12745                                             DAG);
12746         if (Op.getOpcode() == ISD::SRL)
12747           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12748                                             DAG);
12749         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12750           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12751                                             DAG);
12752       }
12753
12754       if (VT == MVT::v16i8) {
12755         if (Op.getOpcode() == ISD::SHL) {
12756           // Make a large shift.
12757           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12758                                                    MVT::v8i16, R, ShiftAmt,
12759                                                    DAG);
12760           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12761           // Zero out the rightmost bits.
12762           SmallVector<SDValue, 16> V(16,
12763                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12764                                                      MVT::i8));
12765           return DAG.getNode(ISD::AND, dl, VT, SHL,
12766                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12767         }
12768         if (Op.getOpcode() == ISD::SRL) {
12769           // Make a large shift.
12770           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12771                                                    MVT::v8i16, R, ShiftAmt,
12772                                                    DAG);
12773           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12774           // Zero out the leftmost bits.
12775           SmallVector<SDValue, 16> V(16,
12776                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12777                                                      MVT::i8));
12778           return DAG.getNode(ISD::AND, dl, VT, SRL,
12779                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12780         }
12781         if (Op.getOpcode() == ISD::SRA) {
12782           if (ShiftAmt == 7) {
12783             // R s>> 7  ===  R s< 0
12784             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12785             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12786           }
12787
12788           // R s>> a === ((R u>> a) ^ m) - m
12789           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12790           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12791                                                          MVT::i8));
12792           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12793           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12794           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12795           return Res;
12796         }
12797         llvm_unreachable("Unknown shift opcode.");
12798       }
12799
12800       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12801         if (Op.getOpcode() == ISD::SHL) {
12802           // Make a large shift.
12803           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12804                                                    MVT::v16i16, R, ShiftAmt,
12805                                                    DAG);
12806           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12807           // Zero out the rightmost bits.
12808           SmallVector<SDValue, 32> V(32,
12809                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12810                                                      MVT::i8));
12811           return DAG.getNode(ISD::AND, dl, VT, SHL,
12812                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12813         }
12814         if (Op.getOpcode() == ISD::SRL) {
12815           // Make a large shift.
12816           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12817                                                    MVT::v16i16, R, ShiftAmt,
12818                                                    DAG);
12819           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12820           // Zero out the leftmost bits.
12821           SmallVector<SDValue, 32> V(32,
12822                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12823                                                      MVT::i8));
12824           return DAG.getNode(ISD::AND, dl, VT, SRL,
12825                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12826         }
12827         if (Op.getOpcode() == ISD::SRA) {
12828           if (ShiftAmt == 7) {
12829             // R s>> 7  ===  R s< 0
12830             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12831             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12832           }
12833
12834           // R s>> a === ((R u>> a) ^ m) - m
12835           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12836           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12837                                                          MVT::i8));
12838           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12839           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12840           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12841           return Res;
12842         }
12843         llvm_unreachable("Unknown shift opcode.");
12844       }
12845     }
12846   }
12847
12848   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12849   if (!Subtarget->is64Bit() &&
12850       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12851       Amt.getOpcode() == ISD::BITCAST &&
12852       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12853     Amt = Amt.getOperand(0);
12854     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
12855                      VT.getVectorNumElements();
12856     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12857     uint64_t ShiftAmt = 0;
12858     for (unsigned i = 0; i != Ratio; ++i) {
12859       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12860       if (C == 0)
12861         return SDValue();
12862       // 6 == Log2(64)
12863       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12864     }
12865     // Check remaining shift amounts.
12866     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12867       uint64_t ShAmt = 0;
12868       for (unsigned j = 0; j != Ratio; ++j) {
12869         ConstantSDNode *C =
12870           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12871         if (C == 0)
12872           return SDValue();
12873         // 6 == Log2(64)
12874         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12875       }
12876       if (ShAmt != ShiftAmt)
12877         return SDValue();
12878     }
12879     switch (Op.getOpcode()) {
12880     default:
12881       llvm_unreachable("Unknown shift opcode!");
12882     case ISD::SHL:
12883       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12884                                         DAG);
12885     case ISD::SRL:
12886       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12887                                         DAG);
12888     case ISD::SRA:
12889       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12890                                         DAG);
12891     }
12892   }
12893
12894   return SDValue();
12895 }
12896
12897 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12898                                         const X86Subtarget* Subtarget) {
12899   MVT VT = Op.getSimpleValueType();
12900   SDLoc dl(Op);
12901   SDValue R = Op.getOperand(0);
12902   SDValue Amt = Op.getOperand(1);
12903
12904   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12905       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12906       (Subtarget->hasInt256() &&
12907        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12908         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12909        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12910     SDValue BaseShAmt;
12911     EVT EltVT = VT.getVectorElementType();
12912
12913     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12914       unsigned NumElts = VT.getVectorNumElements();
12915       unsigned i, j;
12916       for (i = 0; i != NumElts; ++i) {
12917         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12918           continue;
12919         break;
12920       }
12921       for (j = i; j != NumElts; ++j) {
12922         SDValue Arg = Amt.getOperand(j);
12923         if (Arg.getOpcode() == ISD::UNDEF) continue;
12924         if (Arg != Amt.getOperand(i))
12925           break;
12926       }
12927       if (i != NumElts && j == NumElts)
12928         BaseShAmt = Amt.getOperand(i);
12929     } else {
12930       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12931         Amt = Amt.getOperand(0);
12932       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12933                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12934         SDValue InVec = Amt.getOperand(0);
12935         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12936           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12937           unsigned i = 0;
12938           for (; i != NumElts; ++i) {
12939             SDValue Arg = InVec.getOperand(i);
12940             if (Arg.getOpcode() == ISD::UNDEF) continue;
12941             BaseShAmt = Arg;
12942             break;
12943           }
12944         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12945            if (ConstantSDNode *C =
12946                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12947              unsigned SplatIdx =
12948                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12949              if (C->getZExtValue() == SplatIdx)
12950                BaseShAmt = InVec.getOperand(1);
12951            }
12952         }
12953         if (BaseShAmt.getNode() == 0)
12954           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12955                                   DAG.getIntPtrConstant(0));
12956       }
12957     }
12958
12959     if (BaseShAmt.getNode()) {
12960       if (EltVT.bitsGT(MVT::i32))
12961         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12962       else if (EltVT.bitsLT(MVT::i32))
12963         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12964
12965       switch (Op.getOpcode()) {
12966       default:
12967         llvm_unreachable("Unknown shift opcode!");
12968       case ISD::SHL:
12969         switch (VT.SimpleTy) {
12970         default: return SDValue();
12971         case MVT::v2i64:
12972         case MVT::v4i32:
12973         case MVT::v8i16:
12974         case MVT::v4i64:
12975         case MVT::v8i32:
12976         case MVT::v16i16:
12977         case MVT::v16i32:
12978         case MVT::v8i64:
12979           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12980         }
12981       case ISD::SRA:
12982         switch (VT.SimpleTy) {
12983         default: return SDValue();
12984         case MVT::v4i32:
12985         case MVT::v8i16:
12986         case MVT::v8i32:
12987         case MVT::v16i16:
12988         case MVT::v16i32:
12989         case MVT::v8i64:
12990           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12991         }
12992       case ISD::SRL:
12993         switch (VT.SimpleTy) {
12994         default: return SDValue();
12995         case MVT::v2i64:
12996         case MVT::v4i32:
12997         case MVT::v8i16:
12998         case MVT::v4i64:
12999         case MVT::v8i32:
13000         case MVT::v16i16:
13001         case MVT::v16i32:
13002         case MVT::v8i64:
13003           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13004         }
13005       }
13006     }
13007   }
13008
13009   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13010   if (!Subtarget->is64Bit() &&
13011       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13012       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13013       Amt.getOpcode() == ISD::BITCAST &&
13014       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13015     Amt = Amt.getOperand(0);
13016     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13017                      VT.getVectorNumElements();
13018     std::vector<SDValue> Vals(Ratio);
13019     for (unsigned i = 0; i != Ratio; ++i)
13020       Vals[i] = Amt.getOperand(i);
13021     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13022       for (unsigned j = 0; j != Ratio; ++j)
13023         if (Vals[j] != Amt.getOperand(i + j))
13024           return SDValue();
13025     }
13026     switch (Op.getOpcode()) {
13027     default:
13028       llvm_unreachable("Unknown shift opcode!");
13029     case ISD::SHL:
13030       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13031     case ISD::SRL:
13032       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13033     case ISD::SRA:
13034       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13035     }
13036   }
13037
13038   return SDValue();
13039 }
13040
13041 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13042                           SelectionDAG &DAG) {
13043
13044   MVT VT = Op.getSimpleValueType();
13045   SDLoc dl(Op);
13046   SDValue R = Op.getOperand(0);
13047   SDValue Amt = Op.getOperand(1);
13048   SDValue V;
13049
13050   if (!Subtarget->hasSSE2())
13051     return SDValue();
13052
13053   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13054   if (V.getNode())
13055     return V;
13056
13057   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13058   if (V.getNode())
13059       return V;
13060
13061   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13062     return Op;
13063   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13064   if (Subtarget->hasInt256()) {
13065     if (Op.getOpcode() == ISD::SRL &&
13066         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13067          VT == MVT::v4i64 || VT == MVT::v8i32))
13068       return Op;
13069     if (Op.getOpcode() == ISD::SHL &&
13070         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13071          VT == MVT::v4i64 || VT == MVT::v8i32))
13072       return Op;
13073     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13074       return Op;
13075   }
13076
13077   // Lower SHL with variable shift amount.
13078   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13079     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13080
13081     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13082     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13083     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13084     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13085   }
13086   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13087     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13088
13089     // a = a << 5;
13090     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13091     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13092
13093     // Turn 'a' into a mask suitable for VSELECT
13094     SDValue VSelM = DAG.getConstant(0x80, VT);
13095     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13096     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13097
13098     SDValue CM1 = DAG.getConstant(0x0f, VT);
13099     SDValue CM2 = DAG.getConstant(0x3f, VT);
13100
13101     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13102     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13103     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13104     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13105     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13106
13107     // a += a
13108     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13109     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13110     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13111
13112     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
13113     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
13114     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
13115     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13116     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13117
13118     // a += a
13119     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13120     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13121     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13122
13123     // return VSELECT(r, r+r, a);
13124     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
13125                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
13126     return R;
13127   }
13128
13129   // Decompose 256-bit shifts into smaller 128-bit shifts.
13130   if (VT.is256BitVector()) {
13131     unsigned NumElems = VT.getVectorNumElements();
13132     MVT EltVT = VT.getVectorElementType();
13133     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13134
13135     // Extract the two vectors
13136     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
13137     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
13138
13139     // Recreate the shift amount vectors
13140     SDValue Amt1, Amt2;
13141     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13142       // Constant shift amount
13143       SmallVector<SDValue, 4> Amt1Csts;
13144       SmallVector<SDValue, 4> Amt2Csts;
13145       for (unsigned i = 0; i != NumElems/2; ++i)
13146         Amt1Csts.push_back(Amt->getOperand(i));
13147       for (unsigned i = NumElems/2; i != NumElems; ++i)
13148         Amt2Csts.push_back(Amt->getOperand(i));
13149
13150       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13151                                  &Amt1Csts[0], NumElems/2);
13152       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13153                                  &Amt2Csts[0], NumElems/2);
13154     } else {
13155       // Variable shift amount
13156       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13157       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
13158     }
13159
13160     // Issue new vector shifts for the smaller types
13161     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13162     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13163
13164     // Concatenate the result back
13165     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13166   }
13167
13168   return SDValue();
13169 }
13170
13171 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
13172   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13173   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
13174   // looks for this combo and may remove the "setcc" instruction if the "setcc"
13175   // has only one use.
13176   SDNode *N = Op.getNode();
13177   SDValue LHS = N->getOperand(0);
13178   SDValue RHS = N->getOperand(1);
13179   unsigned BaseOp = 0;
13180   unsigned Cond = 0;
13181   SDLoc DL(Op);
13182   switch (Op.getOpcode()) {
13183   default: llvm_unreachable("Unknown ovf instruction!");
13184   case ISD::SADDO:
13185     // A subtract of one will be selected as a INC. Note that INC doesn't
13186     // set CF, so we can't do this for UADDO.
13187     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13188       if (C->isOne()) {
13189         BaseOp = X86ISD::INC;
13190         Cond = X86::COND_O;
13191         break;
13192       }
13193     BaseOp = X86ISD::ADD;
13194     Cond = X86::COND_O;
13195     break;
13196   case ISD::UADDO:
13197     BaseOp = X86ISD::ADD;
13198     Cond = X86::COND_B;
13199     break;
13200   case ISD::SSUBO:
13201     // A subtract of one will be selected as a DEC. Note that DEC doesn't
13202     // set CF, so we can't do this for USUBO.
13203     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13204       if (C->isOne()) {
13205         BaseOp = X86ISD::DEC;
13206         Cond = X86::COND_O;
13207         break;
13208       }
13209     BaseOp = X86ISD::SUB;
13210     Cond = X86::COND_O;
13211     break;
13212   case ISD::USUBO:
13213     BaseOp = X86ISD::SUB;
13214     Cond = X86::COND_B;
13215     break;
13216   case ISD::SMULO:
13217     BaseOp = X86ISD::SMUL;
13218     Cond = X86::COND_O;
13219     break;
13220   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13221     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13222                                  MVT::i32);
13223     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
13224
13225     SDValue SetCC =
13226       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13227                   DAG.getConstant(X86::COND_O, MVT::i32),
13228                   SDValue(Sum.getNode(), 2));
13229
13230     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13231   }
13232   }
13233
13234   // Also sets EFLAGS.
13235   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13236   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13237
13238   SDValue SetCC =
13239     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13240                 DAG.getConstant(Cond, MVT::i32),
13241                 SDValue(Sum.getNode(), 1));
13242
13243   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13244 }
13245
13246 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13247                                                   SelectionDAG &DAG) const {
13248   SDLoc dl(Op);
13249   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13250   MVT VT = Op.getSimpleValueType();
13251
13252   if (!Subtarget->hasSSE2() || !VT.isVector())
13253     return SDValue();
13254
13255   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13256                       ExtraVT.getScalarType().getSizeInBits();
13257
13258   switch (VT.SimpleTy) {
13259     default: return SDValue();
13260     case MVT::v8i32:
13261     case MVT::v16i16:
13262       if (!Subtarget->hasFp256())
13263         return SDValue();
13264       if (!Subtarget->hasInt256()) {
13265         // needs to be split
13266         unsigned NumElems = VT.getVectorNumElements();
13267
13268         // Extract the LHS vectors
13269         SDValue LHS = Op.getOperand(0);
13270         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13271         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13272
13273         MVT EltVT = VT.getVectorElementType();
13274         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13275
13276         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13277         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13278         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13279                                    ExtraNumElems/2);
13280         SDValue Extra = DAG.getValueType(ExtraVT);
13281
13282         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13283         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13284
13285         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13286       }
13287       // fall through
13288     case MVT::v4i32:
13289     case MVT::v8i16: {
13290       SDValue Op0 = Op.getOperand(0);
13291       SDValue Op00 = Op0.getOperand(0);
13292       SDValue Tmp1;
13293       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13294       if (Op0.getOpcode() == ISD::BITCAST &&
13295           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
13296         // (sext (vzext x)) -> (vsext x)
13297         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13298         if (Tmp1.getNode()) {
13299           EVT ExtraEltVT = ExtraVT.getVectorElementType();
13300           // This folding is only valid when the in-reg type is a vector of i8,
13301           // i16, or i32.
13302           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
13303               ExtraEltVT == MVT::i32) {
13304             SDValue Tmp1Op0 = Tmp1.getOperand(0);
13305             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13306                    "This optimization is invalid without a VZEXT.");
13307             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13308           }
13309           Op0 = Tmp1;
13310         }
13311       }
13312
13313       // If the above didn't work, then just use Shift-Left + Shift-Right.
13314       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13315                                         DAG);
13316       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13317                                         DAG);
13318     }
13319   }
13320 }
13321
13322 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13323                                  SelectionDAG &DAG) {
13324   SDLoc dl(Op);
13325   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13326     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13327   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13328     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13329
13330   // The only fence that needs an instruction is a sequentially-consistent
13331   // cross-thread fence.
13332   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13333     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13334     // no-sse2). There isn't any reason to disable it if the target processor
13335     // supports it.
13336     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13337       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13338
13339     SDValue Chain = Op.getOperand(0);
13340     SDValue Zero = DAG.getConstant(0, MVT::i32);
13341     SDValue Ops[] = {
13342       DAG.getRegister(X86::ESP, MVT::i32), // Base
13343       DAG.getTargetConstant(1, MVT::i8),   // Scale
13344       DAG.getRegister(0, MVT::i32),        // Index
13345       DAG.getTargetConstant(0, MVT::i32),  // Disp
13346       DAG.getRegister(0, MVT::i32),        // Segment.
13347       Zero,
13348       Chain
13349     };
13350     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13351     return SDValue(Res, 0);
13352   }
13353
13354   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13355   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13356 }
13357
13358 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13359                              SelectionDAG &DAG) {
13360   MVT T = Op.getSimpleValueType();
13361   SDLoc DL(Op);
13362   unsigned Reg = 0;
13363   unsigned size = 0;
13364   switch(T.SimpleTy) {
13365   default: llvm_unreachable("Invalid value type!");
13366   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13367   case MVT::i16: Reg = X86::AX;  size = 2; break;
13368   case MVT::i32: Reg = X86::EAX; size = 4; break;
13369   case MVT::i64:
13370     assert(Subtarget->is64Bit() && "Node not type legal!");
13371     Reg = X86::RAX; size = 8;
13372     break;
13373   }
13374   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13375                                     Op.getOperand(2), SDValue());
13376   SDValue Ops[] = { cpIn.getValue(0),
13377                     Op.getOperand(1),
13378                     Op.getOperand(3),
13379                     DAG.getTargetConstant(size, MVT::i8),
13380                     cpIn.getValue(1) };
13381   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13382   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13383   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13384                                            Ops, array_lengthof(Ops), T, MMO);
13385   SDValue cpOut =
13386     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13387   return cpOut;
13388 }
13389
13390 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13391                                      SelectionDAG &DAG) {
13392   assert(Subtarget->is64Bit() && "Result not type legalized?");
13393   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13394   SDValue TheChain = Op.getOperand(0);
13395   SDLoc dl(Op);
13396   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13397   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13398   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13399                                    rax.getValue(2));
13400   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13401                             DAG.getConstant(32, MVT::i8));
13402   SDValue Ops[] = {
13403     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13404     rdx.getValue(1)
13405   };
13406   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13407 }
13408
13409 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13410                             SelectionDAG &DAG) {
13411   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13412   MVT DstVT = Op.getSimpleValueType();
13413   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13414          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13415   assert((DstVT == MVT::i64 ||
13416           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13417          "Unexpected custom BITCAST");
13418   // i64 <=> MMX conversions are Legal.
13419   if (SrcVT==MVT::i64 && DstVT.isVector())
13420     return Op;
13421   if (DstVT==MVT::i64 && SrcVT.isVector())
13422     return Op;
13423   // MMX <=> MMX conversions are Legal.
13424   if (SrcVT.isVector() && DstVT.isVector())
13425     return Op;
13426   // All other conversions need to be expanded.
13427   return SDValue();
13428 }
13429
13430 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13431   SDNode *Node = Op.getNode();
13432   SDLoc dl(Node);
13433   EVT T = Node->getValueType(0);
13434   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13435                               DAG.getConstant(0, T), Node->getOperand(2));
13436   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13437                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13438                        Node->getOperand(0),
13439                        Node->getOperand(1), negOp,
13440                        cast<AtomicSDNode>(Node)->getSrcValue(),
13441                        cast<AtomicSDNode>(Node)->getAlignment(),
13442                        cast<AtomicSDNode>(Node)->getOrdering(),
13443                        cast<AtomicSDNode>(Node)->getSynchScope());
13444 }
13445
13446 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13447   SDNode *Node = Op.getNode();
13448   SDLoc dl(Node);
13449   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13450
13451   // Convert seq_cst store -> xchg
13452   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13453   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13454   //        (The only way to get a 16-byte store is cmpxchg16b)
13455   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13456   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13457       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13458     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13459                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13460                                  Node->getOperand(0),
13461                                  Node->getOperand(1), Node->getOperand(2),
13462                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13463                                  cast<AtomicSDNode>(Node)->getOrdering(),
13464                                  cast<AtomicSDNode>(Node)->getSynchScope());
13465     return Swap.getValue(1);
13466   }
13467   // Other atomic stores have a simple pattern.
13468   return Op;
13469 }
13470
13471 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13472   EVT VT = Op.getNode()->getSimpleValueType(0);
13473
13474   // Let legalize expand this if it isn't a legal type yet.
13475   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13476     return SDValue();
13477
13478   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13479
13480   unsigned Opc;
13481   bool ExtraOp = false;
13482   switch (Op.getOpcode()) {
13483   default: llvm_unreachable("Invalid code");
13484   case ISD::ADDC: Opc = X86ISD::ADD; break;
13485   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13486   case ISD::SUBC: Opc = X86ISD::SUB; break;
13487   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13488   }
13489
13490   if (!ExtraOp)
13491     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13492                        Op.getOperand(1));
13493   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13494                      Op.getOperand(1), Op.getOperand(2));
13495 }
13496
13497 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13498                             SelectionDAG &DAG) {
13499   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13500
13501   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13502   // which returns the values as { float, float } (in XMM0) or
13503   // { double, double } (which is returned in XMM0, XMM1).
13504   SDLoc dl(Op);
13505   SDValue Arg = Op.getOperand(0);
13506   EVT ArgVT = Arg.getValueType();
13507   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13508
13509   TargetLowering::ArgListTy Args;
13510   TargetLowering::ArgListEntry Entry;
13511
13512   Entry.Node = Arg;
13513   Entry.Ty = ArgTy;
13514   Entry.isSExt = false;
13515   Entry.isZExt = false;
13516   Args.push_back(Entry);
13517
13518   bool isF64 = ArgVT == MVT::f64;
13519   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13520   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13521   // the results are returned via SRet in memory.
13522   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13523   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13524   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13525
13526   Type *RetTy = isF64
13527     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13528     : (Type*)VectorType::get(ArgTy, 4);
13529   TargetLowering::
13530     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13531                          false, false, false, false, 0,
13532                          CallingConv::C, /*isTaillCall=*/false,
13533                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13534                          Callee, Args, DAG, dl);
13535   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13536
13537   if (isF64)
13538     // Returned in xmm0 and xmm1.
13539     return CallResult.first;
13540
13541   // Returned in bits 0:31 and 32:64 xmm0.
13542   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13543                                CallResult.first, DAG.getIntPtrConstant(0));
13544   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13545                                CallResult.first, DAG.getIntPtrConstant(1));
13546   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13547   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13548 }
13549
13550 /// LowerOperation - Provide custom lowering hooks for some operations.
13551 ///
13552 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13553   switch (Op.getOpcode()) {
13554   default: llvm_unreachable("Should not custom lower this!");
13555   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13556   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13557   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13558   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13559   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13560   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13561   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13562   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13563   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13564   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13565   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13566   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13567   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13568   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13569   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13570   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13571   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13572   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13573   case ISD::SHL_PARTS:
13574   case ISD::SRA_PARTS:
13575   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13576   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13577   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13578   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13579   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13580   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13581   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13582   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13583   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13584   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13585   case ISD::FABS:               return LowerFABS(Op, DAG);
13586   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13587   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13588   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13589   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13590   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13591   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13592   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13593   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13594   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13595   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13596   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13597   case ISD::INTRINSIC_VOID:
13598   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13599   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13600   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13601   case ISD::FRAME_TO_ARGS_OFFSET:
13602                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13603   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13604   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13605   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13606   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13607   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13608   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13609   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13610   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13611   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13612   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13613   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13614   case ISD::SRA:
13615   case ISD::SRL:
13616   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13617   case ISD::SADDO:
13618   case ISD::UADDO:
13619   case ISD::SSUBO:
13620   case ISD::USUBO:
13621   case ISD::SMULO:
13622   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13623   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13624   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13625   case ISD::ADDC:
13626   case ISD::ADDE:
13627   case ISD::SUBC:
13628   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13629   case ISD::ADD:                return LowerADD(Op, DAG);
13630   case ISD::SUB:                return LowerSUB(Op, DAG);
13631   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13632   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13633   }
13634 }
13635
13636 static void ReplaceATOMIC_LOAD(SDNode *Node,
13637                                   SmallVectorImpl<SDValue> &Results,
13638                                   SelectionDAG &DAG) {
13639   SDLoc dl(Node);
13640   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13641
13642   // Convert wide load -> cmpxchg8b/cmpxchg16b
13643   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13644   //        (The only way to get a 16-byte load is cmpxchg16b)
13645   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13646   SDValue Zero = DAG.getConstant(0, VT);
13647   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13648                                Node->getOperand(0),
13649                                Node->getOperand(1), Zero, Zero,
13650                                cast<AtomicSDNode>(Node)->getMemOperand(),
13651                                cast<AtomicSDNode>(Node)->getOrdering(),
13652                                cast<AtomicSDNode>(Node)->getSynchScope());
13653   Results.push_back(Swap.getValue(0));
13654   Results.push_back(Swap.getValue(1));
13655 }
13656
13657 static void
13658 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13659                         SelectionDAG &DAG, unsigned NewOp) {
13660   SDLoc dl(Node);
13661   assert (Node->getValueType(0) == MVT::i64 &&
13662           "Only know how to expand i64 atomics");
13663
13664   SDValue Chain = Node->getOperand(0);
13665   SDValue In1 = Node->getOperand(1);
13666   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13667                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13668   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13669                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13670   SDValue Ops[] = { Chain, In1, In2L, In2H };
13671   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13672   SDValue Result =
13673     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13674                             cast<MemSDNode>(Node)->getMemOperand());
13675   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13676   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13677   Results.push_back(Result.getValue(2));
13678 }
13679
13680 /// ReplaceNodeResults - Replace a node with an illegal result type
13681 /// with a new node built out of custom code.
13682 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13683                                            SmallVectorImpl<SDValue>&Results,
13684                                            SelectionDAG &DAG) const {
13685   SDLoc dl(N);
13686   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13687   switch (N->getOpcode()) {
13688   default:
13689     llvm_unreachable("Do not know how to custom type legalize this operation!");
13690   case ISD::SIGN_EXTEND_INREG:
13691   case ISD::ADDC:
13692   case ISD::ADDE:
13693   case ISD::SUBC:
13694   case ISD::SUBE:
13695     // We don't want to expand or promote these.
13696     return;
13697   case ISD::FP_TO_SINT:
13698   case ISD::FP_TO_UINT: {
13699     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13700
13701     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13702       return;
13703
13704     std::pair<SDValue,SDValue> Vals =
13705         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13706     SDValue FIST = Vals.first, StackSlot = Vals.second;
13707     if (FIST.getNode() != 0) {
13708       EVT VT = N->getValueType(0);
13709       // Return a load from the stack slot.
13710       if (StackSlot.getNode() != 0)
13711         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13712                                       MachinePointerInfo(),
13713                                       false, false, false, 0));
13714       else
13715         Results.push_back(FIST);
13716     }
13717     return;
13718   }
13719   case ISD::UINT_TO_FP: {
13720     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13721     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13722         N->getValueType(0) != MVT::v2f32)
13723       return;
13724     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13725                                  N->getOperand(0));
13726     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13727                                      MVT::f64);
13728     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13729     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13730                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13731     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13732     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13733     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13734     return;
13735   }
13736   case ISD::FP_ROUND: {
13737     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13738         return;
13739     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13740     Results.push_back(V);
13741     return;
13742   }
13743   case ISD::READCYCLECOUNTER: {
13744     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13745     SDValue TheChain = N->getOperand(0);
13746     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13747     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13748                                      rd.getValue(1));
13749     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13750                                      eax.getValue(2));
13751     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13752     SDValue Ops[] = { eax, edx };
13753     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13754                                   array_lengthof(Ops)));
13755     Results.push_back(edx.getValue(1));
13756     return;
13757   }
13758   case ISD::ATOMIC_CMP_SWAP: {
13759     EVT T = N->getValueType(0);
13760     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13761     bool Regs64bit = T == MVT::i128;
13762     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13763     SDValue cpInL, cpInH;
13764     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13765                         DAG.getConstant(0, HalfT));
13766     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13767                         DAG.getConstant(1, HalfT));
13768     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13769                              Regs64bit ? X86::RAX : X86::EAX,
13770                              cpInL, SDValue());
13771     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13772                              Regs64bit ? X86::RDX : X86::EDX,
13773                              cpInH, cpInL.getValue(1));
13774     SDValue swapInL, swapInH;
13775     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13776                           DAG.getConstant(0, HalfT));
13777     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13778                           DAG.getConstant(1, HalfT));
13779     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13780                                Regs64bit ? X86::RBX : X86::EBX,
13781                                swapInL, cpInH.getValue(1));
13782     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13783                                Regs64bit ? X86::RCX : X86::ECX,
13784                                swapInH, swapInL.getValue(1));
13785     SDValue Ops[] = { swapInH.getValue(0),
13786                       N->getOperand(1),
13787                       swapInH.getValue(1) };
13788     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13789     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13790     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13791                                   X86ISD::LCMPXCHG8_DAG;
13792     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13793                                              Ops, array_lengthof(Ops), T, MMO);
13794     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13795                                         Regs64bit ? X86::RAX : X86::EAX,
13796                                         HalfT, Result.getValue(1));
13797     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13798                                         Regs64bit ? X86::RDX : X86::EDX,
13799                                         HalfT, cpOutL.getValue(2));
13800     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13801     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13802     Results.push_back(cpOutH.getValue(1));
13803     return;
13804   }
13805   case ISD::ATOMIC_LOAD_ADD:
13806   case ISD::ATOMIC_LOAD_AND:
13807   case ISD::ATOMIC_LOAD_NAND:
13808   case ISD::ATOMIC_LOAD_OR:
13809   case ISD::ATOMIC_LOAD_SUB:
13810   case ISD::ATOMIC_LOAD_XOR:
13811   case ISD::ATOMIC_LOAD_MAX:
13812   case ISD::ATOMIC_LOAD_MIN:
13813   case ISD::ATOMIC_LOAD_UMAX:
13814   case ISD::ATOMIC_LOAD_UMIN:
13815   case ISD::ATOMIC_SWAP: {
13816     unsigned Opc;
13817     switch (N->getOpcode()) {
13818     default: llvm_unreachable("Unexpected opcode");
13819     case ISD::ATOMIC_LOAD_ADD:
13820       Opc = X86ISD::ATOMADD64_DAG;
13821       break;
13822     case ISD::ATOMIC_LOAD_AND:
13823       Opc = X86ISD::ATOMAND64_DAG;
13824       break;
13825     case ISD::ATOMIC_LOAD_NAND:
13826       Opc = X86ISD::ATOMNAND64_DAG;
13827       break;
13828     case ISD::ATOMIC_LOAD_OR:
13829       Opc = X86ISD::ATOMOR64_DAG;
13830       break;
13831     case ISD::ATOMIC_LOAD_SUB:
13832       Opc = X86ISD::ATOMSUB64_DAG;
13833       break;
13834     case ISD::ATOMIC_LOAD_XOR:
13835       Opc = X86ISD::ATOMXOR64_DAG;
13836       break;
13837     case ISD::ATOMIC_LOAD_MAX:
13838       Opc = X86ISD::ATOMMAX64_DAG;
13839       break;
13840     case ISD::ATOMIC_LOAD_MIN:
13841       Opc = X86ISD::ATOMMIN64_DAG;
13842       break;
13843     case ISD::ATOMIC_LOAD_UMAX:
13844       Opc = X86ISD::ATOMUMAX64_DAG;
13845       break;
13846     case ISD::ATOMIC_LOAD_UMIN:
13847       Opc = X86ISD::ATOMUMIN64_DAG;
13848       break;
13849     case ISD::ATOMIC_SWAP:
13850       Opc = X86ISD::ATOMSWAP64_DAG;
13851       break;
13852     }
13853     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13854     return;
13855   }
13856   case ISD::ATOMIC_LOAD:
13857     ReplaceATOMIC_LOAD(N, Results, DAG);
13858   }
13859 }
13860
13861 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13862   switch (Opcode) {
13863   default: return NULL;
13864   case X86ISD::BSF:                return "X86ISD::BSF";
13865   case X86ISD::BSR:                return "X86ISD::BSR";
13866   case X86ISD::SHLD:               return "X86ISD::SHLD";
13867   case X86ISD::SHRD:               return "X86ISD::SHRD";
13868   case X86ISD::FAND:               return "X86ISD::FAND";
13869   case X86ISD::FANDN:              return "X86ISD::FANDN";
13870   case X86ISD::FOR:                return "X86ISD::FOR";
13871   case X86ISD::FXOR:               return "X86ISD::FXOR";
13872   case X86ISD::FSRL:               return "X86ISD::FSRL";
13873   case X86ISD::FILD:               return "X86ISD::FILD";
13874   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13875   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13876   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13877   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13878   case X86ISD::FLD:                return "X86ISD::FLD";
13879   case X86ISD::FST:                return "X86ISD::FST";
13880   case X86ISD::CALL:               return "X86ISD::CALL";
13881   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13882   case X86ISD::BT:                 return "X86ISD::BT";
13883   case X86ISD::CMP:                return "X86ISD::CMP";
13884   case X86ISD::COMI:               return "X86ISD::COMI";
13885   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13886   case X86ISD::CMPM:               return "X86ISD::CMPM";
13887   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13888   case X86ISD::SETCC:              return "X86ISD::SETCC";
13889   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13890   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
13891   case X86ISD::CMOV:               return "X86ISD::CMOV";
13892   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13893   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13894   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13895   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13896   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13897   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13898   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13899   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13900   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13901   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13902   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13903   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13904   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13905   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13906   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13907   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13908   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13909   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13910   case X86ISD::HADD:               return "X86ISD::HADD";
13911   case X86ISD::HSUB:               return "X86ISD::HSUB";
13912   case X86ISD::FHADD:              return "X86ISD::FHADD";
13913   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13914   case X86ISD::UMAX:               return "X86ISD::UMAX";
13915   case X86ISD::UMIN:               return "X86ISD::UMIN";
13916   case X86ISD::SMAX:               return "X86ISD::SMAX";
13917   case X86ISD::SMIN:               return "X86ISD::SMIN";
13918   case X86ISD::FMAX:               return "X86ISD::FMAX";
13919   case X86ISD::FMIN:               return "X86ISD::FMIN";
13920   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13921   case X86ISD::FMINC:              return "X86ISD::FMINC";
13922   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13923   case X86ISD::FRCP:               return "X86ISD::FRCP";
13924   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13925   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13926   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13927   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13928   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13929   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13930   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13931   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13932   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13933   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13934   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13935   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13936   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13937   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13938   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13939   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13940   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13941   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13942   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13943   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13944   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13945   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13946   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13947   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13948   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13949   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13950   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13951   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13952   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13953   case X86ISD::VSHL:               return "X86ISD::VSHL";
13954   case X86ISD::VSRL:               return "X86ISD::VSRL";
13955   case X86ISD::VSRA:               return "X86ISD::VSRA";
13956   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13957   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13958   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13959   case X86ISD::CMPP:               return "X86ISD::CMPP";
13960   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13961   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13962   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13963   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13964   case X86ISD::ADD:                return "X86ISD::ADD";
13965   case X86ISD::SUB:                return "X86ISD::SUB";
13966   case X86ISD::ADC:                return "X86ISD::ADC";
13967   case X86ISD::SBB:                return "X86ISD::SBB";
13968   case X86ISD::SMUL:               return "X86ISD::SMUL";
13969   case X86ISD::UMUL:               return "X86ISD::UMUL";
13970   case X86ISD::INC:                return "X86ISD::INC";
13971   case X86ISD::DEC:                return "X86ISD::DEC";
13972   case X86ISD::OR:                 return "X86ISD::OR";
13973   case X86ISD::XOR:                return "X86ISD::XOR";
13974   case X86ISD::AND:                return "X86ISD::AND";
13975   case X86ISD::BLSI:               return "X86ISD::BLSI";
13976   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13977   case X86ISD::BLSR:               return "X86ISD::BLSR";
13978   case X86ISD::BZHI:               return "X86ISD::BZHI";
13979   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13980   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13981   case X86ISD::PTEST:              return "X86ISD::PTEST";
13982   case X86ISD::TESTP:              return "X86ISD::TESTP";
13983   case X86ISD::TESTM:              return "X86ISD::TESTM";
13984   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13985   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
13986   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
13987   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
13988   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
13989   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
13990   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
13991   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
13992   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
13993   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
13994   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
13995   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
13996   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
13997   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
13998   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
13999   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14000   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14001   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14002   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14003   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14004   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14005   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14006   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14007   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14008   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14009   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14010   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14011   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14012   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14013   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14014   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14015   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14016   case X86ISD::SAHF:               return "X86ISD::SAHF";
14017   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14018   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14019   case X86ISD::FMADD:              return "X86ISD::FMADD";
14020   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14021   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14022   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14023   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14024   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14025   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14026   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14027   case X86ISD::XTEST:              return "X86ISD::XTEST";
14028   }
14029 }
14030
14031 // isLegalAddressingMode - Return true if the addressing mode represented
14032 // by AM is legal for this target, for a load/store of the specified type.
14033 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14034                                               Type *Ty) const {
14035   // X86 supports extremely general addressing modes.
14036   CodeModel::Model M = getTargetMachine().getCodeModel();
14037   Reloc::Model R = getTargetMachine().getRelocationModel();
14038
14039   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14040   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
14041     return false;
14042
14043   if (AM.BaseGV) {
14044     unsigned GVFlags =
14045       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14046
14047     // If a reference to this global requires an extra load, we can't fold it.
14048     if (isGlobalStubReference(GVFlags))
14049       return false;
14050
14051     // If BaseGV requires a register for the PIC base, we cannot also have a
14052     // BaseReg specified.
14053     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
14054       return false;
14055
14056     // If lower 4G is not available, then we must use rip-relative addressing.
14057     if ((M != CodeModel::Small || R != Reloc::Static) &&
14058         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
14059       return false;
14060   }
14061
14062   switch (AM.Scale) {
14063   case 0:
14064   case 1:
14065   case 2:
14066   case 4:
14067   case 8:
14068     // These scales always work.
14069     break;
14070   case 3:
14071   case 5:
14072   case 9:
14073     // These scales are formed with basereg+scalereg.  Only accept if there is
14074     // no basereg yet.
14075     if (AM.HasBaseReg)
14076       return false;
14077     break;
14078   default:  // Other stuff never works.
14079     return false;
14080   }
14081
14082   return true;
14083 }
14084
14085 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
14086   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14087     return false;
14088   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
14089   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
14090   return NumBits1 > NumBits2;
14091 }
14092
14093 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
14094   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14095     return false;
14096
14097   if (!isTypeLegal(EVT::getEVT(Ty1)))
14098     return false;
14099
14100   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
14101
14102   // Assuming the caller doesn't have a zeroext or signext return parameter,
14103   // truncation all the way down to i1 is valid.
14104   return true;
14105 }
14106
14107 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
14108   return isInt<32>(Imm);
14109 }
14110
14111 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
14112   // Can also use sub to handle negated immediates.
14113   return isInt<32>(Imm);
14114 }
14115
14116 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
14117   if (!VT1.isInteger() || !VT2.isInteger())
14118     return false;
14119   unsigned NumBits1 = VT1.getSizeInBits();
14120   unsigned NumBits2 = VT2.getSizeInBits();
14121   return NumBits1 > NumBits2;
14122 }
14123
14124 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
14125   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14126   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
14127 }
14128
14129 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
14130   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14131   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
14132 }
14133
14134 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
14135   EVT VT1 = Val.getValueType();
14136   if (isZExtFree(VT1, VT2))
14137     return true;
14138
14139   if (Val.getOpcode() != ISD::LOAD)
14140     return false;
14141
14142   if (!VT1.isSimple() || !VT1.isInteger() ||
14143       !VT2.isSimple() || !VT2.isInteger())
14144     return false;
14145
14146   switch (VT1.getSimpleVT().SimpleTy) {
14147   default: break;
14148   case MVT::i8:
14149   case MVT::i16:
14150   case MVT::i32:
14151     // X86 has 8, 16, and 32-bit zero-extending loads.
14152     return true;
14153   }
14154
14155   return false;
14156 }
14157
14158 bool
14159 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14160   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14161     return false;
14162
14163   VT = VT.getScalarType();
14164
14165   if (!VT.isSimple())
14166     return false;
14167
14168   switch (VT.getSimpleVT().SimpleTy) {
14169   case MVT::f32:
14170   case MVT::f64:
14171     return true;
14172   default:
14173     break;
14174   }
14175
14176   return false;
14177 }
14178
14179 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
14180   // i16 instructions are longer (0x66 prefix) and potentially slower.
14181   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
14182 }
14183
14184 /// isShuffleMaskLegal - Targets can use this to indicate that they only
14185 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
14186 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
14187 /// are assumed to be legal.
14188 bool
14189 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
14190                                       EVT VT) const {
14191   if (!VT.isSimple())
14192     return false;
14193
14194   MVT SVT = VT.getSimpleVT();
14195
14196   // Very little shuffling can be done for 64-bit vectors right now.
14197   if (VT.getSizeInBits() == 64)
14198     return false;
14199
14200   // FIXME: pshufb, blends, shifts.
14201   return (SVT.getVectorNumElements() == 2 ||
14202           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
14203           isMOVLMask(M, SVT) ||
14204           isSHUFPMask(M, SVT) ||
14205           isPSHUFDMask(M, SVT) ||
14206           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14207           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14208           isPALIGNRMask(M, SVT, Subtarget) ||
14209           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14210           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14211           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14212           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
14213 }
14214
14215 bool
14216 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
14217                                           EVT VT) const {
14218   if (!VT.isSimple())
14219     return false;
14220
14221   MVT SVT = VT.getSimpleVT();
14222   unsigned NumElts = SVT.getVectorNumElements();
14223   // FIXME: This collection of masks seems suspect.
14224   if (NumElts == 2)
14225     return true;
14226   if (NumElts == 4 && SVT.is128BitVector()) {
14227     return (isMOVLMask(Mask, SVT)  ||
14228             isCommutedMOVLMask(Mask, SVT, true) ||
14229             isSHUFPMask(Mask, SVT) ||
14230             isSHUFPMask(Mask, SVT, /* Commuted */ true));
14231   }
14232   return false;
14233 }
14234
14235 //===----------------------------------------------------------------------===//
14236 //                           X86 Scheduler Hooks
14237 //===----------------------------------------------------------------------===//
14238
14239 /// Utility function to emit xbegin specifying the start of an RTM region.
14240 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14241                                      const TargetInstrInfo *TII) {
14242   DebugLoc DL = MI->getDebugLoc();
14243
14244   const BasicBlock *BB = MBB->getBasicBlock();
14245   MachineFunction::iterator I = MBB;
14246   ++I;
14247
14248   // For the v = xbegin(), we generate
14249   //
14250   // thisMBB:
14251   //  xbegin sinkMBB
14252   //
14253   // mainMBB:
14254   //  eax = -1
14255   //
14256   // sinkMBB:
14257   //  v = eax
14258
14259   MachineBasicBlock *thisMBB = MBB;
14260   MachineFunction *MF = MBB->getParent();
14261   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14262   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14263   MF->insert(I, mainMBB);
14264   MF->insert(I, sinkMBB);
14265
14266   // Transfer the remainder of BB and its successor edges to sinkMBB.
14267   sinkMBB->splice(sinkMBB->begin(), MBB,
14268                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14269   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14270
14271   // thisMBB:
14272   //  xbegin sinkMBB
14273   //  # fallthrough to mainMBB
14274   //  # abortion to sinkMBB
14275   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14276   thisMBB->addSuccessor(mainMBB);
14277   thisMBB->addSuccessor(sinkMBB);
14278
14279   // mainMBB:
14280   //  EAX = -1
14281   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14282   mainMBB->addSuccessor(sinkMBB);
14283
14284   // sinkMBB:
14285   // EAX is live into the sinkMBB
14286   sinkMBB->addLiveIn(X86::EAX);
14287   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14288           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14289     .addReg(X86::EAX);
14290
14291   MI->eraseFromParent();
14292   return sinkMBB;
14293 }
14294
14295 // Get CMPXCHG opcode for the specified data type.
14296 static unsigned getCmpXChgOpcode(EVT VT) {
14297   switch (VT.getSimpleVT().SimpleTy) {
14298   case MVT::i8:  return X86::LCMPXCHG8;
14299   case MVT::i16: return X86::LCMPXCHG16;
14300   case MVT::i32: return X86::LCMPXCHG32;
14301   case MVT::i64: return X86::LCMPXCHG64;
14302   default:
14303     break;
14304   }
14305   llvm_unreachable("Invalid operand size!");
14306 }
14307
14308 // Get LOAD opcode for the specified data type.
14309 static unsigned getLoadOpcode(EVT VT) {
14310   switch (VT.getSimpleVT().SimpleTy) {
14311   case MVT::i8:  return X86::MOV8rm;
14312   case MVT::i16: return X86::MOV16rm;
14313   case MVT::i32: return X86::MOV32rm;
14314   case MVT::i64: return X86::MOV64rm;
14315   default:
14316     break;
14317   }
14318   llvm_unreachable("Invalid operand size!");
14319 }
14320
14321 // Get opcode of the non-atomic one from the specified atomic instruction.
14322 static unsigned getNonAtomicOpcode(unsigned Opc) {
14323   switch (Opc) {
14324   case X86::ATOMAND8:  return X86::AND8rr;
14325   case X86::ATOMAND16: return X86::AND16rr;
14326   case X86::ATOMAND32: return X86::AND32rr;
14327   case X86::ATOMAND64: return X86::AND64rr;
14328   case X86::ATOMOR8:   return X86::OR8rr;
14329   case X86::ATOMOR16:  return X86::OR16rr;
14330   case X86::ATOMOR32:  return X86::OR32rr;
14331   case X86::ATOMOR64:  return X86::OR64rr;
14332   case X86::ATOMXOR8:  return X86::XOR8rr;
14333   case X86::ATOMXOR16: return X86::XOR16rr;
14334   case X86::ATOMXOR32: return X86::XOR32rr;
14335   case X86::ATOMXOR64: return X86::XOR64rr;
14336   }
14337   llvm_unreachable("Unhandled atomic-load-op opcode!");
14338 }
14339
14340 // Get opcode of the non-atomic one from the specified atomic instruction with
14341 // extra opcode.
14342 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14343                                                unsigned &ExtraOpc) {
14344   switch (Opc) {
14345   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14346   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14347   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14348   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14349   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14350   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14351   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14352   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14353   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14354   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14355   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14356   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14357   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14358   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14359   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14360   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14361   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14362   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14363   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14364   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14365   }
14366   llvm_unreachable("Unhandled atomic-load-op opcode!");
14367 }
14368
14369 // Get opcode of the non-atomic one from the specified atomic instruction for
14370 // 64-bit data type on 32-bit target.
14371 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14372   switch (Opc) {
14373   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14374   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14375   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14376   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14377   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14378   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14379   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14380   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14381   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14382   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14383   }
14384   llvm_unreachable("Unhandled atomic-load-op opcode!");
14385 }
14386
14387 // Get opcode of the non-atomic one from the specified atomic instruction for
14388 // 64-bit data type on 32-bit target with extra opcode.
14389 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14390                                                    unsigned &HiOpc,
14391                                                    unsigned &ExtraOpc) {
14392   switch (Opc) {
14393   case X86::ATOMNAND6432:
14394     ExtraOpc = X86::NOT32r;
14395     HiOpc = X86::AND32rr;
14396     return X86::AND32rr;
14397   }
14398   llvm_unreachable("Unhandled atomic-load-op opcode!");
14399 }
14400
14401 // Get pseudo CMOV opcode from the specified data type.
14402 static unsigned getPseudoCMOVOpc(EVT VT) {
14403   switch (VT.getSimpleVT().SimpleTy) {
14404   case MVT::i8:  return X86::CMOV_GR8;
14405   case MVT::i16: return X86::CMOV_GR16;
14406   case MVT::i32: return X86::CMOV_GR32;
14407   default:
14408     break;
14409   }
14410   llvm_unreachable("Unknown CMOV opcode!");
14411 }
14412
14413 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14414 // They will be translated into a spin-loop or compare-exchange loop from
14415 //
14416 //    ...
14417 //    dst = atomic-fetch-op MI.addr, MI.val
14418 //    ...
14419 //
14420 // to
14421 //
14422 //    ...
14423 //    t1 = LOAD MI.addr
14424 // loop:
14425 //    t4 = phi(t1, t3 / loop)
14426 //    t2 = OP MI.val, t4
14427 //    EAX = t4
14428 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14429 //    t3 = EAX
14430 //    JNE loop
14431 // sink:
14432 //    dst = t3
14433 //    ...
14434 MachineBasicBlock *
14435 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14436                                        MachineBasicBlock *MBB) const {
14437   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14438   DebugLoc DL = MI->getDebugLoc();
14439
14440   MachineFunction *MF = MBB->getParent();
14441   MachineRegisterInfo &MRI = MF->getRegInfo();
14442
14443   const BasicBlock *BB = MBB->getBasicBlock();
14444   MachineFunction::iterator I = MBB;
14445   ++I;
14446
14447   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14448          "Unexpected number of operands");
14449
14450   assert(MI->hasOneMemOperand() &&
14451          "Expected atomic-load-op to have one memoperand");
14452
14453   // Memory Reference
14454   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14455   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14456
14457   unsigned DstReg, SrcReg;
14458   unsigned MemOpndSlot;
14459
14460   unsigned CurOp = 0;
14461
14462   DstReg = MI->getOperand(CurOp++).getReg();
14463   MemOpndSlot = CurOp;
14464   CurOp += X86::AddrNumOperands;
14465   SrcReg = MI->getOperand(CurOp++).getReg();
14466
14467   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14468   MVT::SimpleValueType VT = *RC->vt_begin();
14469   unsigned t1 = MRI.createVirtualRegister(RC);
14470   unsigned t2 = MRI.createVirtualRegister(RC);
14471   unsigned t3 = MRI.createVirtualRegister(RC);
14472   unsigned t4 = MRI.createVirtualRegister(RC);
14473   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14474
14475   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14476   unsigned LOADOpc = getLoadOpcode(VT);
14477
14478   // For the atomic load-arith operator, we generate
14479   //
14480   //  thisMBB:
14481   //    t1 = LOAD [MI.addr]
14482   //  mainMBB:
14483   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14484   //    t1 = OP MI.val, EAX
14485   //    EAX = t4
14486   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14487   //    t3 = EAX
14488   //    JNE mainMBB
14489   //  sinkMBB:
14490   //    dst = t3
14491
14492   MachineBasicBlock *thisMBB = MBB;
14493   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14494   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14495   MF->insert(I, mainMBB);
14496   MF->insert(I, sinkMBB);
14497
14498   MachineInstrBuilder MIB;
14499
14500   // Transfer the remainder of BB and its successor edges to sinkMBB.
14501   sinkMBB->splice(sinkMBB->begin(), MBB,
14502                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14503   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14504
14505   // thisMBB:
14506   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14507   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14508     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14509     if (NewMO.isReg())
14510       NewMO.setIsKill(false);
14511     MIB.addOperand(NewMO);
14512   }
14513   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14514     unsigned flags = (*MMOI)->getFlags();
14515     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14516     MachineMemOperand *MMO =
14517       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14518                                (*MMOI)->getSize(),
14519                                (*MMOI)->getBaseAlignment(),
14520                                (*MMOI)->getTBAAInfo(),
14521                                (*MMOI)->getRanges());
14522     MIB.addMemOperand(MMO);
14523   }
14524
14525   thisMBB->addSuccessor(mainMBB);
14526
14527   // mainMBB:
14528   MachineBasicBlock *origMainMBB = mainMBB;
14529
14530   // Add a PHI.
14531   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14532                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14533
14534   unsigned Opc = MI->getOpcode();
14535   switch (Opc) {
14536   default:
14537     llvm_unreachable("Unhandled atomic-load-op opcode!");
14538   case X86::ATOMAND8:
14539   case X86::ATOMAND16:
14540   case X86::ATOMAND32:
14541   case X86::ATOMAND64:
14542   case X86::ATOMOR8:
14543   case X86::ATOMOR16:
14544   case X86::ATOMOR32:
14545   case X86::ATOMOR64:
14546   case X86::ATOMXOR8:
14547   case X86::ATOMXOR16:
14548   case X86::ATOMXOR32:
14549   case X86::ATOMXOR64: {
14550     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14551     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14552       .addReg(t4);
14553     break;
14554   }
14555   case X86::ATOMNAND8:
14556   case X86::ATOMNAND16:
14557   case X86::ATOMNAND32:
14558   case X86::ATOMNAND64: {
14559     unsigned Tmp = MRI.createVirtualRegister(RC);
14560     unsigned NOTOpc;
14561     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14562     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14563       .addReg(t4);
14564     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14565     break;
14566   }
14567   case X86::ATOMMAX8:
14568   case X86::ATOMMAX16:
14569   case X86::ATOMMAX32:
14570   case X86::ATOMMAX64:
14571   case X86::ATOMMIN8:
14572   case X86::ATOMMIN16:
14573   case X86::ATOMMIN32:
14574   case X86::ATOMMIN64:
14575   case X86::ATOMUMAX8:
14576   case X86::ATOMUMAX16:
14577   case X86::ATOMUMAX32:
14578   case X86::ATOMUMAX64:
14579   case X86::ATOMUMIN8:
14580   case X86::ATOMUMIN16:
14581   case X86::ATOMUMIN32:
14582   case X86::ATOMUMIN64: {
14583     unsigned CMPOpc;
14584     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14585
14586     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14587       .addReg(SrcReg)
14588       .addReg(t4);
14589
14590     if (Subtarget->hasCMov()) {
14591       if (VT != MVT::i8) {
14592         // Native support
14593         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14594           .addReg(SrcReg)
14595           .addReg(t4);
14596       } else {
14597         // Promote i8 to i32 to use CMOV32
14598         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14599         const TargetRegisterClass *RC32 =
14600           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14601         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14602         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14603         unsigned Tmp = MRI.createVirtualRegister(RC32);
14604
14605         unsigned Undef = MRI.createVirtualRegister(RC32);
14606         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14607
14608         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14609           .addReg(Undef)
14610           .addReg(SrcReg)
14611           .addImm(X86::sub_8bit);
14612         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14613           .addReg(Undef)
14614           .addReg(t4)
14615           .addImm(X86::sub_8bit);
14616
14617         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14618           .addReg(SrcReg32)
14619           .addReg(AccReg32);
14620
14621         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14622           .addReg(Tmp, 0, X86::sub_8bit);
14623       }
14624     } else {
14625       // Use pseudo select and lower them.
14626       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14627              "Invalid atomic-load-op transformation!");
14628       unsigned SelOpc = getPseudoCMOVOpc(VT);
14629       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14630       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14631       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14632               .addReg(SrcReg).addReg(t4)
14633               .addImm(CC);
14634       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14635       // Replace the original PHI node as mainMBB is changed after CMOV
14636       // lowering.
14637       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14638         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14639       Phi->eraseFromParent();
14640     }
14641     break;
14642   }
14643   }
14644
14645   // Copy PhyReg back from virtual register.
14646   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14647     .addReg(t4);
14648
14649   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14650   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14651     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14652     if (NewMO.isReg())
14653       NewMO.setIsKill(false);
14654     MIB.addOperand(NewMO);
14655   }
14656   MIB.addReg(t2);
14657   MIB.setMemRefs(MMOBegin, MMOEnd);
14658
14659   // Copy PhyReg back to virtual register.
14660   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14661     .addReg(PhyReg);
14662
14663   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14664
14665   mainMBB->addSuccessor(origMainMBB);
14666   mainMBB->addSuccessor(sinkMBB);
14667
14668   // sinkMBB:
14669   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14670           TII->get(TargetOpcode::COPY), DstReg)
14671     .addReg(t3);
14672
14673   MI->eraseFromParent();
14674   return sinkMBB;
14675 }
14676
14677 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14678 // instructions. They will be translated into a spin-loop or compare-exchange
14679 // loop from
14680 //
14681 //    ...
14682 //    dst = atomic-fetch-op MI.addr, MI.val
14683 //    ...
14684 //
14685 // to
14686 //
14687 //    ...
14688 //    t1L = LOAD [MI.addr + 0]
14689 //    t1H = LOAD [MI.addr + 4]
14690 // loop:
14691 //    t4L = phi(t1L, t3L / loop)
14692 //    t4H = phi(t1H, t3H / loop)
14693 //    t2L = OP MI.val.lo, t4L
14694 //    t2H = OP MI.val.hi, t4H
14695 //    EAX = t4L
14696 //    EDX = t4H
14697 //    EBX = t2L
14698 //    ECX = t2H
14699 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14700 //    t3L = EAX
14701 //    t3H = EDX
14702 //    JNE loop
14703 // sink:
14704 //    dstL = t3L
14705 //    dstH = t3H
14706 //    ...
14707 MachineBasicBlock *
14708 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14709                                            MachineBasicBlock *MBB) const {
14710   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14711   DebugLoc DL = MI->getDebugLoc();
14712
14713   MachineFunction *MF = MBB->getParent();
14714   MachineRegisterInfo &MRI = MF->getRegInfo();
14715
14716   const BasicBlock *BB = MBB->getBasicBlock();
14717   MachineFunction::iterator I = MBB;
14718   ++I;
14719
14720   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14721          "Unexpected number of operands");
14722
14723   assert(MI->hasOneMemOperand() &&
14724          "Expected atomic-load-op32 to have one memoperand");
14725
14726   // Memory Reference
14727   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14728   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14729
14730   unsigned DstLoReg, DstHiReg;
14731   unsigned SrcLoReg, SrcHiReg;
14732   unsigned MemOpndSlot;
14733
14734   unsigned CurOp = 0;
14735
14736   DstLoReg = MI->getOperand(CurOp++).getReg();
14737   DstHiReg = MI->getOperand(CurOp++).getReg();
14738   MemOpndSlot = CurOp;
14739   CurOp += X86::AddrNumOperands;
14740   SrcLoReg = MI->getOperand(CurOp++).getReg();
14741   SrcHiReg = MI->getOperand(CurOp++).getReg();
14742
14743   const TargetRegisterClass *RC = &X86::GR32RegClass;
14744   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14745
14746   unsigned t1L = MRI.createVirtualRegister(RC);
14747   unsigned t1H = MRI.createVirtualRegister(RC);
14748   unsigned t2L = MRI.createVirtualRegister(RC);
14749   unsigned t2H = MRI.createVirtualRegister(RC);
14750   unsigned t3L = MRI.createVirtualRegister(RC);
14751   unsigned t3H = MRI.createVirtualRegister(RC);
14752   unsigned t4L = MRI.createVirtualRegister(RC);
14753   unsigned t4H = MRI.createVirtualRegister(RC);
14754
14755   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14756   unsigned LOADOpc = X86::MOV32rm;
14757
14758   // For the atomic load-arith operator, we generate
14759   //
14760   //  thisMBB:
14761   //    t1L = LOAD [MI.addr + 0]
14762   //    t1H = LOAD [MI.addr + 4]
14763   //  mainMBB:
14764   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14765   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14766   //    t2L = OP MI.val.lo, t4L
14767   //    t2H = OP MI.val.hi, t4H
14768   //    EBX = t2L
14769   //    ECX = t2H
14770   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14771   //    t3L = EAX
14772   //    t3H = EDX
14773   //    JNE loop
14774   //  sinkMBB:
14775   //    dstL = t3L
14776   //    dstH = t3H
14777
14778   MachineBasicBlock *thisMBB = MBB;
14779   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14780   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14781   MF->insert(I, mainMBB);
14782   MF->insert(I, sinkMBB);
14783
14784   MachineInstrBuilder MIB;
14785
14786   // Transfer the remainder of BB and its successor edges to sinkMBB.
14787   sinkMBB->splice(sinkMBB->begin(), MBB,
14788                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14789   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14790
14791   // thisMBB:
14792   // Lo
14793   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14794   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14795     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14796     if (NewMO.isReg())
14797       NewMO.setIsKill(false);
14798     MIB.addOperand(NewMO);
14799   }
14800   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14801     unsigned flags = (*MMOI)->getFlags();
14802     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14803     MachineMemOperand *MMO =
14804       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14805                                (*MMOI)->getSize(),
14806                                (*MMOI)->getBaseAlignment(),
14807                                (*MMOI)->getTBAAInfo(),
14808                                (*MMOI)->getRanges());
14809     MIB.addMemOperand(MMO);
14810   };
14811   MachineInstr *LowMI = MIB;
14812
14813   // Hi
14814   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14815   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14816     if (i == X86::AddrDisp) {
14817       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14818     } else {
14819       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14820       if (NewMO.isReg())
14821         NewMO.setIsKill(false);
14822       MIB.addOperand(NewMO);
14823     }
14824   }
14825   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14826
14827   thisMBB->addSuccessor(mainMBB);
14828
14829   // mainMBB:
14830   MachineBasicBlock *origMainMBB = mainMBB;
14831
14832   // Add PHIs.
14833   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14834                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14835   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14836                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14837
14838   unsigned Opc = MI->getOpcode();
14839   switch (Opc) {
14840   default:
14841     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14842   case X86::ATOMAND6432:
14843   case X86::ATOMOR6432:
14844   case X86::ATOMXOR6432:
14845   case X86::ATOMADD6432:
14846   case X86::ATOMSUB6432: {
14847     unsigned HiOpc;
14848     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14849     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14850       .addReg(SrcLoReg);
14851     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14852       .addReg(SrcHiReg);
14853     break;
14854   }
14855   case X86::ATOMNAND6432: {
14856     unsigned HiOpc, NOTOpc;
14857     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14858     unsigned TmpL = MRI.createVirtualRegister(RC);
14859     unsigned TmpH = MRI.createVirtualRegister(RC);
14860     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14861       .addReg(t4L);
14862     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14863       .addReg(t4H);
14864     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14865     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14866     break;
14867   }
14868   case X86::ATOMMAX6432:
14869   case X86::ATOMMIN6432:
14870   case X86::ATOMUMAX6432:
14871   case X86::ATOMUMIN6432: {
14872     unsigned HiOpc;
14873     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14874     unsigned cL = MRI.createVirtualRegister(RC8);
14875     unsigned cH = MRI.createVirtualRegister(RC8);
14876     unsigned cL32 = MRI.createVirtualRegister(RC);
14877     unsigned cH32 = MRI.createVirtualRegister(RC);
14878     unsigned cc = MRI.createVirtualRegister(RC);
14879     // cl := cmp src_lo, lo
14880     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14881       .addReg(SrcLoReg).addReg(t4L);
14882     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14883     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14884     // ch := cmp src_hi, hi
14885     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14886       .addReg(SrcHiReg).addReg(t4H);
14887     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14888     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14889     // cc := if (src_hi == hi) ? cl : ch;
14890     if (Subtarget->hasCMov()) {
14891       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14892         .addReg(cH32).addReg(cL32);
14893     } else {
14894       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14895               .addReg(cH32).addReg(cL32)
14896               .addImm(X86::COND_E);
14897       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14898     }
14899     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14900     if (Subtarget->hasCMov()) {
14901       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14902         .addReg(SrcLoReg).addReg(t4L);
14903       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14904         .addReg(SrcHiReg).addReg(t4H);
14905     } else {
14906       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14907               .addReg(SrcLoReg).addReg(t4L)
14908               .addImm(X86::COND_NE);
14909       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14910       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14911       // 2nd CMOV lowering.
14912       mainMBB->addLiveIn(X86::EFLAGS);
14913       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14914               .addReg(SrcHiReg).addReg(t4H)
14915               .addImm(X86::COND_NE);
14916       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14917       // Replace the original PHI node as mainMBB is changed after CMOV
14918       // lowering.
14919       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14920         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14921       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14922         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14923       PhiL->eraseFromParent();
14924       PhiH->eraseFromParent();
14925     }
14926     break;
14927   }
14928   case X86::ATOMSWAP6432: {
14929     unsigned HiOpc;
14930     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14931     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14932     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14933     break;
14934   }
14935   }
14936
14937   // Copy EDX:EAX back from HiReg:LoReg
14938   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14939   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14940   // Copy ECX:EBX from t1H:t1L
14941   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14942   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14943
14944   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14945   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14946     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14947     if (NewMO.isReg())
14948       NewMO.setIsKill(false);
14949     MIB.addOperand(NewMO);
14950   }
14951   MIB.setMemRefs(MMOBegin, MMOEnd);
14952
14953   // Copy EDX:EAX back to t3H:t3L
14954   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14955   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14956
14957   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14958
14959   mainMBB->addSuccessor(origMainMBB);
14960   mainMBB->addSuccessor(sinkMBB);
14961
14962   // sinkMBB:
14963   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14964           TII->get(TargetOpcode::COPY), DstLoReg)
14965     .addReg(t3L);
14966   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14967           TII->get(TargetOpcode::COPY), DstHiReg)
14968     .addReg(t3H);
14969
14970   MI->eraseFromParent();
14971   return sinkMBB;
14972 }
14973
14974 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14975 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14976 // in the .td file.
14977 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14978                                        const TargetInstrInfo *TII) {
14979   unsigned Opc;
14980   switch (MI->getOpcode()) {
14981   default: llvm_unreachable("illegal opcode!");
14982   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14983   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14984   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14985   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14986   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
14987   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14988   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
14989   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
14990   }
14991
14992   DebugLoc dl = MI->getDebugLoc();
14993   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
14994
14995   unsigned NumArgs = MI->getNumOperands();
14996   for (unsigned i = 1; i < NumArgs; ++i) {
14997     MachineOperand &Op = MI->getOperand(i);
14998     if (!(Op.isReg() && Op.isImplicit()))
14999       MIB.addOperand(Op);
15000   }
15001   if (MI->hasOneMemOperand())
15002     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15003
15004   BuildMI(*BB, MI, dl,
15005     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15006     .addReg(X86::XMM0);
15007
15008   MI->eraseFromParent();
15009   return BB;
15010 }
15011
15012 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15013 // defs in an instruction pattern
15014 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15015                                        const TargetInstrInfo *TII) {
15016   unsigned Opc;
15017   switch (MI->getOpcode()) {
15018   default: llvm_unreachable("illegal opcode!");
15019   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
15020   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
15021   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
15022   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
15023   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
15024   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
15025   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
15026   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
15027   }
15028
15029   DebugLoc dl = MI->getDebugLoc();
15030   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15031
15032   unsigned NumArgs = MI->getNumOperands(); // remove the results
15033   for (unsigned i = 1; i < NumArgs; ++i) {
15034     MachineOperand &Op = MI->getOperand(i);
15035     if (!(Op.isReg() && Op.isImplicit()))
15036       MIB.addOperand(Op);
15037   }
15038   if (MI->hasOneMemOperand())
15039     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15040
15041   BuildMI(*BB, MI, dl,
15042     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15043     .addReg(X86::ECX);
15044
15045   MI->eraseFromParent();
15046   return BB;
15047 }
15048
15049 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
15050                                        const TargetInstrInfo *TII,
15051                                        const X86Subtarget* Subtarget) {
15052   DebugLoc dl = MI->getDebugLoc();
15053
15054   // Address into RAX/EAX, other two args into ECX, EDX.
15055   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
15056   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
15057   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
15058   for (int i = 0; i < X86::AddrNumOperands; ++i)
15059     MIB.addOperand(MI->getOperand(i));
15060
15061   unsigned ValOps = X86::AddrNumOperands;
15062   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
15063     .addReg(MI->getOperand(ValOps).getReg());
15064   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
15065     .addReg(MI->getOperand(ValOps+1).getReg());
15066
15067   // The instruction doesn't actually take any operands though.
15068   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
15069
15070   MI->eraseFromParent(); // The pseudo is gone now.
15071   return BB;
15072 }
15073
15074 MachineBasicBlock *
15075 X86TargetLowering::EmitVAARG64WithCustomInserter(
15076                    MachineInstr *MI,
15077                    MachineBasicBlock *MBB) const {
15078   // Emit va_arg instruction on X86-64.
15079
15080   // Operands to this pseudo-instruction:
15081   // 0  ) Output        : destination address (reg)
15082   // 1-5) Input         : va_list address (addr, i64mem)
15083   // 6  ) ArgSize       : Size (in bytes) of vararg type
15084   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
15085   // 8  ) Align         : Alignment of type
15086   // 9  ) EFLAGS (implicit-def)
15087
15088   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
15089   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
15090
15091   unsigned DestReg = MI->getOperand(0).getReg();
15092   MachineOperand &Base = MI->getOperand(1);
15093   MachineOperand &Scale = MI->getOperand(2);
15094   MachineOperand &Index = MI->getOperand(3);
15095   MachineOperand &Disp = MI->getOperand(4);
15096   MachineOperand &Segment = MI->getOperand(5);
15097   unsigned ArgSize = MI->getOperand(6).getImm();
15098   unsigned ArgMode = MI->getOperand(7).getImm();
15099   unsigned Align = MI->getOperand(8).getImm();
15100
15101   // Memory Reference
15102   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
15103   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15104   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15105
15106   // Machine Information
15107   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15108   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
15109   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
15110   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
15111   DebugLoc DL = MI->getDebugLoc();
15112
15113   // struct va_list {
15114   //   i32   gp_offset
15115   //   i32   fp_offset
15116   //   i64   overflow_area (address)
15117   //   i64   reg_save_area (address)
15118   // }
15119   // sizeof(va_list) = 24
15120   // alignment(va_list) = 8
15121
15122   unsigned TotalNumIntRegs = 6;
15123   unsigned TotalNumXMMRegs = 8;
15124   bool UseGPOffset = (ArgMode == 1);
15125   bool UseFPOffset = (ArgMode == 2);
15126   unsigned MaxOffset = TotalNumIntRegs * 8 +
15127                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
15128
15129   /* Align ArgSize to a multiple of 8 */
15130   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
15131   bool NeedsAlign = (Align > 8);
15132
15133   MachineBasicBlock *thisMBB = MBB;
15134   MachineBasicBlock *overflowMBB;
15135   MachineBasicBlock *offsetMBB;
15136   MachineBasicBlock *endMBB;
15137
15138   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
15139   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
15140   unsigned OffsetReg = 0;
15141
15142   if (!UseGPOffset && !UseFPOffset) {
15143     // If we only pull from the overflow region, we don't create a branch.
15144     // We don't need to alter control flow.
15145     OffsetDestReg = 0; // unused
15146     OverflowDestReg = DestReg;
15147
15148     offsetMBB = NULL;
15149     overflowMBB = thisMBB;
15150     endMBB = thisMBB;
15151   } else {
15152     // First emit code to check if gp_offset (or fp_offset) is below the bound.
15153     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15154     // If not, pull from overflow_area. (branch to overflowMBB)
15155     //
15156     //       thisMBB
15157     //         |     .
15158     //         |        .
15159     //     offsetMBB   overflowMBB
15160     //         |        .
15161     //         |     .
15162     //        endMBB
15163
15164     // Registers for the PHI in endMBB
15165     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
15166     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
15167
15168     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15169     MachineFunction *MF = MBB->getParent();
15170     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15171     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15172     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15173
15174     MachineFunction::iterator MBBIter = MBB;
15175     ++MBBIter;
15176
15177     // Insert the new basic blocks
15178     MF->insert(MBBIter, offsetMBB);
15179     MF->insert(MBBIter, overflowMBB);
15180     MF->insert(MBBIter, endMBB);
15181
15182     // Transfer the remainder of MBB and its successor edges to endMBB.
15183     endMBB->splice(endMBB->begin(), thisMBB,
15184                     llvm::next(MachineBasicBlock::iterator(MI)),
15185                     thisMBB->end());
15186     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
15187
15188     // Make offsetMBB and overflowMBB successors of thisMBB
15189     thisMBB->addSuccessor(offsetMBB);
15190     thisMBB->addSuccessor(overflowMBB);
15191
15192     // endMBB is a successor of both offsetMBB and overflowMBB
15193     offsetMBB->addSuccessor(endMBB);
15194     overflowMBB->addSuccessor(endMBB);
15195
15196     // Load the offset value into a register
15197     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15198     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
15199       .addOperand(Base)
15200       .addOperand(Scale)
15201       .addOperand(Index)
15202       .addDisp(Disp, UseFPOffset ? 4 : 0)
15203       .addOperand(Segment)
15204       .setMemRefs(MMOBegin, MMOEnd);
15205
15206     // Check if there is enough room left to pull this argument.
15207     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15208       .addReg(OffsetReg)
15209       .addImm(MaxOffset + 8 - ArgSizeA8);
15210
15211     // Branch to "overflowMBB" if offset >= max
15212     // Fall through to "offsetMBB" otherwise
15213     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15214       .addMBB(overflowMBB);
15215   }
15216
15217   // In offsetMBB, emit code to use the reg_save_area.
15218   if (offsetMBB) {
15219     assert(OffsetReg != 0);
15220
15221     // Read the reg_save_area address.
15222     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15223     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15224       .addOperand(Base)
15225       .addOperand(Scale)
15226       .addOperand(Index)
15227       .addDisp(Disp, 16)
15228       .addOperand(Segment)
15229       .setMemRefs(MMOBegin, MMOEnd);
15230
15231     // Zero-extend the offset
15232     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15233       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15234         .addImm(0)
15235         .addReg(OffsetReg)
15236         .addImm(X86::sub_32bit);
15237
15238     // Add the offset to the reg_save_area to get the final address.
15239     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15240       .addReg(OffsetReg64)
15241       .addReg(RegSaveReg);
15242
15243     // Compute the offset for the next argument
15244     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15245     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15246       .addReg(OffsetReg)
15247       .addImm(UseFPOffset ? 16 : 8);
15248
15249     // Store it back into the va_list.
15250     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15251       .addOperand(Base)
15252       .addOperand(Scale)
15253       .addOperand(Index)
15254       .addDisp(Disp, UseFPOffset ? 4 : 0)
15255       .addOperand(Segment)
15256       .addReg(NextOffsetReg)
15257       .setMemRefs(MMOBegin, MMOEnd);
15258
15259     // Jump to endMBB
15260     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15261       .addMBB(endMBB);
15262   }
15263
15264   //
15265   // Emit code to use overflow area
15266   //
15267
15268   // Load the overflow_area address into a register.
15269   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15270   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15271     .addOperand(Base)
15272     .addOperand(Scale)
15273     .addOperand(Index)
15274     .addDisp(Disp, 8)
15275     .addOperand(Segment)
15276     .setMemRefs(MMOBegin, MMOEnd);
15277
15278   // If we need to align it, do so. Otherwise, just copy the address
15279   // to OverflowDestReg.
15280   if (NeedsAlign) {
15281     // Align the overflow address
15282     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15283     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15284
15285     // aligned_addr = (addr + (align-1)) & ~(align-1)
15286     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15287       .addReg(OverflowAddrReg)
15288       .addImm(Align-1);
15289
15290     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15291       .addReg(TmpReg)
15292       .addImm(~(uint64_t)(Align-1));
15293   } else {
15294     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15295       .addReg(OverflowAddrReg);
15296   }
15297
15298   // Compute the next overflow address after this argument.
15299   // (the overflow address should be kept 8-byte aligned)
15300   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15301   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15302     .addReg(OverflowDestReg)
15303     .addImm(ArgSizeA8);
15304
15305   // Store the new overflow address.
15306   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15307     .addOperand(Base)
15308     .addOperand(Scale)
15309     .addOperand(Index)
15310     .addDisp(Disp, 8)
15311     .addOperand(Segment)
15312     .addReg(NextAddrReg)
15313     .setMemRefs(MMOBegin, MMOEnd);
15314
15315   // If we branched, emit the PHI to the front of endMBB.
15316   if (offsetMBB) {
15317     BuildMI(*endMBB, endMBB->begin(), DL,
15318             TII->get(X86::PHI), DestReg)
15319       .addReg(OffsetDestReg).addMBB(offsetMBB)
15320       .addReg(OverflowDestReg).addMBB(overflowMBB);
15321   }
15322
15323   // Erase the pseudo instruction
15324   MI->eraseFromParent();
15325
15326   return endMBB;
15327 }
15328
15329 MachineBasicBlock *
15330 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15331                                                  MachineInstr *MI,
15332                                                  MachineBasicBlock *MBB) const {
15333   // Emit code to save XMM registers to the stack. The ABI says that the
15334   // number of registers to save is given in %al, so it's theoretically
15335   // possible to do an indirect jump trick to avoid saving all of them,
15336   // however this code takes a simpler approach and just executes all
15337   // of the stores if %al is non-zero. It's less code, and it's probably
15338   // easier on the hardware branch predictor, and stores aren't all that
15339   // expensive anyway.
15340
15341   // Create the new basic blocks. One block contains all the XMM stores,
15342   // and one block is the final destination regardless of whether any
15343   // stores were performed.
15344   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15345   MachineFunction *F = MBB->getParent();
15346   MachineFunction::iterator MBBIter = MBB;
15347   ++MBBIter;
15348   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15349   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15350   F->insert(MBBIter, XMMSaveMBB);
15351   F->insert(MBBIter, EndMBB);
15352
15353   // Transfer the remainder of MBB and its successor edges to EndMBB.
15354   EndMBB->splice(EndMBB->begin(), MBB,
15355                  llvm::next(MachineBasicBlock::iterator(MI)),
15356                  MBB->end());
15357   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15358
15359   // The original block will now fall through to the XMM save block.
15360   MBB->addSuccessor(XMMSaveMBB);
15361   // The XMMSaveMBB will fall through to the end block.
15362   XMMSaveMBB->addSuccessor(EndMBB);
15363
15364   // Now add the instructions.
15365   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15366   DebugLoc DL = MI->getDebugLoc();
15367
15368   unsigned CountReg = MI->getOperand(0).getReg();
15369   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15370   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15371
15372   if (!Subtarget->isTargetWin64()) {
15373     // If %al is 0, branch around the XMM save block.
15374     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15375     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15376     MBB->addSuccessor(EndMBB);
15377   }
15378
15379   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
15380   // that was just emitted, but clearly shouldn't be "saved".
15381   assert((MI->getNumOperands() <= 3 ||
15382           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
15383           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
15384          && "Expected last argument to be EFLAGS");
15385   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15386   // In the XMM save block, save all the XMM argument registers.
15387   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
15388     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15389     MachineMemOperand *MMO =
15390       F->getMachineMemOperand(
15391           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15392         MachineMemOperand::MOStore,
15393         /*Size=*/16, /*Align=*/16);
15394     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15395       .addFrameIndex(RegSaveFrameIndex)
15396       .addImm(/*Scale=*/1)
15397       .addReg(/*IndexReg=*/0)
15398       .addImm(/*Disp=*/Offset)
15399       .addReg(/*Segment=*/0)
15400       .addReg(MI->getOperand(i).getReg())
15401       .addMemOperand(MMO);
15402   }
15403
15404   MI->eraseFromParent();   // The pseudo instruction is gone now.
15405
15406   return EndMBB;
15407 }
15408
15409 // The EFLAGS operand of SelectItr might be missing a kill marker
15410 // because there were multiple uses of EFLAGS, and ISel didn't know
15411 // which to mark. Figure out whether SelectItr should have had a
15412 // kill marker, and set it if it should. Returns the correct kill
15413 // marker value.
15414 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15415                                      MachineBasicBlock* BB,
15416                                      const TargetRegisterInfo* TRI) {
15417   // Scan forward through BB for a use/def of EFLAGS.
15418   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15419   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15420     const MachineInstr& mi = *miI;
15421     if (mi.readsRegister(X86::EFLAGS))
15422       return false;
15423     if (mi.definesRegister(X86::EFLAGS))
15424       break; // Should have kill-flag - update below.
15425   }
15426
15427   // If we hit the end of the block, check whether EFLAGS is live into a
15428   // successor.
15429   if (miI == BB->end()) {
15430     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15431                                           sEnd = BB->succ_end();
15432          sItr != sEnd; ++sItr) {
15433       MachineBasicBlock* succ = *sItr;
15434       if (succ->isLiveIn(X86::EFLAGS))
15435         return false;
15436     }
15437   }
15438
15439   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15440   // out. SelectMI should have a kill flag on EFLAGS.
15441   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15442   return true;
15443 }
15444
15445 MachineBasicBlock *
15446 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15447                                      MachineBasicBlock *BB) const {
15448   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15449   DebugLoc DL = MI->getDebugLoc();
15450
15451   // To "insert" a SELECT_CC instruction, we actually have to insert the
15452   // diamond control-flow pattern.  The incoming instruction knows the
15453   // destination vreg to set, the condition code register to branch on, the
15454   // true/false values to select between, and a branch opcode to use.
15455   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15456   MachineFunction::iterator It = BB;
15457   ++It;
15458
15459   //  thisMBB:
15460   //  ...
15461   //   TrueVal = ...
15462   //   cmpTY ccX, r1, r2
15463   //   bCC copy1MBB
15464   //   fallthrough --> copy0MBB
15465   MachineBasicBlock *thisMBB = BB;
15466   MachineFunction *F = BB->getParent();
15467   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15468   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15469   F->insert(It, copy0MBB);
15470   F->insert(It, sinkMBB);
15471
15472   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15473   // live into the sink and copy blocks.
15474   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15475   if (!MI->killsRegister(X86::EFLAGS) &&
15476       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15477     copy0MBB->addLiveIn(X86::EFLAGS);
15478     sinkMBB->addLiveIn(X86::EFLAGS);
15479   }
15480
15481   // Transfer the remainder of BB and its successor edges to sinkMBB.
15482   sinkMBB->splice(sinkMBB->begin(), BB,
15483                   llvm::next(MachineBasicBlock::iterator(MI)),
15484                   BB->end());
15485   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15486
15487   // Add the true and fallthrough blocks as its successors.
15488   BB->addSuccessor(copy0MBB);
15489   BB->addSuccessor(sinkMBB);
15490
15491   // Create the conditional branch instruction.
15492   unsigned Opc =
15493     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15494   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15495
15496   //  copy0MBB:
15497   //   %FalseValue = ...
15498   //   # fallthrough to sinkMBB
15499   copy0MBB->addSuccessor(sinkMBB);
15500
15501   //  sinkMBB:
15502   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15503   //  ...
15504   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15505           TII->get(X86::PHI), MI->getOperand(0).getReg())
15506     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15507     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15508
15509   MI->eraseFromParent();   // The pseudo instruction is gone now.
15510   return sinkMBB;
15511 }
15512
15513 MachineBasicBlock *
15514 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15515                                         bool Is64Bit) const {
15516   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15517   DebugLoc DL = MI->getDebugLoc();
15518   MachineFunction *MF = BB->getParent();
15519   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15520
15521   assert(getTargetMachine().Options.EnableSegmentedStacks);
15522
15523   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15524   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15525
15526   // BB:
15527   //  ... [Till the alloca]
15528   // If stacklet is not large enough, jump to mallocMBB
15529   //
15530   // bumpMBB:
15531   //  Allocate by subtracting from RSP
15532   //  Jump to continueMBB
15533   //
15534   // mallocMBB:
15535   //  Allocate by call to runtime
15536   //
15537   // continueMBB:
15538   //  ...
15539   //  [rest of original BB]
15540   //
15541
15542   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15543   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15544   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15545
15546   MachineRegisterInfo &MRI = MF->getRegInfo();
15547   const TargetRegisterClass *AddrRegClass =
15548     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15549
15550   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15551     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15552     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15553     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15554     sizeVReg = MI->getOperand(1).getReg(),
15555     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15556
15557   MachineFunction::iterator MBBIter = BB;
15558   ++MBBIter;
15559
15560   MF->insert(MBBIter, bumpMBB);
15561   MF->insert(MBBIter, mallocMBB);
15562   MF->insert(MBBIter, continueMBB);
15563
15564   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15565                       (MachineBasicBlock::iterator(MI)), BB->end());
15566   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15567
15568   // Add code to the main basic block to check if the stack limit has been hit,
15569   // and if so, jump to mallocMBB otherwise to bumpMBB.
15570   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15571   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15572     .addReg(tmpSPVReg).addReg(sizeVReg);
15573   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15574     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15575     .addReg(SPLimitVReg);
15576   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15577
15578   // bumpMBB simply decreases the stack pointer, since we know the current
15579   // stacklet has enough space.
15580   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15581     .addReg(SPLimitVReg);
15582   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15583     .addReg(SPLimitVReg);
15584   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15585
15586   // Calls into a routine in libgcc to allocate more space from the heap.
15587   const uint32_t *RegMask =
15588     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15589   if (Is64Bit) {
15590     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15591       .addReg(sizeVReg);
15592     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15593       .addExternalSymbol("__morestack_allocate_stack_space")
15594       .addRegMask(RegMask)
15595       .addReg(X86::RDI, RegState::Implicit)
15596       .addReg(X86::RAX, RegState::ImplicitDefine);
15597   } else {
15598     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15599       .addImm(12);
15600     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15601     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15602       .addExternalSymbol("__morestack_allocate_stack_space")
15603       .addRegMask(RegMask)
15604       .addReg(X86::EAX, RegState::ImplicitDefine);
15605   }
15606
15607   if (!Is64Bit)
15608     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15609       .addImm(16);
15610
15611   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15612     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15613   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15614
15615   // Set up the CFG correctly.
15616   BB->addSuccessor(bumpMBB);
15617   BB->addSuccessor(mallocMBB);
15618   mallocMBB->addSuccessor(continueMBB);
15619   bumpMBB->addSuccessor(continueMBB);
15620
15621   // Take care of the PHI nodes.
15622   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15623           MI->getOperand(0).getReg())
15624     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15625     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15626
15627   // Delete the original pseudo instruction.
15628   MI->eraseFromParent();
15629
15630   // And we're done.
15631   return continueMBB;
15632 }
15633
15634 MachineBasicBlock *
15635 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15636                                           MachineBasicBlock *BB) const {
15637   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15638   DebugLoc DL = MI->getDebugLoc();
15639
15640   assert(!Subtarget->isTargetMacho());
15641
15642   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15643   // non-trivial part is impdef of ESP.
15644
15645   if (Subtarget->isTargetWin64()) {
15646     if (Subtarget->isTargetCygMing()) {
15647       // ___chkstk(Mingw64):
15648       // Clobbers R10, R11, RAX and EFLAGS.
15649       // Updates RSP.
15650       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15651         .addExternalSymbol("___chkstk")
15652         .addReg(X86::RAX, RegState::Implicit)
15653         .addReg(X86::RSP, RegState::Implicit)
15654         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15655         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15656         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15657     } else {
15658       // __chkstk(MSVCRT): does not update stack pointer.
15659       // Clobbers R10, R11 and EFLAGS.
15660       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15661         .addExternalSymbol("__chkstk")
15662         .addReg(X86::RAX, RegState::Implicit)
15663         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15664       // RAX has the offset to be subtracted from RSP.
15665       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15666         .addReg(X86::RSP)
15667         .addReg(X86::RAX);
15668     }
15669   } else {
15670     const char *StackProbeSymbol =
15671       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15672
15673     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15674       .addExternalSymbol(StackProbeSymbol)
15675       .addReg(X86::EAX, RegState::Implicit)
15676       .addReg(X86::ESP, RegState::Implicit)
15677       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15678       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15679       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15680   }
15681
15682   MI->eraseFromParent();   // The pseudo instruction is gone now.
15683   return BB;
15684 }
15685
15686 MachineBasicBlock *
15687 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15688                                       MachineBasicBlock *BB) const {
15689   // This is pretty easy.  We're taking the value that we received from
15690   // our load from the relocation, sticking it in either RDI (x86-64)
15691   // or EAX and doing an indirect call.  The return value will then
15692   // be in the normal return register.
15693   const X86InstrInfo *TII
15694     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15695   DebugLoc DL = MI->getDebugLoc();
15696   MachineFunction *F = BB->getParent();
15697
15698   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15699   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15700
15701   // Get a register mask for the lowered call.
15702   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15703   // proper register mask.
15704   const uint32_t *RegMask =
15705     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15706   if (Subtarget->is64Bit()) {
15707     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15708                                       TII->get(X86::MOV64rm), X86::RDI)
15709     .addReg(X86::RIP)
15710     .addImm(0).addReg(0)
15711     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15712                       MI->getOperand(3).getTargetFlags())
15713     .addReg(0);
15714     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15715     addDirectMem(MIB, X86::RDI);
15716     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15717   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15718     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15719                                       TII->get(X86::MOV32rm), X86::EAX)
15720     .addReg(0)
15721     .addImm(0).addReg(0)
15722     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15723                       MI->getOperand(3).getTargetFlags())
15724     .addReg(0);
15725     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15726     addDirectMem(MIB, X86::EAX);
15727     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15728   } else {
15729     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15730                                       TII->get(X86::MOV32rm), X86::EAX)
15731     .addReg(TII->getGlobalBaseReg(F))
15732     .addImm(0).addReg(0)
15733     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15734                       MI->getOperand(3).getTargetFlags())
15735     .addReg(0);
15736     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15737     addDirectMem(MIB, X86::EAX);
15738     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15739   }
15740
15741   MI->eraseFromParent(); // The pseudo instruction is gone now.
15742   return BB;
15743 }
15744
15745 MachineBasicBlock *
15746 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15747                                     MachineBasicBlock *MBB) const {
15748   DebugLoc DL = MI->getDebugLoc();
15749   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15750
15751   MachineFunction *MF = MBB->getParent();
15752   MachineRegisterInfo &MRI = MF->getRegInfo();
15753
15754   const BasicBlock *BB = MBB->getBasicBlock();
15755   MachineFunction::iterator I = MBB;
15756   ++I;
15757
15758   // Memory Reference
15759   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15760   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15761
15762   unsigned DstReg;
15763   unsigned MemOpndSlot = 0;
15764
15765   unsigned CurOp = 0;
15766
15767   DstReg = MI->getOperand(CurOp++).getReg();
15768   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15769   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15770   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15771   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15772
15773   MemOpndSlot = CurOp;
15774
15775   MVT PVT = getPointerTy();
15776   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15777          "Invalid Pointer Size!");
15778
15779   // For v = setjmp(buf), we generate
15780   //
15781   // thisMBB:
15782   //  buf[LabelOffset] = restoreMBB
15783   //  SjLjSetup restoreMBB
15784   //
15785   // mainMBB:
15786   //  v_main = 0
15787   //
15788   // sinkMBB:
15789   //  v = phi(main, restore)
15790   //
15791   // restoreMBB:
15792   //  v_restore = 1
15793
15794   MachineBasicBlock *thisMBB = MBB;
15795   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15796   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15797   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15798   MF->insert(I, mainMBB);
15799   MF->insert(I, sinkMBB);
15800   MF->push_back(restoreMBB);
15801
15802   MachineInstrBuilder MIB;
15803
15804   // Transfer the remainder of BB and its successor edges to sinkMBB.
15805   sinkMBB->splice(sinkMBB->begin(), MBB,
15806                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15807   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15808
15809   // thisMBB:
15810   unsigned PtrStoreOpc = 0;
15811   unsigned LabelReg = 0;
15812   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15813   Reloc::Model RM = getTargetMachine().getRelocationModel();
15814   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15815                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15816
15817   // Prepare IP either in reg or imm.
15818   if (!UseImmLabel) {
15819     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15820     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15821     LabelReg = MRI.createVirtualRegister(PtrRC);
15822     if (Subtarget->is64Bit()) {
15823       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15824               .addReg(X86::RIP)
15825               .addImm(0)
15826               .addReg(0)
15827               .addMBB(restoreMBB)
15828               .addReg(0);
15829     } else {
15830       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15831       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15832               .addReg(XII->getGlobalBaseReg(MF))
15833               .addImm(0)
15834               .addReg(0)
15835               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15836               .addReg(0);
15837     }
15838   } else
15839     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15840   // Store IP
15841   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15842   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15843     if (i == X86::AddrDisp)
15844       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15845     else
15846       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15847   }
15848   if (!UseImmLabel)
15849     MIB.addReg(LabelReg);
15850   else
15851     MIB.addMBB(restoreMBB);
15852   MIB.setMemRefs(MMOBegin, MMOEnd);
15853   // Setup
15854   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15855           .addMBB(restoreMBB);
15856
15857   const X86RegisterInfo *RegInfo =
15858     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15859   MIB.addRegMask(RegInfo->getNoPreservedMask());
15860   thisMBB->addSuccessor(mainMBB);
15861   thisMBB->addSuccessor(restoreMBB);
15862
15863   // mainMBB:
15864   //  EAX = 0
15865   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15866   mainMBB->addSuccessor(sinkMBB);
15867
15868   // sinkMBB:
15869   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15870           TII->get(X86::PHI), DstReg)
15871     .addReg(mainDstReg).addMBB(mainMBB)
15872     .addReg(restoreDstReg).addMBB(restoreMBB);
15873
15874   // restoreMBB:
15875   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15876   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15877   restoreMBB->addSuccessor(sinkMBB);
15878
15879   MI->eraseFromParent();
15880   return sinkMBB;
15881 }
15882
15883 MachineBasicBlock *
15884 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15885                                      MachineBasicBlock *MBB) const {
15886   DebugLoc DL = MI->getDebugLoc();
15887   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15888
15889   MachineFunction *MF = MBB->getParent();
15890   MachineRegisterInfo &MRI = MF->getRegInfo();
15891
15892   // Memory Reference
15893   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15894   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15895
15896   MVT PVT = getPointerTy();
15897   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15898          "Invalid Pointer Size!");
15899
15900   const TargetRegisterClass *RC =
15901     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15902   unsigned Tmp = MRI.createVirtualRegister(RC);
15903   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15904   const X86RegisterInfo *RegInfo =
15905     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15906   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15907   unsigned SP = RegInfo->getStackRegister();
15908
15909   MachineInstrBuilder MIB;
15910
15911   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15912   const int64_t SPOffset = 2 * PVT.getStoreSize();
15913
15914   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15915   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15916
15917   // Reload FP
15918   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15919   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15920     MIB.addOperand(MI->getOperand(i));
15921   MIB.setMemRefs(MMOBegin, MMOEnd);
15922   // Reload IP
15923   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15924   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15925     if (i == X86::AddrDisp)
15926       MIB.addDisp(MI->getOperand(i), LabelOffset);
15927     else
15928       MIB.addOperand(MI->getOperand(i));
15929   }
15930   MIB.setMemRefs(MMOBegin, MMOEnd);
15931   // Reload SP
15932   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15933   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15934     if (i == X86::AddrDisp)
15935       MIB.addDisp(MI->getOperand(i), SPOffset);
15936     else
15937       MIB.addOperand(MI->getOperand(i));
15938   }
15939   MIB.setMemRefs(MMOBegin, MMOEnd);
15940   // Jump
15941   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15942
15943   MI->eraseFromParent();
15944   return MBB;
15945 }
15946
15947 MachineBasicBlock *
15948 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15949                                                MachineBasicBlock *BB) const {
15950   switch (MI->getOpcode()) {
15951   default: llvm_unreachable("Unexpected instr type to insert");
15952   case X86::TAILJMPd64:
15953   case X86::TAILJMPr64:
15954   case X86::TAILJMPm64:
15955     llvm_unreachable("TAILJMP64 would not be touched here.");
15956   case X86::TCRETURNdi64:
15957   case X86::TCRETURNri64:
15958   case X86::TCRETURNmi64:
15959     return BB;
15960   case X86::WIN_ALLOCA:
15961     return EmitLoweredWinAlloca(MI, BB);
15962   case X86::SEG_ALLOCA_32:
15963     return EmitLoweredSegAlloca(MI, BB, false);
15964   case X86::SEG_ALLOCA_64:
15965     return EmitLoweredSegAlloca(MI, BB, true);
15966   case X86::TLSCall_32:
15967   case X86::TLSCall_64:
15968     return EmitLoweredTLSCall(MI, BB);
15969   case X86::CMOV_GR8:
15970   case X86::CMOV_FR32:
15971   case X86::CMOV_FR64:
15972   case X86::CMOV_V4F32:
15973   case X86::CMOV_V2F64:
15974   case X86::CMOV_V2I64:
15975   case X86::CMOV_V8F32:
15976   case X86::CMOV_V4F64:
15977   case X86::CMOV_V4I64:
15978   case X86::CMOV_V16F32:
15979   case X86::CMOV_V8F64:
15980   case X86::CMOV_V8I64:
15981   case X86::CMOV_GR16:
15982   case X86::CMOV_GR32:
15983   case X86::CMOV_RFP32:
15984   case X86::CMOV_RFP64:
15985   case X86::CMOV_RFP80:
15986     return EmitLoweredSelect(MI, BB);
15987
15988   case X86::FP32_TO_INT16_IN_MEM:
15989   case X86::FP32_TO_INT32_IN_MEM:
15990   case X86::FP32_TO_INT64_IN_MEM:
15991   case X86::FP64_TO_INT16_IN_MEM:
15992   case X86::FP64_TO_INT32_IN_MEM:
15993   case X86::FP64_TO_INT64_IN_MEM:
15994   case X86::FP80_TO_INT16_IN_MEM:
15995   case X86::FP80_TO_INT32_IN_MEM:
15996   case X86::FP80_TO_INT64_IN_MEM: {
15997     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15998     DebugLoc DL = MI->getDebugLoc();
15999
16000     // Change the floating point control register to use "round towards zero"
16001     // mode when truncating to an integer value.
16002     MachineFunction *F = BB->getParent();
16003     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
16004     addFrameReference(BuildMI(*BB, MI, DL,
16005                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
16006
16007     // Load the old value of the high byte of the control word...
16008     unsigned OldCW =
16009       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
16010     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
16011                       CWFrameIdx);
16012
16013     // Set the high part to be round to zero...
16014     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
16015       .addImm(0xC7F);
16016
16017     // Reload the modified control word now...
16018     addFrameReference(BuildMI(*BB, MI, DL,
16019                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16020
16021     // Restore the memory image of control word to original value
16022     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
16023       .addReg(OldCW);
16024
16025     // Get the X86 opcode to use.
16026     unsigned Opc;
16027     switch (MI->getOpcode()) {
16028     default: llvm_unreachable("illegal opcode!");
16029     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
16030     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
16031     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
16032     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
16033     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
16034     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
16035     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
16036     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
16037     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
16038     }
16039
16040     X86AddressMode AM;
16041     MachineOperand &Op = MI->getOperand(0);
16042     if (Op.isReg()) {
16043       AM.BaseType = X86AddressMode::RegBase;
16044       AM.Base.Reg = Op.getReg();
16045     } else {
16046       AM.BaseType = X86AddressMode::FrameIndexBase;
16047       AM.Base.FrameIndex = Op.getIndex();
16048     }
16049     Op = MI->getOperand(1);
16050     if (Op.isImm())
16051       AM.Scale = Op.getImm();
16052     Op = MI->getOperand(2);
16053     if (Op.isImm())
16054       AM.IndexReg = Op.getImm();
16055     Op = MI->getOperand(3);
16056     if (Op.isGlobal()) {
16057       AM.GV = Op.getGlobal();
16058     } else {
16059       AM.Disp = Op.getImm();
16060     }
16061     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
16062                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
16063
16064     // Reload the original control word now.
16065     addFrameReference(BuildMI(*BB, MI, DL,
16066                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16067
16068     MI->eraseFromParent();   // The pseudo instruction is gone now.
16069     return BB;
16070   }
16071     // String/text processing lowering.
16072   case X86::PCMPISTRM128REG:
16073   case X86::VPCMPISTRM128REG:
16074   case X86::PCMPISTRM128MEM:
16075   case X86::VPCMPISTRM128MEM:
16076   case X86::PCMPESTRM128REG:
16077   case X86::VPCMPESTRM128REG:
16078   case X86::PCMPESTRM128MEM:
16079   case X86::VPCMPESTRM128MEM:
16080     assert(Subtarget->hasSSE42() &&
16081            "Target must have SSE4.2 or AVX features enabled");
16082     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
16083
16084   // String/text processing lowering.
16085   case X86::PCMPISTRIREG:
16086   case X86::VPCMPISTRIREG:
16087   case X86::PCMPISTRIMEM:
16088   case X86::VPCMPISTRIMEM:
16089   case X86::PCMPESTRIREG:
16090   case X86::VPCMPESTRIREG:
16091   case X86::PCMPESTRIMEM:
16092   case X86::VPCMPESTRIMEM:
16093     assert(Subtarget->hasSSE42() &&
16094            "Target must have SSE4.2 or AVX features enabled");
16095     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
16096
16097   // Thread synchronization.
16098   case X86::MONITOR:
16099     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
16100
16101   // xbegin
16102   case X86::XBEGIN:
16103     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
16104
16105   // Atomic Lowering.
16106   case X86::ATOMAND8:
16107   case X86::ATOMAND16:
16108   case X86::ATOMAND32:
16109   case X86::ATOMAND64:
16110     // Fall through
16111   case X86::ATOMOR8:
16112   case X86::ATOMOR16:
16113   case X86::ATOMOR32:
16114   case X86::ATOMOR64:
16115     // Fall through
16116   case X86::ATOMXOR16:
16117   case X86::ATOMXOR8:
16118   case X86::ATOMXOR32:
16119   case X86::ATOMXOR64:
16120     // Fall through
16121   case X86::ATOMNAND8:
16122   case X86::ATOMNAND16:
16123   case X86::ATOMNAND32:
16124   case X86::ATOMNAND64:
16125     // Fall through
16126   case X86::ATOMMAX8:
16127   case X86::ATOMMAX16:
16128   case X86::ATOMMAX32:
16129   case X86::ATOMMAX64:
16130     // Fall through
16131   case X86::ATOMMIN8:
16132   case X86::ATOMMIN16:
16133   case X86::ATOMMIN32:
16134   case X86::ATOMMIN64:
16135     // Fall through
16136   case X86::ATOMUMAX8:
16137   case X86::ATOMUMAX16:
16138   case X86::ATOMUMAX32:
16139   case X86::ATOMUMAX64:
16140     // Fall through
16141   case X86::ATOMUMIN8:
16142   case X86::ATOMUMIN16:
16143   case X86::ATOMUMIN32:
16144   case X86::ATOMUMIN64:
16145     return EmitAtomicLoadArith(MI, BB);
16146
16147   // This group does 64-bit operations on a 32-bit host.
16148   case X86::ATOMAND6432:
16149   case X86::ATOMOR6432:
16150   case X86::ATOMXOR6432:
16151   case X86::ATOMNAND6432:
16152   case X86::ATOMADD6432:
16153   case X86::ATOMSUB6432:
16154   case X86::ATOMMAX6432:
16155   case X86::ATOMMIN6432:
16156   case X86::ATOMUMAX6432:
16157   case X86::ATOMUMIN6432:
16158   case X86::ATOMSWAP6432:
16159     return EmitAtomicLoadArith6432(MI, BB);
16160
16161   case X86::VASTART_SAVE_XMM_REGS:
16162     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
16163
16164   case X86::VAARG_64:
16165     return EmitVAARG64WithCustomInserter(MI, BB);
16166
16167   case X86::EH_SjLj_SetJmp32:
16168   case X86::EH_SjLj_SetJmp64:
16169     return emitEHSjLjSetJmp(MI, BB);
16170
16171   case X86::EH_SjLj_LongJmp32:
16172   case X86::EH_SjLj_LongJmp64:
16173     return emitEHSjLjLongJmp(MI, BB);
16174
16175   case TargetOpcode::STACKMAP:
16176   case TargetOpcode::PATCHPOINT:
16177     return emitPatchPoint(MI, BB);
16178   }
16179 }
16180
16181 //===----------------------------------------------------------------------===//
16182 //                           X86 Optimization Hooks
16183 //===----------------------------------------------------------------------===//
16184
16185 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
16186                                                        APInt &KnownZero,
16187                                                        APInt &KnownOne,
16188                                                        const SelectionDAG &DAG,
16189                                                        unsigned Depth) const {
16190   unsigned BitWidth = KnownZero.getBitWidth();
16191   unsigned Opc = Op.getOpcode();
16192   assert((Opc >= ISD::BUILTIN_OP_END ||
16193           Opc == ISD::INTRINSIC_WO_CHAIN ||
16194           Opc == ISD::INTRINSIC_W_CHAIN ||
16195           Opc == ISD::INTRINSIC_VOID) &&
16196          "Should use MaskedValueIsZero if you don't know whether Op"
16197          " is a target node!");
16198
16199   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
16200   switch (Opc) {
16201   default: break;
16202   case X86ISD::ADD:
16203   case X86ISD::SUB:
16204   case X86ISD::ADC:
16205   case X86ISD::SBB:
16206   case X86ISD::SMUL:
16207   case X86ISD::UMUL:
16208   case X86ISD::INC:
16209   case X86ISD::DEC:
16210   case X86ISD::OR:
16211   case X86ISD::XOR:
16212   case X86ISD::AND:
16213     // These nodes' second result is a boolean.
16214     if (Op.getResNo() == 0)
16215       break;
16216     // Fallthrough
16217   case X86ISD::SETCC:
16218     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
16219     break;
16220   case ISD::INTRINSIC_WO_CHAIN: {
16221     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16222     unsigned NumLoBits = 0;
16223     switch (IntId) {
16224     default: break;
16225     case Intrinsic::x86_sse_movmsk_ps:
16226     case Intrinsic::x86_avx_movmsk_ps_256:
16227     case Intrinsic::x86_sse2_movmsk_pd:
16228     case Intrinsic::x86_avx_movmsk_pd_256:
16229     case Intrinsic::x86_mmx_pmovmskb:
16230     case Intrinsic::x86_sse2_pmovmskb_128:
16231     case Intrinsic::x86_avx2_pmovmskb: {
16232       // High bits of movmskp{s|d}, pmovmskb are known zero.
16233       switch (IntId) {
16234         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16235         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
16236         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
16237         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
16238         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
16239         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
16240         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
16241         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
16242       }
16243       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
16244       break;
16245     }
16246     }
16247     break;
16248   }
16249   }
16250 }
16251
16252 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16253                                                          unsigned Depth) const {
16254   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16255   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16256     return Op.getValueType().getScalarType().getSizeInBits();
16257
16258   // Fallback case.
16259   return 1;
16260 }
16261
16262 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16263 /// node is a GlobalAddress + offset.
16264 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16265                                        const GlobalValue* &GA,
16266                                        int64_t &Offset) const {
16267   if (N->getOpcode() == X86ISD::Wrapper) {
16268     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16269       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16270       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16271       return true;
16272     }
16273   }
16274   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16275 }
16276
16277 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16278 /// same as extracting the high 128-bit part of 256-bit vector and then
16279 /// inserting the result into the low part of a new 256-bit vector
16280 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16281   EVT VT = SVOp->getValueType(0);
16282   unsigned NumElems = VT.getVectorNumElements();
16283
16284   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16285   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16286     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16287         SVOp->getMaskElt(j) >= 0)
16288       return false;
16289
16290   return true;
16291 }
16292
16293 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16294 /// same as extracting the low 128-bit part of 256-bit vector and then
16295 /// inserting the result into the high part of a new 256-bit vector
16296 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16297   EVT VT = SVOp->getValueType(0);
16298   unsigned NumElems = VT.getVectorNumElements();
16299
16300   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16301   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16302     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16303         SVOp->getMaskElt(j) >= 0)
16304       return false;
16305
16306   return true;
16307 }
16308
16309 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16310 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16311                                         TargetLowering::DAGCombinerInfo &DCI,
16312                                         const X86Subtarget* Subtarget) {
16313   SDLoc dl(N);
16314   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16315   SDValue V1 = SVOp->getOperand(0);
16316   SDValue V2 = SVOp->getOperand(1);
16317   EVT VT = SVOp->getValueType(0);
16318   unsigned NumElems = VT.getVectorNumElements();
16319
16320   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16321       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16322     //
16323     //                   0,0,0,...
16324     //                      |
16325     //    V      UNDEF    BUILD_VECTOR    UNDEF
16326     //     \      /           \           /
16327     //  CONCAT_VECTOR         CONCAT_VECTOR
16328     //         \                  /
16329     //          \                /
16330     //          RESULT: V + zero extended
16331     //
16332     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16333         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16334         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16335       return SDValue();
16336
16337     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16338       return SDValue();
16339
16340     // To match the shuffle mask, the first half of the mask should
16341     // be exactly the first vector, and all the rest a splat with the
16342     // first element of the second one.
16343     for (unsigned i = 0; i != NumElems/2; ++i)
16344       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16345           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16346         return SDValue();
16347
16348     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16349     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16350       if (Ld->hasNUsesOfValue(1, 0)) {
16351         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16352         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16353         SDValue ResNode =
16354           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16355                                   array_lengthof(Ops),
16356                                   Ld->getMemoryVT(),
16357                                   Ld->getPointerInfo(),
16358                                   Ld->getAlignment(),
16359                                   false/*isVolatile*/, true/*ReadMem*/,
16360                                   false/*WriteMem*/);
16361
16362         // Make sure the newly-created LOAD is in the same position as Ld in
16363         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16364         // and update uses of Ld's output chain to use the TokenFactor.
16365         if (Ld->hasAnyUseOfValue(1)) {
16366           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16367                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16368           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16369           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16370                                  SDValue(ResNode.getNode(), 1));
16371         }
16372
16373         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16374       }
16375     }
16376
16377     // Emit a zeroed vector and insert the desired subvector on its
16378     // first half.
16379     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16380     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16381     return DCI.CombineTo(N, InsV);
16382   }
16383
16384   //===--------------------------------------------------------------------===//
16385   // Combine some shuffles into subvector extracts and inserts:
16386   //
16387
16388   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16389   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16390     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16391     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16392     return DCI.CombineTo(N, InsV);
16393   }
16394
16395   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16396   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16397     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16398     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16399     return DCI.CombineTo(N, InsV);
16400   }
16401
16402   return SDValue();
16403 }
16404
16405 /// PerformShuffleCombine - Performs several different shuffle combines.
16406 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16407                                      TargetLowering::DAGCombinerInfo &DCI,
16408                                      const X86Subtarget *Subtarget) {
16409   SDLoc dl(N);
16410   EVT VT = N->getValueType(0);
16411
16412   // Don't create instructions with illegal types after legalize types has run.
16413   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16414   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16415     return SDValue();
16416
16417   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16418   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16419       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16420     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16421
16422   // Only handle 128 wide vector from here on.
16423   if (!VT.is128BitVector())
16424     return SDValue();
16425
16426   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16427   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16428   // consecutive, non-overlapping, and in the right order.
16429   SmallVector<SDValue, 16> Elts;
16430   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16431     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16432
16433   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
16434 }
16435
16436 /// PerformTruncateCombine - Converts truncate operation to
16437 /// a sequence of vector shuffle operations.
16438 /// It is possible when we truncate 256-bit vector to 128-bit vector
16439 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16440                                       TargetLowering::DAGCombinerInfo &DCI,
16441                                       const X86Subtarget *Subtarget)  {
16442   return SDValue();
16443 }
16444
16445 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16446 /// specific shuffle of a load can be folded into a single element load.
16447 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16448 /// shuffles have been customed lowered so we need to handle those here.
16449 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16450                                          TargetLowering::DAGCombinerInfo &DCI) {
16451   if (DCI.isBeforeLegalizeOps())
16452     return SDValue();
16453
16454   SDValue InVec = N->getOperand(0);
16455   SDValue EltNo = N->getOperand(1);
16456
16457   if (!isa<ConstantSDNode>(EltNo))
16458     return SDValue();
16459
16460   EVT VT = InVec.getValueType();
16461
16462   bool HasShuffleIntoBitcast = false;
16463   if (InVec.getOpcode() == ISD::BITCAST) {
16464     // Don't duplicate a load with other uses.
16465     if (!InVec.hasOneUse())
16466       return SDValue();
16467     EVT BCVT = InVec.getOperand(0).getValueType();
16468     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16469       return SDValue();
16470     InVec = InVec.getOperand(0);
16471     HasShuffleIntoBitcast = true;
16472   }
16473
16474   if (!isTargetShuffle(InVec.getOpcode()))
16475     return SDValue();
16476
16477   // Don't duplicate a load with other uses.
16478   if (!InVec.hasOneUse())
16479     return SDValue();
16480
16481   SmallVector<int, 16> ShuffleMask;
16482   bool UnaryShuffle;
16483   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16484                             UnaryShuffle))
16485     return SDValue();
16486
16487   // Select the input vector, guarding against out of range extract vector.
16488   unsigned NumElems = VT.getVectorNumElements();
16489   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16490   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16491   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16492                                          : InVec.getOperand(1);
16493
16494   // If inputs to shuffle are the same for both ops, then allow 2 uses
16495   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16496
16497   if (LdNode.getOpcode() == ISD::BITCAST) {
16498     // Don't duplicate a load with other uses.
16499     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16500       return SDValue();
16501
16502     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16503     LdNode = LdNode.getOperand(0);
16504   }
16505
16506   if (!ISD::isNormalLoad(LdNode.getNode()))
16507     return SDValue();
16508
16509   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16510
16511   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16512     return SDValue();
16513
16514   if (HasShuffleIntoBitcast) {
16515     // If there's a bitcast before the shuffle, check if the load type and
16516     // alignment is valid.
16517     unsigned Align = LN0->getAlignment();
16518     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16519     unsigned NewAlign = TLI.getDataLayout()->
16520       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16521
16522     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16523       return SDValue();
16524   }
16525
16526   // All checks match so transform back to vector_shuffle so that DAG combiner
16527   // can finish the job
16528   SDLoc dl(N);
16529
16530   // Create shuffle node taking into account the case that its a unary shuffle
16531   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16532   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16533                                  InVec.getOperand(0), Shuffle,
16534                                  &ShuffleMask[0]);
16535   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16536   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16537                      EltNo);
16538 }
16539
16540 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16541 /// generation and convert it from being a bunch of shuffles and extracts
16542 /// to a simple store and scalar loads to extract the elements.
16543 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16544                                          TargetLowering::DAGCombinerInfo &DCI) {
16545   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16546   if (NewOp.getNode())
16547     return NewOp;
16548
16549   SDValue InputVector = N->getOperand(0);
16550
16551   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16552   // from mmx to v2i32 has a single usage.
16553   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16554       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16555       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16556     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16557                        N->getValueType(0),
16558                        InputVector.getNode()->getOperand(0));
16559
16560   // Only operate on vectors of 4 elements, where the alternative shuffling
16561   // gets to be more expensive.
16562   if (InputVector.getValueType() != MVT::v4i32)
16563     return SDValue();
16564
16565   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16566   // single use which is a sign-extend or zero-extend, and all elements are
16567   // used.
16568   SmallVector<SDNode *, 4> Uses;
16569   unsigned ExtractedElements = 0;
16570   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16571        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16572     if (UI.getUse().getResNo() != InputVector.getResNo())
16573       return SDValue();
16574
16575     SDNode *Extract = *UI;
16576     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16577       return SDValue();
16578
16579     if (Extract->getValueType(0) != MVT::i32)
16580       return SDValue();
16581     if (!Extract->hasOneUse())
16582       return SDValue();
16583     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16584         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16585       return SDValue();
16586     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16587       return SDValue();
16588
16589     // Record which element was extracted.
16590     ExtractedElements |=
16591       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16592
16593     Uses.push_back(Extract);
16594   }
16595
16596   // If not all the elements were used, this may not be worthwhile.
16597   if (ExtractedElements != 15)
16598     return SDValue();
16599
16600   // Ok, we've now decided to do the transformation.
16601   SDLoc dl(InputVector);
16602
16603   // Store the value to a temporary stack slot.
16604   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16605   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16606                             MachinePointerInfo(), false, false, 0);
16607
16608   // Replace each use (extract) with a load of the appropriate element.
16609   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16610        UE = Uses.end(); UI != UE; ++UI) {
16611     SDNode *Extract = *UI;
16612
16613     // cOMpute the element's address.
16614     SDValue Idx = Extract->getOperand(1);
16615     unsigned EltSize =
16616         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16617     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16618     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16619     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16620
16621     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16622                                      StackPtr, OffsetVal);
16623
16624     // Load the scalar.
16625     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16626                                      ScalarAddr, MachinePointerInfo(),
16627                                      false, false, false, 0);
16628
16629     // Replace the exact with the load.
16630     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16631   }
16632
16633   // The replacement was made in place; don't return anything.
16634   return SDValue();
16635 }
16636
16637 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16638 static std::pair<unsigned, bool>
16639 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16640                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16641   if (!VT.isVector())
16642     return std::make_pair(0, false);
16643
16644   bool NeedSplit = false;
16645   switch (VT.getSimpleVT().SimpleTy) {
16646   default: return std::make_pair(0, false);
16647   case MVT::v32i8:
16648   case MVT::v16i16:
16649   case MVT::v8i32:
16650     if (!Subtarget->hasAVX2())
16651       NeedSplit = true;
16652     if (!Subtarget->hasAVX())
16653       return std::make_pair(0, false);
16654     break;
16655   case MVT::v16i8:
16656   case MVT::v8i16:
16657   case MVT::v4i32:
16658     if (!Subtarget->hasSSE2())
16659       return std::make_pair(0, false);
16660   }
16661
16662   // SSE2 has only a small subset of the operations.
16663   bool hasUnsigned = Subtarget->hasSSE41() ||
16664                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16665   bool hasSigned = Subtarget->hasSSE41() ||
16666                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16667
16668   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16669
16670   unsigned Opc = 0;
16671   // Check for x CC y ? x : y.
16672   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16673       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16674     switch (CC) {
16675     default: break;
16676     case ISD::SETULT:
16677     case ISD::SETULE:
16678       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16679     case ISD::SETUGT:
16680     case ISD::SETUGE:
16681       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16682     case ISD::SETLT:
16683     case ISD::SETLE:
16684       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16685     case ISD::SETGT:
16686     case ISD::SETGE:
16687       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16688     }
16689   // Check for x CC y ? y : x -- a min/max with reversed arms.
16690   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16691              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16692     switch (CC) {
16693     default: break;
16694     case ISD::SETULT:
16695     case ISD::SETULE:
16696       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16697     case ISD::SETUGT:
16698     case ISD::SETUGE:
16699       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16700     case ISD::SETLT:
16701     case ISD::SETLE:
16702       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16703     case ISD::SETGT:
16704     case ISD::SETGE:
16705       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16706     }
16707   }
16708
16709   return std::make_pair(Opc, NeedSplit);
16710 }
16711
16712 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16713 /// nodes.
16714 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16715                                     TargetLowering::DAGCombinerInfo &DCI,
16716                                     const X86Subtarget *Subtarget) {
16717   SDLoc DL(N);
16718   SDValue Cond = N->getOperand(0);
16719   // Get the LHS/RHS of the select.
16720   SDValue LHS = N->getOperand(1);
16721   SDValue RHS = N->getOperand(2);
16722   EVT VT = LHS.getValueType();
16723   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16724
16725   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16726   // instructions match the semantics of the common C idiom x<y?x:y but not
16727   // x<=y?x:y, because of how they handle negative zero (which can be
16728   // ignored in unsafe-math mode).
16729   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16730       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16731       (Subtarget->hasSSE2() ||
16732        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16733     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16734
16735     unsigned Opcode = 0;
16736     // Check for x CC y ? x : y.
16737     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16738         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16739       switch (CC) {
16740       default: break;
16741       case ISD::SETULT:
16742         // Converting this to a min would handle NaNs incorrectly, and swapping
16743         // the operands would cause it to handle comparisons between positive
16744         // and negative zero incorrectly.
16745         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16746           if (!DAG.getTarget().Options.UnsafeFPMath &&
16747               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16748             break;
16749           std::swap(LHS, RHS);
16750         }
16751         Opcode = X86ISD::FMIN;
16752         break;
16753       case ISD::SETOLE:
16754         // Converting this to a min would handle comparisons between positive
16755         // and negative zero incorrectly.
16756         if (!DAG.getTarget().Options.UnsafeFPMath &&
16757             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16758           break;
16759         Opcode = X86ISD::FMIN;
16760         break;
16761       case ISD::SETULE:
16762         // Converting this to a min would handle both negative zeros and NaNs
16763         // incorrectly, but we can swap the operands to fix both.
16764         std::swap(LHS, RHS);
16765       case ISD::SETOLT:
16766       case ISD::SETLT:
16767       case ISD::SETLE:
16768         Opcode = X86ISD::FMIN;
16769         break;
16770
16771       case ISD::SETOGE:
16772         // Converting this to a max would handle comparisons between positive
16773         // and negative zero incorrectly.
16774         if (!DAG.getTarget().Options.UnsafeFPMath &&
16775             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16776           break;
16777         Opcode = X86ISD::FMAX;
16778         break;
16779       case ISD::SETUGT:
16780         // Converting this to a max would handle NaNs incorrectly, and swapping
16781         // the operands would cause it to handle comparisons between positive
16782         // and negative zero incorrectly.
16783         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16784           if (!DAG.getTarget().Options.UnsafeFPMath &&
16785               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16786             break;
16787           std::swap(LHS, RHS);
16788         }
16789         Opcode = X86ISD::FMAX;
16790         break;
16791       case ISD::SETUGE:
16792         // Converting this to a max would handle both negative zeros and NaNs
16793         // incorrectly, but we can swap the operands to fix both.
16794         std::swap(LHS, RHS);
16795       case ISD::SETOGT:
16796       case ISD::SETGT:
16797       case ISD::SETGE:
16798         Opcode = X86ISD::FMAX;
16799         break;
16800       }
16801     // Check for x CC y ? y : x -- a min/max with reversed arms.
16802     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16803                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16804       switch (CC) {
16805       default: break;
16806       case ISD::SETOGE:
16807         // Converting this to a min would handle comparisons between positive
16808         // and negative zero incorrectly, and swapping the operands would
16809         // cause it to handle NaNs incorrectly.
16810         if (!DAG.getTarget().Options.UnsafeFPMath &&
16811             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16812           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16813             break;
16814           std::swap(LHS, RHS);
16815         }
16816         Opcode = X86ISD::FMIN;
16817         break;
16818       case ISD::SETUGT:
16819         // Converting this to a min would handle NaNs incorrectly.
16820         if (!DAG.getTarget().Options.UnsafeFPMath &&
16821             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16822           break;
16823         Opcode = X86ISD::FMIN;
16824         break;
16825       case ISD::SETUGE:
16826         // Converting this to a min would handle both negative zeros and NaNs
16827         // incorrectly, but we can swap the operands to fix both.
16828         std::swap(LHS, RHS);
16829       case ISD::SETOGT:
16830       case ISD::SETGT:
16831       case ISD::SETGE:
16832         Opcode = X86ISD::FMIN;
16833         break;
16834
16835       case ISD::SETULT:
16836         // Converting this to a max would handle NaNs incorrectly.
16837         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16838           break;
16839         Opcode = X86ISD::FMAX;
16840         break;
16841       case ISD::SETOLE:
16842         // Converting this to a max would handle comparisons between positive
16843         // and negative zero incorrectly, and swapping the operands would
16844         // cause it to handle NaNs incorrectly.
16845         if (!DAG.getTarget().Options.UnsafeFPMath &&
16846             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16847           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16848             break;
16849           std::swap(LHS, RHS);
16850         }
16851         Opcode = X86ISD::FMAX;
16852         break;
16853       case ISD::SETULE:
16854         // Converting this to a max would handle both negative zeros and NaNs
16855         // incorrectly, but we can swap the operands to fix both.
16856         std::swap(LHS, RHS);
16857       case ISD::SETOLT:
16858       case ISD::SETLT:
16859       case ISD::SETLE:
16860         Opcode = X86ISD::FMAX;
16861         break;
16862       }
16863     }
16864
16865     if (Opcode)
16866       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16867   }
16868
16869   EVT CondVT = Cond.getValueType();
16870   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
16871       CondVT.getVectorElementType() == MVT::i1) {
16872     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16873     // lowering on AVX-512. In this case we convert it to
16874     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16875     // The same situation for all 128 and 256-bit vectors of i8 and i16
16876     EVT OpVT = LHS.getValueType();
16877     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16878         (OpVT.getVectorElementType() == MVT::i8 ||
16879          OpVT.getVectorElementType() == MVT::i16)) {
16880       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16881       DCI.AddToWorklist(Cond.getNode());
16882       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16883     }
16884   }
16885   // If this is a select between two integer constants, try to do some
16886   // optimizations.
16887   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16888     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16889       // Don't do this for crazy integer types.
16890       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16891         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16892         // so that TrueC (the true value) is larger than FalseC.
16893         bool NeedsCondInvert = false;
16894
16895         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16896             // Efficiently invertible.
16897             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16898              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16899               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16900           NeedsCondInvert = true;
16901           std::swap(TrueC, FalseC);
16902         }
16903
16904         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16905         if (FalseC->getAPIntValue() == 0 &&
16906             TrueC->getAPIntValue().isPowerOf2()) {
16907           if (NeedsCondInvert) // Invert the condition if needed.
16908             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16909                                DAG.getConstant(1, Cond.getValueType()));
16910
16911           // Zero extend the condition if needed.
16912           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16913
16914           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16915           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16916                              DAG.getConstant(ShAmt, MVT::i8));
16917         }
16918
16919         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16920         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16921           if (NeedsCondInvert) // Invert the condition if needed.
16922             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16923                                DAG.getConstant(1, Cond.getValueType()));
16924
16925           // Zero extend the condition if needed.
16926           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16927                              FalseC->getValueType(0), Cond);
16928           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16929                              SDValue(FalseC, 0));
16930         }
16931
16932         // Optimize cases that will turn into an LEA instruction.  This requires
16933         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16934         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16935           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16936           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16937
16938           bool isFastMultiplier = false;
16939           if (Diff < 10) {
16940             switch ((unsigned char)Diff) {
16941               default: break;
16942               case 1:  // result = add base, cond
16943               case 2:  // result = lea base(    , cond*2)
16944               case 3:  // result = lea base(cond, cond*2)
16945               case 4:  // result = lea base(    , cond*4)
16946               case 5:  // result = lea base(cond, cond*4)
16947               case 8:  // result = lea base(    , cond*8)
16948               case 9:  // result = lea base(cond, cond*8)
16949                 isFastMultiplier = true;
16950                 break;
16951             }
16952           }
16953
16954           if (isFastMultiplier) {
16955             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16956             if (NeedsCondInvert) // Invert the condition if needed.
16957               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16958                                  DAG.getConstant(1, Cond.getValueType()));
16959
16960             // Zero extend the condition if needed.
16961             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16962                                Cond);
16963             // Scale the condition by the difference.
16964             if (Diff != 1)
16965               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16966                                  DAG.getConstant(Diff, Cond.getValueType()));
16967
16968             // Add the base if non-zero.
16969             if (FalseC->getAPIntValue() != 0)
16970               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16971                                  SDValue(FalseC, 0));
16972             return Cond;
16973           }
16974         }
16975       }
16976   }
16977
16978   // Canonicalize max and min:
16979   // (x > y) ? x : y -> (x >= y) ? x : y
16980   // (x < y) ? x : y -> (x <= y) ? x : y
16981   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16982   // the need for an extra compare
16983   // against zero. e.g.
16984   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16985   // subl   %esi, %edi
16986   // testl  %edi, %edi
16987   // movl   $0, %eax
16988   // cmovgl %edi, %eax
16989   // =>
16990   // xorl   %eax, %eax
16991   // subl   %esi, $edi
16992   // cmovsl %eax, %edi
16993   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16994       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16995       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16996     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16997     switch (CC) {
16998     default: break;
16999     case ISD::SETLT:
17000     case ISD::SETGT: {
17001       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
17002       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
17003                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
17004       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
17005     }
17006     }
17007   }
17008
17009   // Early exit check
17010   if (!TLI.isTypeLegal(VT))
17011     return SDValue();
17012
17013   // Match VSELECTs into subs with unsigned saturation.
17014   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17015       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
17016       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
17017        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
17018     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17019
17020     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
17021     // left side invert the predicate to simplify logic below.
17022     SDValue Other;
17023     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
17024       Other = RHS;
17025       CC = ISD::getSetCCInverse(CC, true);
17026     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
17027       Other = LHS;
17028     }
17029
17030     if (Other.getNode() && Other->getNumOperands() == 2 &&
17031         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
17032       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
17033       SDValue CondRHS = Cond->getOperand(1);
17034
17035       // Look for a general sub with unsigned saturation first.
17036       // x >= y ? x-y : 0 --> subus x, y
17037       // x >  y ? x-y : 0 --> subus x, y
17038       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
17039           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
17040         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17041
17042       // If the RHS is a constant we have to reverse the const canonicalization.
17043       // x > C-1 ? x+-C : 0 --> subus x, C
17044       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
17045           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
17046         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17047         if (CondRHS.getConstantOperandVal(0) == -A-1)
17048           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
17049                              DAG.getConstant(-A, VT));
17050       }
17051
17052       // Another special case: If C was a sign bit, the sub has been
17053       // canonicalized into a xor.
17054       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
17055       //        it's safe to decanonicalize the xor?
17056       // x s< 0 ? x^C : 0 --> subus x, C
17057       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
17058           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
17059           isSplatVector(OpRHS.getNode())) {
17060         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17061         if (A.isSignBit())
17062           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17063       }
17064     }
17065   }
17066
17067   // Try to match a min/max vector operation.
17068   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
17069     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
17070     unsigned Opc = ret.first;
17071     bool NeedSplit = ret.second;
17072
17073     if (Opc && NeedSplit) {
17074       unsigned NumElems = VT.getVectorNumElements();
17075       // Extract the LHS vectors
17076       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
17077       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
17078
17079       // Extract the RHS vectors
17080       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
17081       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
17082
17083       // Create min/max for each subvector
17084       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
17085       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
17086
17087       // Merge the result
17088       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
17089     } else if (Opc)
17090       return DAG.getNode(Opc, DL, VT, LHS, RHS);
17091   }
17092
17093   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
17094   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17095       // Check if SETCC has already been promoted
17096       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
17097       // Check that condition value type matches vselect operand type
17098       CondVT == VT) { 
17099
17100     assert(Cond.getValueType().isVector() &&
17101            "vector select expects a vector selector!");
17102
17103     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
17104     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
17105
17106     if (!TValIsAllOnes && !FValIsAllZeros) {
17107       // Try invert the condition if true value is not all 1s and false value
17108       // is not all 0s.
17109       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
17110       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
17111
17112       if (TValIsAllZeros || FValIsAllOnes) {
17113         SDValue CC = Cond.getOperand(2);
17114         ISD::CondCode NewCC =
17115           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
17116                                Cond.getOperand(0).getValueType().isInteger());
17117         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
17118         std::swap(LHS, RHS);
17119         TValIsAllOnes = FValIsAllOnes;
17120         FValIsAllZeros = TValIsAllZeros;
17121       }
17122     }
17123
17124     if (TValIsAllOnes || FValIsAllZeros) {
17125       SDValue Ret;
17126
17127       if (TValIsAllOnes && FValIsAllZeros)
17128         Ret = Cond;
17129       else if (TValIsAllOnes)
17130         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
17131                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
17132       else if (FValIsAllZeros)
17133         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
17134                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
17135
17136       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
17137     }
17138   }
17139
17140   // If we know that this node is legal then we know that it is going to be
17141   // matched by one of the SSE/AVX BLEND instructions. These instructions only
17142   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
17143   // to simplify previous instructions.
17144   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
17145       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
17146     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
17147
17148     // Don't optimize vector selects that map to mask-registers.
17149     if (BitWidth == 1)
17150       return SDValue();
17151
17152     // Check all uses of that condition operand to check whether it will be
17153     // consumed by non-BLEND instructions, which may depend on all bits are set
17154     // properly.
17155     for (SDNode::use_iterator I = Cond->use_begin(),
17156                               E = Cond->use_end(); I != E; ++I)
17157       if (I->getOpcode() != ISD::VSELECT)
17158         // TODO: Add other opcodes eventually lowered into BLEND.
17159         return SDValue();
17160
17161     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
17162     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
17163
17164     APInt KnownZero, KnownOne;
17165     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
17166                                           DCI.isBeforeLegalizeOps());
17167     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
17168         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
17169       DCI.CommitTargetLoweringOpt(TLO);
17170   }
17171
17172   return SDValue();
17173 }
17174
17175 // Check whether a boolean test is testing a boolean value generated by
17176 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
17177 // code.
17178 //
17179 // Simplify the following patterns:
17180 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
17181 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
17182 // to (Op EFLAGS Cond)
17183 //
17184 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
17185 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
17186 // to (Op EFLAGS !Cond)
17187 //
17188 // where Op could be BRCOND or CMOV.
17189 //
17190 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
17191   // Quit if not CMP and SUB with its value result used.
17192   if (Cmp.getOpcode() != X86ISD::CMP &&
17193       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
17194       return SDValue();
17195
17196   // Quit if not used as a boolean value.
17197   if (CC != X86::COND_E && CC != X86::COND_NE)
17198     return SDValue();
17199
17200   // Check CMP operands. One of them should be 0 or 1 and the other should be
17201   // an SetCC or extended from it.
17202   SDValue Op1 = Cmp.getOperand(0);
17203   SDValue Op2 = Cmp.getOperand(1);
17204
17205   SDValue SetCC;
17206   const ConstantSDNode* C = 0;
17207   bool needOppositeCond = (CC == X86::COND_E);
17208   bool checkAgainstTrue = false; // Is it a comparison against 1?
17209
17210   if ((C = dyn_cast<ConstantSDNode>(Op1)))
17211     SetCC = Op2;
17212   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17213     SetCC = Op1;
17214   else // Quit if all operands are not constants.
17215     return SDValue();
17216
17217   if (C->getZExtValue() == 1) {
17218     needOppositeCond = !needOppositeCond;
17219     checkAgainstTrue = true;
17220   } else if (C->getZExtValue() != 0)
17221     // Quit if the constant is neither 0 or 1.
17222     return SDValue();
17223
17224   bool truncatedToBoolWithAnd = false;
17225   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17226   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17227          SetCC.getOpcode() == ISD::TRUNCATE ||
17228          SetCC.getOpcode() == ISD::AND) {
17229     if (SetCC.getOpcode() == ISD::AND) {
17230       int OpIdx = -1;
17231       ConstantSDNode *CS;
17232       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17233           CS->getZExtValue() == 1)
17234         OpIdx = 1;
17235       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17236           CS->getZExtValue() == 1)
17237         OpIdx = 0;
17238       if (OpIdx == -1)
17239         break;
17240       SetCC = SetCC.getOperand(OpIdx);
17241       truncatedToBoolWithAnd = true;
17242     } else
17243       SetCC = SetCC.getOperand(0);
17244   }
17245
17246   switch (SetCC.getOpcode()) {
17247   case X86ISD::SETCC_CARRY:
17248     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17249     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17250     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17251     // truncated to i1 using 'and'.
17252     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17253       break;
17254     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17255            "Invalid use of SETCC_CARRY!");
17256     // FALL THROUGH
17257   case X86ISD::SETCC:
17258     // Set the condition code or opposite one if necessary.
17259     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17260     if (needOppositeCond)
17261       CC = X86::GetOppositeBranchCondition(CC);
17262     return SetCC.getOperand(1);
17263   case X86ISD::CMOV: {
17264     // Check whether false/true value has canonical one, i.e. 0 or 1.
17265     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17266     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17267     // Quit if true value is not a constant.
17268     if (!TVal)
17269       return SDValue();
17270     // Quit if false value is not a constant.
17271     if (!FVal) {
17272       SDValue Op = SetCC.getOperand(0);
17273       // Skip 'zext' or 'trunc' node.
17274       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17275           Op.getOpcode() == ISD::TRUNCATE)
17276         Op = Op.getOperand(0);
17277       // A special case for rdrand/rdseed, where 0 is set if false cond is
17278       // found.
17279       if ((Op.getOpcode() != X86ISD::RDRAND &&
17280            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17281         return SDValue();
17282     }
17283     // Quit if false value is not the constant 0 or 1.
17284     bool FValIsFalse = true;
17285     if (FVal && FVal->getZExtValue() != 0) {
17286       if (FVal->getZExtValue() != 1)
17287         return SDValue();
17288       // If FVal is 1, opposite cond is needed.
17289       needOppositeCond = !needOppositeCond;
17290       FValIsFalse = false;
17291     }
17292     // Quit if TVal is not the constant opposite of FVal.
17293     if (FValIsFalse && TVal->getZExtValue() != 1)
17294       return SDValue();
17295     if (!FValIsFalse && TVal->getZExtValue() != 0)
17296       return SDValue();
17297     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17298     if (needOppositeCond)
17299       CC = X86::GetOppositeBranchCondition(CC);
17300     return SetCC.getOperand(3);
17301   }
17302   }
17303
17304   return SDValue();
17305 }
17306
17307 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17308 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17309                                   TargetLowering::DAGCombinerInfo &DCI,
17310                                   const X86Subtarget *Subtarget) {
17311   SDLoc DL(N);
17312
17313   // If the flag operand isn't dead, don't touch this CMOV.
17314   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17315     return SDValue();
17316
17317   SDValue FalseOp = N->getOperand(0);
17318   SDValue TrueOp = N->getOperand(1);
17319   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17320   SDValue Cond = N->getOperand(3);
17321
17322   if (CC == X86::COND_E || CC == X86::COND_NE) {
17323     switch (Cond.getOpcode()) {
17324     default: break;
17325     case X86ISD::BSR:
17326     case X86ISD::BSF:
17327       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17328       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17329         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17330     }
17331   }
17332
17333   SDValue Flags;
17334
17335   Flags = checkBoolTestSetCCCombine(Cond, CC);
17336   if (Flags.getNode() &&
17337       // Extra check as FCMOV only supports a subset of X86 cond.
17338       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17339     SDValue Ops[] = { FalseOp, TrueOp,
17340                       DAG.getConstant(CC, MVT::i8), Flags };
17341     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17342                        Ops, array_lengthof(Ops));
17343   }
17344
17345   // If this is a select between two integer constants, try to do some
17346   // optimizations.  Note that the operands are ordered the opposite of SELECT
17347   // operands.
17348   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17349     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17350       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17351       // larger than FalseC (the false value).
17352       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17353         CC = X86::GetOppositeBranchCondition(CC);
17354         std::swap(TrueC, FalseC);
17355         std::swap(TrueOp, FalseOp);
17356       }
17357
17358       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17359       // This is efficient for any integer data type (including i8/i16) and
17360       // shift amount.
17361       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17362         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17363                            DAG.getConstant(CC, MVT::i8), Cond);
17364
17365         // Zero extend the condition if needed.
17366         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17367
17368         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17369         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17370                            DAG.getConstant(ShAmt, MVT::i8));
17371         if (N->getNumValues() == 2)  // Dead flag value?
17372           return DCI.CombineTo(N, Cond, SDValue());
17373         return Cond;
17374       }
17375
17376       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17377       // for any integer data type, including i8/i16.
17378       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17379         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17380                            DAG.getConstant(CC, MVT::i8), Cond);
17381
17382         // Zero extend the condition if needed.
17383         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17384                            FalseC->getValueType(0), Cond);
17385         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17386                            SDValue(FalseC, 0));
17387
17388         if (N->getNumValues() == 2)  // Dead flag value?
17389           return DCI.CombineTo(N, Cond, SDValue());
17390         return Cond;
17391       }
17392
17393       // Optimize cases that will turn into an LEA instruction.  This requires
17394       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17395       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17396         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17397         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17398
17399         bool isFastMultiplier = false;
17400         if (Diff < 10) {
17401           switch ((unsigned char)Diff) {
17402           default: break;
17403           case 1:  // result = add base, cond
17404           case 2:  // result = lea base(    , cond*2)
17405           case 3:  // result = lea base(cond, cond*2)
17406           case 4:  // result = lea base(    , cond*4)
17407           case 5:  // result = lea base(cond, cond*4)
17408           case 8:  // result = lea base(    , cond*8)
17409           case 9:  // result = lea base(cond, cond*8)
17410             isFastMultiplier = true;
17411             break;
17412           }
17413         }
17414
17415         if (isFastMultiplier) {
17416           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17417           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17418                              DAG.getConstant(CC, MVT::i8), Cond);
17419           // Zero extend the condition if needed.
17420           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17421                              Cond);
17422           // Scale the condition by the difference.
17423           if (Diff != 1)
17424             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17425                                DAG.getConstant(Diff, Cond.getValueType()));
17426
17427           // Add the base if non-zero.
17428           if (FalseC->getAPIntValue() != 0)
17429             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17430                                SDValue(FalseC, 0));
17431           if (N->getNumValues() == 2)  // Dead flag value?
17432             return DCI.CombineTo(N, Cond, SDValue());
17433           return Cond;
17434         }
17435       }
17436     }
17437   }
17438
17439   // Handle these cases:
17440   //   (select (x != c), e, c) -> select (x != c), e, x),
17441   //   (select (x == c), c, e) -> select (x == c), x, e)
17442   // where the c is an integer constant, and the "select" is the combination
17443   // of CMOV and CMP.
17444   //
17445   // The rationale for this change is that the conditional-move from a constant
17446   // needs two instructions, however, conditional-move from a register needs
17447   // only one instruction.
17448   //
17449   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17450   //  some instruction-combining opportunities. This opt needs to be
17451   //  postponed as late as possible.
17452   //
17453   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17454     // the DCI.xxxx conditions are provided to postpone the optimization as
17455     // late as possible.
17456
17457     ConstantSDNode *CmpAgainst = 0;
17458     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17459         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17460         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17461
17462       if (CC == X86::COND_NE &&
17463           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17464         CC = X86::GetOppositeBranchCondition(CC);
17465         std::swap(TrueOp, FalseOp);
17466       }
17467
17468       if (CC == X86::COND_E &&
17469           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17470         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17471                           DAG.getConstant(CC, MVT::i8), Cond };
17472         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17473                            array_lengthof(Ops));
17474       }
17475     }
17476   }
17477
17478   return SDValue();
17479 }
17480
17481 /// PerformMulCombine - Optimize a single multiply with constant into two
17482 /// in order to implement it with two cheaper instructions, e.g.
17483 /// LEA + SHL, LEA + LEA.
17484 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17485                                  TargetLowering::DAGCombinerInfo &DCI) {
17486   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17487     return SDValue();
17488
17489   EVT VT = N->getValueType(0);
17490   if (VT != MVT::i64)
17491     return SDValue();
17492
17493   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17494   if (!C)
17495     return SDValue();
17496   uint64_t MulAmt = C->getZExtValue();
17497   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17498     return SDValue();
17499
17500   uint64_t MulAmt1 = 0;
17501   uint64_t MulAmt2 = 0;
17502   if ((MulAmt % 9) == 0) {
17503     MulAmt1 = 9;
17504     MulAmt2 = MulAmt / 9;
17505   } else if ((MulAmt % 5) == 0) {
17506     MulAmt1 = 5;
17507     MulAmt2 = MulAmt / 5;
17508   } else if ((MulAmt % 3) == 0) {
17509     MulAmt1 = 3;
17510     MulAmt2 = MulAmt / 3;
17511   }
17512   if (MulAmt2 &&
17513       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17514     SDLoc DL(N);
17515
17516     if (isPowerOf2_64(MulAmt2) &&
17517         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17518       // If second multiplifer is pow2, issue it first. We want the multiply by
17519       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17520       // is an add.
17521       std::swap(MulAmt1, MulAmt2);
17522
17523     SDValue NewMul;
17524     if (isPowerOf2_64(MulAmt1))
17525       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17526                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17527     else
17528       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17529                            DAG.getConstant(MulAmt1, VT));
17530
17531     if (isPowerOf2_64(MulAmt2))
17532       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17533                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17534     else
17535       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17536                            DAG.getConstant(MulAmt2, VT));
17537
17538     // Do not add new nodes to DAG combiner worklist.
17539     DCI.CombineTo(N, NewMul, false);
17540   }
17541   return SDValue();
17542 }
17543
17544 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17545   SDValue N0 = N->getOperand(0);
17546   SDValue N1 = N->getOperand(1);
17547   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17548   EVT VT = N0.getValueType();
17549
17550   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17551   // since the result of setcc_c is all zero's or all ones.
17552   if (VT.isInteger() && !VT.isVector() &&
17553       N1C && N0.getOpcode() == ISD::AND &&
17554       N0.getOperand(1).getOpcode() == ISD::Constant) {
17555     SDValue N00 = N0.getOperand(0);
17556     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17557         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17558           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17559          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17560       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17561       APInt ShAmt = N1C->getAPIntValue();
17562       Mask = Mask.shl(ShAmt);
17563       if (Mask != 0)
17564         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17565                            N00, DAG.getConstant(Mask, VT));
17566     }
17567   }
17568
17569   // Hardware support for vector shifts is sparse which makes us scalarize the
17570   // vector operations in many cases. Also, on sandybridge ADD is faster than
17571   // shl.
17572   // (shl V, 1) -> add V,V
17573   if (isSplatVector(N1.getNode())) {
17574     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17575     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17576     // We shift all of the values by one. In many cases we do not have
17577     // hardware support for this operation. This is better expressed as an ADD
17578     // of two values.
17579     if (N1C && (1 == N1C->getZExtValue())) {
17580       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17581     }
17582   }
17583
17584   return SDValue();
17585 }
17586
17587 /// \brief Returns a vector of 0s if the node in input is a vector logical
17588 /// shift by a constant amount which is known to be bigger than or equal
17589 /// to the vector element size in bits.
17590 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17591                                       const X86Subtarget *Subtarget) {
17592   EVT VT = N->getValueType(0);
17593
17594   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17595       (!Subtarget->hasInt256() ||
17596        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17597     return SDValue();
17598
17599   SDValue Amt = N->getOperand(1);
17600   SDLoc DL(N);
17601   if (isSplatVector(Amt.getNode())) {
17602     SDValue SclrAmt = Amt->getOperand(0);
17603     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17604       APInt ShiftAmt = C->getAPIntValue();
17605       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17606
17607       // SSE2/AVX2 logical shifts always return a vector of 0s
17608       // if the shift amount is bigger than or equal to
17609       // the element size. The constant shift amount will be
17610       // encoded as a 8-bit immediate.
17611       if (ShiftAmt.trunc(8).uge(MaxAmount))
17612         return getZeroVector(VT, Subtarget, DAG, DL);
17613     }
17614   }
17615
17616   return SDValue();
17617 }
17618
17619 /// PerformShiftCombine - Combine shifts.
17620 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17621                                    TargetLowering::DAGCombinerInfo &DCI,
17622                                    const X86Subtarget *Subtarget) {
17623   if (N->getOpcode() == ISD::SHL) {
17624     SDValue V = PerformSHLCombine(N, DAG);
17625     if (V.getNode()) return V;
17626   }
17627
17628   if (N->getOpcode() != ISD::SRA) {
17629     // Try to fold this logical shift into a zero vector.
17630     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17631     if (V.getNode()) return V;
17632   }
17633
17634   return SDValue();
17635 }
17636
17637 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17638 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17639 // and friends.  Likewise for OR -> CMPNEQSS.
17640 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17641                             TargetLowering::DAGCombinerInfo &DCI,
17642                             const X86Subtarget *Subtarget) {
17643   unsigned opcode;
17644
17645   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17646   // we're requiring SSE2 for both.
17647   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17648     SDValue N0 = N->getOperand(0);
17649     SDValue N1 = N->getOperand(1);
17650     SDValue CMP0 = N0->getOperand(1);
17651     SDValue CMP1 = N1->getOperand(1);
17652     SDLoc DL(N);
17653
17654     // The SETCCs should both refer to the same CMP.
17655     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17656       return SDValue();
17657
17658     SDValue CMP00 = CMP0->getOperand(0);
17659     SDValue CMP01 = CMP0->getOperand(1);
17660     EVT     VT    = CMP00.getValueType();
17661
17662     if (VT == MVT::f32 || VT == MVT::f64) {
17663       bool ExpectingFlags = false;
17664       // Check for any users that want flags:
17665       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17666            !ExpectingFlags && UI != UE; ++UI)
17667         switch (UI->getOpcode()) {
17668         default:
17669         case ISD::BR_CC:
17670         case ISD::BRCOND:
17671         case ISD::SELECT:
17672           ExpectingFlags = true;
17673           break;
17674         case ISD::CopyToReg:
17675         case ISD::SIGN_EXTEND:
17676         case ISD::ZERO_EXTEND:
17677         case ISD::ANY_EXTEND:
17678           break;
17679         }
17680
17681       if (!ExpectingFlags) {
17682         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17683         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17684
17685         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17686           X86::CondCode tmp = cc0;
17687           cc0 = cc1;
17688           cc1 = tmp;
17689         }
17690
17691         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17692             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17693           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17694           // FIXME: need symbolic constants for these magic numbers.
17695           // See X86ATTInstPrinter.cpp:printSSECC().
17696           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17697           if (Subtarget->hasAVX512()) {
17698             // SETCC type in AVX-512 is MVT::i1
17699             assert(N->getValueType(0) == MVT::i1 && "Unexpected AND node type");
17700             return DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00, CMP01,
17701                                DAG.getConstant(x86cc, MVT::i8));
17702           }
17703           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL, CMP00.getValueType(), CMP00, CMP01,
17704                                               DAG.getConstant(x86cc, MVT::i8));
17705           MVT IntVT = (is64BitFP ? MVT::i64 : MVT::i32); 
17706           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT,
17707                                               OnesOrZeroesF);
17708           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
17709                                       DAG.getConstant(1, IntVT));
17710           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17711           return OneBitOfTruth;
17712         }
17713       }
17714     }
17715   }
17716   return SDValue();
17717 }
17718
17719 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17720 /// so it can be folded inside ANDNP.
17721 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17722   EVT VT = N->getValueType(0);
17723
17724   // Match direct AllOnes for 128 and 256-bit vectors
17725   if (ISD::isBuildVectorAllOnes(N))
17726     return true;
17727
17728   // Look through a bit convert.
17729   if (N->getOpcode() == ISD::BITCAST)
17730     N = N->getOperand(0).getNode();
17731
17732   // Sometimes the operand may come from a insert_subvector building a 256-bit
17733   // allones vector
17734   if (VT.is256BitVector() &&
17735       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17736     SDValue V1 = N->getOperand(0);
17737     SDValue V2 = N->getOperand(1);
17738
17739     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17740         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17741         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17742         ISD::isBuildVectorAllOnes(V2.getNode()))
17743       return true;
17744   }
17745
17746   return false;
17747 }
17748
17749 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17750 // register. In most cases we actually compare or select YMM-sized registers
17751 // and mixing the two types creates horrible code. This method optimizes
17752 // some of the transition sequences.
17753 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17754                                  TargetLowering::DAGCombinerInfo &DCI,
17755                                  const X86Subtarget *Subtarget) {
17756   EVT VT = N->getValueType(0);
17757   if (!VT.is256BitVector())
17758     return SDValue();
17759
17760   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17761           N->getOpcode() == ISD::ZERO_EXTEND ||
17762           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17763
17764   SDValue Narrow = N->getOperand(0);
17765   EVT NarrowVT = Narrow->getValueType(0);
17766   if (!NarrowVT.is128BitVector())
17767     return SDValue();
17768
17769   if (Narrow->getOpcode() != ISD::XOR &&
17770       Narrow->getOpcode() != ISD::AND &&
17771       Narrow->getOpcode() != ISD::OR)
17772     return SDValue();
17773
17774   SDValue N0  = Narrow->getOperand(0);
17775   SDValue N1  = Narrow->getOperand(1);
17776   SDLoc DL(Narrow);
17777
17778   // The Left side has to be a trunc.
17779   if (N0.getOpcode() != ISD::TRUNCATE)
17780     return SDValue();
17781
17782   // The type of the truncated inputs.
17783   EVT WideVT = N0->getOperand(0)->getValueType(0);
17784   if (WideVT != VT)
17785     return SDValue();
17786
17787   // The right side has to be a 'trunc' or a constant vector.
17788   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17789   bool RHSConst = (isSplatVector(N1.getNode()) &&
17790                    isa<ConstantSDNode>(N1->getOperand(0)));
17791   if (!RHSTrunc && !RHSConst)
17792     return SDValue();
17793
17794   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17795
17796   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17797     return SDValue();
17798
17799   // Set N0 and N1 to hold the inputs to the new wide operation.
17800   N0 = N0->getOperand(0);
17801   if (RHSConst) {
17802     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17803                      N1->getOperand(0));
17804     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17805     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17806   } else if (RHSTrunc) {
17807     N1 = N1->getOperand(0);
17808   }
17809
17810   // Generate the wide operation.
17811   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17812   unsigned Opcode = N->getOpcode();
17813   switch (Opcode) {
17814   case ISD::ANY_EXTEND:
17815     return Op;
17816   case ISD::ZERO_EXTEND: {
17817     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17818     APInt Mask = APInt::getAllOnesValue(InBits);
17819     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17820     return DAG.getNode(ISD::AND, DL, VT,
17821                        Op, DAG.getConstant(Mask, VT));
17822   }
17823   case ISD::SIGN_EXTEND:
17824     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17825                        Op, DAG.getValueType(NarrowVT));
17826   default:
17827     llvm_unreachable("Unexpected opcode");
17828   }
17829 }
17830
17831 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17832                                  TargetLowering::DAGCombinerInfo &DCI,
17833                                  const X86Subtarget *Subtarget) {
17834   EVT VT = N->getValueType(0);
17835   if (DCI.isBeforeLegalizeOps())
17836     return SDValue();
17837
17838   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17839   if (R.getNode())
17840     return R;
17841
17842   // Create BLSI, BLSR, and BZHI instructions
17843   // BLSI is X & (-X)
17844   // BLSR is X & (X-1)
17845   // BZHI is X & ((1 << Y) - 1)
17846   // BEXTR is ((X >> imm) & (2**size-1))
17847   if (VT == MVT::i32 || VT == MVT::i64) {
17848     SDValue N0 = N->getOperand(0);
17849     SDValue N1 = N->getOperand(1);
17850     SDLoc DL(N);
17851
17852     if (Subtarget->hasBMI()) {
17853       // Check LHS for neg
17854       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17855           isZero(N0.getOperand(0)))
17856         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17857
17858       // Check RHS for neg
17859       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17860           isZero(N1.getOperand(0)))
17861         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17862
17863       // Check LHS for X-1
17864       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17865           isAllOnes(N0.getOperand(1)))
17866         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17867
17868       // Check RHS for X-1
17869       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17870           isAllOnes(N1.getOperand(1)))
17871         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17872     }
17873
17874     if (Subtarget->hasBMI2()) {
17875       // Check for (and (add (shl 1, Y), -1), X)
17876       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17877         SDValue N00 = N0.getOperand(0);
17878         if (N00.getOpcode() == ISD::SHL) {
17879           SDValue N001 = N00.getOperand(1);
17880           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17881           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17882           if (C && C->getZExtValue() == 1)
17883             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17884         }
17885       }
17886
17887       // Check for (and X, (add (shl 1, Y), -1))
17888       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17889         SDValue N10 = N1.getOperand(0);
17890         if (N10.getOpcode() == ISD::SHL) {
17891           SDValue N101 = N10.getOperand(1);
17892           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17893           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17894           if (C && C->getZExtValue() == 1)
17895             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17896         }
17897       }
17898     }
17899
17900     // Check for BEXTR.
17901     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17902         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17903       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17904       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17905       if (MaskNode && ShiftNode) {
17906         uint64_t Mask = MaskNode->getZExtValue();
17907         uint64_t Shift = ShiftNode->getZExtValue();
17908         if (isMask_64(Mask)) {
17909           uint64_t MaskSize = CountPopulation_64(Mask);
17910           if (Shift + MaskSize <= VT.getSizeInBits())
17911             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17912                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17913         }
17914       }
17915     } // BEXTR
17916
17917     return SDValue();
17918   }
17919
17920   // Want to form ANDNP nodes:
17921   // 1) In the hopes of then easily combining them with OR and AND nodes
17922   //    to form PBLEND/PSIGN.
17923   // 2) To match ANDN packed intrinsics
17924   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17925     return SDValue();
17926
17927   SDValue N0 = N->getOperand(0);
17928   SDValue N1 = N->getOperand(1);
17929   SDLoc DL(N);
17930
17931   // Check LHS for vnot
17932   if (N0.getOpcode() == ISD::XOR &&
17933       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17934       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17935     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17936
17937   // Check RHS for vnot
17938   if (N1.getOpcode() == ISD::XOR &&
17939       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17940       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17941     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17942
17943   return SDValue();
17944 }
17945
17946 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17947                                 TargetLowering::DAGCombinerInfo &DCI,
17948                                 const X86Subtarget *Subtarget) {
17949   EVT VT = N->getValueType(0);
17950   if (DCI.isBeforeLegalizeOps())
17951     return SDValue();
17952
17953   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17954   if (R.getNode())
17955     return R;
17956
17957   SDValue N0 = N->getOperand(0);
17958   SDValue N1 = N->getOperand(1);
17959
17960   // look for psign/blend
17961   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17962     if (!Subtarget->hasSSSE3() ||
17963         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17964       return SDValue();
17965
17966     // Canonicalize pandn to RHS
17967     if (N0.getOpcode() == X86ISD::ANDNP)
17968       std::swap(N0, N1);
17969     // or (and (m, y), (pandn m, x))
17970     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17971       SDValue Mask = N1.getOperand(0);
17972       SDValue X    = N1.getOperand(1);
17973       SDValue Y;
17974       if (N0.getOperand(0) == Mask)
17975         Y = N0.getOperand(1);
17976       if (N0.getOperand(1) == Mask)
17977         Y = N0.getOperand(0);
17978
17979       // Check to see if the mask appeared in both the AND and ANDNP and
17980       if (!Y.getNode())
17981         return SDValue();
17982
17983       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
17984       // Look through mask bitcast.
17985       if (Mask.getOpcode() == ISD::BITCAST)
17986         Mask = Mask.getOperand(0);
17987       if (X.getOpcode() == ISD::BITCAST)
17988         X = X.getOperand(0);
17989       if (Y.getOpcode() == ISD::BITCAST)
17990         Y = Y.getOperand(0);
17991
17992       EVT MaskVT = Mask.getValueType();
17993
17994       // Validate that the Mask operand is a vector sra node.
17995       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17996       // there is no psrai.b
17997       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
17998       unsigned SraAmt = ~0;
17999       if (Mask.getOpcode() == ISD::SRA) {
18000         SDValue Amt = Mask.getOperand(1);
18001         if (isSplatVector(Amt.getNode())) {
18002           SDValue SclrAmt = Amt->getOperand(0);
18003           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
18004             SraAmt = C->getZExtValue();
18005         }
18006       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
18007         SDValue SraC = Mask.getOperand(1);
18008         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
18009       }
18010       if ((SraAmt + 1) != EltBits)
18011         return SDValue();
18012
18013       SDLoc DL(N);
18014
18015       // Now we know we at least have a plendvb with the mask val.  See if
18016       // we can form a psignb/w/d.
18017       // psign = x.type == y.type == mask.type && y = sub(0, x);
18018       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
18019           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
18020           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
18021         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
18022                "Unsupported VT for PSIGN");
18023         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
18024         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18025       }
18026       // PBLENDVB only available on SSE 4.1
18027       if (!Subtarget->hasSSE41())
18028         return SDValue();
18029
18030       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
18031
18032       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
18033       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
18034       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
18035       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
18036       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18037     }
18038   }
18039
18040   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
18041     return SDValue();
18042
18043   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
18044   MachineFunction &MF = DAG.getMachineFunction();
18045   bool OptForSize = MF.getFunction()->getAttributes().
18046     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
18047
18048   // SHLD/SHRD instructions have lower register pressure, but on some
18049   // platforms they have higher latency than the equivalent
18050   // series of shifts/or that would otherwise be generated.
18051   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
18052   // have higher latencies and we are not optimizing for size.
18053   if (!OptForSize && Subtarget->isSHLDSlow())
18054     return SDValue();
18055
18056   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
18057     std::swap(N0, N1);
18058   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
18059     return SDValue();
18060   if (!N0.hasOneUse() || !N1.hasOneUse())
18061     return SDValue();
18062
18063   SDValue ShAmt0 = N0.getOperand(1);
18064   if (ShAmt0.getValueType() != MVT::i8)
18065     return SDValue();
18066   SDValue ShAmt1 = N1.getOperand(1);
18067   if (ShAmt1.getValueType() != MVT::i8)
18068     return SDValue();
18069   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
18070     ShAmt0 = ShAmt0.getOperand(0);
18071   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
18072     ShAmt1 = ShAmt1.getOperand(0);
18073
18074   SDLoc DL(N);
18075   unsigned Opc = X86ISD::SHLD;
18076   SDValue Op0 = N0.getOperand(0);
18077   SDValue Op1 = N1.getOperand(0);
18078   if (ShAmt0.getOpcode() == ISD::SUB) {
18079     Opc = X86ISD::SHRD;
18080     std::swap(Op0, Op1);
18081     std::swap(ShAmt0, ShAmt1);
18082   }
18083
18084   unsigned Bits = VT.getSizeInBits();
18085   if (ShAmt1.getOpcode() == ISD::SUB) {
18086     SDValue Sum = ShAmt1.getOperand(0);
18087     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
18088       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
18089       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
18090         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
18091       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
18092         return DAG.getNode(Opc, DL, VT,
18093                            Op0, Op1,
18094                            DAG.getNode(ISD::TRUNCATE, DL,
18095                                        MVT::i8, ShAmt0));
18096     }
18097   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
18098     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
18099     if (ShAmt0C &&
18100         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
18101       return DAG.getNode(Opc, DL, VT,
18102                          N0.getOperand(0), N1.getOperand(0),
18103                          DAG.getNode(ISD::TRUNCATE, DL,
18104                                        MVT::i8, ShAmt0));
18105   }
18106
18107   return SDValue();
18108 }
18109
18110 // Generate NEG and CMOV for integer abs.
18111 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
18112   EVT VT = N->getValueType(0);
18113
18114   // Since X86 does not have CMOV for 8-bit integer, we don't convert
18115   // 8-bit integer abs to NEG and CMOV.
18116   if (VT.isInteger() && VT.getSizeInBits() == 8)
18117     return SDValue();
18118
18119   SDValue N0 = N->getOperand(0);
18120   SDValue N1 = N->getOperand(1);
18121   SDLoc DL(N);
18122
18123   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
18124   // and change it to SUB and CMOV.
18125   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
18126       N0.getOpcode() == ISD::ADD &&
18127       N0.getOperand(1) == N1 &&
18128       N1.getOpcode() == ISD::SRA &&
18129       N1.getOperand(0) == N0.getOperand(0))
18130     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
18131       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
18132         // Generate SUB & CMOV.
18133         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
18134                                   DAG.getConstant(0, VT), N0.getOperand(0));
18135
18136         SDValue Ops[] = { N0.getOperand(0), Neg,
18137                           DAG.getConstant(X86::COND_GE, MVT::i8),
18138                           SDValue(Neg.getNode(), 1) };
18139         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
18140                            Ops, array_lengthof(Ops));
18141       }
18142   return SDValue();
18143 }
18144
18145 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
18146 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
18147                                  TargetLowering::DAGCombinerInfo &DCI,
18148                                  const X86Subtarget *Subtarget) {
18149   EVT VT = N->getValueType(0);
18150   if (DCI.isBeforeLegalizeOps())
18151     return SDValue();
18152
18153   if (Subtarget->hasCMov()) {
18154     SDValue RV = performIntegerAbsCombine(N, DAG);
18155     if (RV.getNode())
18156       return RV;
18157   }
18158
18159   // Try forming BMI if it is available.
18160   if (!Subtarget->hasBMI())
18161     return SDValue();
18162
18163   if (VT != MVT::i32 && VT != MVT::i64)
18164     return SDValue();
18165
18166   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
18167
18168   // Create BLSMSK instructions by finding X ^ (X-1)
18169   SDValue N0 = N->getOperand(0);
18170   SDValue N1 = N->getOperand(1);
18171   SDLoc DL(N);
18172
18173   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
18174       isAllOnes(N0.getOperand(1)))
18175     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
18176
18177   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
18178       isAllOnes(N1.getOperand(1)))
18179     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
18180
18181   return SDValue();
18182 }
18183
18184 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
18185 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
18186                                   TargetLowering::DAGCombinerInfo &DCI,
18187                                   const X86Subtarget *Subtarget) {
18188   LoadSDNode *Ld = cast<LoadSDNode>(N);
18189   EVT RegVT = Ld->getValueType(0);
18190   EVT MemVT = Ld->getMemoryVT();
18191   SDLoc dl(Ld);
18192   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18193   unsigned RegSz = RegVT.getSizeInBits();
18194
18195   // On Sandybridge unaligned 256bit loads are inefficient.
18196   ISD::LoadExtType Ext = Ld->getExtensionType();
18197   unsigned Alignment = Ld->getAlignment();
18198   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
18199   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
18200       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
18201     unsigned NumElems = RegVT.getVectorNumElements();
18202     if (NumElems < 2)
18203       return SDValue();
18204
18205     SDValue Ptr = Ld->getBasePtr();
18206     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
18207
18208     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18209                                   NumElems/2);
18210     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18211                                 Ld->getPointerInfo(), Ld->isVolatile(),
18212                                 Ld->isNonTemporal(), Ld->isInvariant(),
18213                                 Alignment);
18214     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18215     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18216                                 Ld->getPointerInfo(), Ld->isVolatile(),
18217                                 Ld->isNonTemporal(), Ld->isInvariant(),
18218                                 std::min(16U, Alignment));
18219     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18220                              Load1.getValue(1),
18221                              Load2.getValue(1));
18222
18223     SDValue NewVec = DAG.getUNDEF(RegVT);
18224     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
18225     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
18226     return DCI.CombineTo(N, NewVec, TF, true);
18227   }
18228
18229   // If this is a vector EXT Load then attempt to optimize it using a
18230   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18231   // expansion is still better than scalar code.
18232   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18233   // emit a shuffle and a arithmetic shift.
18234   // TODO: It is possible to support ZExt by zeroing the undef values
18235   // during the shuffle phase or after the shuffle.
18236   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18237       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
18238     assert(MemVT != RegVT && "Cannot extend to the same type");
18239     assert(MemVT.isVector() && "Must load a vector from memory");
18240
18241     unsigned NumElems = RegVT.getVectorNumElements();
18242     unsigned MemSz = MemVT.getSizeInBits();
18243     assert(RegSz > MemSz && "Register size must be greater than the mem size");
18244
18245     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18246       return SDValue();
18247
18248     // All sizes must be a power of two.
18249     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18250       return SDValue();
18251
18252     // Attempt to load the original value using scalar loads.
18253     // Find the largest scalar type that divides the total loaded size.
18254     MVT SclrLoadTy = MVT::i8;
18255     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18256          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18257       MVT Tp = (MVT::SimpleValueType)tp;
18258       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18259         SclrLoadTy = Tp;
18260       }
18261     }
18262
18263     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18264     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18265         (64 <= MemSz))
18266       SclrLoadTy = MVT::f64;
18267
18268     // Calculate the number of scalar loads that we need to perform
18269     // in order to load our vector from memory.
18270     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18271     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18272       return SDValue();
18273
18274     unsigned loadRegZize = RegSz;
18275     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18276       loadRegZize /= 2;
18277
18278     // Represent our vector as a sequence of elements which are the
18279     // largest scalar that we can load.
18280     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18281       loadRegZize/SclrLoadTy.getSizeInBits());
18282
18283     // Represent the data using the same element type that is stored in
18284     // memory. In practice, we ''widen'' MemVT.
18285     EVT WideVecVT =
18286           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18287                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18288
18289     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18290       "Invalid vector type");
18291
18292     // We can't shuffle using an illegal type.
18293     if (!TLI.isTypeLegal(WideVecVT))
18294       return SDValue();
18295
18296     SmallVector<SDValue, 8> Chains;
18297     SDValue Ptr = Ld->getBasePtr();
18298     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18299                                         TLI.getPointerTy());
18300     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18301
18302     for (unsigned i = 0; i < NumLoads; ++i) {
18303       // Perform a single load.
18304       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18305                                        Ptr, Ld->getPointerInfo(),
18306                                        Ld->isVolatile(), Ld->isNonTemporal(),
18307                                        Ld->isInvariant(), Ld->getAlignment());
18308       Chains.push_back(ScalarLoad.getValue(1));
18309       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18310       // another round of DAGCombining.
18311       if (i == 0)
18312         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18313       else
18314         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18315                           ScalarLoad, DAG.getIntPtrConstant(i));
18316
18317       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18318     }
18319
18320     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18321                                Chains.size());
18322
18323     // Bitcast the loaded value to a vector of the original element type, in
18324     // the size of the target vector type.
18325     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18326     unsigned SizeRatio = RegSz/MemSz;
18327
18328     if (Ext == ISD::SEXTLOAD) {
18329       // If we have SSE4.1 we can directly emit a VSEXT node.
18330       if (Subtarget->hasSSE41()) {
18331         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18332         return DCI.CombineTo(N, Sext, TF, true);
18333       }
18334
18335       // Otherwise we'll shuffle the small elements in the high bits of the
18336       // larger type and perform an arithmetic shift. If the shift is not legal
18337       // it's better to scalarize.
18338       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18339         return SDValue();
18340
18341       // Redistribute the loaded elements into the different locations.
18342       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18343       for (unsigned i = 0; i != NumElems; ++i)
18344         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18345
18346       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18347                                            DAG.getUNDEF(WideVecVT),
18348                                            &ShuffleVec[0]);
18349
18350       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18351
18352       // Build the arithmetic shift.
18353       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18354                      MemVT.getVectorElementType().getSizeInBits();
18355       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18356                           DAG.getConstant(Amt, RegVT));
18357
18358       return DCI.CombineTo(N, Shuff, TF, true);
18359     }
18360
18361     // Redistribute the loaded elements into the different locations.
18362     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18363     for (unsigned i = 0; i != NumElems; ++i)
18364       ShuffleVec[i*SizeRatio] = i;
18365
18366     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18367                                          DAG.getUNDEF(WideVecVT),
18368                                          &ShuffleVec[0]);
18369
18370     // Bitcast to the requested type.
18371     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18372     // Replace the original load with the new sequence
18373     // and return the new chain.
18374     return DCI.CombineTo(N, Shuff, TF, true);
18375   }
18376
18377   return SDValue();
18378 }
18379
18380 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18381 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18382                                    const X86Subtarget *Subtarget) {
18383   StoreSDNode *St = cast<StoreSDNode>(N);
18384   EVT VT = St->getValue().getValueType();
18385   EVT StVT = St->getMemoryVT();
18386   SDLoc dl(St);
18387   SDValue StoredVal = St->getOperand(1);
18388   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18389
18390   // If we are saving a concatenation of two XMM registers, perform two stores.
18391   // On Sandy Bridge, 256-bit memory operations are executed by two
18392   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18393   // memory  operation.
18394   unsigned Alignment = St->getAlignment();
18395   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18396   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18397       StVT == VT && !IsAligned) {
18398     unsigned NumElems = VT.getVectorNumElements();
18399     if (NumElems < 2)
18400       return SDValue();
18401
18402     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18403     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18404
18405     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18406     SDValue Ptr0 = St->getBasePtr();
18407     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18408
18409     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18410                                 St->getPointerInfo(), St->isVolatile(),
18411                                 St->isNonTemporal(), Alignment);
18412     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18413                                 St->getPointerInfo(), St->isVolatile(),
18414                                 St->isNonTemporal(),
18415                                 std::min(16U, Alignment));
18416     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18417   }
18418
18419   // Optimize trunc store (of multiple scalars) to shuffle and store.
18420   // First, pack all of the elements in one place. Next, store to memory
18421   // in fewer chunks.
18422   if (St->isTruncatingStore() && VT.isVector()) {
18423     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18424     unsigned NumElems = VT.getVectorNumElements();
18425     assert(StVT != VT && "Cannot truncate to the same type");
18426     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18427     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18428
18429     // From, To sizes and ElemCount must be pow of two
18430     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18431     // We are going to use the original vector elt for storing.
18432     // Accumulated smaller vector elements must be a multiple of the store size.
18433     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18434
18435     unsigned SizeRatio  = FromSz / ToSz;
18436
18437     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18438
18439     // Create a type on which we perform the shuffle
18440     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18441             StVT.getScalarType(), NumElems*SizeRatio);
18442
18443     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18444
18445     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18446     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18447     for (unsigned i = 0; i != NumElems; ++i)
18448       ShuffleVec[i] = i * SizeRatio;
18449
18450     // Can't shuffle using an illegal type.
18451     if (!TLI.isTypeLegal(WideVecVT))
18452       return SDValue();
18453
18454     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18455                                          DAG.getUNDEF(WideVecVT),
18456                                          &ShuffleVec[0]);
18457     // At this point all of the data is stored at the bottom of the
18458     // register. We now need to save it to mem.
18459
18460     // Find the largest store unit
18461     MVT StoreType = MVT::i8;
18462     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18463          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18464       MVT Tp = (MVT::SimpleValueType)tp;
18465       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18466         StoreType = Tp;
18467     }
18468
18469     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18470     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18471         (64 <= NumElems * ToSz))
18472       StoreType = MVT::f64;
18473
18474     // Bitcast the original vector into a vector of store-size units
18475     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18476             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18477     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18478     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18479     SmallVector<SDValue, 8> Chains;
18480     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18481                                         TLI.getPointerTy());
18482     SDValue Ptr = St->getBasePtr();
18483
18484     // Perform one or more big stores into memory.
18485     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18486       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18487                                    StoreType, ShuffWide,
18488                                    DAG.getIntPtrConstant(i));
18489       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18490                                 St->getPointerInfo(), St->isVolatile(),
18491                                 St->isNonTemporal(), St->getAlignment());
18492       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18493       Chains.push_back(Ch);
18494     }
18495
18496     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18497                                Chains.size());
18498   }
18499
18500   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18501   // the FP state in cases where an emms may be missing.
18502   // A preferable solution to the general problem is to figure out the right
18503   // places to insert EMMS.  This qualifies as a quick hack.
18504
18505   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18506   if (VT.getSizeInBits() != 64)
18507     return SDValue();
18508
18509   const Function *F = DAG.getMachineFunction().getFunction();
18510   bool NoImplicitFloatOps = F->getAttributes().
18511     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18512   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18513                      && Subtarget->hasSSE2();
18514   if ((VT.isVector() ||
18515        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18516       isa<LoadSDNode>(St->getValue()) &&
18517       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18518       St->getChain().hasOneUse() && !St->isVolatile()) {
18519     SDNode* LdVal = St->getValue().getNode();
18520     LoadSDNode *Ld = 0;
18521     int TokenFactorIndex = -1;
18522     SmallVector<SDValue, 8> Ops;
18523     SDNode* ChainVal = St->getChain().getNode();
18524     // Must be a store of a load.  We currently handle two cases:  the load
18525     // is a direct child, and it's under an intervening TokenFactor.  It is
18526     // possible to dig deeper under nested TokenFactors.
18527     if (ChainVal == LdVal)
18528       Ld = cast<LoadSDNode>(St->getChain());
18529     else if (St->getValue().hasOneUse() &&
18530              ChainVal->getOpcode() == ISD::TokenFactor) {
18531       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18532         if (ChainVal->getOperand(i).getNode() == LdVal) {
18533           TokenFactorIndex = i;
18534           Ld = cast<LoadSDNode>(St->getValue());
18535         } else
18536           Ops.push_back(ChainVal->getOperand(i));
18537       }
18538     }
18539
18540     if (!Ld || !ISD::isNormalLoad(Ld))
18541       return SDValue();
18542
18543     // If this is not the MMX case, i.e. we are just turning i64 load/store
18544     // into f64 load/store, avoid the transformation if there are multiple
18545     // uses of the loaded value.
18546     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18547       return SDValue();
18548
18549     SDLoc LdDL(Ld);
18550     SDLoc StDL(N);
18551     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18552     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18553     // pair instead.
18554     if (Subtarget->is64Bit() || F64IsLegal) {
18555       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18556       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18557                                   Ld->getPointerInfo(), Ld->isVolatile(),
18558                                   Ld->isNonTemporal(), Ld->isInvariant(),
18559                                   Ld->getAlignment());
18560       SDValue NewChain = NewLd.getValue(1);
18561       if (TokenFactorIndex != -1) {
18562         Ops.push_back(NewChain);
18563         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18564                                Ops.size());
18565       }
18566       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18567                           St->getPointerInfo(),
18568                           St->isVolatile(), St->isNonTemporal(),
18569                           St->getAlignment());
18570     }
18571
18572     // Otherwise, lower to two pairs of 32-bit loads / stores.
18573     SDValue LoAddr = Ld->getBasePtr();
18574     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18575                                  DAG.getConstant(4, MVT::i32));
18576
18577     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18578                                Ld->getPointerInfo(),
18579                                Ld->isVolatile(), Ld->isNonTemporal(),
18580                                Ld->isInvariant(), Ld->getAlignment());
18581     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18582                                Ld->getPointerInfo().getWithOffset(4),
18583                                Ld->isVolatile(), Ld->isNonTemporal(),
18584                                Ld->isInvariant(),
18585                                MinAlign(Ld->getAlignment(), 4));
18586
18587     SDValue NewChain = LoLd.getValue(1);
18588     if (TokenFactorIndex != -1) {
18589       Ops.push_back(LoLd);
18590       Ops.push_back(HiLd);
18591       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18592                              Ops.size());
18593     }
18594
18595     LoAddr = St->getBasePtr();
18596     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18597                          DAG.getConstant(4, MVT::i32));
18598
18599     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18600                                 St->getPointerInfo(),
18601                                 St->isVolatile(), St->isNonTemporal(),
18602                                 St->getAlignment());
18603     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18604                                 St->getPointerInfo().getWithOffset(4),
18605                                 St->isVolatile(),
18606                                 St->isNonTemporal(),
18607                                 MinAlign(St->getAlignment(), 4));
18608     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18609   }
18610   return SDValue();
18611 }
18612
18613 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18614 /// and return the operands for the horizontal operation in LHS and RHS.  A
18615 /// horizontal operation performs the binary operation on successive elements
18616 /// of its first operand, then on successive elements of its second operand,
18617 /// returning the resulting values in a vector.  For example, if
18618 ///   A = < float a0, float a1, float a2, float a3 >
18619 /// and
18620 ///   B = < float b0, float b1, float b2, float b3 >
18621 /// then the result of doing a horizontal operation on A and B is
18622 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18623 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18624 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18625 /// set to A, RHS to B, and the routine returns 'true'.
18626 /// Note that the binary operation should have the property that if one of the
18627 /// operands is UNDEF then the result is UNDEF.
18628 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18629   // Look for the following pattern: if
18630   //   A = < float a0, float a1, float a2, float a3 >
18631   //   B = < float b0, float b1, float b2, float b3 >
18632   // and
18633   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18634   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18635   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18636   // which is A horizontal-op B.
18637
18638   // At least one of the operands should be a vector shuffle.
18639   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18640       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18641     return false;
18642
18643   MVT VT = LHS.getSimpleValueType();
18644
18645   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18646          "Unsupported vector type for horizontal add/sub");
18647
18648   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18649   // operate independently on 128-bit lanes.
18650   unsigned NumElts = VT.getVectorNumElements();
18651   unsigned NumLanes = VT.getSizeInBits()/128;
18652   unsigned NumLaneElts = NumElts / NumLanes;
18653   assert((NumLaneElts % 2 == 0) &&
18654          "Vector type should have an even number of elements in each lane");
18655   unsigned HalfLaneElts = NumLaneElts/2;
18656
18657   // View LHS in the form
18658   //   LHS = VECTOR_SHUFFLE A, B, LMask
18659   // If LHS is not a shuffle then pretend it is the shuffle
18660   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18661   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18662   // type VT.
18663   SDValue A, B;
18664   SmallVector<int, 16> LMask(NumElts);
18665   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18666     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18667       A = LHS.getOperand(0);
18668     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18669       B = LHS.getOperand(1);
18670     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18671     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18672   } else {
18673     if (LHS.getOpcode() != ISD::UNDEF)
18674       A = LHS;
18675     for (unsigned i = 0; i != NumElts; ++i)
18676       LMask[i] = i;
18677   }
18678
18679   // Likewise, view RHS in the form
18680   //   RHS = VECTOR_SHUFFLE C, D, RMask
18681   SDValue C, D;
18682   SmallVector<int, 16> RMask(NumElts);
18683   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18684     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18685       C = RHS.getOperand(0);
18686     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18687       D = RHS.getOperand(1);
18688     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18689     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18690   } else {
18691     if (RHS.getOpcode() != ISD::UNDEF)
18692       C = RHS;
18693     for (unsigned i = 0; i != NumElts; ++i)
18694       RMask[i] = i;
18695   }
18696
18697   // Check that the shuffles are both shuffling the same vectors.
18698   if (!(A == C && B == D) && !(A == D && B == C))
18699     return false;
18700
18701   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18702   if (!A.getNode() && !B.getNode())
18703     return false;
18704
18705   // If A and B occur in reverse order in RHS, then "swap" them (which means
18706   // rewriting the mask).
18707   if (A != C)
18708     CommuteVectorShuffleMask(RMask, NumElts);
18709
18710   // At this point LHS and RHS are equivalent to
18711   //   LHS = VECTOR_SHUFFLE A, B, LMask
18712   //   RHS = VECTOR_SHUFFLE A, B, RMask
18713   // Check that the masks correspond to performing a horizontal operation.
18714   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18715     for (unsigned i = 0; i != NumLaneElts; ++i) {
18716       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18717
18718       // Ignore any UNDEF components.
18719       if (LIdx < 0 || RIdx < 0 ||
18720           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18721           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18722         continue;
18723
18724       // Check that successive elements are being operated on.  If not, this is
18725       // not a horizontal operation.
18726       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18727       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18728       if (!(LIdx == Index && RIdx == Index + 1) &&
18729           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18730         return false;
18731     }
18732   }
18733
18734   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18735   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18736   return true;
18737 }
18738
18739 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18740 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18741                                   const X86Subtarget *Subtarget) {
18742   EVT VT = N->getValueType(0);
18743   SDValue LHS = N->getOperand(0);
18744   SDValue RHS = N->getOperand(1);
18745
18746   // Try to synthesize horizontal adds from adds of shuffles.
18747   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18748        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18749       isHorizontalBinOp(LHS, RHS, true))
18750     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18751   return SDValue();
18752 }
18753
18754 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18755 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18756                                   const X86Subtarget *Subtarget) {
18757   EVT VT = N->getValueType(0);
18758   SDValue LHS = N->getOperand(0);
18759   SDValue RHS = N->getOperand(1);
18760
18761   // Try to synthesize horizontal subs from subs of shuffles.
18762   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18763        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18764       isHorizontalBinOp(LHS, RHS, false))
18765     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18766   return SDValue();
18767 }
18768
18769 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18770 /// X86ISD::FXOR nodes.
18771 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18772   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18773   // F[X]OR(0.0, x) -> x
18774   // F[X]OR(x, 0.0) -> x
18775   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18776     if (C->getValueAPF().isPosZero())
18777       return N->getOperand(1);
18778   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18779     if (C->getValueAPF().isPosZero())
18780       return N->getOperand(0);
18781   return SDValue();
18782 }
18783
18784 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18785 /// X86ISD::FMAX nodes.
18786 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18787   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18788
18789   // Only perform optimizations if UnsafeMath is used.
18790   if (!DAG.getTarget().Options.UnsafeFPMath)
18791     return SDValue();
18792
18793   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18794   // into FMINC and FMAXC, which are Commutative operations.
18795   unsigned NewOp = 0;
18796   switch (N->getOpcode()) {
18797     default: llvm_unreachable("unknown opcode");
18798     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18799     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18800   }
18801
18802   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18803                      N->getOperand(0), N->getOperand(1));
18804 }
18805
18806 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18807 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18808   // FAND(0.0, x) -> 0.0
18809   // FAND(x, 0.0) -> 0.0
18810   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18811     if (C->getValueAPF().isPosZero())
18812       return N->getOperand(0);
18813   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18814     if (C->getValueAPF().isPosZero())
18815       return N->getOperand(1);
18816   return SDValue();
18817 }
18818
18819 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18820 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18821   // FANDN(x, 0.0) -> 0.0
18822   // FANDN(0.0, x) -> x
18823   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18824     if (C->getValueAPF().isPosZero())
18825       return N->getOperand(1);
18826   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18827     if (C->getValueAPF().isPosZero())
18828       return N->getOperand(1);
18829   return SDValue();
18830 }
18831
18832 static SDValue PerformBTCombine(SDNode *N,
18833                                 SelectionDAG &DAG,
18834                                 TargetLowering::DAGCombinerInfo &DCI) {
18835   // BT ignores high bits in the bit index operand.
18836   SDValue Op1 = N->getOperand(1);
18837   if (Op1.hasOneUse()) {
18838     unsigned BitWidth = Op1.getValueSizeInBits();
18839     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18840     APInt KnownZero, KnownOne;
18841     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18842                                           !DCI.isBeforeLegalizeOps());
18843     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18844     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18845         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18846       DCI.CommitTargetLoweringOpt(TLO);
18847   }
18848   return SDValue();
18849 }
18850
18851 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18852   SDValue Op = N->getOperand(0);
18853   if (Op.getOpcode() == ISD::BITCAST)
18854     Op = Op.getOperand(0);
18855   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18856   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18857       VT.getVectorElementType().getSizeInBits() ==
18858       OpVT.getVectorElementType().getSizeInBits()) {
18859     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18860   }
18861   return SDValue();
18862 }
18863
18864 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18865                                                const X86Subtarget *Subtarget) {
18866   EVT VT = N->getValueType(0);
18867   if (!VT.isVector())
18868     return SDValue();
18869
18870   SDValue N0 = N->getOperand(0);
18871   SDValue N1 = N->getOperand(1);
18872   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18873   SDLoc dl(N);
18874
18875   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18876   // both SSE and AVX2 since there is no sign-extended shift right
18877   // operation on a vector with 64-bit elements.
18878   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18879   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18880   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18881       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18882     SDValue N00 = N0.getOperand(0);
18883
18884     // EXTLOAD has a better solution on AVX2,
18885     // it may be replaced with X86ISD::VSEXT node.
18886     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18887       if (!ISD::isNormalLoad(N00.getNode()))
18888         return SDValue();
18889
18890     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18891         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18892                                   N00, N1);
18893       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18894     }
18895   }
18896   return SDValue();
18897 }
18898
18899 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18900                                   TargetLowering::DAGCombinerInfo &DCI,
18901                                   const X86Subtarget *Subtarget) {
18902   if (!DCI.isBeforeLegalizeOps())
18903     return SDValue();
18904
18905   if (!Subtarget->hasFp256())
18906     return SDValue();
18907
18908   EVT VT = N->getValueType(0);
18909   if (VT.isVector() && VT.getSizeInBits() == 256) {
18910     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18911     if (R.getNode())
18912       return R;
18913   }
18914
18915   return SDValue();
18916 }
18917
18918 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18919                                  const X86Subtarget* Subtarget) {
18920   SDLoc dl(N);
18921   EVT VT = N->getValueType(0);
18922
18923   // Let legalize expand this if it isn't a legal type yet.
18924   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18925     return SDValue();
18926
18927   EVT ScalarVT = VT.getScalarType();
18928   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18929       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18930     return SDValue();
18931
18932   SDValue A = N->getOperand(0);
18933   SDValue B = N->getOperand(1);
18934   SDValue C = N->getOperand(2);
18935
18936   bool NegA = (A.getOpcode() == ISD::FNEG);
18937   bool NegB = (B.getOpcode() == ISD::FNEG);
18938   bool NegC = (C.getOpcode() == ISD::FNEG);
18939
18940   // Negative multiplication when NegA xor NegB
18941   bool NegMul = (NegA != NegB);
18942   if (NegA)
18943     A = A.getOperand(0);
18944   if (NegB)
18945     B = B.getOperand(0);
18946   if (NegC)
18947     C = C.getOperand(0);
18948
18949   unsigned Opcode;
18950   if (!NegMul)
18951     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18952   else
18953     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18954
18955   return DAG.getNode(Opcode, dl, VT, A, B, C);
18956 }
18957
18958 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18959                                   TargetLowering::DAGCombinerInfo &DCI,
18960                                   const X86Subtarget *Subtarget) {
18961   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18962   //           (and (i32 x86isd::setcc_carry), 1)
18963   // This eliminates the zext. This transformation is necessary because
18964   // ISD::SETCC is always legalized to i8.
18965   SDLoc dl(N);
18966   SDValue N0 = N->getOperand(0);
18967   EVT VT = N->getValueType(0);
18968
18969   if (N0.getOpcode() == ISD::AND &&
18970       N0.hasOneUse() &&
18971       N0.getOperand(0).hasOneUse()) {
18972     SDValue N00 = N0.getOperand(0);
18973     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18974       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18975       if (!C || C->getZExtValue() != 1)
18976         return SDValue();
18977       return DAG.getNode(ISD::AND, dl, VT,
18978                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18979                                      N00.getOperand(0), N00.getOperand(1)),
18980                          DAG.getConstant(1, VT));
18981     }
18982   }
18983
18984   if (N0.getOpcode() == ISD::TRUNCATE &&
18985       N0.hasOneUse() &&
18986       N0.getOperand(0).hasOneUse()) {
18987     SDValue N00 = N0.getOperand(0);
18988     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18989       return DAG.getNode(ISD::AND, dl, VT,
18990                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18991                                      N00.getOperand(0), N00.getOperand(1)),
18992                          DAG.getConstant(1, VT));
18993     }
18994   }
18995   if (VT.is256BitVector()) {
18996     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18997     if (R.getNode())
18998       return R;
18999   }
19000
19001   return SDValue();
19002 }
19003
19004 // Optimize x == -y --> x+y == 0
19005 //          x != -y --> x+y != 0
19006 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
19007   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
19008   SDValue LHS = N->getOperand(0);
19009   SDValue RHS = N->getOperand(1);
19010
19011   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
19012     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
19013       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
19014         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19015                                    LHS.getValueType(), RHS, LHS.getOperand(1));
19016         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19017                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19018       }
19019   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
19020     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
19021       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
19022         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19023                                    RHS.getValueType(), LHS, RHS.getOperand(1));
19024         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19025                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19026       }
19027   return SDValue();
19028 }
19029
19030 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
19031 // as "sbb reg,reg", since it can be extended without zext and produces
19032 // an all-ones bit which is more useful than 0/1 in some cases.
19033 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
19034                                MVT VT) {
19035   if (VT == MVT::i8)
19036     return DAG.getNode(ISD::AND, DL, VT,
19037                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19038                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
19039                        DAG.getConstant(1, VT));
19040   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
19041   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
19042                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19043                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
19044 }
19045
19046 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
19047 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
19048                                    TargetLowering::DAGCombinerInfo &DCI,
19049                                    const X86Subtarget *Subtarget) {
19050   SDLoc DL(N);
19051   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
19052   SDValue EFLAGS = N->getOperand(1);
19053
19054   if (CC == X86::COND_A) {
19055     // Try to convert COND_A into COND_B in an attempt to facilitate
19056     // materializing "setb reg".
19057     //
19058     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
19059     // cannot take an immediate as its first operand.
19060     //
19061     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
19062         EFLAGS.getValueType().isInteger() &&
19063         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
19064       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
19065                                    EFLAGS.getNode()->getVTList(),
19066                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
19067       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
19068       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
19069     }
19070   }
19071
19072   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
19073   // a zext and produces an all-ones bit which is more useful than 0/1 in some
19074   // cases.
19075   if (CC == X86::COND_B)
19076     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
19077
19078   SDValue Flags;
19079
19080   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19081   if (Flags.getNode()) {
19082     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19083     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
19084   }
19085
19086   return SDValue();
19087 }
19088
19089 // Optimize branch condition evaluation.
19090 //
19091 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
19092                                     TargetLowering::DAGCombinerInfo &DCI,
19093                                     const X86Subtarget *Subtarget) {
19094   SDLoc DL(N);
19095   SDValue Chain = N->getOperand(0);
19096   SDValue Dest = N->getOperand(1);
19097   SDValue EFLAGS = N->getOperand(3);
19098   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
19099
19100   SDValue Flags;
19101
19102   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19103   if (Flags.getNode()) {
19104     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19105     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
19106                        Flags);
19107   }
19108
19109   return SDValue();
19110 }
19111
19112 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
19113                                         const X86TargetLowering *XTLI) {
19114   SDValue Op0 = N->getOperand(0);
19115   EVT InVT = Op0->getValueType(0);
19116
19117   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
19118   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
19119     SDLoc dl(N);
19120     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
19121     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
19122     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
19123   }
19124
19125   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
19126   // a 32-bit target where SSE doesn't support i64->FP operations.
19127   if (Op0.getOpcode() == ISD::LOAD) {
19128     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
19129     EVT VT = Ld->getValueType(0);
19130     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
19131         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
19132         !XTLI->getSubtarget()->is64Bit() &&
19133         VT == MVT::i64) {
19134       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
19135                                           Ld->getChain(), Op0, DAG);
19136       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
19137       return FILDChain;
19138     }
19139   }
19140   return SDValue();
19141 }
19142
19143 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
19144 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
19145                                  X86TargetLowering::DAGCombinerInfo &DCI) {
19146   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
19147   // the result is either zero or one (depending on the input carry bit).
19148   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
19149   if (X86::isZeroNode(N->getOperand(0)) &&
19150       X86::isZeroNode(N->getOperand(1)) &&
19151       // We don't have a good way to replace an EFLAGS use, so only do this when
19152       // dead right now.
19153       SDValue(N, 1).use_empty()) {
19154     SDLoc DL(N);
19155     EVT VT = N->getValueType(0);
19156     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
19157     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
19158                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
19159                                            DAG.getConstant(X86::COND_B,MVT::i8),
19160                                            N->getOperand(2)),
19161                                DAG.getConstant(1, VT));
19162     return DCI.CombineTo(N, Res1, CarryOut);
19163   }
19164
19165   return SDValue();
19166 }
19167
19168 // fold (add Y, (sete  X, 0)) -> adc  0, Y
19169 //      (add Y, (setne X, 0)) -> sbb -1, Y
19170 //      (sub (sete  X, 0), Y) -> sbb  0, Y
19171 //      (sub (setne X, 0), Y) -> adc -1, Y
19172 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
19173   SDLoc DL(N);
19174
19175   // Look through ZExts.
19176   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
19177   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
19178     return SDValue();
19179
19180   SDValue SetCC = Ext.getOperand(0);
19181   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
19182     return SDValue();
19183
19184   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
19185   if (CC != X86::COND_E && CC != X86::COND_NE)
19186     return SDValue();
19187
19188   SDValue Cmp = SetCC.getOperand(1);
19189   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
19190       !X86::isZeroNode(Cmp.getOperand(1)) ||
19191       !Cmp.getOperand(0).getValueType().isInteger())
19192     return SDValue();
19193
19194   SDValue CmpOp0 = Cmp.getOperand(0);
19195   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
19196                                DAG.getConstant(1, CmpOp0.getValueType()));
19197
19198   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
19199   if (CC == X86::COND_NE)
19200     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
19201                        DL, OtherVal.getValueType(), OtherVal,
19202                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
19203   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
19204                      DL, OtherVal.getValueType(), OtherVal,
19205                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
19206 }
19207
19208 /// PerformADDCombine - Do target-specific dag combines on integer adds.
19209 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
19210                                  const X86Subtarget *Subtarget) {
19211   EVT VT = N->getValueType(0);
19212   SDValue Op0 = N->getOperand(0);
19213   SDValue Op1 = N->getOperand(1);
19214
19215   // Try to synthesize horizontal adds from adds of shuffles.
19216   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19217        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19218       isHorizontalBinOp(Op0, Op1, true))
19219     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
19220
19221   return OptimizeConditionalInDecrement(N, DAG);
19222 }
19223
19224 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
19225                                  const X86Subtarget *Subtarget) {
19226   SDValue Op0 = N->getOperand(0);
19227   SDValue Op1 = N->getOperand(1);
19228
19229   // X86 can't encode an immediate LHS of a sub. See if we can push the
19230   // negation into a preceding instruction.
19231   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
19232     // If the RHS of the sub is a XOR with one use and a constant, invert the
19233     // immediate. Then add one to the LHS of the sub so we can turn
19234     // X-Y -> X+~Y+1, saving one register.
19235     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
19236         isa<ConstantSDNode>(Op1.getOperand(1))) {
19237       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
19238       EVT VT = Op0.getValueType();
19239       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
19240                                    Op1.getOperand(0),
19241                                    DAG.getConstant(~XorC, VT));
19242       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
19243                          DAG.getConstant(C->getAPIntValue()+1, VT));
19244     }
19245   }
19246
19247   // Try to synthesize horizontal adds from adds of shuffles.
19248   EVT VT = N->getValueType(0);
19249   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19250        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19251       isHorizontalBinOp(Op0, Op1, true))
19252     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
19253
19254   return OptimizeConditionalInDecrement(N, DAG);
19255 }
19256
19257 /// performVZEXTCombine - Performs build vector combines
19258 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19259                                         TargetLowering::DAGCombinerInfo &DCI,
19260                                         const X86Subtarget *Subtarget) {
19261   // (vzext (bitcast (vzext (x)) -> (vzext x)
19262   SDValue In = N->getOperand(0);
19263   while (In.getOpcode() == ISD::BITCAST)
19264     In = In.getOperand(0);
19265
19266   if (In.getOpcode() != X86ISD::VZEXT)
19267     return SDValue();
19268
19269   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
19270                      In.getOperand(0));
19271 }
19272
19273 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19274                                              DAGCombinerInfo &DCI) const {
19275   SelectionDAG &DAG = DCI.DAG;
19276   switch (N->getOpcode()) {
19277   default: break;
19278   case ISD::EXTRACT_VECTOR_ELT:
19279     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19280   case ISD::VSELECT:
19281   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19282   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19283   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19284   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19285   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19286   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19287   case ISD::SHL:
19288   case ISD::SRA:
19289   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19290   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19291   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19292   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19293   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19294   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19295   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19296   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19297   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19298   case X86ISD::FXOR:
19299   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19300   case X86ISD::FMIN:
19301   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19302   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19303   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19304   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19305   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19306   case ISD::ANY_EXTEND:
19307   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19308   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19309   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19310   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19311   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19312   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19313   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19314   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19315   case X86ISD::SHUFP:       // Handle all target specific shuffles
19316   case X86ISD::PALIGNR:
19317   case X86ISD::UNPCKH:
19318   case X86ISD::UNPCKL:
19319   case X86ISD::MOVHLPS:
19320   case X86ISD::MOVLHPS:
19321   case X86ISD::PSHUFD:
19322   case X86ISD::PSHUFHW:
19323   case X86ISD::PSHUFLW:
19324   case X86ISD::MOVSS:
19325   case X86ISD::MOVSD:
19326   case X86ISD::VPERMILP:
19327   case X86ISD::VPERM2X128:
19328   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19329   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19330   }
19331
19332   return SDValue();
19333 }
19334
19335 /// isTypeDesirableForOp - Return true if the target has native support for
19336 /// the specified value type and it is 'desirable' to use the type for the
19337 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19338 /// instruction encodings are longer and some i16 instructions are slow.
19339 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19340   if (!isTypeLegal(VT))
19341     return false;
19342   if (VT != MVT::i16)
19343     return true;
19344
19345   switch (Opc) {
19346   default:
19347     return true;
19348   case ISD::LOAD:
19349   case ISD::SIGN_EXTEND:
19350   case ISD::ZERO_EXTEND:
19351   case ISD::ANY_EXTEND:
19352   case ISD::SHL:
19353   case ISD::SRL:
19354   case ISD::SUB:
19355   case ISD::ADD:
19356   case ISD::MUL:
19357   case ISD::AND:
19358   case ISD::OR:
19359   case ISD::XOR:
19360     return false;
19361   }
19362 }
19363
19364 /// IsDesirableToPromoteOp - This method query the target whether it is
19365 /// beneficial for dag combiner to promote the specified node. If true, it
19366 /// should return the desired promotion type by reference.
19367 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19368   EVT VT = Op.getValueType();
19369   if (VT != MVT::i16)
19370     return false;
19371
19372   bool Promote = false;
19373   bool Commute = false;
19374   switch (Op.getOpcode()) {
19375   default: break;
19376   case ISD::LOAD: {
19377     LoadSDNode *LD = cast<LoadSDNode>(Op);
19378     // If the non-extending load has a single use and it's not live out, then it
19379     // might be folded.
19380     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19381                                                      Op.hasOneUse()*/) {
19382       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19383              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19384         // The only case where we'd want to promote LOAD (rather then it being
19385         // promoted as an operand is when it's only use is liveout.
19386         if (UI->getOpcode() != ISD::CopyToReg)
19387           return false;
19388       }
19389     }
19390     Promote = true;
19391     break;
19392   }
19393   case ISD::SIGN_EXTEND:
19394   case ISD::ZERO_EXTEND:
19395   case ISD::ANY_EXTEND:
19396     Promote = true;
19397     break;
19398   case ISD::SHL:
19399   case ISD::SRL: {
19400     SDValue N0 = Op.getOperand(0);
19401     // Look out for (store (shl (load), x)).
19402     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19403       return false;
19404     Promote = true;
19405     break;
19406   }
19407   case ISD::ADD:
19408   case ISD::MUL:
19409   case ISD::AND:
19410   case ISD::OR:
19411   case ISD::XOR:
19412     Commute = true;
19413     // fallthrough
19414   case ISD::SUB: {
19415     SDValue N0 = Op.getOperand(0);
19416     SDValue N1 = Op.getOperand(1);
19417     if (!Commute && MayFoldLoad(N1))
19418       return false;
19419     // Avoid disabling potential load folding opportunities.
19420     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19421       return false;
19422     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19423       return false;
19424     Promote = true;
19425   }
19426   }
19427
19428   PVT = MVT::i32;
19429   return Promote;
19430 }
19431
19432 //===----------------------------------------------------------------------===//
19433 //                           X86 Inline Assembly Support
19434 //===----------------------------------------------------------------------===//
19435
19436 namespace {
19437   // Helper to match a string separated by whitespace.
19438   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19439     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19440
19441     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19442       StringRef piece(*args[i]);
19443       if (!s.startswith(piece)) // Check if the piece matches.
19444         return false;
19445
19446       s = s.substr(piece.size());
19447       StringRef::size_type pos = s.find_first_not_of(" \t");
19448       if (pos == 0) // We matched a prefix.
19449         return false;
19450
19451       s = s.substr(pos);
19452     }
19453
19454     return s.empty();
19455   }
19456   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19457 }
19458
19459 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19460
19461   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19462     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19463         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19464         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19465
19466       if (AsmPieces.size() == 3)
19467         return true;
19468       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19469         return true;
19470     }
19471   }
19472   return false;
19473 }
19474
19475 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19476   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19477
19478   std::string AsmStr = IA->getAsmString();
19479
19480   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19481   if (!Ty || Ty->getBitWidth() % 16 != 0)
19482     return false;
19483
19484   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19485   SmallVector<StringRef, 4> AsmPieces;
19486   SplitString(AsmStr, AsmPieces, ";\n");
19487
19488   switch (AsmPieces.size()) {
19489   default: return false;
19490   case 1:
19491     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19492     // we will turn this bswap into something that will be lowered to logical
19493     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19494     // lower so don't worry about this.
19495     // bswap $0
19496     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19497         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19498         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19499         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19500         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19501         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19502       // No need to check constraints, nothing other than the equivalent of
19503       // "=r,0" would be valid here.
19504       return IntrinsicLowering::LowerToByteSwap(CI);
19505     }
19506
19507     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19508     if (CI->getType()->isIntegerTy(16) &&
19509         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19510         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19511          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19512       AsmPieces.clear();
19513       const std::string &ConstraintsStr = IA->getConstraintString();
19514       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19515       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19516       if (clobbersFlagRegisters(AsmPieces))
19517         return IntrinsicLowering::LowerToByteSwap(CI);
19518     }
19519     break;
19520   case 3:
19521     if (CI->getType()->isIntegerTy(32) &&
19522         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19523         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19524         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19525         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19526       AsmPieces.clear();
19527       const std::string &ConstraintsStr = IA->getConstraintString();
19528       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19529       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19530       if (clobbersFlagRegisters(AsmPieces))
19531         return IntrinsicLowering::LowerToByteSwap(CI);
19532     }
19533
19534     if (CI->getType()->isIntegerTy(64)) {
19535       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19536       if (Constraints.size() >= 2 &&
19537           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19538           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19539         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19540         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19541             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19542             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19543           return IntrinsicLowering::LowerToByteSwap(CI);
19544       }
19545     }
19546     break;
19547   }
19548   return false;
19549 }
19550
19551 /// getConstraintType - Given a constraint letter, return the type of
19552 /// constraint it is for this target.
19553 X86TargetLowering::ConstraintType
19554 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19555   if (Constraint.size() == 1) {
19556     switch (Constraint[0]) {
19557     case 'R':
19558     case 'q':
19559     case 'Q':
19560     case 'f':
19561     case 't':
19562     case 'u':
19563     case 'y':
19564     case 'x':
19565     case 'Y':
19566     case 'l':
19567       return C_RegisterClass;
19568     case 'a':
19569     case 'b':
19570     case 'c':
19571     case 'd':
19572     case 'S':
19573     case 'D':
19574     case 'A':
19575       return C_Register;
19576     case 'I':
19577     case 'J':
19578     case 'K':
19579     case 'L':
19580     case 'M':
19581     case 'N':
19582     case 'G':
19583     case 'C':
19584     case 'e':
19585     case 'Z':
19586       return C_Other;
19587     default:
19588       break;
19589     }
19590   }
19591   return TargetLowering::getConstraintType(Constraint);
19592 }
19593
19594 /// Examine constraint type and operand type and determine a weight value.
19595 /// This object must already have been set up with the operand type
19596 /// and the current alternative constraint selected.
19597 TargetLowering::ConstraintWeight
19598   X86TargetLowering::getSingleConstraintMatchWeight(
19599     AsmOperandInfo &info, const char *constraint) const {
19600   ConstraintWeight weight = CW_Invalid;
19601   Value *CallOperandVal = info.CallOperandVal;
19602     // If we don't have a value, we can't do a match,
19603     // but allow it at the lowest weight.
19604   if (CallOperandVal == NULL)
19605     return CW_Default;
19606   Type *type = CallOperandVal->getType();
19607   // Look at the constraint type.
19608   switch (*constraint) {
19609   default:
19610     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19611   case 'R':
19612   case 'q':
19613   case 'Q':
19614   case 'a':
19615   case 'b':
19616   case 'c':
19617   case 'd':
19618   case 'S':
19619   case 'D':
19620   case 'A':
19621     if (CallOperandVal->getType()->isIntegerTy())
19622       weight = CW_SpecificReg;
19623     break;
19624   case 'f':
19625   case 't':
19626   case 'u':
19627     if (type->isFloatingPointTy())
19628       weight = CW_SpecificReg;
19629     break;
19630   case 'y':
19631     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19632       weight = CW_SpecificReg;
19633     break;
19634   case 'x':
19635   case 'Y':
19636     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19637         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19638       weight = CW_Register;
19639     break;
19640   case 'I':
19641     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19642       if (C->getZExtValue() <= 31)
19643         weight = CW_Constant;
19644     }
19645     break;
19646   case 'J':
19647     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19648       if (C->getZExtValue() <= 63)
19649         weight = CW_Constant;
19650     }
19651     break;
19652   case 'K':
19653     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19654       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19655         weight = CW_Constant;
19656     }
19657     break;
19658   case 'L':
19659     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19660       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19661         weight = CW_Constant;
19662     }
19663     break;
19664   case 'M':
19665     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19666       if (C->getZExtValue() <= 3)
19667         weight = CW_Constant;
19668     }
19669     break;
19670   case 'N':
19671     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19672       if (C->getZExtValue() <= 0xff)
19673         weight = CW_Constant;
19674     }
19675     break;
19676   case 'G':
19677   case 'C':
19678     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19679       weight = CW_Constant;
19680     }
19681     break;
19682   case 'e':
19683     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19684       if ((C->getSExtValue() >= -0x80000000LL) &&
19685           (C->getSExtValue() <= 0x7fffffffLL))
19686         weight = CW_Constant;
19687     }
19688     break;
19689   case 'Z':
19690     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19691       if (C->getZExtValue() <= 0xffffffff)
19692         weight = CW_Constant;
19693     }
19694     break;
19695   }
19696   return weight;
19697 }
19698
19699 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19700 /// with another that has more specific requirements based on the type of the
19701 /// corresponding operand.
19702 const char *X86TargetLowering::
19703 LowerXConstraint(EVT ConstraintVT) const {
19704   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19705   // 'f' like normal targets.
19706   if (ConstraintVT.isFloatingPoint()) {
19707     if (Subtarget->hasSSE2())
19708       return "Y";
19709     if (Subtarget->hasSSE1())
19710       return "x";
19711   }
19712
19713   return TargetLowering::LowerXConstraint(ConstraintVT);
19714 }
19715
19716 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19717 /// vector.  If it is invalid, don't add anything to Ops.
19718 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19719                                                      std::string &Constraint,
19720                                                      std::vector<SDValue>&Ops,
19721                                                      SelectionDAG &DAG) const {
19722   SDValue Result(0, 0);
19723
19724   // Only support length 1 constraints for now.
19725   if (Constraint.length() > 1) return;
19726
19727   char ConstraintLetter = Constraint[0];
19728   switch (ConstraintLetter) {
19729   default: break;
19730   case 'I':
19731     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19732       if (C->getZExtValue() <= 31) {
19733         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19734         break;
19735       }
19736     }
19737     return;
19738   case 'J':
19739     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19740       if (C->getZExtValue() <= 63) {
19741         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19742         break;
19743       }
19744     }
19745     return;
19746   case 'K':
19747     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19748       if (isInt<8>(C->getSExtValue())) {
19749         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19750         break;
19751       }
19752     }
19753     return;
19754   case 'N':
19755     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19756       if (C->getZExtValue() <= 255) {
19757         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19758         break;
19759       }
19760     }
19761     return;
19762   case 'e': {
19763     // 32-bit signed value
19764     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19765       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19766                                            C->getSExtValue())) {
19767         // Widen to 64 bits here to get it sign extended.
19768         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19769         break;
19770       }
19771     // FIXME gcc accepts some relocatable values here too, but only in certain
19772     // memory models; it's complicated.
19773     }
19774     return;
19775   }
19776   case 'Z': {
19777     // 32-bit unsigned value
19778     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19779       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19780                                            C->getZExtValue())) {
19781         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19782         break;
19783       }
19784     }
19785     // FIXME gcc accepts some relocatable values here too, but only in certain
19786     // memory models; it's complicated.
19787     return;
19788   }
19789   case 'i': {
19790     // Literal immediates are always ok.
19791     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19792       // Widen to 64 bits here to get it sign extended.
19793       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19794       break;
19795     }
19796
19797     // In any sort of PIC mode addresses need to be computed at runtime by
19798     // adding in a register or some sort of table lookup.  These can't
19799     // be used as immediates.
19800     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19801       return;
19802
19803     // If we are in non-pic codegen mode, we allow the address of a global (with
19804     // an optional displacement) to be used with 'i'.
19805     GlobalAddressSDNode *GA = 0;
19806     int64_t Offset = 0;
19807
19808     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19809     while (1) {
19810       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19811         Offset += GA->getOffset();
19812         break;
19813       } else if (Op.getOpcode() == ISD::ADD) {
19814         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19815           Offset += C->getZExtValue();
19816           Op = Op.getOperand(0);
19817           continue;
19818         }
19819       } else if (Op.getOpcode() == ISD::SUB) {
19820         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19821           Offset += -C->getZExtValue();
19822           Op = Op.getOperand(0);
19823           continue;
19824         }
19825       }
19826
19827       // Otherwise, this isn't something we can handle, reject it.
19828       return;
19829     }
19830
19831     const GlobalValue *GV = GA->getGlobal();
19832     // If we require an extra load to get this address, as in PIC mode, we
19833     // can't accept it.
19834     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19835                                                         getTargetMachine())))
19836       return;
19837
19838     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19839                                         GA->getValueType(0), Offset);
19840     break;
19841   }
19842   }
19843
19844   if (Result.getNode()) {
19845     Ops.push_back(Result);
19846     return;
19847   }
19848   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19849 }
19850
19851 std::pair<unsigned, const TargetRegisterClass*>
19852 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19853                                                 MVT VT) const {
19854   // First, see if this is a constraint that directly corresponds to an LLVM
19855   // register class.
19856   if (Constraint.size() == 1) {
19857     // GCC Constraint Letters
19858     switch (Constraint[0]) {
19859     default: break;
19860       // TODO: Slight differences here in allocation order and leaving
19861       // RIP in the class. Do they matter any more here than they do
19862       // in the normal allocation?
19863     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19864       if (Subtarget->is64Bit()) {
19865         if (VT == MVT::i32 || VT == MVT::f32)
19866           return std::make_pair(0U, &X86::GR32RegClass);
19867         if (VT == MVT::i16)
19868           return std::make_pair(0U, &X86::GR16RegClass);
19869         if (VT == MVT::i8 || VT == MVT::i1)
19870           return std::make_pair(0U, &X86::GR8RegClass);
19871         if (VT == MVT::i64 || VT == MVT::f64)
19872           return std::make_pair(0U, &X86::GR64RegClass);
19873         break;
19874       }
19875       // 32-bit fallthrough
19876     case 'Q':   // Q_REGS
19877       if (VT == MVT::i32 || VT == MVT::f32)
19878         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19879       if (VT == MVT::i16)
19880         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19881       if (VT == MVT::i8 || VT == MVT::i1)
19882         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19883       if (VT == MVT::i64)
19884         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19885       break;
19886     case 'r':   // GENERAL_REGS
19887     case 'l':   // INDEX_REGS
19888       if (VT == MVT::i8 || VT == MVT::i1)
19889         return std::make_pair(0U, &X86::GR8RegClass);
19890       if (VT == MVT::i16)
19891         return std::make_pair(0U, &X86::GR16RegClass);
19892       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19893         return std::make_pair(0U, &X86::GR32RegClass);
19894       return std::make_pair(0U, &X86::GR64RegClass);
19895     case 'R':   // LEGACY_REGS
19896       if (VT == MVT::i8 || VT == MVT::i1)
19897         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19898       if (VT == MVT::i16)
19899         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19900       if (VT == MVT::i32 || !Subtarget->is64Bit())
19901         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19902       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19903     case 'f':  // FP Stack registers.
19904       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19905       // value to the correct fpstack register class.
19906       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19907         return std::make_pair(0U, &X86::RFP32RegClass);
19908       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19909         return std::make_pair(0U, &X86::RFP64RegClass);
19910       return std::make_pair(0U, &X86::RFP80RegClass);
19911     case 'y':   // MMX_REGS if MMX allowed.
19912       if (!Subtarget->hasMMX()) break;
19913       return std::make_pair(0U, &X86::VR64RegClass);
19914     case 'Y':   // SSE_REGS if SSE2 allowed
19915       if (!Subtarget->hasSSE2()) break;
19916       // FALL THROUGH.
19917     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19918       if (!Subtarget->hasSSE1()) break;
19919
19920       switch (VT.SimpleTy) {
19921       default: break;
19922       // Scalar SSE types.
19923       case MVT::f32:
19924       case MVT::i32:
19925         return std::make_pair(0U, &X86::FR32RegClass);
19926       case MVT::f64:
19927       case MVT::i64:
19928         return std::make_pair(0U, &X86::FR64RegClass);
19929       // Vector types.
19930       case MVT::v16i8:
19931       case MVT::v8i16:
19932       case MVT::v4i32:
19933       case MVT::v2i64:
19934       case MVT::v4f32:
19935       case MVT::v2f64:
19936         return std::make_pair(0U, &X86::VR128RegClass);
19937       // AVX types.
19938       case MVT::v32i8:
19939       case MVT::v16i16:
19940       case MVT::v8i32:
19941       case MVT::v4i64:
19942       case MVT::v8f32:
19943       case MVT::v4f64:
19944         return std::make_pair(0U, &X86::VR256RegClass);
19945       case MVT::v8f64:
19946       case MVT::v16f32:
19947       case MVT::v16i32:
19948       case MVT::v8i64:
19949         return std::make_pair(0U, &X86::VR512RegClass);
19950       }
19951       break;
19952     }
19953   }
19954
19955   // Use the default implementation in TargetLowering to convert the register
19956   // constraint into a member of a register class.
19957   std::pair<unsigned, const TargetRegisterClass*> Res;
19958   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19959
19960   // Not found as a standard register?
19961   if (Res.second == 0) {
19962     // Map st(0) -> st(7) -> ST0
19963     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19964         tolower(Constraint[1]) == 's' &&
19965         tolower(Constraint[2]) == 't' &&
19966         Constraint[3] == '(' &&
19967         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19968         Constraint[5] == ')' &&
19969         Constraint[6] == '}') {
19970
19971       Res.first = X86::ST0+Constraint[4]-'0';
19972       Res.second = &X86::RFP80RegClass;
19973       return Res;
19974     }
19975
19976     // GCC allows "st(0)" to be called just plain "st".
19977     if (StringRef("{st}").equals_lower(Constraint)) {
19978       Res.first = X86::ST0;
19979       Res.second = &X86::RFP80RegClass;
19980       return Res;
19981     }
19982
19983     // flags -> EFLAGS
19984     if (StringRef("{flags}").equals_lower(Constraint)) {
19985       Res.first = X86::EFLAGS;
19986       Res.second = &X86::CCRRegClass;
19987       return Res;
19988     }
19989
19990     // 'A' means EAX + EDX.
19991     if (Constraint == "A") {
19992       Res.first = X86::EAX;
19993       Res.second = &X86::GR32_ADRegClass;
19994       return Res;
19995     }
19996     return Res;
19997   }
19998
19999   // Otherwise, check to see if this is a register class of the wrong value
20000   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
20001   // turn into {ax},{dx}.
20002   if (Res.second->hasType(VT))
20003     return Res;   // Correct type already, nothing to do.
20004
20005   // All of the single-register GCC register classes map their values onto
20006   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
20007   // really want an 8-bit or 32-bit register, map to the appropriate register
20008   // class and return the appropriate register.
20009   if (Res.second == &X86::GR16RegClass) {
20010     if (VT == MVT::i8 || VT == MVT::i1) {
20011       unsigned DestReg = 0;
20012       switch (Res.first) {
20013       default: break;
20014       case X86::AX: DestReg = X86::AL; break;
20015       case X86::DX: DestReg = X86::DL; break;
20016       case X86::CX: DestReg = X86::CL; break;
20017       case X86::BX: DestReg = X86::BL; break;
20018       }
20019       if (DestReg) {
20020         Res.first = DestReg;
20021         Res.second = &X86::GR8RegClass;
20022       }
20023     } else if (VT == MVT::i32 || VT == MVT::f32) {
20024       unsigned DestReg = 0;
20025       switch (Res.first) {
20026       default: break;
20027       case X86::AX: DestReg = X86::EAX; break;
20028       case X86::DX: DestReg = X86::EDX; break;
20029       case X86::CX: DestReg = X86::ECX; break;
20030       case X86::BX: DestReg = X86::EBX; break;
20031       case X86::SI: DestReg = X86::ESI; break;
20032       case X86::DI: DestReg = X86::EDI; break;
20033       case X86::BP: DestReg = X86::EBP; break;
20034       case X86::SP: DestReg = X86::ESP; break;
20035       }
20036       if (DestReg) {
20037         Res.first = DestReg;
20038         Res.second = &X86::GR32RegClass;
20039       }
20040     } else if (VT == MVT::i64 || VT == MVT::f64) {
20041       unsigned DestReg = 0;
20042       switch (Res.first) {
20043       default: break;
20044       case X86::AX: DestReg = X86::RAX; break;
20045       case X86::DX: DestReg = X86::RDX; break;
20046       case X86::CX: DestReg = X86::RCX; break;
20047       case X86::BX: DestReg = X86::RBX; break;
20048       case X86::SI: DestReg = X86::RSI; break;
20049       case X86::DI: DestReg = X86::RDI; break;
20050       case X86::BP: DestReg = X86::RBP; break;
20051       case X86::SP: DestReg = X86::RSP; break;
20052       }
20053       if (DestReg) {
20054         Res.first = DestReg;
20055         Res.second = &X86::GR64RegClass;
20056       }
20057     }
20058   } else if (Res.second == &X86::FR32RegClass ||
20059              Res.second == &X86::FR64RegClass ||
20060              Res.second == &X86::VR128RegClass ||
20061              Res.second == &X86::VR256RegClass ||
20062              Res.second == &X86::FR32XRegClass ||
20063              Res.second == &X86::FR64XRegClass ||
20064              Res.second == &X86::VR128XRegClass ||
20065              Res.second == &X86::VR256XRegClass ||
20066              Res.second == &X86::VR512RegClass) {
20067     // Handle references to XMM physical registers that got mapped into the
20068     // wrong class.  This can happen with constraints like {xmm0} where the
20069     // target independent register mapper will just pick the first match it can
20070     // find, ignoring the required type.
20071
20072     if (VT == MVT::f32 || VT == MVT::i32)
20073       Res.second = &X86::FR32RegClass;
20074     else if (VT == MVT::f64 || VT == MVT::i64)
20075       Res.second = &X86::FR64RegClass;
20076     else if (X86::VR128RegClass.hasType(VT))
20077       Res.second = &X86::VR128RegClass;
20078     else if (X86::VR256RegClass.hasType(VT))
20079       Res.second = &X86::VR256RegClass;
20080     else if (X86::VR512RegClass.hasType(VT))
20081       Res.second = &X86::VR512RegClass;
20082   }
20083
20084   return Res;
20085 }