Emit an error message if the value passed to __builtin_returnaddress isn't a constant
[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/IR/LLVMContext.h"
43 #include "llvm/MC/MCAsmInfo.h"
44 #include "llvm/MC/MCContext.h"
45 #include "llvm/MC/MCExpr.h"
46 #include "llvm/MC/MCSymbol.h"
47 #include "llvm/Support/CallSite.h"
48 #include "llvm/Support/Debug.h"
49 #include "llvm/Support/ErrorHandling.h"
50 #include "llvm/Support/MathExtras.h"
51 #include "llvm/Target/TargetOptions.h"
52 #include <bitset>
53 #include <cctype>
54 using namespace llvm;
55
56 STATISTIC(NumTailCalls, "Number of tail calls");
57
58 // Forward declarations.
59 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
60                        SDValue V2);
61
62 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
63                                 SelectionDAG &DAG, SDLoc dl,
64                                 unsigned vectorWidth) {
65   assert((vectorWidth == 128 || vectorWidth == 256) &&
66          "Unsupported vector width");
67   EVT VT = Vec.getValueType();
68   EVT ElVT = VT.getVectorElementType();
69   unsigned Factor = VT.getSizeInBits()/vectorWidth;
70   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
71                                   VT.getVectorNumElements()/Factor);
72
73   // Extract from UNDEF is UNDEF.
74   if (Vec.getOpcode() == ISD::UNDEF)
75     return DAG.getUNDEF(ResultVT);
76
77   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
78   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
79
80   // This is the index of the first element of the vectorWidth-bit chunk
81   // we want.
82   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
83                                * ElemsPerChunk);
84
85   // If the input is a buildvector just emit a smaller one.
86   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
87     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
88                        Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
89
90   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
91   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
92                                VecIdx);
93
94   return Result;
95
96 }
97 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
98 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
99 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
100 /// instructions or a simple subregister reference. Idx is an index in the
101 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
102 /// lowering EXTRACT_VECTOR_ELT operations easier.
103 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
104                                    SelectionDAG &DAG, SDLoc dl) {
105   assert((Vec.getValueType().is256BitVector() ||
106           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
107   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
108 }
109
110 /// Generate a DAG to grab 256-bits from a 512-bit vector.
111 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
112                                    SelectionDAG &DAG, SDLoc dl) {
113   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
114   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
115 }
116
117 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
118                                unsigned IdxVal, SelectionDAG &DAG,
119                                SDLoc dl, unsigned vectorWidth) {
120   assert((vectorWidth == 128 || vectorWidth == 256) &&
121          "Unsupported vector width");
122   // Inserting UNDEF is Result
123   if (Vec.getOpcode() == ISD::UNDEF)
124     return Result;
125   EVT VT = Vec.getValueType();
126   EVT ElVT = VT.getVectorElementType();
127   EVT ResultVT = Result.getValueType();
128
129   // Insert the relevant vectorWidth bits.
130   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
131
132   // This is the index of the first element of the vectorWidth-bit chunk
133   // we want.
134   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
135                                * ElemsPerChunk);
136
137   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
138   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
139                      VecIdx);
140 }
141 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
142 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
143 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
144 /// simple superregister reference.  Idx is an index in the 128 bits
145 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
146 /// lowering INSERT_VECTOR_ELT operations easier.
147 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
148                                   unsigned IdxVal, SelectionDAG &DAG,
149                                   SDLoc dl) {
150   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
151   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
152 }
153
154 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
155                                   unsigned IdxVal, SelectionDAG &DAG,
156                                   SDLoc dl) {
157   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
158   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
159 }
160
161 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
162 /// instructions. This is used because creating CONCAT_VECTOR nodes of
163 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
164 /// large BUILD_VECTORS.
165 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
166                                    unsigned NumElems, SelectionDAG &DAG,
167                                    SDLoc dl) {
168   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
169   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
170 }
171
172 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
173                                    unsigned NumElems, SelectionDAG &DAG,
174                                    SDLoc dl) {
175   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
176   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
177 }
178
179 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
180   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
181   bool is64Bit = Subtarget->is64Bit();
182
183   if (Subtarget->isTargetMacho()) {
184     if (is64Bit)
185       return new X86_64MachoTargetObjectFile();
186     return new TargetLoweringObjectFileMachO();
187   }
188
189   if (Subtarget->isTargetLinux())
190     return new X86LinuxTargetObjectFile();
191   if (Subtarget->isTargetELF())
192     return new TargetLoweringObjectFileELF();
193   if (Subtarget->isTargetCOFF())
194     return new TargetLoweringObjectFileCOFF();
195   llvm_unreachable("unknown subtarget type");
196 }
197
198 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
199   : TargetLowering(TM, createTLOF(TM)) {
200   Subtarget = &TM.getSubtarget<X86Subtarget>();
201   X86ScalarSSEf64 = Subtarget->hasSSE2();
202   X86ScalarSSEf32 = Subtarget->hasSSE1();
203   TD = getDataLayout();
204
205   resetOperationActions();
206 }
207
208 void X86TargetLowering::resetOperationActions() {
209   const TargetMachine &TM = getTargetMachine();
210   static bool FirstTimeThrough = true;
211
212   // If none of the target options have changed, then we don't need to reset the
213   // operation actions.
214   if (!FirstTimeThrough && TO == TM.Options) return;
215
216   if (!FirstTimeThrough) {
217     // Reinitialize the actions.
218     initActions();
219     FirstTimeThrough = false;
220   }
221
222   TO = TM.Options;
223
224   // Set up the TargetLowering object.
225   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
226
227   // X86 is weird, it always uses i8 for shift amounts and setcc results.
228   setBooleanContents(ZeroOrOneBooleanContent);
229   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
230   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
231
232   // For 64-bit since we have so many registers use the ILP scheduler, for
233   // 32-bit code use the register pressure specific scheduling.
234   // For Atom, always use ILP scheduling.
235   if (Subtarget->isAtom())
236     setSchedulingPreference(Sched::ILP);
237   else if (Subtarget->is64Bit())
238     setSchedulingPreference(Sched::ILP);
239   else
240     setSchedulingPreference(Sched::RegPressure);
241   const X86RegisterInfo *RegInfo =
242     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
243   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
244
245   // Bypass expensive divides on Atom when compiling with O2
246   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
247     addBypassSlowDiv(32, 8);
248     if (Subtarget->is64Bit())
249       addBypassSlowDiv(64, 16);
250   }
251
252   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
253     // Setup Windows compiler runtime calls.
254     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
255     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
256     setLibcallName(RTLIB::SREM_I64, "_allrem");
257     setLibcallName(RTLIB::UREM_I64, "_aullrem");
258     setLibcallName(RTLIB::MUL_I64, "_allmul");
259     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
260     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
263     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
264
265     // The _ftol2 runtime function has an unusual calling conv, which
266     // is modeled by a special pseudo-instruction.
267     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
268     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
269     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
270     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
271   }
272
273   if (Subtarget->isTargetDarwin()) {
274     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
275     setUseUnderscoreSetJmp(false);
276     setUseUnderscoreLongJmp(false);
277   } else if (Subtarget->isTargetMingw()) {
278     // MS runtime is weird: it exports _setjmp, but longjmp!
279     setUseUnderscoreSetJmp(true);
280     setUseUnderscoreLongJmp(false);
281   } else {
282     setUseUnderscoreSetJmp(true);
283     setUseUnderscoreLongJmp(true);
284   }
285
286   // Set up the register classes.
287   addRegisterClass(MVT::i8, &X86::GR8RegClass);
288   addRegisterClass(MVT::i16, &X86::GR16RegClass);
289   addRegisterClass(MVT::i32, &X86::GR32RegClass);
290   if (Subtarget->is64Bit())
291     addRegisterClass(MVT::i64, &X86::GR64RegClass);
292
293   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
294
295   // We don't accept any truncstore of integer registers.
296   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
297   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
298   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
299   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
300   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
301   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
302
303   // SETOEQ and SETUNE require checking two conditions.
304   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
305   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
306   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
307   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
309   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
310
311   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
312   // operation.
313   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
315   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
316
317   if (Subtarget->is64Bit()) {
318     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
319     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
320   } else if (!TM.Options.UseSoftFloat) {
321     // We have an algorithm for SSE2->double, and we turn this into a
322     // 64-bit FILD followed by conditional FADD for other targets.
323     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
324     // We have an algorithm for SSE2, and we turn this into a 64-bit
325     // FILD for other targets.
326     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
327   }
328
329   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
330   // this operation.
331   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
332   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
333
334   if (!TM.Options.UseSoftFloat) {
335     // SSE has no i16 to fp conversion, only i32
336     if (X86ScalarSSEf32) {
337       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
338       // f32 and f64 cases are Legal, f80 case is not
339       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
340     } else {
341       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
342       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
343     }
344   } else {
345     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
346     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
347   }
348
349   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
350   // are Legal, f80 is custom lowered.
351   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
352   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
353
354   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
355   // this operation.
356   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
357   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
358
359   if (X86ScalarSSEf32) {
360     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
361     // f32 and f64 cases are Legal, f80 case is not
362     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
363   } else {
364     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
365     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
366   }
367
368   // Handle FP_TO_UINT by promoting the destination to a larger signed
369   // conversion.
370   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
372   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
373
374   if (Subtarget->is64Bit()) {
375     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
376     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
377   } else if (!TM.Options.UseSoftFloat) {
378     // Since AVX is a superset of SSE3, only check for SSE here.
379     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
380       // Expand FP_TO_UINT into a select.
381       // FIXME: We would like to use a Custom expander here eventually to do
382       // the optimal thing for SSE vs. the default expansion in the legalizer.
383       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
384     else
385       // With SSE3 we can use fisttpll to convert to a signed i64; without
386       // SSE, we're stuck with a fistpll.
387       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
388   }
389
390   if (isTargetFTOL()) {
391     // Use the _ftol2 runtime function, which has a pseudo-instruction
392     // to handle its weird calling convention.
393     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
394   }
395
396   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
397   if (!X86ScalarSSEf64) {
398     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
399     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
400     if (Subtarget->is64Bit()) {
401       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
402       // Without SSE, i64->f64 goes through memory.
403       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
404     }
405   }
406
407   // Scalar integer divide and remainder are lowered to use operations that
408   // produce two results, to match the available instructions. This exposes
409   // the two-result form to trivial CSE, which is able to combine x/y and x%y
410   // into a single instruction.
411   //
412   // Scalar integer multiply-high is also lowered to use two-result
413   // operations, to match the available instructions. However, plain multiply
414   // (low) operations are left as Legal, as there are single-result
415   // instructions for this in x86. Using the two-result multiply instructions
416   // when both high and low results are needed must be arranged by dagcombine.
417   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
418     MVT VT = IntVTs[i];
419     setOperationAction(ISD::MULHS, VT, Expand);
420     setOperationAction(ISD::MULHU, VT, Expand);
421     setOperationAction(ISD::SDIV, VT, Expand);
422     setOperationAction(ISD::UDIV, VT, Expand);
423     setOperationAction(ISD::SREM, VT, Expand);
424     setOperationAction(ISD::UREM, VT, Expand);
425
426     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
427     setOperationAction(ISD::ADDC, VT, Custom);
428     setOperationAction(ISD::ADDE, VT, Custom);
429     setOperationAction(ISD::SUBC, VT, Custom);
430     setOperationAction(ISD::SUBE, VT, Custom);
431   }
432
433   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
434   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
435   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
436   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
438   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
441   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
442   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
443   if (Subtarget->is64Bit())
444     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
445   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
447   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
448   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
449   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
451   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
452   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
453
454   // Promote the i8 variants and force them on up to i32 which has a shorter
455   // encoding.
456   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
457   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
458   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
459   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
460   if (Subtarget->hasBMI()) {
461     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
462     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
463     if (Subtarget->is64Bit())
464       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
465   } else {
466     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
467     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
468     if (Subtarget->is64Bit())
469       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
470   }
471
472   if (Subtarget->hasLZCNT()) {
473     // When promoting the i8 variants, force them to i32 for a shorter
474     // encoding.
475     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
476     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
477     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
478     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
479     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
480     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
481     if (Subtarget->is64Bit())
482       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
483   } else {
484     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
485     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
486     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
487     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
489     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
490     if (Subtarget->is64Bit()) {
491       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
492       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
493     }
494   }
495
496   if (Subtarget->hasPOPCNT()) {
497     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
498   } else {
499     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
500     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
501     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
502     if (Subtarget->is64Bit())
503       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
504   }
505
506   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
507   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
508
509   // These should be promoted to a larger select which is supported.
510   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
511   // X86 wants to expand cmov itself.
512   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
513   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
514   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
517   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
518   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
520   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
523   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
524   if (Subtarget->is64Bit()) {
525     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
526     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
527   }
528   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
529   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
530   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
531   // support continuation, user-level threading, and etc.. As a result, no
532   // other SjLj exception interfaces are implemented and please don't build
533   // your own exception handling based on them.
534   // LLVM/Clang supports zero-cost DWARF exception handling.
535   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
536   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
537
538   // Darwin ABI issue.
539   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
540   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
541   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
542   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
543   if (Subtarget->is64Bit())
544     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
545   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
546   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
547   if (Subtarget->is64Bit()) {
548     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
549     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
550     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
551     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
552     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
553   }
554   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
555   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
556   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
557   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
558   if (Subtarget->is64Bit()) {
559     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
560     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
561     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
562   }
563
564   if (Subtarget->hasSSE1())
565     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
566
567   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
568
569   // Expand certain atomics
570   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
571     MVT VT = IntVTs[i];
572     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
573     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
574     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
575   }
576
577   if (!Subtarget->is64Bit()) {
578     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
579     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
589     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
590   }
591
592   if (Subtarget->hasCmpxchg16b()) {
593     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
594   }
595
596   // FIXME - use subtarget debug flags
597   if (!Subtarget->isTargetDarwin() &&
598       !Subtarget->isTargetELF() &&
599       !Subtarget->isTargetCygMing()) {
600     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
601   }
602
603   if (Subtarget->is64Bit()) {
604     setExceptionPointerRegister(X86::RAX);
605     setExceptionSelectorRegister(X86::RDX);
606   } else {
607     setExceptionPointerRegister(X86::EAX);
608     setExceptionSelectorRegister(X86::EDX);
609   }
610   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
611   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
612
613   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
614   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
615
616   setOperationAction(ISD::TRAP, MVT::Other, Legal);
617   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
618
619   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
620   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
621   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
622   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
623     // TargetInfo::X86_64ABIBuiltinVaList
624     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
625     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
626   } else {
627     // TargetInfo::CharPtrBuiltinVaList
628     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
629     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
630   }
631
632   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
633   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
634
635   if (Subtarget->isOSWindows() && !Subtarget->isTargetMacho())
636     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
637                        MVT::i64 : MVT::i32, Custom);
638   else if (TM.Options.EnableSegmentedStacks)
639     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
640                        MVT::i64 : MVT::i32, Custom);
641   else
642     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
643                        MVT::i64 : MVT::i32, Expand);
644
645   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
646     // f32 and f64 use SSE.
647     // Set up the FP register classes.
648     addRegisterClass(MVT::f32, &X86::FR32RegClass);
649     addRegisterClass(MVT::f64, &X86::FR64RegClass);
650
651     // Use ANDPD to simulate FABS.
652     setOperationAction(ISD::FABS , MVT::f64, Custom);
653     setOperationAction(ISD::FABS , MVT::f32, Custom);
654
655     // Use XORP to simulate FNEG.
656     setOperationAction(ISD::FNEG , MVT::f64, Custom);
657     setOperationAction(ISD::FNEG , MVT::f32, Custom);
658
659     // Use ANDPD and ORPD to simulate FCOPYSIGN.
660     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
661     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
662
663     // Lower this to FGETSIGNx86 plus an AND.
664     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
665     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
666
667     // We don't support sin/cos/fmod
668     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
669     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
670     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
671     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
672     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
673     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
674
675     // Expand FP immediates into loads from the stack, except for the special
676     // cases we handle.
677     addLegalFPImmediate(APFloat(+0.0)); // xorpd
678     addLegalFPImmediate(APFloat(+0.0f)); // xorps
679   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
680     // Use SSE for f32, x87 for f64.
681     // Set up the FP register classes.
682     addRegisterClass(MVT::f32, &X86::FR32RegClass);
683     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
684
685     // Use ANDPS to simulate FABS.
686     setOperationAction(ISD::FABS , MVT::f32, Custom);
687
688     // Use XORP to simulate FNEG.
689     setOperationAction(ISD::FNEG , MVT::f32, Custom);
690
691     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
692
693     // Use ANDPS and ORPS to simulate FCOPYSIGN.
694     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
695     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
696
697     // We don't support sin/cos/fmod
698     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
699     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
700     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
701
702     // Special cases we handle for FP constants.
703     addLegalFPImmediate(APFloat(+0.0f)); // xorps
704     addLegalFPImmediate(APFloat(+0.0)); // FLD0
705     addLegalFPImmediate(APFloat(+1.0)); // FLD1
706     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
707     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
708
709     if (!TM.Options.UnsafeFPMath) {
710       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
711       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
712       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
713     }
714   } else if (!TM.Options.UseSoftFloat) {
715     // f32 and f64 in x87.
716     // Set up the FP register classes.
717     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
718     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
719
720     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
721     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
722     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
723     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
724
725     if (!TM.Options.UnsafeFPMath) {
726       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
727       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
728       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
729       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
730       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
731       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
732     }
733     addLegalFPImmediate(APFloat(+0.0)); // FLD0
734     addLegalFPImmediate(APFloat(+1.0)); // FLD1
735     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
736     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
737     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
738     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
739     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
740     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
741   }
742
743   // We don't support FMA.
744   setOperationAction(ISD::FMA, MVT::f64, Expand);
745   setOperationAction(ISD::FMA, MVT::f32, Expand);
746
747   // Long double always uses X87.
748   if (!TM.Options.UseSoftFloat) {
749     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
750     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
751     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
752     {
753       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
754       addLegalFPImmediate(TmpFlt);  // FLD0
755       TmpFlt.changeSign();
756       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
757
758       bool ignored;
759       APFloat TmpFlt2(+1.0);
760       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
761                       &ignored);
762       addLegalFPImmediate(TmpFlt2);  // FLD1
763       TmpFlt2.changeSign();
764       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
765     }
766
767     if (!TM.Options.UnsafeFPMath) {
768       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
769       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
770       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
771     }
772
773     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
774     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
775     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
776     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
777     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
778     setOperationAction(ISD::FMA, MVT::f80, Expand);
779   }
780
781   // Always use a library call for pow.
782   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
783   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
784   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
785
786   setOperationAction(ISD::FLOG, MVT::f80, Expand);
787   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
788   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
789   setOperationAction(ISD::FEXP, MVT::f80, Expand);
790   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
791
792   // First set operation action for all vector types to either promote
793   // (for widening) or expand (for scalarization). Then we will selectively
794   // turn on ones that can be effectively codegen'd.
795   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
796            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
797     MVT VT = (MVT::SimpleValueType)i;
798     setOperationAction(ISD::ADD , VT, Expand);
799     setOperationAction(ISD::SUB , VT, Expand);
800     setOperationAction(ISD::FADD, VT, Expand);
801     setOperationAction(ISD::FNEG, VT, Expand);
802     setOperationAction(ISD::FSUB, VT, Expand);
803     setOperationAction(ISD::MUL , VT, Expand);
804     setOperationAction(ISD::FMUL, VT, Expand);
805     setOperationAction(ISD::SDIV, VT, Expand);
806     setOperationAction(ISD::UDIV, VT, Expand);
807     setOperationAction(ISD::FDIV, VT, Expand);
808     setOperationAction(ISD::SREM, VT, Expand);
809     setOperationAction(ISD::UREM, VT, Expand);
810     setOperationAction(ISD::LOAD, VT, Expand);
811     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
812     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
813     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
814     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
815     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
816     setOperationAction(ISD::FABS, VT, Expand);
817     setOperationAction(ISD::FSIN, VT, Expand);
818     setOperationAction(ISD::FSINCOS, VT, Expand);
819     setOperationAction(ISD::FCOS, VT, Expand);
820     setOperationAction(ISD::FSINCOS, VT, Expand);
821     setOperationAction(ISD::FREM, VT, Expand);
822     setOperationAction(ISD::FMA,  VT, Expand);
823     setOperationAction(ISD::FPOWI, VT, Expand);
824     setOperationAction(ISD::FSQRT, VT, Expand);
825     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
826     setOperationAction(ISD::FFLOOR, VT, Expand);
827     setOperationAction(ISD::FCEIL, VT, Expand);
828     setOperationAction(ISD::FTRUNC, VT, Expand);
829     setOperationAction(ISD::FRINT, VT, Expand);
830     setOperationAction(ISD::FNEARBYINT, VT, Expand);
831     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
832     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
833     setOperationAction(ISD::SDIVREM, VT, Expand);
834     setOperationAction(ISD::UDIVREM, VT, Expand);
835     setOperationAction(ISD::FPOW, VT, Expand);
836     setOperationAction(ISD::CTPOP, VT, Expand);
837     setOperationAction(ISD::CTTZ, VT, Expand);
838     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
839     setOperationAction(ISD::CTLZ, VT, Expand);
840     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
841     setOperationAction(ISD::SHL, VT, Expand);
842     setOperationAction(ISD::SRA, VT, Expand);
843     setOperationAction(ISD::SRL, VT, Expand);
844     setOperationAction(ISD::ROTL, VT, Expand);
845     setOperationAction(ISD::ROTR, VT, Expand);
846     setOperationAction(ISD::BSWAP, VT, Expand);
847     setOperationAction(ISD::SETCC, VT, Expand);
848     setOperationAction(ISD::FLOG, VT, Expand);
849     setOperationAction(ISD::FLOG2, VT, Expand);
850     setOperationAction(ISD::FLOG10, VT, Expand);
851     setOperationAction(ISD::FEXP, VT, Expand);
852     setOperationAction(ISD::FEXP2, VT, Expand);
853     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
854     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
855     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
856     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
857     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
858     setOperationAction(ISD::TRUNCATE, VT, Expand);
859     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
860     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
861     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
862     setOperationAction(ISD::VSELECT, VT, Expand);
863     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
864              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
865       setTruncStoreAction(VT,
866                           (MVT::SimpleValueType)InnerVT, Expand);
867     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
868     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
869     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
870   }
871
872   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
873   // with -msoft-float, disable use of MMX as well.
874   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
875     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
876     // No operations on x86mmx supported, everything uses intrinsics.
877   }
878
879   // MMX-sized vectors (other than x86mmx) are expected to be expanded
880   // into smaller operations.
881   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
882   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
883   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
884   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
885   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
886   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
887   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
888   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
889   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
890   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
891   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
892   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
893   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
894   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
895   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
896   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
897   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
900   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
901   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
902   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
903   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
904   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
905   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
906   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
909   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
910
911   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
912     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
913
914     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
915     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
918     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
919     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
920     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
921     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
922     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
923     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
924     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
925     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
926   }
927
928   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
929     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
930
931     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
932     // registers cannot be used even for integer operations.
933     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
934     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
935     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
936     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
937
938     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
939     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
940     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
941     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
942     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
943     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
944     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
945     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
946     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
947     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
948     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
949     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
950     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
953     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
954     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
955     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
956
957     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
958     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
960     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
961
962     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
963     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
964     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
966     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
967
968     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
969     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
970       MVT VT = (MVT::SimpleValueType)i;
971       // Do not attempt to custom lower non-power-of-2 vectors
972       if (!isPowerOf2_32(VT.getVectorNumElements()))
973         continue;
974       // Do not attempt to custom lower non-128-bit vectors
975       if (!VT.is128BitVector())
976         continue;
977       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
978       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
979       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
980     }
981
982     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
983     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
984     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
985     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
986     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
987     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
988
989     if (Subtarget->is64Bit()) {
990       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
991       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
992     }
993
994     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
995     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
996       MVT VT = (MVT::SimpleValueType)i;
997
998       // Do not attempt to promote non-128-bit vectors
999       if (!VT.is128BitVector())
1000         continue;
1001
1002       setOperationAction(ISD::AND,    VT, Promote);
1003       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1004       setOperationAction(ISD::OR,     VT, Promote);
1005       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1006       setOperationAction(ISD::XOR,    VT, Promote);
1007       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1008       setOperationAction(ISD::LOAD,   VT, Promote);
1009       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1010       setOperationAction(ISD::SELECT, VT, Promote);
1011       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1012     }
1013
1014     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1015
1016     // Custom lower v2i64 and v2f64 selects.
1017     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1018     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1019     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1020     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1021
1022     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1023     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1024
1025     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1026     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1027     // As there is no 64-bit GPR available, we need build a special custom
1028     // sequence to convert from v2i32 to v2f32.
1029     if (!Subtarget->is64Bit())
1030       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1031
1032     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1033     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1034
1035     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1036   }
1037
1038   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1039     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1040     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1041     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1042     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1043     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1044     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1045     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1046     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1047     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1048     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1049
1050     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1051     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1052     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1053     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1054     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1055     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1056     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1057     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1058     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1059     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1060
1061     // FIXME: Do we need to handle scalar-to-vector here?
1062     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1063
1064     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1065     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1068     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1069
1070     // i8 and i16 vectors are custom , because the source register and source
1071     // source memory operand types are not the same width.  f32 vectors are
1072     // custom since the immediate controlling the insert encodes additional
1073     // information.
1074     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1077     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1078
1079     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1082     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1083
1084     // FIXME: these should be Legal but thats only for the case where
1085     // the index is constant.  For now custom expand to deal with that.
1086     if (Subtarget->is64Bit()) {
1087       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1088       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1089     }
1090   }
1091
1092   if (Subtarget->hasSSE2()) {
1093     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1094     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1095
1096     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1097     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1098
1099     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1100     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1101
1102     // In the customized shift lowering, the legal cases in AVX2 will be
1103     // recognized.
1104     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1105     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1106
1107     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1108     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1109
1110     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1111
1112     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1113     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1114   }
1115
1116   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1117     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1118     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1119     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1120     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1122     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1123
1124     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1125     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1126     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1127
1128     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1129     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1132     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1133     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1134     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1135     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1136     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1137     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1138     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1139     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1140
1141     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1142     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1145     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1146     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1147     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1148     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1149     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1150     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1151     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1152     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1153
1154     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1155
1156     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1157     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1158     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1159     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1160
1161     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1162     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1163
1164     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1165
1166     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1167     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1168
1169     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1170     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1171
1172     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1173     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1174
1175     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1176
1177     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1178     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1179     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1180     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1181
1182     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1183     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1184     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1185
1186     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1187     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1188     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1189     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1190
1191     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1192     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1193     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1194     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1195     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1196     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1197     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1199     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1200     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1201     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1202     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1203
1204     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1205       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1206       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1207       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1208       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1209       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1210       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1211     }
1212
1213     if (Subtarget->hasInt256()) {
1214       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1215       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1216       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1217       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1218
1219       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1220       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1221       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1222       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1223
1224       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1225       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1226       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1227       // Don't lower v32i8 because there is no 128-bit byte mul
1228
1229       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1230
1231       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1232     } else {
1233       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1234       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1235       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1236       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1237
1238       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1239       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1240       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1241       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1242
1243       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1244       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1245       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1246       // Don't lower v32i8 because there is no 128-bit byte mul
1247     }
1248
1249     // In the customized shift lowering, the legal cases in AVX2 will be
1250     // recognized.
1251     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1252     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1253
1254     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1255     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1256
1257     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1258
1259     // Custom lower several nodes for 256-bit types.
1260     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1261              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1262       MVT VT = (MVT::SimpleValueType)i;
1263
1264       // Extract subvector is special because the value type
1265       // (result) is 128-bit but the source is 256-bit wide.
1266       if (VT.is128BitVector())
1267         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1268
1269       // Do not attempt to custom lower other non-256-bit vectors
1270       if (!VT.is256BitVector())
1271         continue;
1272
1273       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1274       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1275       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1276       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1277       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1278       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1279       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1280     }
1281
1282     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1283     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1284       MVT VT = (MVT::SimpleValueType)i;
1285
1286       // Do not attempt to promote non-256-bit vectors
1287       if (!VT.is256BitVector())
1288         continue;
1289
1290       setOperationAction(ISD::AND,    VT, Promote);
1291       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1292       setOperationAction(ISD::OR,     VT, Promote);
1293       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1294       setOperationAction(ISD::XOR,    VT, Promote);
1295       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1296       setOperationAction(ISD::LOAD,   VT, Promote);
1297       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1298       setOperationAction(ISD::SELECT, VT, Promote);
1299       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1300     }
1301   }
1302
1303   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1304     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1305     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1306     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1307     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1308
1309     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1310     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1311     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1312
1313     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1314     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1315     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1316     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1317     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1318     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1319     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1320     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1321     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1322     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1323     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1324
1325     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1326     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1327     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1328     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1329     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1330     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1331
1332     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1333     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1334     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1335     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1336     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1337     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1338     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1339     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1340     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1341
1342     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1343     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1344     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1345     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1346     if (Subtarget->is64Bit()) {
1347       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1348       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1349       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1350       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1351     }
1352     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1353     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1354     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1355     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1356     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1357     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1358     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1359     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1360
1361     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1362     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1363     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1364     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1365     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, 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_avx512_pmaxu_d:
11387   case Intrinsic::x86_avx512_pmaxu_q:
11388   case Intrinsic::x86_sse2_pminu_b:
11389   case Intrinsic::x86_sse41_pminuw:
11390   case Intrinsic::x86_sse41_pminud:
11391   case Intrinsic::x86_avx2_pminu_b:
11392   case Intrinsic::x86_avx2_pminu_w:
11393   case Intrinsic::x86_avx2_pminu_d:
11394   case Intrinsic::x86_avx512_pminu_d:
11395   case Intrinsic::x86_avx512_pminu_q:
11396   case Intrinsic::x86_sse41_pmaxsb:
11397   case Intrinsic::x86_sse2_pmaxs_w:
11398   case Intrinsic::x86_sse41_pmaxsd:
11399   case Intrinsic::x86_avx2_pmaxs_b:
11400   case Intrinsic::x86_avx2_pmaxs_w:
11401   case Intrinsic::x86_avx2_pmaxs_d:
11402   case Intrinsic::x86_avx512_pmaxs_d:
11403   case Intrinsic::x86_avx512_pmaxs_q:
11404   case Intrinsic::x86_sse41_pminsb:
11405   case Intrinsic::x86_sse2_pmins_w:
11406   case Intrinsic::x86_sse41_pminsd:
11407   case Intrinsic::x86_avx2_pmins_b:
11408   case Intrinsic::x86_avx2_pmins_w:
11409   case Intrinsic::x86_avx2_pmins_d:
11410   case Intrinsic::x86_avx512_pmins_d:
11411   case Intrinsic::x86_avx512_pmins_q: {
11412     unsigned Opcode;
11413     switch (IntNo) {
11414     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11415     case Intrinsic::x86_sse2_pmaxu_b:
11416     case Intrinsic::x86_sse41_pmaxuw:
11417     case Intrinsic::x86_sse41_pmaxud:
11418     case Intrinsic::x86_avx2_pmaxu_b:
11419     case Intrinsic::x86_avx2_pmaxu_w:
11420     case Intrinsic::x86_avx2_pmaxu_d:
11421     case Intrinsic::x86_avx512_pmaxu_d:
11422     case Intrinsic::x86_avx512_pmaxu_q:
11423       Opcode = X86ISD::UMAX;
11424       break;
11425     case Intrinsic::x86_sse2_pminu_b:
11426     case Intrinsic::x86_sse41_pminuw:
11427     case Intrinsic::x86_sse41_pminud:
11428     case Intrinsic::x86_avx2_pminu_b:
11429     case Intrinsic::x86_avx2_pminu_w:
11430     case Intrinsic::x86_avx2_pminu_d:
11431     case Intrinsic::x86_avx512_pminu_d:
11432     case Intrinsic::x86_avx512_pminu_q:
11433       Opcode = X86ISD::UMIN;
11434       break;
11435     case Intrinsic::x86_sse41_pmaxsb:
11436     case Intrinsic::x86_sse2_pmaxs_w:
11437     case Intrinsic::x86_sse41_pmaxsd:
11438     case Intrinsic::x86_avx2_pmaxs_b:
11439     case Intrinsic::x86_avx2_pmaxs_w:
11440     case Intrinsic::x86_avx2_pmaxs_d:
11441     case Intrinsic::x86_avx512_pmaxs_d:
11442     case Intrinsic::x86_avx512_pmaxs_q:
11443       Opcode = X86ISD::SMAX;
11444       break;
11445     case Intrinsic::x86_sse41_pminsb:
11446     case Intrinsic::x86_sse2_pmins_w:
11447     case Intrinsic::x86_sse41_pminsd:
11448     case Intrinsic::x86_avx2_pmins_b:
11449     case Intrinsic::x86_avx2_pmins_w:
11450     case Intrinsic::x86_avx2_pmins_d:
11451     case Intrinsic::x86_avx512_pmins_d:
11452     case Intrinsic::x86_avx512_pmins_q:
11453       Opcode = X86ISD::SMIN;
11454       break;
11455     }
11456     return DAG.getNode(Opcode, dl, Op.getValueType(),
11457                        Op.getOperand(1), Op.getOperand(2));
11458   }
11459
11460   // SSE/SSE2/AVX floating point max/min intrinsics.
11461   case Intrinsic::x86_sse_max_ps:
11462   case Intrinsic::x86_sse2_max_pd:
11463   case Intrinsic::x86_avx_max_ps_256:
11464   case Intrinsic::x86_avx_max_pd_256:
11465   case Intrinsic::x86_avx512_max_ps_512:
11466   case Intrinsic::x86_avx512_max_pd_512:
11467   case Intrinsic::x86_sse_min_ps:
11468   case Intrinsic::x86_sse2_min_pd:
11469   case Intrinsic::x86_avx_min_ps_256:
11470   case Intrinsic::x86_avx_min_pd_256:
11471   case Intrinsic::x86_avx512_min_ps_512:
11472   case Intrinsic::x86_avx512_min_pd_512:  {
11473     unsigned Opcode;
11474     switch (IntNo) {
11475     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11476     case Intrinsic::x86_sse_max_ps:
11477     case Intrinsic::x86_sse2_max_pd:
11478     case Intrinsic::x86_avx_max_ps_256:
11479     case Intrinsic::x86_avx_max_pd_256:
11480     case Intrinsic::x86_avx512_max_ps_512:
11481     case Intrinsic::x86_avx512_max_pd_512:
11482       Opcode = X86ISD::FMAX;
11483       break;
11484     case Intrinsic::x86_sse_min_ps:
11485     case Intrinsic::x86_sse2_min_pd:
11486     case Intrinsic::x86_avx_min_ps_256:
11487     case Intrinsic::x86_avx_min_pd_256:
11488     case Intrinsic::x86_avx512_min_ps_512:
11489     case Intrinsic::x86_avx512_min_pd_512:
11490       Opcode = X86ISD::FMIN;
11491       break;
11492     }
11493     return DAG.getNode(Opcode, dl, Op.getValueType(),
11494                        Op.getOperand(1), Op.getOperand(2));
11495   }
11496
11497   // AVX2 variable shift intrinsics
11498   case Intrinsic::x86_avx2_psllv_d:
11499   case Intrinsic::x86_avx2_psllv_q:
11500   case Intrinsic::x86_avx2_psllv_d_256:
11501   case Intrinsic::x86_avx2_psllv_q_256:
11502   case Intrinsic::x86_avx2_psrlv_d:
11503   case Intrinsic::x86_avx2_psrlv_q:
11504   case Intrinsic::x86_avx2_psrlv_d_256:
11505   case Intrinsic::x86_avx2_psrlv_q_256:
11506   case Intrinsic::x86_avx2_psrav_d:
11507   case Intrinsic::x86_avx2_psrav_d_256: {
11508     unsigned Opcode;
11509     switch (IntNo) {
11510     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11511     case Intrinsic::x86_avx2_psllv_d:
11512     case Intrinsic::x86_avx2_psllv_q:
11513     case Intrinsic::x86_avx2_psllv_d_256:
11514     case Intrinsic::x86_avx2_psllv_q_256:
11515       Opcode = ISD::SHL;
11516       break;
11517     case Intrinsic::x86_avx2_psrlv_d:
11518     case Intrinsic::x86_avx2_psrlv_q:
11519     case Intrinsic::x86_avx2_psrlv_d_256:
11520     case Intrinsic::x86_avx2_psrlv_q_256:
11521       Opcode = ISD::SRL;
11522       break;
11523     case Intrinsic::x86_avx2_psrav_d:
11524     case Intrinsic::x86_avx2_psrav_d_256:
11525       Opcode = ISD::SRA;
11526       break;
11527     }
11528     return DAG.getNode(Opcode, dl, Op.getValueType(),
11529                        Op.getOperand(1), Op.getOperand(2));
11530   }
11531
11532   case Intrinsic::x86_ssse3_pshuf_b_128:
11533   case Intrinsic::x86_avx2_pshuf_b:
11534     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11535                        Op.getOperand(1), Op.getOperand(2));
11536
11537   case Intrinsic::x86_ssse3_psign_b_128:
11538   case Intrinsic::x86_ssse3_psign_w_128:
11539   case Intrinsic::x86_ssse3_psign_d_128:
11540   case Intrinsic::x86_avx2_psign_b:
11541   case Intrinsic::x86_avx2_psign_w:
11542   case Intrinsic::x86_avx2_psign_d:
11543     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11544                        Op.getOperand(1), Op.getOperand(2));
11545
11546   case Intrinsic::x86_sse41_insertps:
11547     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11548                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11549
11550   case Intrinsic::x86_avx_vperm2f128_ps_256:
11551   case Intrinsic::x86_avx_vperm2f128_pd_256:
11552   case Intrinsic::x86_avx_vperm2f128_si_256:
11553   case Intrinsic::x86_avx2_vperm2i128:
11554     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11555                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11556
11557   case Intrinsic::x86_avx2_permd:
11558   case Intrinsic::x86_avx2_permps:
11559     // Operands intentionally swapped. Mask is last operand to intrinsic,
11560     // but second operand for node/instruction.
11561     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11562                        Op.getOperand(2), Op.getOperand(1));
11563
11564   case Intrinsic::x86_sse_sqrt_ps:
11565   case Intrinsic::x86_sse2_sqrt_pd:
11566   case Intrinsic::x86_avx_sqrt_ps_256:
11567   case Intrinsic::x86_avx_sqrt_pd_256:
11568     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11569
11570   // ptest and testp intrinsics. The intrinsic these come from are designed to
11571   // return an integer value, not just an instruction so lower it to the ptest
11572   // or testp pattern and a setcc for the result.
11573   case Intrinsic::x86_sse41_ptestz:
11574   case Intrinsic::x86_sse41_ptestc:
11575   case Intrinsic::x86_sse41_ptestnzc:
11576   case Intrinsic::x86_avx_ptestz_256:
11577   case Intrinsic::x86_avx_ptestc_256:
11578   case Intrinsic::x86_avx_ptestnzc_256:
11579   case Intrinsic::x86_avx_vtestz_ps:
11580   case Intrinsic::x86_avx_vtestc_ps:
11581   case Intrinsic::x86_avx_vtestnzc_ps:
11582   case Intrinsic::x86_avx_vtestz_pd:
11583   case Intrinsic::x86_avx_vtestc_pd:
11584   case Intrinsic::x86_avx_vtestnzc_pd:
11585   case Intrinsic::x86_avx_vtestz_ps_256:
11586   case Intrinsic::x86_avx_vtestc_ps_256:
11587   case Intrinsic::x86_avx_vtestnzc_ps_256:
11588   case Intrinsic::x86_avx_vtestz_pd_256:
11589   case Intrinsic::x86_avx_vtestc_pd_256:
11590   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11591     bool IsTestPacked = false;
11592     unsigned X86CC;
11593     switch (IntNo) {
11594     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11595     case Intrinsic::x86_avx_vtestz_ps:
11596     case Intrinsic::x86_avx_vtestz_pd:
11597     case Intrinsic::x86_avx_vtestz_ps_256:
11598     case Intrinsic::x86_avx_vtestz_pd_256:
11599       IsTestPacked = true; // Fallthrough
11600     case Intrinsic::x86_sse41_ptestz:
11601     case Intrinsic::x86_avx_ptestz_256:
11602       // ZF = 1
11603       X86CC = X86::COND_E;
11604       break;
11605     case Intrinsic::x86_avx_vtestc_ps:
11606     case Intrinsic::x86_avx_vtestc_pd:
11607     case Intrinsic::x86_avx_vtestc_ps_256:
11608     case Intrinsic::x86_avx_vtestc_pd_256:
11609       IsTestPacked = true; // Fallthrough
11610     case Intrinsic::x86_sse41_ptestc:
11611     case Intrinsic::x86_avx_ptestc_256:
11612       // CF = 1
11613       X86CC = X86::COND_B;
11614       break;
11615     case Intrinsic::x86_avx_vtestnzc_ps:
11616     case Intrinsic::x86_avx_vtestnzc_pd:
11617     case Intrinsic::x86_avx_vtestnzc_ps_256:
11618     case Intrinsic::x86_avx_vtestnzc_pd_256:
11619       IsTestPacked = true; // Fallthrough
11620     case Intrinsic::x86_sse41_ptestnzc:
11621     case Intrinsic::x86_avx_ptestnzc_256:
11622       // ZF and CF = 0
11623       X86CC = X86::COND_A;
11624       break;
11625     }
11626
11627     SDValue LHS = Op.getOperand(1);
11628     SDValue RHS = Op.getOperand(2);
11629     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11630     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11631     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11632     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11633     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11634   }
11635   case Intrinsic::x86_avx512_kortestz_w:
11636   case Intrinsic::x86_avx512_kortestc_w: {
11637     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
11638     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11639     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11640     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11641     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11642     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
11643     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11644   }
11645
11646   // SSE/AVX shift intrinsics
11647   case Intrinsic::x86_sse2_psll_w:
11648   case Intrinsic::x86_sse2_psll_d:
11649   case Intrinsic::x86_sse2_psll_q:
11650   case Intrinsic::x86_avx2_psll_w:
11651   case Intrinsic::x86_avx2_psll_d:
11652   case Intrinsic::x86_avx2_psll_q:
11653   case Intrinsic::x86_sse2_psrl_w:
11654   case Intrinsic::x86_sse2_psrl_d:
11655   case Intrinsic::x86_sse2_psrl_q:
11656   case Intrinsic::x86_avx2_psrl_w:
11657   case Intrinsic::x86_avx2_psrl_d:
11658   case Intrinsic::x86_avx2_psrl_q:
11659   case Intrinsic::x86_sse2_psra_w:
11660   case Intrinsic::x86_sse2_psra_d:
11661   case Intrinsic::x86_avx2_psra_w:
11662   case Intrinsic::x86_avx2_psra_d: {
11663     unsigned Opcode;
11664     switch (IntNo) {
11665     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11666     case Intrinsic::x86_sse2_psll_w:
11667     case Intrinsic::x86_sse2_psll_d:
11668     case Intrinsic::x86_sse2_psll_q:
11669     case Intrinsic::x86_avx2_psll_w:
11670     case Intrinsic::x86_avx2_psll_d:
11671     case Intrinsic::x86_avx2_psll_q:
11672       Opcode = X86ISD::VSHL;
11673       break;
11674     case Intrinsic::x86_sse2_psrl_w:
11675     case Intrinsic::x86_sse2_psrl_d:
11676     case Intrinsic::x86_sse2_psrl_q:
11677     case Intrinsic::x86_avx2_psrl_w:
11678     case Intrinsic::x86_avx2_psrl_d:
11679     case Intrinsic::x86_avx2_psrl_q:
11680       Opcode = X86ISD::VSRL;
11681       break;
11682     case Intrinsic::x86_sse2_psra_w:
11683     case Intrinsic::x86_sse2_psra_d:
11684     case Intrinsic::x86_avx2_psra_w:
11685     case Intrinsic::x86_avx2_psra_d:
11686       Opcode = X86ISD::VSRA;
11687       break;
11688     }
11689     return DAG.getNode(Opcode, dl, Op.getValueType(),
11690                        Op.getOperand(1), Op.getOperand(2));
11691   }
11692
11693   // SSE/AVX immediate shift intrinsics
11694   case Intrinsic::x86_sse2_pslli_w:
11695   case Intrinsic::x86_sse2_pslli_d:
11696   case Intrinsic::x86_sse2_pslli_q:
11697   case Intrinsic::x86_avx2_pslli_w:
11698   case Intrinsic::x86_avx2_pslli_d:
11699   case Intrinsic::x86_avx2_pslli_q:
11700   case Intrinsic::x86_sse2_psrli_w:
11701   case Intrinsic::x86_sse2_psrli_d:
11702   case Intrinsic::x86_sse2_psrli_q:
11703   case Intrinsic::x86_avx2_psrli_w:
11704   case Intrinsic::x86_avx2_psrli_d:
11705   case Intrinsic::x86_avx2_psrli_q:
11706   case Intrinsic::x86_sse2_psrai_w:
11707   case Intrinsic::x86_sse2_psrai_d:
11708   case Intrinsic::x86_avx2_psrai_w:
11709   case Intrinsic::x86_avx2_psrai_d: {
11710     unsigned Opcode;
11711     switch (IntNo) {
11712     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11713     case Intrinsic::x86_sse2_pslli_w:
11714     case Intrinsic::x86_sse2_pslli_d:
11715     case Intrinsic::x86_sse2_pslli_q:
11716     case Intrinsic::x86_avx2_pslli_w:
11717     case Intrinsic::x86_avx2_pslli_d:
11718     case Intrinsic::x86_avx2_pslli_q:
11719       Opcode = X86ISD::VSHLI;
11720       break;
11721     case Intrinsic::x86_sse2_psrli_w:
11722     case Intrinsic::x86_sse2_psrli_d:
11723     case Intrinsic::x86_sse2_psrli_q:
11724     case Intrinsic::x86_avx2_psrli_w:
11725     case Intrinsic::x86_avx2_psrli_d:
11726     case Intrinsic::x86_avx2_psrli_q:
11727       Opcode = X86ISD::VSRLI;
11728       break;
11729     case Intrinsic::x86_sse2_psrai_w:
11730     case Intrinsic::x86_sse2_psrai_d:
11731     case Intrinsic::x86_avx2_psrai_w:
11732     case Intrinsic::x86_avx2_psrai_d:
11733       Opcode = X86ISD::VSRAI;
11734       break;
11735     }
11736     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
11737                                Op.getOperand(1), Op.getOperand(2), DAG);
11738   }
11739
11740   case Intrinsic::x86_sse42_pcmpistria128:
11741   case Intrinsic::x86_sse42_pcmpestria128:
11742   case Intrinsic::x86_sse42_pcmpistric128:
11743   case Intrinsic::x86_sse42_pcmpestric128:
11744   case Intrinsic::x86_sse42_pcmpistrio128:
11745   case Intrinsic::x86_sse42_pcmpestrio128:
11746   case Intrinsic::x86_sse42_pcmpistris128:
11747   case Intrinsic::x86_sse42_pcmpestris128:
11748   case Intrinsic::x86_sse42_pcmpistriz128:
11749   case Intrinsic::x86_sse42_pcmpestriz128: {
11750     unsigned Opcode;
11751     unsigned X86CC;
11752     switch (IntNo) {
11753     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11754     case Intrinsic::x86_sse42_pcmpistria128:
11755       Opcode = X86ISD::PCMPISTRI;
11756       X86CC = X86::COND_A;
11757       break;
11758     case Intrinsic::x86_sse42_pcmpestria128:
11759       Opcode = X86ISD::PCMPESTRI;
11760       X86CC = X86::COND_A;
11761       break;
11762     case Intrinsic::x86_sse42_pcmpistric128:
11763       Opcode = X86ISD::PCMPISTRI;
11764       X86CC = X86::COND_B;
11765       break;
11766     case Intrinsic::x86_sse42_pcmpestric128:
11767       Opcode = X86ISD::PCMPESTRI;
11768       X86CC = X86::COND_B;
11769       break;
11770     case Intrinsic::x86_sse42_pcmpistrio128:
11771       Opcode = X86ISD::PCMPISTRI;
11772       X86CC = X86::COND_O;
11773       break;
11774     case Intrinsic::x86_sse42_pcmpestrio128:
11775       Opcode = X86ISD::PCMPESTRI;
11776       X86CC = X86::COND_O;
11777       break;
11778     case Intrinsic::x86_sse42_pcmpistris128:
11779       Opcode = X86ISD::PCMPISTRI;
11780       X86CC = X86::COND_S;
11781       break;
11782     case Intrinsic::x86_sse42_pcmpestris128:
11783       Opcode = X86ISD::PCMPESTRI;
11784       X86CC = X86::COND_S;
11785       break;
11786     case Intrinsic::x86_sse42_pcmpistriz128:
11787       Opcode = X86ISD::PCMPISTRI;
11788       X86CC = X86::COND_E;
11789       break;
11790     case Intrinsic::x86_sse42_pcmpestriz128:
11791       Opcode = X86ISD::PCMPESTRI;
11792       X86CC = X86::COND_E;
11793       break;
11794     }
11795     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11796     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11797     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11798     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11799                                 DAG.getConstant(X86CC, MVT::i8),
11800                                 SDValue(PCMP.getNode(), 1));
11801     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11802   }
11803
11804   case Intrinsic::x86_sse42_pcmpistri128:
11805   case Intrinsic::x86_sse42_pcmpestri128: {
11806     unsigned Opcode;
11807     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11808       Opcode = X86ISD::PCMPISTRI;
11809     else
11810       Opcode = X86ISD::PCMPESTRI;
11811
11812     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11813     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11814     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11815   }
11816   case Intrinsic::x86_fma_vfmadd_ps:
11817   case Intrinsic::x86_fma_vfmadd_pd:
11818   case Intrinsic::x86_fma_vfmsub_ps:
11819   case Intrinsic::x86_fma_vfmsub_pd:
11820   case Intrinsic::x86_fma_vfnmadd_ps:
11821   case Intrinsic::x86_fma_vfnmadd_pd:
11822   case Intrinsic::x86_fma_vfnmsub_ps:
11823   case Intrinsic::x86_fma_vfnmsub_pd:
11824   case Intrinsic::x86_fma_vfmaddsub_ps:
11825   case Intrinsic::x86_fma_vfmaddsub_pd:
11826   case Intrinsic::x86_fma_vfmsubadd_ps:
11827   case Intrinsic::x86_fma_vfmsubadd_pd:
11828   case Intrinsic::x86_fma_vfmadd_ps_256:
11829   case Intrinsic::x86_fma_vfmadd_pd_256:
11830   case Intrinsic::x86_fma_vfmsub_ps_256:
11831   case Intrinsic::x86_fma_vfmsub_pd_256:
11832   case Intrinsic::x86_fma_vfnmadd_ps_256:
11833   case Intrinsic::x86_fma_vfnmadd_pd_256:
11834   case Intrinsic::x86_fma_vfnmsub_ps_256:
11835   case Intrinsic::x86_fma_vfnmsub_pd_256:
11836   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11837   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11838   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11839   case Intrinsic::x86_fma_vfmsubadd_pd_256:
11840   case Intrinsic::x86_fma_vfmadd_ps_512:
11841   case Intrinsic::x86_fma_vfmadd_pd_512:
11842   case Intrinsic::x86_fma_vfmsub_ps_512:
11843   case Intrinsic::x86_fma_vfmsub_pd_512:
11844   case Intrinsic::x86_fma_vfnmadd_ps_512:
11845   case Intrinsic::x86_fma_vfnmadd_pd_512:
11846   case Intrinsic::x86_fma_vfnmsub_ps_512:
11847   case Intrinsic::x86_fma_vfnmsub_pd_512:
11848   case Intrinsic::x86_fma_vfmaddsub_ps_512:
11849   case Intrinsic::x86_fma_vfmaddsub_pd_512:
11850   case Intrinsic::x86_fma_vfmsubadd_ps_512:
11851   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
11852     unsigned Opc;
11853     switch (IntNo) {
11854     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11855     case Intrinsic::x86_fma_vfmadd_ps:
11856     case Intrinsic::x86_fma_vfmadd_pd:
11857     case Intrinsic::x86_fma_vfmadd_ps_256:
11858     case Intrinsic::x86_fma_vfmadd_pd_256:
11859     case Intrinsic::x86_fma_vfmadd_ps_512:
11860     case Intrinsic::x86_fma_vfmadd_pd_512:
11861       Opc = X86ISD::FMADD;
11862       break;
11863     case Intrinsic::x86_fma_vfmsub_ps:
11864     case Intrinsic::x86_fma_vfmsub_pd:
11865     case Intrinsic::x86_fma_vfmsub_ps_256:
11866     case Intrinsic::x86_fma_vfmsub_pd_256:
11867     case Intrinsic::x86_fma_vfmsub_ps_512:
11868     case Intrinsic::x86_fma_vfmsub_pd_512:
11869       Opc = X86ISD::FMSUB;
11870       break;
11871     case Intrinsic::x86_fma_vfnmadd_ps:
11872     case Intrinsic::x86_fma_vfnmadd_pd:
11873     case Intrinsic::x86_fma_vfnmadd_ps_256:
11874     case Intrinsic::x86_fma_vfnmadd_pd_256:
11875     case Intrinsic::x86_fma_vfnmadd_ps_512:
11876     case Intrinsic::x86_fma_vfnmadd_pd_512:
11877       Opc = X86ISD::FNMADD;
11878       break;
11879     case Intrinsic::x86_fma_vfnmsub_ps:
11880     case Intrinsic::x86_fma_vfnmsub_pd:
11881     case Intrinsic::x86_fma_vfnmsub_ps_256:
11882     case Intrinsic::x86_fma_vfnmsub_pd_256:
11883     case Intrinsic::x86_fma_vfnmsub_ps_512:
11884     case Intrinsic::x86_fma_vfnmsub_pd_512:
11885       Opc = X86ISD::FNMSUB;
11886       break;
11887     case Intrinsic::x86_fma_vfmaddsub_ps:
11888     case Intrinsic::x86_fma_vfmaddsub_pd:
11889     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11890     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11891     case Intrinsic::x86_fma_vfmaddsub_ps_512:
11892     case Intrinsic::x86_fma_vfmaddsub_pd_512:
11893       Opc = X86ISD::FMADDSUB;
11894       break;
11895     case Intrinsic::x86_fma_vfmsubadd_ps:
11896     case Intrinsic::x86_fma_vfmsubadd_pd:
11897     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11898     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11899     case Intrinsic::x86_fma_vfmsubadd_ps_512:
11900     case Intrinsic::x86_fma_vfmsubadd_pd_512:
11901       Opc = X86ISD::FMSUBADD;
11902       break;
11903     }
11904
11905     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11906                        Op.getOperand(2), Op.getOperand(3));
11907   }
11908   }
11909 }
11910
11911 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11912                              SDValue Base, SDValue Index,
11913                              SDValue ScaleOp, SDValue Chain,
11914                              const X86Subtarget * Subtarget) {
11915   SDLoc dl(Op);
11916   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11917   assert(C && "Invalid scale type");
11918   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11919   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11920   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11921                              Index.getSimpleValueType().getVectorNumElements());
11922   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11923   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11924   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11925   SDValue Segment = DAG.getRegister(0, MVT::i32);
11926   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11927   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11928   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11929   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11930 }
11931
11932 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11933                               SDValue Src, SDValue Mask, SDValue Base,
11934                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11935                               const X86Subtarget * Subtarget) {
11936   SDLoc dl(Op);
11937   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11938   assert(C && "Invalid scale type");
11939   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11940   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11941                              Index.getSimpleValueType().getVectorNumElements());
11942   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11943   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11944   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11945   SDValue Segment = DAG.getRegister(0, MVT::i32);
11946   if (Src.getOpcode() == ISD::UNDEF)
11947     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11948   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11949   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11950   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11951   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11952 }
11953
11954 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11955                               SDValue Src, SDValue Base, SDValue Index,
11956                               SDValue ScaleOp, SDValue Chain) {
11957   SDLoc dl(Op);
11958   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11959   assert(C && "Invalid scale type");
11960   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11961   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11962   SDValue Segment = DAG.getRegister(0, MVT::i32);
11963   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11964                              Index.getSimpleValueType().getVectorNumElements());
11965   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11966   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11967   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11968   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11969   return SDValue(Res, 1);
11970 }
11971
11972 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11973                                SDValue Src, SDValue Mask, SDValue Base,
11974                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11975   SDLoc dl(Op);
11976   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11977   assert(C && "Invalid scale type");
11978   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11979   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11980   SDValue Segment = DAG.getRegister(0, MVT::i32);
11981   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11982                              Index.getSimpleValueType().getVectorNumElements());
11983   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11984   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11985   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11986   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11987   return SDValue(Res, 1);
11988 }
11989
11990 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11991                                       SelectionDAG &DAG) {
11992   SDLoc dl(Op);
11993   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11994   switch (IntNo) {
11995   default: return SDValue();    // Don't custom lower most intrinsics.
11996
11997   // RDRAND/RDSEED intrinsics.
11998   case Intrinsic::x86_rdrand_16:
11999   case Intrinsic::x86_rdrand_32:
12000   case Intrinsic::x86_rdrand_64:
12001   case Intrinsic::x86_rdseed_16:
12002   case Intrinsic::x86_rdseed_32:
12003   case Intrinsic::x86_rdseed_64: {
12004     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
12005                        IntNo == Intrinsic::x86_rdseed_32 ||
12006                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
12007                                                             X86ISD::RDRAND;
12008     // Emit the node with the right value type.
12009     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
12010     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
12011
12012     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
12013     // Otherwise return the value from Rand, which is always 0, casted to i32.
12014     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
12015                       DAG.getConstant(1, Op->getValueType(1)),
12016                       DAG.getConstant(X86::COND_B, MVT::i32),
12017                       SDValue(Result.getNode(), 1) };
12018     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
12019                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
12020                                   Ops, array_lengthof(Ops));
12021
12022     // Return { result, isValid, chain }.
12023     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12024                        SDValue(Result.getNode(), 2));
12025   }
12026   //int_gather(index, base, scale);
12027   case Intrinsic::x86_avx512_gather_qpd_512:
12028   case Intrinsic::x86_avx512_gather_qps_512:
12029   case Intrinsic::x86_avx512_gather_dpd_512:
12030   case Intrinsic::x86_avx512_gather_qpi_512:
12031   case Intrinsic::x86_avx512_gather_qpq_512:
12032   case Intrinsic::x86_avx512_gather_dpq_512:
12033   case Intrinsic::x86_avx512_gather_dps_512:
12034   case Intrinsic::x86_avx512_gather_dpi_512: {
12035     unsigned Opc;
12036     switch (IntNo) {
12037     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12038     case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
12039     case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
12040     case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
12041     case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
12042     case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
12043     case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
12044     case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
12045     case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
12046     }
12047     SDValue Chain = Op.getOperand(0);
12048     SDValue Index = Op.getOperand(2);
12049     SDValue Base  = Op.getOperand(3);
12050     SDValue Scale = Op.getOperand(4);
12051     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
12052   }
12053   //int_gather_mask(v1, mask, index, base, scale);
12054   case Intrinsic::x86_avx512_gather_qps_mask_512:
12055   case Intrinsic::x86_avx512_gather_qpd_mask_512:
12056   case Intrinsic::x86_avx512_gather_dpd_mask_512:
12057   case Intrinsic::x86_avx512_gather_dps_mask_512:
12058   case Intrinsic::x86_avx512_gather_qpi_mask_512:
12059   case Intrinsic::x86_avx512_gather_qpq_mask_512:
12060   case Intrinsic::x86_avx512_gather_dpi_mask_512:
12061   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
12062     unsigned Opc;
12063     switch (IntNo) {
12064     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12065     case Intrinsic::x86_avx512_gather_qps_mask_512:
12066       Opc = X86::VGATHERQPSZrm; break;
12067     case Intrinsic::x86_avx512_gather_qpd_mask_512:
12068       Opc = X86::VGATHERQPDZrm; break;
12069     case Intrinsic::x86_avx512_gather_dpd_mask_512:
12070       Opc = X86::VGATHERDPDZrm; break;
12071     case Intrinsic::x86_avx512_gather_dps_mask_512:
12072       Opc = X86::VGATHERDPSZrm; break;
12073     case Intrinsic::x86_avx512_gather_qpi_mask_512:
12074       Opc = X86::VPGATHERQDZrm; break;
12075     case Intrinsic::x86_avx512_gather_qpq_mask_512:
12076       Opc = X86::VPGATHERQQZrm; break;
12077     case Intrinsic::x86_avx512_gather_dpi_mask_512:
12078       Opc = X86::VPGATHERDDZrm; break;
12079     case Intrinsic::x86_avx512_gather_dpq_mask_512:
12080       Opc = X86::VPGATHERDQZrm; break;
12081     }
12082     SDValue Chain = Op.getOperand(0);
12083     SDValue Src   = Op.getOperand(2);
12084     SDValue Mask  = Op.getOperand(3);
12085     SDValue Index = Op.getOperand(4);
12086     SDValue Base  = Op.getOperand(5);
12087     SDValue Scale = Op.getOperand(6);
12088     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12089                           Subtarget);
12090   }
12091   //int_scatter(base, index, v1, scale);
12092   case Intrinsic::x86_avx512_scatter_qpd_512:
12093   case Intrinsic::x86_avx512_scatter_qps_512:
12094   case Intrinsic::x86_avx512_scatter_dpd_512:
12095   case Intrinsic::x86_avx512_scatter_qpi_512:
12096   case Intrinsic::x86_avx512_scatter_qpq_512:
12097   case Intrinsic::x86_avx512_scatter_dpq_512:
12098   case Intrinsic::x86_avx512_scatter_dps_512:
12099   case Intrinsic::x86_avx512_scatter_dpi_512: {
12100     unsigned Opc;
12101     switch (IntNo) {
12102     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12103     case Intrinsic::x86_avx512_scatter_qpd_512:
12104       Opc = X86::VSCATTERQPDZmr; break;
12105     case Intrinsic::x86_avx512_scatter_qps_512:
12106       Opc = X86::VSCATTERQPSZmr; break;
12107     case Intrinsic::x86_avx512_scatter_dpd_512:
12108       Opc = X86::VSCATTERDPDZmr; break;
12109     case Intrinsic::x86_avx512_scatter_dps_512:
12110       Opc = X86::VSCATTERDPSZmr; break;
12111     case Intrinsic::x86_avx512_scatter_qpi_512:
12112       Opc = X86::VPSCATTERQDZmr; break;
12113     case Intrinsic::x86_avx512_scatter_qpq_512:
12114       Opc = X86::VPSCATTERQQZmr; break;
12115     case Intrinsic::x86_avx512_scatter_dpq_512:
12116       Opc = X86::VPSCATTERDQZmr; break;
12117     case Intrinsic::x86_avx512_scatter_dpi_512:
12118       Opc = X86::VPSCATTERDDZmr; break;
12119     }
12120     SDValue Chain = Op.getOperand(0);
12121     SDValue Base  = Op.getOperand(2);
12122     SDValue Index = Op.getOperand(3);
12123     SDValue Src   = Op.getOperand(4);
12124     SDValue Scale = Op.getOperand(5);
12125     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
12126   }
12127   //int_scatter_mask(base, mask, index, v1, scale);
12128   case Intrinsic::x86_avx512_scatter_qps_mask_512:
12129   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12130   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12131   case Intrinsic::x86_avx512_scatter_dps_mask_512:
12132   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12133   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12134   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12135   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
12136     unsigned Opc;
12137     switch (IntNo) {
12138     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12139     case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12140       Opc = X86::VSCATTERQPDZmr; break;
12141     case Intrinsic::x86_avx512_scatter_qps_mask_512:
12142       Opc = X86::VSCATTERQPSZmr; break;
12143     case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12144       Opc = X86::VSCATTERDPDZmr; break;
12145     case Intrinsic::x86_avx512_scatter_dps_mask_512:
12146       Opc = X86::VSCATTERDPSZmr; break;
12147     case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12148       Opc = X86::VPSCATTERQDZmr; break;
12149     case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12150       Opc = X86::VPSCATTERQQZmr; break;
12151     case Intrinsic::x86_avx512_scatter_dpq_mask_512:
12152       Opc = X86::VPSCATTERDQZmr; break;
12153     case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12154       Opc = X86::VPSCATTERDDZmr; break;
12155     }
12156     SDValue Chain = Op.getOperand(0);
12157     SDValue Base  = Op.getOperand(2);
12158     SDValue Mask  = Op.getOperand(3);
12159     SDValue Index = Op.getOperand(4);
12160     SDValue Src   = Op.getOperand(5);
12161     SDValue Scale = Op.getOperand(6);
12162     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12163   }
12164   // XTEST intrinsics.
12165   case Intrinsic::x86_xtest: {
12166     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12167     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12168     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12169                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12170                                 InTrans);
12171     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12172     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12173                        Ret, SDValue(InTrans.getNode(), 1));
12174   }
12175   }
12176 }
12177
12178 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12179                                            SelectionDAG &DAG) const {
12180   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12181   MFI->setReturnAddressIsTaken(true);
12182
12183   if (!isa<ConstantSDNode>(Op.getOperand(0))) {
12184     DAG.getContext()->emitError("argument to '__builtin_return_address' must "
12185                                 "be a constant integer");
12186     return SDValue();
12187   }
12188
12189   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12190   SDLoc dl(Op);
12191   EVT PtrVT = getPointerTy();
12192
12193   if (Depth > 0) {
12194     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12195     const X86RegisterInfo *RegInfo =
12196       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12197     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12198     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12199                        DAG.getNode(ISD::ADD, dl, PtrVT,
12200                                    FrameAddr, Offset),
12201                        MachinePointerInfo(), false, false, false, 0);
12202   }
12203
12204   // Just load the return address.
12205   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12206   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12207                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12208 }
12209
12210 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12211   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12212   MFI->setFrameAddressIsTaken(true);
12213
12214   EVT VT = Op.getValueType();
12215   SDLoc dl(Op);  // FIXME probably not meaningful
12216   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12217   const X86RegisterInfo *RegInfo =
12218     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12219   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12220   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12221           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12222          "Invalid Frame Register!");
12223   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12224   while (Depth--)
12225     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12226                             MachinePointerInfo(),
12227                             false, false, false, 0);
12228   return FrameAddr;
12229 }
12230
12231 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12232                                                      SelectionDAG &DAG) const {
12233   const X86RegisterInfo *RegInfo =
12234     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12235   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12236 }
12237
12238 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12239   SDValue Chain     = Op.getOperand(0);
12240   SDValue Offset    = Op.getOperand(1);
12241   SDValue Handler   = Op.getOperand(2);
12242   SDLoc dl      (Op);
12243
12244   EVT PtrVT = getPointerTy();
12245   const X86RegisterInfo *RegInfo =
12246     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12247   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12248   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12249           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12250          "Invalid Frame Register!");
12251   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12252   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12253
12254   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12255                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12256   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12257   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12258                        false, false, 0);
12259   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12260
12261   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12262                      DAG.getRegister(StoreAddrReg, PtrVT));
12263 }
12264
12265 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12266                                                SelectionDAG &DAG) const {
12267   SDLoc DL(Op);
12268   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12269                      DAG.getVTList(MVT::i32, MVT::Other),
12270                      Op.getOperand(0), Op.getOperand(1));
12271 }
12272
12273 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12274                                                 SelectionDAG &DAG) const {
12275   SDLoc DL(Op);
12276   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12277                      Op.getOperand(0), Op.getOperand(1));
12278 }
12279
12280 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12281   return Op.getOperand(0);
12282 }
12283
12284 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12285                                                 SelectionDAG &DAG) const {
12286   SDValue Root = Op.getOperand(0);
12287   SDValue Trmp = Op.getOperand(1); // trampoline
12288   SDValue FPtr = Op.getOperand(2); // nested function
12289   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12290   SDLoc dl (Op);
12291
12292   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12293   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12294
12295   if (Subtarget->is64Bit()) {
12296     SDValue OutChains[6];
12297
12298     // Large code-model.
12299     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12300     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12301
12302     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12303     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12304
12305     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12306
12307     // Load the pointer to the nested function into R11.
12308     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12309     SDValue Addr = Trmp;
12310     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12311                                 Addr, MachinePointerInfo(TrmpAddr),
12312                                 false, false, 0);
12313
12314     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12315                        DAG.getConstant(2, MVT::i64));
12316     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12317                                 MachinePointerInfo(TrmpAddr, 2),
12318                                 false, false, 2);
12319
12320     // Load the 'nest' parameter value into R10.
12321     // R10 is specified in X86CallingConv.td
12322     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12323     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12324                        DAG.getConstant(10, MVT::i64));
12325     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12326                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12327                                 false, false, 0);
12328
12329     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12330                        DAG.getConstant(12, MVT::i64));
12331     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12332                                 MachinePointerInfo(TrmpAddr, 12),
12333                                 false, false, 2);
12334
12335     // Jump to the nested function.
12336     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12337     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12338                        DAG.getConstant(20, MVT::i64));
12339     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12340                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12341                                 false, false, 0);
12342
12343     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12344     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12345                        DAG.getConstant(22, MVT::i64));
12346     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12347                                 MachinePointerInfo(TrmpAddr, 22),
12348                                 false, false, 0);
12349
12350     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12351   } else {
12352     const Function *Func =
12353       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12354     CallingConv::ID CC = Func->getCallingConv();
12355     unsigned NestReg;
12356
12357     switch (CC) {
12358     default:
12359       llvm_unreachable("Unsupported calling convention");
12360     case CallingConv::C:
12361     case CallingConv::X86_StdCall: {
12362       // Pass 'nest' parameter in ECX.
12363       // Must be kept in sync with X86CallingConv.td
12364       NestReg = X86::ECX;
12365
12366       // Check that ECX wasn't needed by an 'inreg' parameter.
12367       FunctionType *FTy = Func->getFunctionType();
12368       const AttributeSet &Attrs = Func->getAttributes();
12369
12370       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12371         unsigned InRegCount = 0;
12372         unsigned Idx = 1;
12373
12374         for (FunctionType::param_iterator I = FTy->param_begin(),
12375              E = FTy->param_end(); I != E; ++I, ++Idx)
12376           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12377             // FIXME: should only count parameters that are lowered to integers.
12378             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12379
12380         if (InRegCount > 2) {
12381           report_fatal_error("Nest register in use - reduce number of inreg"
12382                              " parameters!");
12383         }
12384       }
12385       break;
12386     }
12387     case CallingConv::X86_FastCall:
12388     case CallingConv::X86_ThisCall:
12389     case CallingConv::Fast:
12390       // Pass 'nest' parameter in EAX.
12391       // Must be kept in sync with X86CallingConv.td
12392       NestReg = X86::EAX;
12393       break;
12394     }
12395
12396     SDValue OutChains[4];
12397     SDValue Addr, Disp;
12398
12399     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12400                        DAG.getConstant(10, MVT::i32));
12401     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12402
12403     // This is storing the opcode for MOV32ri.
12404     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12405     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12406     OutChains[0] = DAG.getStore(Root, dl,
12407                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12408                                 Trmp, MachinePointerInfo(TrmpAddr),
12409                                 false, false, 0);
12410
12411     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12412                        DAG.getConstant(1, MVT::i32));
12413     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12414                                 MachinePointerInfo(TrmpAddr, 1),
12415                                 false, false, 1);
12416
12417     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12418     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12419                        DAG.getConstant(5, MVT::i32));
12420     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12421                                 MachinePointerInfo(TrmpAddr, 5),
12422                                 false, false, 1);
12423
12424     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12425                        DAG.getConstant(6, MVT::i32));
12426     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12427                                 MachinePointerInfo(TrmpAddr, 6),
12428                                 false, false, 1);
12429
12430     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12431   }
12432 }
12433
12434 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12435                                             SelectionDAG &DAG) const {
12436   /*
12437    The rounding mode is in bits 11:10 of FPSR, and has the following
12438    settings:
12439      00 Round to nearest
12440      01 Round to -inf
12441      10 Round to +inf
12442      11 Round to 0
12443
12444   FLT_ROUNDS, on the other hand, expects the following:
12445     -1 Undefined
12446      0 Round to 0
12447      1 Round to nearest
12448      2 Round to +inf
12449      3 Round to -inf
12450
12451   To perform the conversion, we do:
12452     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12453   */
12454
12455   MachineFunction &MF = DAG.getMachineFunction();
12456   const TargetMachine &TM = MF.getTarget();
12457   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12458   unsigned StackAlignment = TFI.getStackAlignment();
12459   MVT VT = Op.getSimpleValueType();
12460   SDLoc DL(Op);
12461
12462   // Save FP Control Word to stack slot
12463   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12464   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12465
12466   MachineMemOperand *MMO =
12467    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12468                            MachineMemOperand::MOStore, 2, 2);
12469
12470   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12471   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12472                                           DAG.getVTList(MVT::Other),
12473                                           Ops, array_lengthof(Ops), MVT::i16,
12474                                           MMO);
12475
12476   // Load FP Control Word from stack slot
12477   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12478                             MachinePointerInfo(), false, false, false, 0);
12479
12480   // Transform as necessary
12481   SDValue CWD1 =
12482     DAG.getNode(ISD::SRL, DL, MVT::i16,
12483                 DAG.getNode(ISD::AND, DL, MVT::i16,
12484                             CWD, DAG.getConstant(0x800, MVT::i16)),
12485                 DAG.getConstant(11, MVT::i8));
12486   SDValue CWD2 =
12487     DAG.getNode(ISD::SRL, DL, MVT::i16,
12488                 DAG.getNode(ISD::AND, DL, MVT::i16,
12489                             CWD, DAG.getConstant(0x400, MVT::i16)),
12490                 DAG.getConstant(9, MVT::i8));
12491
12492   SDValue RetVal =
12493     DAG.getNode(ISD::AND, DL, MVT::i16,
12494                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12495                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12496                             DAG.getConstant(1, MVT::i16)),
12497                 DAG.getConstant(3, MVT::i16));
12498
12499   return DAG.getNode((VT.getSizeInBits() < 16 ?
12500                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12501 }
12502
12503 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12504   MVT VT = Op.getSimpleValueType();
12505   EVT OpVT = VT;
12506   unsigned NumBits = VT.getSizeInBits();
12507   SDLoc dl(Op);
12508
12509   Op = Op.getOperand(0);
12510   if (VT == MVT::i8) {
12511     // Zero extend to i32 since there is not an i8 bsr.
12512     OpVT = MVT::i32;
12513     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12514   }
12515
12516   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12517   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12518   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12519
12520   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12521   SDValue Ops[] = {
12522     Op,
12523     DAG.getConstant(NumBits+NumBits-1, OpVT),
12524     DAG.getConstant(X86::COND_E, MVT::i8),
12525     Op.getValue(1)
12526   };
12527   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12528
12529   // Finally xor with NumBits-1.
12530   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12531
12532   if (VT == MVT::i8)
12533     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12534   return Op;
12535 }
12536
12537 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12538   MVT VT = Op.getSimpleValueType();
12539   EVT OpVT = VT;
12540   unsigned NumBits = VT.getSizeInBits();
12541   SDLoc dl(Op);
12542
12543   Op = Op.getOperand(0);
12544   if (VT == MVT::i8) {
12545     // Zero extend to i32 since there is not an i8 bsr.
12546     OpVT = MVT::i32;
12547     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12548   }
12549
12550   // Issue a bsr (scan bits in reverse).
12551   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12552   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12553
12554   // And xor with NumBits-1.
12555   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12556
12557   if (VT == MVT::i8)
12558     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12559   return Op;
12560 }
12561
12562 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12563   MVT VT = Op.getSimpleValueType();
12564   unsigned NumBits = VT.getSizeInBits();
12565   SDLoc dl(Op);
12566   Op = Op.getOperand(0);
12567
12568   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12569   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12570   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12571
12572   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12573   SDValue Ops[] = {
12574     Op,
12575     DAG.getConstant(NumBits, VT),
12576     DAG.getConstant(X86::COND_E, MVT::i8),
12577     Op.getValue(1)
12578   };
12579   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12580 }
12581
12582 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12583 // ones, and then concatenate the result back.
12584 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12585   MVT VT = Op.getSimpleValueType();
12586
12587   assert(VT.is256BitVector() && VT.isInteger() &&
12588          "Unsupported value type for operation");
12589
12590   unsigned NumElems = VT.getVectorNumElements();
12591   SDLoc dl(Op);
12592
12593   // Extract the LHS vectors
12594   SDValue LHS = Op.getOperand(0);
12595   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12596   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12597
12598   // Extract the RHS vectors
12599   SDValue RHS = Op.getOperand(1);
12600   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12601   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12602
12603   MVT EltVT = VT.getVectorElementType();
12604   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12605
12606   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12607                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12608                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12609 }
12610
12611 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12612   assert(Op.getSimpleValueType().is256BitVector() &&
12613          Op.getSimpleValueType().isInteger() &&
12614          "Only handle AVX 256-bit vector integer operation");
12615   return Lower256IntArith(Op, DAG);
12616 }
12617
12618 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12619   assert(Op.getSimpleValueType().is256BitVector() &&
12620          Op.getSimpleValueType().isInteger() &&
12621          "Only handle AVX 256-bit vector integer operation");
12622   return Lower256IntArith(Op, DAG);
12623 }
12624
12625 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12626                         SelectionDAG &DAG) {
12627   SDLoc dl(Op);
12628   MVT VT = Op.getSimpleValueType();
12629
12630   // Decompose 256-bit ops into smaller 128-bit ops.
12631   if (VT.is256BitVector() && !Subtarget->hasInt256())
12632     return Lower256IntArith(Op, DAG);
12633
12634   SDValue A = Op.getOperand(0);
12635   SDValue B = Op.getOperand(1);
12636
12637   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12638   if (VT == MVT::v4i32) {
12639     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12640            "Should not custom lower when pmuldq is available!");
12641
12642     // Extract the odd parts.
12643     static const int UnpackMask[] = { 1, -1, 3, -1 };
12644     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12645     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12646
12647     // Multiply the even parts.
12648     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12649     // Now multiply odd parts.
12650     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12651
12652     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12653     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12654
12655     // Merge the two vectors back together with a shuffle. This expands into 2
12656     // shuffles.
12657     static const int ShufMask[] = { 0, 4, 2, 6 };
12658     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12659   }
12660
12661   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12662          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12663
12664   //  Ahi = psrlqi(a, 32);
12665   //  Bhi = psrlqi(b, 32);
12666   //
12667   //  AloBlo = pmuludq(a, b);
12668   //  AloBhi = pmuludq(a, Bhi);
12669   //  AhiBlo = pmuludq(Ahi, b);
12670
12671   //  AloBhi = psllqi(AloBhi, 32);
12672   //  AhiBlo = psllqi(AhiBlo, 32);
12673   //  return AloBlo + AloBhi + AhiBlo;
12674
12675   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12676   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
12677
12678   // Bit cast to 32-bit vectors for MULUDQ
12679   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12680                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12681   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12682   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12683   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12684   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12685
12686   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12687   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12688   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12689
12690   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12691   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
12692
12693   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12694   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12695 }
12696
12697 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12698   MVT VT = Op.getSimpleValueType();
12699   MVT EltTy = VT.getVectorElementType();
12700   unsigned NumElts = VT.getVectorNumElements();
12701   SDValue N0 = Op.getOperand(0);
12702   SDLoc dl(Op);
12703
12704   // Lower sdiv X, pow2-const.
12705   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12706   if (!C)
12707     return SDValue();
12708
12709   APInt SplatValue, SplatUndef;
12710   unsigned SplatBitSize;
12711   bool HasAnyUndefs;
12712   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12713                           HasAnyUndefs) ||
12714       EltTy.getSizeInBits() < SplatBitSize)
12715     return SDValue();
12716
12717   if ((SplatValue != 0) &&
12718       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12719     unsigned Lg2 = SplatValue.countTrailingZeros();
12720     // Splat the sign bit.
12721     SmallVector<SDValue, 16> Sz(NumElts,
12722                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12723                                                 EltTy));
12724     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12725                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12726                                           NumElts));
12727     // Add (N0 < 0) ? abs2 - 1 : 0;
12728     SmallVector<SDValue, 16> Amt(NumElts,
12729                                  DAG.getConstant(EltTy.getSizeInBits() - Lg2,
12730                                                  EltTy));
12731     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12732                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12733                                           NumElts));
12734     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12735     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
12736     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12737                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12738                                           NumElts));
12739
12740     // If we're dividing by a positive value, we're done.  Otherwise, we must
12741     // negate the result.
12742     if (SplatValue.isNonNegative())
12743       return SRA;
12744
12745     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12746     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12747     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12748   }
12749   return SDValue();
12750 }
12751
12752 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12753                                          const X86Subtarget *Subtarget) {
12754   MVT VT = Op.getSimpleValueType();
12755   SDLoc dl(Op);
12756   SDValue R = Op.getOperand(0);
12757   SDValue Amt = Op.getOperand(1);
12758
12759   // Optimize shl/srl/sra with constant shift amount.
12760   if (isSplatVector(Amt.getNode())) {
12761     SDValue SclrAmt = Amt->getOperand(0);
12762     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12763       uint64_t ShiftAmt = C->getZExtValue();
12764
12765       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12766           (Subtarget->hasInt256() &&
12767            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12768           (Subtarget->hasAVX512() &&
12769            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12770         if (Op.getOpcode() == ISD::SHL)
12771           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12772                                             DAG);
12773         if (Op.getOpcode() == ISD::SRL)
12774           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12775                                             DAG);
12776         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12777           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12778                                             DAG);
12779       }
12780
12781       if (VT == MVT::v16i8) {
12782         if (Op.getOpcode() == ISD::SHL) {
12783           // Make a large shift.
12784           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12785                                                    MVT::v8i16, R, ShiftAmt,
12786                                                    DAG);
12787           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12788           // Zero out the rightmost bits.
12789           SmallVector<SDValue, 16> V(16,
12790                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12791                                                      MVT::i8));
12792           return DAG.getNode(ISD::AND, dl, VT, SHL,
12793                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12794         }
12795         if (Op.getOpcode() == ISD::SRL) {
12796           // Make a large shift.
12797           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12798                                                    MVT::v8i16, R, ShiftAmt,
12799                                                    DAG);
12800           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12801           // Zero out the leftmost bits.
12802           SmallVector<SDValue, 16> V(16,
12803                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12804                                                      MVT::i8));
12805           return DAG.getNode(ISD::AND, dl, VT, SRL,
12806                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12807         }
12808         if (Op.getOpcode() == ISD::SRA) {
12809           if (ShiftAmt == 7) {
12810             // R s>> 7  ===  R s< 0
12811             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12812             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12813           }
12814
12815           // R s>> a === ((R u>> a) ^ m) - m
12816           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12817           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12818                                                          MVT::i8));
12819           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12820           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12821           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12822           return Res;
12823         }
12824         llvm_unreachable("Unknown shift opcode.");
12825       }
12826
12827       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12828         if (Op.getOpcode() == ISD::SHL) {
12829           // Make a large shift.
12830           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12831                                                    MVT::v16i16, R, ShiftAmt,
12832                                                    DAG);
12833           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12834           // Zero out the rightmost bits.
12835           SmallVector<SDValue, 32> V(32,
12836                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12837                                                      MVT::i8));
12838           return DAG.getNode(ISD::AND, dl, VT, SHL,
12839                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12840         }
12841         if (Op.getOpcode() == ISD::SRL) {
12842           // Make a large shift.
12843           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12844                                                    MVT::v16i16, R, ShiftAmt,
12845                                                    DAG);
12846           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12847           // Zero out the leftmost bits.
12848           SmallVector<SDValue, 32> V(32,
12849                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12850                                                      MVT::i8));
12851           return DAG.getNode(ISD::AND, dl, VT, SRL,
12852                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12853         }
12854         if (Op.getOpcode() == ISD::SRA) {
12855           if (ShiftAmt == 7) {
12856             // R s>> 7  ===  R s< 0
12857             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12858             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12859           }
12860
12861           // R s>> a === ((R u>> a) ^ m) - m
12862           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12863           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12864                                                          MVT::i8));
12865           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12866           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12867           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12868           return Res;
12869         }
12870         llvm_unreachable("Unknown shift opcode.");
12871       }
12872     }
12873   }
12874
12875   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12876   if (!Subtarget->is64Bit() &&
12877       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12878       Amt.getOpcode() == ISD::BITCAST &&
12879       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12880     Amt = Amt.getOperand(0);
12881     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
12882                      VT.getVectorNumElements();
12883     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12884     uint64_t ShiftAmt = 0;
12885     for (unsigned i = 0; i != Ratio; ++i) {
12886       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12887       if (C == 0)
12888         return SDValue();
12889       // 6 == Log2(64)
12890       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12891     }
12892     // Check remaining shift amounts.
12893     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12894       uint64_t ShAmt = 0;
12895       for (unsigned j = 0; j != Ratio; ++j) {
12896         ConstantSDNode *C =
12897           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12898         if (C == 0)
12899           return SDValue();
12900         // 6 == Log2(64)
12901         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12902       }
12903       if (ShAmt != ShiftAmt)
12904         return SDValue();
12905     }
12906     switch (Op.getOpcode()) {
12907     default:
12908       llvm_unreachable("Unknown shift opcode!");
12909     case ISD::SHL:
12910       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12911                                         DAG);
12912     case ISD::SRL:
12913       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12914                                         DAG);
12915     case ISD::SRA:
12916       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12917                                         DAG);
12918     }
12919   }
12920
12921   return SDValue();
12922 }
12923
12924 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12925                                         const X86Subtarget* Subtarget) {
12926   MVT VT = Op.getSimpleValueType();
12927   SDLoc dl(Op);
12928   SDValue R = Op.getOperand(0);
12929   SDValue Amt = Op.getOperand(1);
12930
12931   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12932       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12933       (Subtarget->hasInt256() &&
12934        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12935         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12936        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12937     SDValue BaseShAmt;
12938     EVT EltVT = VT.getVectorElementType();
12939
12940     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12941       unsigned NumElts = VT.getVectorNumElements();
12942       unsigned i, j;
12943       for (i = 0; i != NumElts; ++i) {
12944         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12945           continue;
12946         break;
12947       }
12948       for (j = i; j != NumElts; ++j) {
12949         SDValue Arg = Amt.getOperand(j);
12950         if (Arg.getOpcode() == ISD::UNDEF) continue;
12951         if (Arg != Amt.getOperand(i))
12952           break;
12953       }
12954       if (i != NumElts && j == NumElts)
12955         BaseShAmt = Amt.getOperand(i);
12956     } else {
12957       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12958         Amt = Amt.getOperand(0);
12959       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12960                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12961         SDValue InVec = Amt.getOperand(0);
12962         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12963           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12964           unsigned i = 0;
12965           for (; i != NumElts; ++i) {
12966             SDValue Arg = InVec.getOperand(i);
12967             if (Arg.getOpcode() == ISD::UNDEF) continue;
12968             BaseShAmt = Arg;
12969             break;
12970           }
12971         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12972            if (ConstantSDNode *C =
12973                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12974              unsigned SplatIdx =
12975                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12976              if (C->getZExtValue() == SplatIdx)
12977                BaseShAmt = InVec.getOperand(1);
12978            }
12979         }
12980         if (BaseShAmt.getNode() == 0)
12981           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12982                                   DAG.getIntPtrConstant(0));
12983       }
12984     }
12985
12986     if (BaseShAmt.getNode()) {
12987       if (EltVT.bitsGT(MVT::i32))
12988         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12989       else if (EltVT.bitsLT(MVT::i32))
12990         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12991
12992       switch (Op.getOpcode()) {
12993       default:
12994         llvm_unreachable("Unknown shift opcode!");
12995       case ISD::SHL:
12996         switch (VT.SimpleTy) {
12997         default: return SDValue();
12998         case MVT::v2i64:
12999         case MVT::v4i32:
13000         case MVT::v8i16:
13001         case MVT::v4i64:
13002         case MVT::v8i32:
13003         case MVT::v16i16:
13004         case MVT::v16i32:
13005         case MVT::v8i64:
13006           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
13007         }
13008       case ISD::SRA:
13009         switch (VT.SimpleTy) {
13010         default: return SDValue();
13011         case MVT::v4i32:
13012         case MVT::v8i16:
13013         case MVT::v8i32:
13014         case MVT::v16i16:
13015         case MVT::v16i32:
13016         case MVT::v8i64:
13017           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
13018         }
13019       case ISD::SRL:
13020         switch (VT.SimpleTy) {
13021         default: return SDValue();
13022         case MVT::v2i64:
13023         case MVT::v4i32:
13024         case MVT::v8i16:
13025         case MVT::v4i64:
13026         case MVT::v8i32:
13027         case MVT::v16i16:
13028         case MVT::v16i32:
13029         case MVT::v8i64:
13030           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13031         }
13032       }
13033     }
13034   }
13035
13036   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13037   if (!Subtarget->is64Bit() &&
13038       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13039       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13040       Amt.getOpcode() == ISD::BITCAST &&
13041       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13042     Amt = Amt.getOperand(0);
13043     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13044                      VT.getVectorNumElements();
13045     std::vector<SDValue> Vals(Ratio);
13046     for (unsigned i = 0; i != Ratio; ++i)
13047       Vals[i] = Amt.getOperand(i);
13048     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13049       for (unsigned j = 0; j != Ratio; ++j)
13050         if (Vals[j] != Amt.getOperand(i + j))
13051           return SDValue();
13052     }
13053     switch (Op.getOpcode()) {
13054     default:
13055       llvm_unreachable("Unknown shift opcode!");
13056     case ISD::SHL:
13057       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13058     case ISD::SRL:
13059       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13060     case ISD::SRA:
13061       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13062     }
13063   }
13064
13065   return SDValue();
13066 }
13067
13068 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13069                           SelectionDAG &DAG) {
13070
13071   MVT VT = Op.getSimpleValueType();
13072   SDLoc dl(Op);
13073   SDValue R = Op.getOperand(0);
13074   SDValue Amt = Op.getOperand(1);
13075   SDValue V;
13076
13077   if (!Subtarget->hasSSE2())
13078     return SDValue();
13079
13080   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13081   if (V.getNode())
13082     return V;
13083
13084   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13085   if (V.getNode())
13086       return V;
13087
13088   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13089     return Op;
13090   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13091   if (Subtarget->hasInt256()) {
13092     if (Op.getOpcode() == ISD::SRL &&
13093         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13094          VT == MVT::v4i64 || VT == MVT::v8i32))
13095       return Op;
13096     if (Op.getOpcode() == ISD::SHL &&
13097         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13098          VT == MVT::v4i64 || VT == MVT::v8i32))
13099       return Op;
13100     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13101       return Op;
13102   }
13103
13104   // Lower SHL with variable shift amount.
13105   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13106     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13107
13108     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13109     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13110     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13111     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13112   }
13113   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13114     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13115
13116     // a = a << 5;
13117     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13118     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13119
13120     // Turn 'a' into a mask suitable for VSELECT
13121     SDValue VSelM = DAG.getConstant(0x80, VT);
13122     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13123     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13124
13125     SDValue CM1 = DAG.getConstant(0x0f, VT);
13126     SDValue CM2 = DAG.getConstant(0x3f, VT);
13127
13128     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13129     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13130     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13131     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13132     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13133
13134     // a += a
13135     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13136     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13137     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13138
13139     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
13140     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
13141     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
13142     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13143     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13144
13145     // a += a
13146     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13147     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13148     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13149
13150     // return VSELECT(r, r+r, a);
13151     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
13152                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
13153     return R;
13154   }
13155
13156   // Decompose 256-bit shifts into smaller 128-bit shifts.
13157   if (VT.is256BitVector()) {
13158     unsigned NumElems = VT.getVectorNumElements();
13159     MVT EltVT = VT.getVectorElementType();
13160     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13161
13162     // Extract the two vectors
13163     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
13164     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
13165
13166     // Recreate the shift amount vectors
13167     SDValue Amt1, Amt2;
13168     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13169       // Constant shift amount
13170       SmallVector<SDValue, 4> Amt1Csts;
13171       SmallVector<SDValue, 4> Amt2Csts;
13172       for (unsigned i = 0; i != NumElems/2; ++i)
13173         Amt1Csts.push_back(Amt->getOperand(i));
13174       for (unsigned i = NumElems/2; i != NumElems; ++i)
13175         Amt2Csts.push_back(Amt->getOperand(i));
13176
13177       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13178                                  &Amt1Csts[0], NumElems/2);
13179       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13180                                  &Amt2Csts[0], NumElems/2);
13181     } else {
13182       // Variable shift amount
13183       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13184       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
13185     }
13186
13187     // Issue new vector shifts for the smaller types
13188     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13189     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13190
13191     // Concatenate the result back
13192     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13193   }
13194
13195   return SDValue();
13196 }
13197
13198 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
13199   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13200   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
13201   // looks for this combo and may remove the "setcc" instruction if the "setcc"
13202   // has only one use.
13203   SDNode *N = Op.getNode();
13204   SDValue LHS = N->getOperand(0);
13205   SDValue RHS = N->getOperand(1);
13206   unsigned BaseOp = 0;
13207   unsigned Cond = 0;
13208   SDLoc DL(Op);
13209   switch (Op.getOpcode()) {
13210   default: llvm_unreachable("Unknown ovf instruction!");
13211   case ISD::SADDO:
13212     // A subtract of one will be selected as a INC. Note that INC doesn't
13213     // set CF, so we can't do this for UADDO.
13214     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13215       if (C->isOne()) {
13216         BaseOp = X86ISD::INC;
13217         Cond = X86::COND_O;
13218         break;
13219       }
13220     BaseOp = X86ISD::ADD;
13221     Cond = X86::COND_O;
13222     break;
13223   case ISD::UADDO:
13224     BaseOp = X86ISD::ADD;
13225     Cond = X86::COND_B;
13226     break;
13227   case ISD::SSUBO:
13228     // A subtract of one will be selected as a DEC. Note that DEC doesn't
13229     // set CF, so we can't do this for USUBO.
13230     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13231       if (C->isOne()) {
13232         BaseOp = X86ISD::DEC;
13233         Cond = X86::COND_O;
13234         break;
13235       }
13236     BaseOp = X86ISD::SUB;
13237     Cond = X86::COND_O;
13238     break;
13239   case ISD::USUBO:
13240     BaseOp = X86ISD::SUB;
13241     Cond = X86::COND_B;
13242     break;
13243   case ISD::SMULO:
13244     BaseOp = X86ISD::SMUL;
13245     Cond = X86::COND_O;
13246     break;
13247   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13248     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13249                                  MVT::i32);
13250     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
13251
13252     SDValue SetCC =
13253       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13254                   DAG.getConstant(X86::COND_O, MVT::i32),
13255                   SDValue(Sum.getNode(), 2));
13256
13257     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13258   }
13259   }
13260
13261   // Also sets EFLAGS.
13262   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13263   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13264
13265   SDValue SetCC =
13266     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13267                 DAG.getConstant(Cond, MVT::i32),
13268                 SDValue(Sum.getNode(), 1));
13269
13270   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13271 }
13272
13273 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13274                                                   SelectionDAG &DAG) const {
13275   SDLoc dl(Op);
13276   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13277   MVT VT = Op.getSimpleValueType();
13278
13279   if (!Subtarget->hasSSE2() || !VT.isVector())
13280     return SDValue();
13281
13282   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13283                       ExtraVT.getScalarType().getSizeInBits();
13284
13285   switch (VT.SimpleTy) {
13286     default: return SDValue();
13287     case MVT::v8i32:
13288     case MVT::v16i16:
13289       if (!Subtarget->hasFp256())
13290         return SDValue();
13291       if (!Subtarget->hasInt256()) {
13292         // needs to be split
13293         unsigned NumElems = VT.getVectorNumElements();
13294
13295         // Extract the LHS vectors
13296         SDValue LHS = Op.getOperand(0);
13297         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13298         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13299
13300         MVT EltVT = VT.getVectorElementType();
13301         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13302
13303         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13304         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13305         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13306                                    ExtraNumElems/2);
13307         SDValue Extra = DAG.getValueType(ExtraVT);
13308
13309         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13310         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13311
13312         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13313       }
13314       // fall through
13315     case MVT::v4i32:
13316     case MVT::v8i16: {
13317       SDValue Op0 = Op.getOperand(0);
13318       SDValue Op00 = Op0.getOperand(0);
13319       SDValue Tmp1;
13320       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13321       if (Op0.getOpcode() == ISD::BITCAST &&
13322           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
13323         // (sext (vzext x)) -> (vsext x)
13324         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13325         if (Tmp1.getNode()) {
13326           EVT ExtraEltVT = ExtraVT.getVectorElementType();
13327           // This folding is only valid when the in-reg type is a vector of i8,
13328           // i16, or i32.
13329           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
13330               ExtraEltVT == MVT::i32) {
13331             SDValue Tmp1Op0 = Tmp1.getOperand(0);
13332             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13333                    "This optimization is invalid without a VZEXT.");
13334             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13335           }
13336           Op0 = Tmp1;
13337         }
13338       }
13339
13340       // If the above didn't work, then just use Shift-Left + Shift-Right.
13341       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13342                                         DAG);
13343       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13344                                         DAG);
13345     }
13346   }
13347 }
13348
13349 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13350                                  SelectionDAG &DAG) {
13351   SDLoc dl(Op);
13352   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13353     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13354   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13355     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13356
13357   // The only fence that needs an instruction is a sequentially-consistent
13358   // cross-thread fence.
13359   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13360     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13361     // no-sse2). There isn't any reason to disable it if the target processor
13362     // supports it.
13363     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13364       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13365
13366     SDValue Chain = Op.getOperand(0);
13367     SDValue Zero = DAG.getConstant(0, MVT::i32);
13368     SDValue Ops[] = {
13369       DAG.getRegister(X86::ESP, MVT::i32), // Base
13370       DAG.getTargetConstant(1, MVT::i8),   // Scale
13371       DAG.getRegister(0, MVT::i32),        // Index
13372       DAG.getTargetConstant(0, MVT::i32),  // Disp
13373       DAG.getRegister(0, MVT::i32),        // Segment.
13374       Zero,
13375       Chain
13376     };
13377     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13378     return SDValue(Res, 0);
13379   }
13380
13381   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13382   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13383 }
13384
13385 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13386                              SelectionDAG &DAG) {
13387   MVT T = Op.getSimpleValueType();
13388   SDLoc DL(Op);
13389   unsigned Reg = 0;
13390   unsigned size = 0;
13391   switch(T.SimpleTy) {
13392   default: llvm_unreachable("Invalid value type!");
13393   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13394   case MVT::i16: Reg = X86::AX;  size = 2; break;
13395   case MVT::i32: Reg = X86::EAX; size = 4; break;
13396   case MVT::i64:
13397     assert(Subtarget->is64Bit() && "Node not type legal!");
13398     Reg = X86::RAX; size = 8;
13399     break;
13400   }
13401   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13402                                     Op.getOperand(2), SDValue());
13403   SDValue Ops[] = { cpIn.getValue(0),
13404                     Op.getOperand(1),
13405                     Op.getOperand(3),
13406                     DAG.getTargetConstant(size, MVT::i8),
13407                     cpIn.getValue(1) };
13408   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13409   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13410   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13411                                            Ops, array_lengthof(Ops), T, MMO);
13412   SDValue cpOut =
13413     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13414   return cpOut;
13415 }
13416
13417 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13418                                      SelectionDAG &DAG) {
13419   assert(Subtarget->is64Bit() && "Result not type legalized?");
13420   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13421   SDValue TheChain = Op.getOperand(0);
13422   SDLoc dl(Op);
13423   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13424   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13425   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13426                                    rax.getValue(2));
13427   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13428                             DAG.getConstant(32, MVT::i8));
13429   SDValue Ops[] = {
13430     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13431     rdx.getValue(1)
13432   };
13433   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13434 }
13435
13436 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13437                             SelectionDAG &DAG) {
13438   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13439   MVT DstVT = Op.getSimpleValueType();
13440   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13441          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13442   assert((DstVT == MVT::i64 ||
13443           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13444          "Unexpected custom BITCAST");
13445   // i64 <=> MMX conversions are Legal.
13446   if (SrcVT==MVT::i64 && DstVT.isVector())
13447     return Op;
13448   if (DstVT==MVT::i64 && SrcVT.isVector())
13449     return Op;
13450   // MMX <=> MMX conversions are Legal.
13451   if (SrcVT.isVector() && DstVT.isVector())
13452     return Op;
13453   // All other conversions need to be expanded.
13454   return SDValue();
13455 }
13456
13457 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13458   SDNode *Node = Op.getNode();
13459   SDLoc dl(Node);
13460   EVT T = Node->getValueType(0);
13461   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13462                               DAG.getConstant(0, T), Node->getOperand(2));
13463   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13464                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13465                        Node->getOperand(0),
13466                        Node->getOperand(1), negOp,
13467                        cast<AtomicSDNode>(Node)->getSrcValue(),
13468                        cast<AtomicSDNode>(Node)->getAlignment(),
13469                        cast<AtomicSDNode>(Node)->getOrdering(),
13470                        cast<AtomicSDNode>(Node)->getSynchScope());
13471 }
13472
13473 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13474   SDNode *Node = Op.getNode();
13475   SDLoc dl(Node);
13476   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13477
13478   // Convert seq_cst store -> xchg
13479   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13480   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13481   //        (The only way to get a 16-byte store is cmpxchg16b)
13482   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13483   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13484       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13485     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13486                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13487                                  Node->getOperand(0),
13488                                  Node->getOperand(1), Node->getOperand(2),
13489                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13490                                  cast<AtomicSDNode>(Node)->getOrdering(),
13491                                  cast<AtomicSDNode>(Node)->getSynchScope());
13492     return Swap.getValue(1);
13493   }
13494   // Other atomic stores have a simple pattern.
13495   return Op;
13496 }
13497
13498 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13499   EVT VT = Op.getNode()->getSimpleValueType(0);
13500
13501   // Let legalize expand this if it isn't a legal type yet.
13502   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13503     return SDValue();
13504
13505   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13506
13507   unsigned Opc;
13508   bool ExtraOp = false;
13509   switch (Op.getOpcode()) {
13510   default: llvm_unreachable("Invalid code");
13511   case ISD::ADDC: Opc = X86ISD::ADD; break;
13512   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13513   case ISD::SUBC: Opc = X86ISD::SUB; break;
13514   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13515   }
13516
13517   if (!ExtraOp)
13518     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13519                        Op.getOperand(1));
13520   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13521                      Op.getOperand(1), Op.getOperand(2));
13522 }
13523
13524 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13525                             SelectionDAG &DAG) {
13526   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13527
13528   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13529   // which returns the values as { float, float } (in XMM0) or
13530   // { double, double } (which is returned in XMM0, XMM1).
13531   SDLoc dl(Op);
13532   SDValue Arg = Op.getOperand(0);
13533   EVT ArgVT = Arg.getValueType();
13534   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13535
13536   TargetLowering::ArgListTy Args;
13537   TargetLowering::ArgListEntry Entry;
13538
13539   Entry.Node = Arg;
13540   Entry.Ty = ArgTy;
13541   Entry.isSExt = false;
13542   Entry.isZExt = false;
13543   Args.push_back(Entry);
13544
13545   bool isF64 = ArgVT == MVT::f64;
13546   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13547   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13548   // the results are returned via SRet in memory.
13549   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13550   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13551   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13552
13553   Type *RetTy = isF64
13554     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13555     : (Type*)VectorType::get(ArgTy, 4);
13556   TargetLowering::
13557     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13558                          false, false, false, false, 0,
13559                          CallingConv::C, /*isTaillCall=*/false,
13560                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13561                          Callee, Args, DAG, dl);
13562   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13563
13564   if (isF64)
13565     // Returned in xmm0 and xmm1.
13566     return CallResult.first;
13567
13568   // Returned in bits 0:31 and 32:64 xmm0.
13569   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13570                                CallResult.first, DAG.getIntPtrConstant(0));
13571   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13572                                CallResult.first, DAG.getIntPtrConstant(1));
13573   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13574   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13575 }
13576
13577 /// LowerOperation - Provide custom lowering hooks for some operations.
13578 ///
13579 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13580   switch (Op.getOpcode()) {
13581   default: llvm_unreachable("Should not custom lower this!");
13582   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13583   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13584   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13585   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13586   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13587   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13588   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13589   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13590   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13591   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13592   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13593   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13594   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13595   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13596   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13597   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13598   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13599   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13600   case ISD::SHL_PARTS:
13601   case ISD::SRA_PARTS:
13602   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13603   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13604   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13605   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13606   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13607   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13608   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13609   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13610   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13611   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13612   case ISD::FABS:               return LowerFABS(Op, DAG);
13613   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13614   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13615   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13616   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13617   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13618   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13619   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13620   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13621   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13622   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13623   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13624   case ISD::INTRINSIC_VOID:
13625   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13626   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13627   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13628   case ISD::FRAME_TO_ARGS_OFFSET:
13629                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13630   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13631   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13632   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13633   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13634   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13635   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13636   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13637   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13638   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13639   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13640   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13641   case ISD::SRA:
13642   case ISD::SRL:
13643   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13644   case ISD::SADDO:
13645   case ISD::UADDO:
13646   case ISD::SSUBO:
13647   case ISD::USUBO:
13648   case ISD::SMULO:
13649   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13650   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13651   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13652   case ISD::ADDC:
13653   case ISD::ADDE:
13654   case ISD::SUBC:
13655   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13656   case ISD::ADD:                return LowerADD(Op, DAG);
13657   case ISD::SUB:                return LowerSUB(Op, DAG);
13658   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13659   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13660   }
13661 }
13662
13663 static void ReplaceATOMIC_LOAD(SDNode *Node,
13664                                   SmallVectorImpl<SDValue> &Results,
13665                                   SelectionDAG &DAG) {
13666   SDLoc dl(Node);
13667   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13668
13669   // Convert wide load -> cmpxchg8b/cmpxchg16b
13670   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13671   //        (The only way to get a 16-byte load is cmpxchg16b)
13672   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13673   SDValue Zero = DAG.getConstant(0, VT);
13674   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13675                                Node->getOperand(0),
13676                                Node->getOperand(1), Zero, Zero,
13677                                cast<AtomicSDNode>(Node)->getMemOperand(),
13678                                cast<AtomicSDNode>(Node)->getOrdering(),
13679                                cast<AtomicSDNode>(Node)->getSynchScope());
13680   Results.push_back(Swap.getValue(0));
13681   Results.push_back(Swap.getValue(1));
13682 }
13683
13684 static void
13685 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13686                         SelectionDAG &DAG, unsigned NewOp) {
13687   SDLoc dl(Node);
13688   assert (Node->getValueType(0) == MVT::i64 &&
13689           "Only know how to expand i64 atomics");
13690
13691   SDValue Chain = Node->getOperand(0);
13692   SDValue In1 = Node->getOperand(1);
13693   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13694                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13695   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13696                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13697   SDValue Ops[] = { Chain, In1, In2L, In2H };
13698   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13699   SDValue Result =
13700     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13701                             cast<MemSDNode>(Node)->getMemOperand());
13702   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13703   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13704   Results.push_back(Result.getValue(2));
13705 }
13706
13707 /// ReplaceNodeResults - Replace a node with an illegal result type
13708 /// with a new node built out of custom code.
13709 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13710                                            SmallVectorImpl<SDValue>&Results,
13711                                            SelectionDAG &DAG) const {
13712   SDLoc dl(N);
13713   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13714   switch (N->getOpcode()) {
13715   default:
13716     llvm_unreachable("Do not know how to custom type legalize this operation!");
13717   case ISD::SIGN_EXTEND_INREG:
13718   case ISD::ADDC:
13719   case ISD::ADDE:
13720   case ISD::SUBC:
13721   case ISD::SUBE:
13722     // We don't want to expand or promote these.
13723     return;
13724   case ISD::FP_TO_SINT:
13725   case ISD::FP_TO_UINT: {
13726     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13727
13728     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13729       return;
13730
13731     std::pair<SDValue,SDValue> Vals =
13732         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13733     SDValue FIST = Vals.first, StackSlot = Vals.second;
13734     if (FIST.getNode() != 0) {
13735       EVT VT = N->getValueType(0);
13736       // Return a load from the stack slot.
13737       if (StackSlot.getNode() != 0)
13738         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13739                                       MachinePointerInfo(),
13740                                       false, false, false, 0));
13741       else
13742         Results.push_back(FIST);
13743     }
13744     return;
13745   }
13746   case ISD::UINT_TO_FP: {
13747     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13748     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13749         N->getValueType(0) != MVT::v2f32)
13750       return;
13751     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13752                                  N->getOperand(0));
13753     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13754                                      MVT::f64);
13755     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13756     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13757                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13758     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13759     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13760     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13761     return;
13762   }
13763   case ISD::FP_ROUND: {
13764     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13765         return;
13766     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13767     Results.push_back(V);
13768     return;
13769   }
13770   case ISD::READCYCLECOUNTER: {
13771     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13772     SDValue TheChain = N->getOperand(0);
13773     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13774     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13775                                      rd.getValue(1));
13776     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13777                                      eax.getValue(2));
13778     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13779     SDValue Ops[] = { eax, edx };
13780     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13781                                   array_lengthof(Ops)));
13782     Results.push_back(edx.getValue(1));
13783     return;
13784   }
13785   case ISD::ATOMIC_CMP_SWAP: {
13786     EVT T = N->getValueType(0);
13787     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13788     bool Regs64bit = T == MVT::i128;
13789     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13790     SDValue cpInL, cpInH;
13791     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13792                         DAG.getConstant(0, HalfT));
13793     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13794                         DAG.getConstant(1, HalfT));
13795     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13796                              Regs64bit ? X86::RAX : X86::EAX,
13797                              cpInL, SDValue());
13798     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13799                              Regs64bit ? X86::RDX : X86::EDX,
13800                              cpInH, cpInL.getValue(1));
13801     SDValue swapInL, swapInH;
13802     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13803                           DAG.getConstant(0, HalfT));
13804     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13805                           DAG.getConstant(1, HalfT));
13806     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13807                                Regs64bit ? X86::RBX : X86::EBX,
13808                                swapInL, cpInH.getValue(1));
13809     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13810                                Regs64bit ? X86::RCX : X86::ECX,
13811                                swapInH, swapInL.getValue(1));
13812     SDValue Ops[] = { swapInH.getValue(0),
13813                       N->getOperand(1),
13814                       swapInH.getValue(1) };
13815     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13816     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13817     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13818                                   X86ISD::LCMPXCHG8_DAG;
13819     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13820                                              Ops, array_lengthof(Ops), T, MMO);
13821     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13822                                         Regs64bit ? X86::RAX : X86::EAX,
13823                                         HalfT, Result.getValue(1));
13824     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13825                                         Regs64bit ? X86::RDX : X86::EDX,
13826                                         HalfT, cpOutL.getValue(2));
13827     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13828     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13829     Results.push_back(cpOutH.getValue(1));
13830     return;
13831   }
13832   case ISD::ATOMIC_LOAD_ADD:
13833   case ISD::ATOMIC_LOAD_AND:
13834   case ISD::ATOMIC_LOAD_NAND:
13835   case ISD::ATOMIC_LOAD_OR:
13836   case ISD::ATOMIC_LOAD_SUB:
13837   case ISD::ATOMIC_LOAD_XOR:
13838   case ISD::ATOMIC_LOAD_MAX:
13839   case ISD::ATOMIC_LOAD_MIN:
13840   case ISD::ATOMIC_LOAD_UMAX:
13841   case ISD::ATOMIC_LOAD_UMIN:
13842   case ISD::ATOMIC_SWAP: {
13843     unsigned Opc;
13844     switch (N->getOpcode()) {
13845     default: llvm_unreachable("Unexpected opcode");
13846     case ISD::ATOMIC_LOAD_ADD:
13847       Opc = X86ISD::ATOMADD64_DAG;
13848       break;
13849     case ISD::ATOMIC_LOAD_AND:
13850       Opc = X86ISD::ATOMAND64_DAG;
13851       break;
13852     case ISD::ATOMIC_LOAD_NAND:
13853       Opc = X86ISD::ATOMNAND64_DAG;
13854       break;
13855     case ISD::ATOMIC_LOAD_OR:
13856       Opc = X86ISD::ATOMOR64_DAG;
13857       break;
13858     case ISD::ATOMIC_LOAD_SUB:
13859       Opc = X86ISD::ATOMSUB64_DAG;
13860       break;
13861     case ISD::ATOMIC_LOAD_XOR:
13862       Opc = X86ISD::ATOMXOR64_DAG;
13863       break;
13864     case ISD::ATOMIC_LOAD_MAX:
13865       Opc = X86ISD::ATOMMAX64_DAG;
13866       break;
13867     case ISD::ATOMIC_LOAD_MIN:
13868       Opc = X86ISD::ATOMMIN64_DAG;
13869       break;
13870     case ISD::ATOMIC_LOAD_UMAX:
13871       Opc = X86ISD::ATOMUMAX64_DAG;
13872       break;
13873     case ISD::ATOMIC_LOAD_UMIN:
13874       Opc = X86ISD::ATOMUMIN64_DAG;
13875       break;
13876     case ISD::ATOMIC_SWAP:
13877       Opc = X86ISD::ATOMSWAP64_DAG;
13878       break;
13879     }
13880     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13881     return;
13882   }
13883   case ISD::ATOMIC_LOAD:
13884     ReplaceATOMIC_LOAD(N, Results, DAG);
13885   }
13886 }
13887
13888 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13889   switch (Opcode) {
13890   default: return NULL;
13891   case X86ISD::BSF:                return "X86ISD::BSF";
13892   case X86ISD::BSR:                return "X86ISD::BSR";
13893   case X86ISD::SHLD:               return "X86ISD::SHLD";
13894   case X86ISD::SHRD:               return "X86ISD::SHRD";
13895   case X86ISD::FAND:               return "X86ISD::FAND";
13896   case X86ISD::FANDN:              return "X86ISD::FANDN";
13897   case X86ISD::FOR:                return "X86ISD::FOR";
13898   case X86ISD::FXOR:               return "X86ISD::FXOR";
13899   case X86ISD::FSRL:               return "X86ISD::FSRL";
13900   case X86ISD::FILD:               return "X86ISD::FILD";
13901   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13902   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13903   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13904   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13905   case X86ISD::FLD:                return "X86ISD::FLD";
13906   case X86ISD::FST:                return "X86ISD::FST";
13907   case X86ISD::CALL:               return "X86ISD::CALL";
13908   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13909   case X86ISD::BT:                 return "X86ISD::BT";
13910   case X86ISD::CMP:                return "X86ISD::CMP";
13911   case X86ISD::COMI:               return "X86ISD::COMI";
13912   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13913   case X86ISD::CMPM:               return "X86ISD::CMPM";
13914   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13915   case X86ISD::SETCC:              return "X86ISD::SETCC";
13916   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13917   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
13918   case X86ISD::CMOV:               return "X86ISD::CMOV";
13919   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13920   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13921   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13922   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13923   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13924   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13925   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13926   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13927   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13928   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13929   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13930   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13931   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13932   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13933   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13934   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13935   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13936   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13937   case X86ISD::HADD:               return "X86ISD::HADD";
13938   case X86ISD::HSUB:               return "X86ISD::HSUB";
13939   case X86ISD::FHADD:              return "X86ISD::FHADD";
13940   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13941   case X86ISD::UMAX:               return "X86ISD::UMAX";
13942   case X86ISD::UMIN:               return "X86ISD::UMIN";
13943   case X86ISD::SMAX:               return "X86ISD::SMAX";
13944   case X86ISD::SMIN:               return "X86ISD::SMIN";
13945   case X86ISD::FMAX:               return "X86ISD::FMAX";
13946   case X86ISD::FMIN:               return "X86ISD::FMIN";
13947   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13948   case X86ISD::FMINC:              return "X86ISD::FMINC";
13949   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13950   case X86ISD::FRCP:               return "X86ISD::FRCP";
13951   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13952   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13953   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13954   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13955   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13956   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13957   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13958   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13959   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13960   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13961   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13962   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13963   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13964   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13965   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13966   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13967   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13968   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13969   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13970   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13971   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13972   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13973   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13974   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13975   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13976   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13977   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13978   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13979   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13980   case X86ISD::VSHL:               return "X86ISD::VSHL";
13981   case X86ISD::VSRL:               return "X86ISD::VSRL";
13982   case X86ISD::VSRA:               return "X86ISD::VSRA";
13983   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13984   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13985   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13986   case X86ISD::CMPP:               return "X86ISD::CMPP";
13987   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13988   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13989   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13990   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13991   case X86ISD::ADD:                return "X86ISD::ADD";
13992   case X86ISD::SUB:                return "X86ISD::SUB";
13993   case X86ISD::ADC:                return "X86ISD::ADC";
13994   case X86ISD::SBB:                return "X86ISD::SBB";
13995   case X86ISD::SMUL:               return "X86ISD::SMUL";
13996   case X86ISD::UMUL:               return "X86ISD::UMUL";
13997   case X86ISD::INC:                return "X86ISD::INC";
13998   case X86ISD::DEC:                return "X86ISD::DEC";
13999   case X86ISD::OR:                 return "X86ISD::OR";
14000   case X86ISD::XOR:                return "X86ISD::XOR";
14001   case X86ISD::AND:                return "X86ISD::AND";
14002   case X86ISD::BLSI:               return "X86ISD::BLSI";
14003   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
14004   case X86ISD::BLSR:               return "X86ISD::BLSR";
14005   case X86ISD::BZHI:               return "X86ISD::BZHI";
14006   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
14007   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
14008   case X86ISD::PTEST:              return "X86ISD::PTEST";
14009   case X86ISD::TESTP:              return "X86ISD::TESTP";
14010   case X86ISD::TESTM:              return "X86ISD::TESTM";
14011   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
14012   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
14013   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
14014   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
14015   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
14016   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
14017   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
14018   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
14019   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
14020   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
14021   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
14022   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
14023   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
14024   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
14025   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
14026   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14027   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14028   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14029   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14030   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14031   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14032   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14033   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14034   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14035   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14036   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14037   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14038   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14039   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14040   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14041   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14042   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14043   case X86ISD::SAHF:               return "X86ISD::SAHF";
14044   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14045   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14046   case X86ISD::FMADD:              return "X86ISD::FMADD";
14047   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14048   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14049   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14050   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14051   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14052   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14053   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14054   case X86ISD::XTEST:              return "X86ISD::XTEST";
14055   }
14056 }
14057
14058 // isLegalAddressingMode - Return true if the addressing mode represented
14059 // by AM is legal for this target, for a load/store of the specified type.
14060 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14061                                               Type *Ty) const {
14062   // X86 supports extremely general addressing modes.
14063   CodeModel::Model M = getTargetMachine().getCodeModel();
14064   Reloc::Model R = getTargetMachine().getRelocationModel();
14065
14066   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14067   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
14068     return false;
14069
14070   if (AM.BaseGV) {
14071     unsigned GVFlags =
14072       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14073
14074     // If a reference to this global requires an extra load, we can't fold it.
14075     if (isGlobalStubReference(GVFlags))
14076       return false;
14077
14078     // If BaseGV requires a register for the PIC base, we cannot also have a
14079     // BaseReg specified.
14080     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
14081       return false;
14082
14083     // If lower 4G is not available, then we must use rip-relative addressing.
14084     if ((M != CodeModel::Small || R != Reloc::Static) &&
14085         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
14086       return false;
14087   }
14088
14089   switch (AM.Scale) {
14090   case 0:
14091   case 1:
14092   case 2:
14093   case 4:
14094   case 8:
14095     // These scales always work.
14096     break;
14097   case 3:
14098   case 5:
14099   case 9:
14100     // These scales are formed with basereg+scalereg.  Only accept if there is
14101     // no basereg yet.
14102     if (AM.HasBaseReg)
14103       return false;
14104     break;
14105   default:  // Other stuff never works.
14106     return false;
14107   }
14108
14109   return true;
14110 }
14111
14112 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
14113   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14114     return false;
14115   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
14116   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
14117   return NumBits1 > NumBits2;
14118 }
14119
14120 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
14121   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14122     return false;
14123
14124   if (!isTypeLegal(EVT::getEVT(Ty1)))
14125     return false;
14126
14127   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
14128
14129   // Assuming the caller doesn't have a zeroext or signext return parameter,
14130   // truncation all the way down to i1 is valid.
14131   return true;
14132 }
14133
14134 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
14135   return isInt<32>(Imm);
14136 }
14137
14138 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
14139   // Can also use sub to handle negated immediates.
14140   return isInt<32>(Imm);
14141 }
14142
14143 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
14144   if (!VT1.isInteger() || !VT2.isInteger())
14145     return false;
14146   unsigned NumBits1 = VT1.getSizeInBits();
14147   unsigned NumBits2 = VT2.getSizeInBits();
14148   return NumBits1 > NumBits2;
14149 }
14150
14151 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
14152   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14153   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
14154 }
14155
14156 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
14157   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14158   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
14159 }
14160
14161 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
14162   EVT VT1 = Val.getValueType();
14163   if (isZExtFree(VT1, VT2))
14164     return true;
14165
14166   if (Val.getOpcode() != ISD::LOAD)
14167     return false;
14168
14169   if (!VT1.isSimple() || !VT1.isInteger() ||
14170       !VT2.isSimple() || !VT2.isInteger())
14171     return false;
14172
14173   switch (VT1.getSimpleVT().SimpleTy) {
14174   default: break;
14175   case MVT::i8:
14176   case MVT::i16:
14177   case MVT::i32:
14178     // X86 has 8, 16, and 32-bit zero-extending loads.
14179     return true;
14180   }
14181
14182   return false;
14183 }
14184
14185 bool
14186 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14187   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14188     return false;
14189
14190   VT = VT.getScalarType();
14191
14192   if (!VT.isSimple())
14193     return false;
14194
14195   switch (VT.getSimpleVT().SimpleTy) {
14196   case MVT::f32:
14197   case MVT::f64:
14198     return true;
14199   default:
14200     break;
14201   }
14202
14203   return false;
14204 }
14205
14206 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
14207   // i16 instructions are longer (0x66 prefix) and potentially slower.
14208   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
14209 }
14210
14211 /// isShuffleMaskLegal - Targets can use this to indicate that they only
14212 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
14213 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
14214 /// are assumed to be legal.
14215 bool
14216 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
14217                                       EVT VT) const {
14218   if (!VT.isSimple())
14219     return false;
14220
14221   MVT SVT = VT.getSimpleVT();
14222
14223   // Very little shuffling can be done for 64-bit vectors right now.
14224   if (VT.getSizeInBits() == 64)
14225     return false;
14226
14227   // FIXME: pshufb, blends, shifts.
14228   return (SVT.getVectorNumElements() == 2 ||
14229           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
14230           isMOVLMask(M, SVT) ||
14231           isSHUFPMask(M, SVT) ||
14232           isPSHUFDMask(M, SVT) ||
14233           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14234           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14235           isPALIGNRMask(M, SVT, Subtarget) ||
14236           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14237           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14238           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14239           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
14240 }
14241
14242 bool
14243 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
14244                                           EVT VT) const {
14245   if (!VT.isSimple())
14246     return false;
14247
14248   MVT SVT = VT.getSimpleVT();
14249   unsigned NumElts = SVT.getVectorNumElements();
14250   // FIXME: This collection of masks seems suspect.
14251   if (NumElts == 2)
14252     return true;
14253   if (NumElts == 4 && SVT.is128BitVector()) {
14254     return (isMOVLMask(Mask, SVT)  ||
14255             isCommutedMOVLMask(Mask, SVT, true) ||
14256             isSHUFPMask(Mask, SVT) ||
14257             isSHUFPMask(Mask, SVT, /* Commuted */ true));
14258   }
14259   return false;
14260 }
14261
14262 //===----------------------------------------------------------------------===//
14263 //                           X86 Scheduler Hooks
14264 //===----------------------------------------------------------------------===//
14265
14266 /// Utility function to emit xbegin specifying the start of an RTM region.
14267 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14268                                      const TargetInstrInfo *TII) {
14269   DebugLoc DL = MI->getDebugLoc();
14270
14271   const BasicBlock *BB = MBB->getBasicBlock();
14272   MachineFunction::iterator I = MBB;
14273   ++I;
14274
14275   // For the v = xbegin(), we generate
14276   //
14277   // thisMBB:
14278   //  xbegin sinkMBB
14279   //
14280   // mainMBB:
14281   //  eax = -1
14282   //
14283   // sinkMBB:
14284   //  v = eax
14285
14286   MachineBasicBlock *thisMBB = MBB;
14287   MachineFunction *MF = MBB->getParent();
14288   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14289   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14290   MF->insert(I, mainMBB);
14291   MF->insert(I, sinkMBB);
14292
14293   // Transfer the remainder of BB and its successor edges to sinkMBB.
14294   sinkMBB->splice(sinkMBB->begin(), MBB,
14295                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14296   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14297
14298   // thisMBB:
14299   //  xbegin sinkMBB
14300   //  # fallthrough to mainMBB
14301   //  # abortion to sinkMBB
14302   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14303   thisMBB->addSuccessor(mainMBB);
14304   thisMBB->addSuccessor(sinkMBB);
14305
14306   // mainMBB:
14307   //  EAX = -1
14308   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14309   mainMBB->addSuccessor(sinkMBB);
14310
14311   // sinkMBB:
14312   // EAX is live into the sinkMBB
14313   sinkMBB->addLiveIn(X86::EAX);
14314   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14315           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14316     .addReg(X86::EAX);
14317
14318   MI->eraseFromParent();
14319   return sinkMBB;
14320 }
14321
14322 // Get CMPXCHG opcode for the specified data type.
14323 static unsigned getCmpXChgOpcode(EVT VT) {
14324   switch (VT.getSimpleVT().SimpleTy) {
14325   case MVT::i8:  return X86::LCMPXCHG8;
14326   case MVT::i16: return X86::LCMPXCHG16;
14327   case MVT::i32: return X86::LCMPXCHG32;
14328   case MVT::i64: return X86::LCMPXCHG64;
14329   default:
14330     break;
14331   }
14332   llvm_unreachable("Invalid operand size!");
14333 }
14334
14335 // Get LOAD opcode for the specified data type.
14336 static unsigned getLoadOpcode(EVT VT) {
14337   switch (VT.getSimpleVT().SimpleTy) {
14338   case MVT::i8:  return X86::MOV8rm;
14339   case MVT::i16: return X86::MOV16rm;
14340   case MVT::i32: return X86::MOV32rm;
14341   case MVT::i64: return X86::MOV64rm;
14342   default:
14343     break;
14344   }
14345   llvm_unreachable("Invalid operand size!");
14346 }
14347
14348 // Get opcode of the non-atomic one from the specified atomic instruction.
14349 static unsigned getNonAtomicOpcode(unsigned Opc) {
14350   switch (Opc) {
14351   case X86::ATOMAND8:  return X86::AND8rr;
14352   case X86::ATOMAND16: return X86::AND16rr;
14353   case X86::ATOMAND32: return X86::AND32rr;
14354   case X86::ATOMAND64: return X86::AND64rr;
14355   case X86::ATOMOR8:   return X86::OR8rr;
14356   case X86::ATOMOR16:  return X86::OR16rr;
14357   case X86::ATOMOR32:  return X86::OR32rr;
14358   case X86::ATOMOR64:  return X86::OR64rr;
14359   case X86::ATOMXOR8:  return X86::XOR8rr;
14360   case X86::ATOMXOR16: return X86::XOR16rr;
14361   case X86::ATOMXOR32: return X86::XOR32rr;
14362   case X86::ATOMXOR64: return X86::XOR64rr;
14363   }
14364   llvm_unreachable("Unhandled atomic-load-op opcode!");
14365 }
14366
14367 // Get opcode of the non-atomic one from the specified atomic instruction with
14368 // extra opcode.
14369 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14370                                                unsigned &ExtraOpc) {
14371   switch (Opc) {
14372   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14373   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14374   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14375   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14376   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14377   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14378   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14379   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14380   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14381   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14382   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14383   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14384   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14385   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14386   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14387   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14388   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14389   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14390   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14391   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14392   }
14393   llvm_unreachable("Unhandled atomic-load-op opcode!");
14394 }
14395
14396 // Get opcode of the non-atomic one from the specified atomic instruction for
14397 // 64-bit data type on 32-bit target.
14398 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14399   switch (Opc) {
14400   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14401   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14402   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14403   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14404   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14405   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14406   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14407   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14408   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14409   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14410   }
14411   llvm_unreachable("Unhandled atomic-load-op opcode!");
14412 }
14413
14414 // Get opcode of the non-atomic one from the specified atomic instruction for
14415 // 64-bit data type on 32-bit target with extra opcode.
14416 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14417                                                    unsigned &HiOpc,
14418                                                    unsigned &ExtraOpc) {
14419   switch (Opc) {
14420   case X86::ATOMNAND6432:
14421     ExtraOpc = X86::NOT32r;
14422     HiOpc = X86::AND32rr;
14423     return X86::AND32rr;
14424   }
14425   llvm_unreachable("Unhandled atomic-load-op opcode!");
14426 }
14427
14428 // Get pseudo CMOV opcode from the specified data type.
14429 static unsigned getPseudoCMOVOpc(EVT VT) {
14430   switch (VT.getSimpleVT().SimpleTy) {
14431   case MVT::i8:  return X86::CMOV_GR8;
14432   case MVT::i16: return X86::CMOV_GR16;
14433   case MVT::i32: return X86::CMOV_GR32;
14434   default:
14435     break;
14436   }
14437   llvm_unreachable("Unknown CMOV opcode!");
14438 }
14439
14440 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14441 // They will be translated into a spin-loop or compare-exchange loop from
14442 //
14443 //    ...
14444 //    dst = atomic-fetch-op MI.addr, MI.val
14445 //    ...
14446 //
14447 // to
14448 //
14449 //    ...
14450 //    t1 = LOAD MI.addr
14451 // loop:
14452 //    t4 = phi(t1, t3 / loop)
14453 //    t2 = OP MI.val, t4
14454 //    EAX = t4
14455 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14456 //    t3 = EAX
14457 //    JNE loop
14458 // sink:
14459 //    dst = t3
14460 //    ...
14461 MachineBasicBlock *
14462 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14463                                        MachineBasicBlock *MBB) const {
14464   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14465   DebugLoc DL = MI->getDebugLoc();
14466
14467   MachineFunction *MF = MBB->getParent();
14468   MachineRegisterInfo &MRI = MF->getRegInfo();
14469
14470   const BasicBlock *BB = MBB->getBasicBlock();
14471   MachineFunction::iterator I = MBB;
14472   ++I;
14473
14474   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14475          "Unexpected number of operands");
14476
14477   assert(MI->hasOneMemOperand() &&
14478          "Expected atomic-load-op to have one memoperand");
14479
14480   // Memory Reference
14481   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14482   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14483
14484   unsigned DstReg, SrcReg;
14485   unsigned MemOpndSlot;
14486
14487   unsigned CurOp = 0;
14488
14489   DstReg = MI->getOperand(CurOp++).getReg();
14490   MemOpndSlot = CurOp;
14491   CurOp += X86::AddrNumOperands;
14492   SrcReg = MI->getOperand(CurOp++).getReg();
14493
14494   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14495   MVT::SimpleValueType VT = *RC->vt_begin();
14496   unsigned t1 = MRI.createVirtualRegister(RC);
14497   unsigned t2 = MRI.createVirtualRegister(RC);
14498   unsigned t3 = MRI.createVirtualRegister(RC);
14499   unsigned t4 = MRI.createVirtualRegister(RC);
14500   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14501
14502   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14503   unsigned LOADOpc = getLoadOpcode(VT);
14504
14505   // For the atomic load-arith operator, we generate
14506   //
14507   //  thisMBB:
14508   //    t1 = LOAD [MI.addr]
14509   //  mainMBB:
14510   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14511   //    t1 = OP MI.val, EAX
14512   //    EAX = t4
14513   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14514   //    t3 = EAX
14515   //    JNE mainMBB
14516   //  sinkMBB:
14517   //    dst = t3
14518
14519   MachineBasicBlock *thisMBB = MBB;
14520   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14521   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14522   MF->insert(I, mainMBB);
14523   MF->insert(I, sinkMBB);
14524
14525   MachineInstrBuilder MIB;
14526
14527   // Transfer the remainder of BB and its successor edges to sinkMBB.
14528   sinkMBB->splice(sinkMBB->begin(), MBB,
14529                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14530   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14531
14532   // thisMBB:
14533   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14534   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14535     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14536     if (NewMO.isReg())
14537       NewMO.setIsKill(false);
14538     MIB.addOperand(NewMO);
14539   }
14540   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14541     unsigned flags = (*MMOI)->getFlags();
14542     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14543     MachineMemOperand *MMO =
14544       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14545                                (*MMOI)->getSize(),
14546                                (*MMOI)->getBaseAlignment(),
14547                                (*MMOI)->getTBAAInfo(),
14548                                (*MMOI)->getRanges());
14549     MIB.addMemOperand(MMO);
14550   }
14551
14552   thisMBB->addSuccessor(mainMBB);
14553
14554   // mainMBB:
14555   MachineBasicBlock *origMainMBB = mainMBB;
14556
14557   // Add a PHI.
14558   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14559                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14560
14561   unsigned Opc = MI->getOpcode();
14562   switch (Opc) {
14563   default:
14564     llvm_unreachable("Unhandled atomic-load-op opcode!");
14565   case X86::ATOMAND8:
14566   case X86::ATOMAND16:
14567   case X86::ATOMAND32:
14568   case X86::ATOMAND64:
14569   case X86::ATOMOR8:
14570   case X86::ATOMOR16:
14571   case X86::ATOMOR32:
14572   case X86::ATOMOR64:
14573   case X86::ATOMXOR8:
14574   case X86::ATOMXOR16:
14575   case X86::ATOMXOR32:
14576   case X86::ATOMXOR64: {
14577     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14578     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14579       .addReg(t4);
14580     break;
14581   }
14582   case X86::ATOMNAND8:
14583   case X86::ATOMNAND16:
14584   case X86::ATOMNAND32:
14585   case X86::ATOMNAND64: {
14586     unsigned Tmp = MRI.createVirtualRegister(RC);
14587     unsigned NOTOpc;
14588     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14589     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14590       .addReg(t4);
14591     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14592     break;
14593   }
14594   case X86::ATOMMAX8:
14595   case X86::ATOMMAX16:
14596   case X86::ATOMMAX32:
14597   case X86::ATOMMAX64:
14598   case X86::ATOMMIN8:
14599   case X86::ATOMMIN16:
14600   case X86::ATOMMIN32:
14601   case X86::ATOMMIN64:
14602   case X86::ATOMUMAX8:
14603   case X86::ATOMUMAX16:
14604   case X86::ATOMUMAX32:
14605   case X86::ATOMUMAX64:
14606   case X86::ATOMUMIN8:
14607   case X86::ATOMUMIN16:
14608   case X86::ATOMUMIN32:
14609   case X86::ATOMUMIN64: {
14610     unsigned CMPOpc;
14611     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14612
14613     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14614       .addReg(SrcReg)
14615       .addReg(t4);
14616
14617     if (Subtarget->hasCMov()) {
14618       if (VT != MVT::i8) {
14619         // Native support
14620         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14621           .addReg(SrcReg)
14622           .addReg(t4);
14623       } else {
14624         // Promote i8 to i32 to use CMOV32
14625         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14626         const TargetRegisterClass *RC32 =
14627           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14628         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14629         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14630         unsigned Tmp = MRI.createVirtualRegister(RC32);
14631
14632         unsigned Undef = MRI.createVirtualRegister(RC32);
14633         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14634
14635         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14636           .addReg(Undef)
14637           .addReg(SrcReg)
14638           .addImm(X86::sub_8bit);
14639         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14640           .addReg(Undef)
14641           .addReg(t4)
14642           .addImm(X86::sub_8bit);
14643
14644         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14645           .addReg(SrcReg32)
14646           .addReg(AccReg32);
14647
14648         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14649           .addReg(Tmp, 0, X86::sub_8bit);
14650       }
14651     } else {
14652       // Use pseudo select and lower them.
14653       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14654              "Invalid atomic-load-op transformation!");
14655       unsigned SelOpc = getPseudoCMOVOpc(VT);
14656       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14657       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14658       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14659               .addReg(SrcReg).addReg(t4)
14660               .addImm(CC);
14661       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14662       // Replace the original PHI node as mainMBB is changed after CMOV
14663       // lowering.
14664       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14665         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14666       Phi->eraseFromParent();
14667     }
14668     break;
14669   }
14670   }
14671
14672   // Copy PhyReg back from virtual register.
14673   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14674     .addReg(t4);
14675
14676   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14677   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14678     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14679     if (NewMO.isReg())
14680       NewMO.setIsKill(false);
14681     MIB.addOperand(NewMO);
14682   }
14683   MIB.addReg(t2);
14684   MIB.setMemRefs(MMOBegin, MMOEnd);
14685
14686   // Copy PhyReg back to virtual register.
14687   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14688     .addReg(PhyReg);
14689
14690   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14691
14692   mainMBB->addSuccessor(origMainMBB);
14693   mainMBB->addSuccessor(sinkMBB);
14694
14695   // sinkMBB:
14696   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14697           TII->get(TargetOpcode::COPY), DstReg)
14698     .addReg(t3);
14699
14700   MI->eraseFromParent();
14701   return sinkMBB;
14702 }
14703
14704 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14705 // instructions. They will be translated into a spin-loop or compare-exchange
14706 // loop from
14707 //
14708 //    ...
14709 //    dst = atomic-fetch-op MI.addr, MI.val
14710 //    ...
14711 //
14712 // to
14713 //
14714 //    ...
14715 //    t1L = LOAD [MI.addr + 0]
14716 //    t1H = LOAD [MI.addr + 4]
14717 // loop:
14718 //    t4L = phi(t1L, t3L / loop)
14719 //    t4H = phi(t1H, t3H / loop)
14720 //    t2L = OP MI.val.lo, t4L
14721 //    t2H = OP MI.val.hi, t4H
14722 //    EAX = t4L
14723 //    EDX = t4H
14724 //    EBX = t2L
14725 //    ECX = t2H
14726 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14727 //    t3L = EAX
14728 //    t3H = EDX
14729 //    JNE loop
14730 // sink:
14731 //    dstL = t3L
14732 //    dstH = t3H
14733 //    ...
14734 MachineBasicBlock *
14735 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14736                                            MachineBasicBlock *MBB) const {
14737   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14738   DebugLoc DL = MI->getDebugLoc();
14739
14740   MachineFunction *MF = MBB->getParent();
14741   MachineRegisterInfo &MRI = MF->getRegInfo();
14742
14743   const BasicBlock *BB = MBB->getBasicBlock();
14744   MachineFunction::iterator I = MBB;
14745   ++I;
14746
14747   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14748          "Unexpected number of operands");
14749
14750   assert(MI->hasOneMemOperand() &&
14751          "Expected atomic-load-op32 to have one memoperand");
14752
14753   // Memory Reference
14754   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14755   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14756
14757   unsigned DstLoReg, DstHiReg;
14758   unsigned SrcLoReg, SrcHiReg;
14759   unsigned MemOpndSlot;
14760
14761   unsigned CurOp = 0;
14762
14763   DstLoReg = MI->getOperand(CurOp++).getReg();
14764   DstHiReg = MI->getOperand(CurOp++).getReg();
14765   MemOpndSlot = CurOp;
14766   CurOp += X86::AddrNumOperands;
14767   SrcLoReg = MI->getOperand(CurOp++).getReg();
14768   SrcHiReg = MI->getOperand(CurOp++).getReg();
14769
14770   const TargetRegisterClass *RC = &X86::GR32RegClass;
14771   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14772
14773   unsigned t1L = MRI.createVirtualRegister(RC);
14774   unsigned t1H = MRI.createVirtualRegister(RC);
14775   unsigned t2L = MRI.createVirtualRegister(RC);
14776   unsigned t2H = MRI.createVirtualRegister(RC);
14777   unsigned t3L = MRI.createVirtualRegister(RC);
14778   unsigned t3H = MRI.createVirtualRegister(RC);
14779   unsigned t4L = MRI.createVirtualRegister(RC);
14780   unsigned t4H = MRI.createVirtualRegister(RC);
14781
14782   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14783   unsigned LOADOpc = X86::MOV32rm;
14784
14785   // For the atomic load-arith operator, we generate
14786   //
14787   //  thisMBB:
14788   //    t1L = LOAD [MI.addr + 0]
14789   //    t1H = LOAD [MI.addr + 4]
14790   //  mainMBB:
14791   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14792   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14793   //    t2L = OP MI.val.lo, t4L
14794   //    t2H = OP MI.val.hi, t4H
14795   //    EBX = t2L
14796   //    ECX = t2H
14797   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14798   //    t3L = EAX
14799   //    t3H = EDX
14800   //    JNE loop
14801   //  sinkMBB:
14802   //    dstL = t3L
14803   //    dstH = t3H
14804
14805   MachineBasicBlock *thisMBB = MBB;
14806   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14807   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14808   MF->insert(I, mainMBB);
14809   MF->insert(I, sinkMBB);
14810
14811   MachineInstrBuilder MIB;
14812
14813   // Transfer the remainder of BB and its successor edges to sinkMBB.
14814   sinkMBB->splice(sinkMBB->begin(), MBB,
14815                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14816   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14817
14818   // thisMBB:
14819   // Lo
14820   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14821   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14822     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14823     if (NewMO.isReg())
14824       NewMO.setIsKill(false);
14825     MIB.addOperand(NewMO);
14826   }
14827   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14828     unsigned flags = (*MMOI)->getFlags();
14829     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14830     MachineMemOperand *MMO =
14831       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14832                                (*MMOI)->getSize(),
14833                                (*MMOI)->getBaseAlignment(),
14834                                (*MMOI)->getTBAAInfo(),
14835                                (*MMOI)->getRanges());
14836     MIB.addMemOperand(MMO);
14837   };
14838   MachineInstr *LowMI = MIB;
14839
14840   // Hi
14841   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14842   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14843     if (i == X86::AddrDisp) {
14844       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14845     } else {
14846       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14847       if (NewMO.isReg())
14848         NewMO.setIsKill(false);
14849       MIB.addOperand(NewMO);
14850     }
14851   }
14852   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14853
14854   thisMBB->addSuccessor(mainMBB);
14855
14856   // mainMBB:
14857   MachineBasicBlock *origMainMBB = mainMBB;
14858
14859   // Add PHIs.
14860   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14861                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14862   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14863                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14864
14865   unsigned Opc = MI->getOpcode();
14866   switch (Opc) {
14867   default:
14868     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14869   case X86::ATOMAND6432:
14870   case X86::ATOMOR6432:
14871   case X86::ATOMXOR6432:
14872   case X86::ATOMADD6432:
14873   case X86::ATOMSUB6432: {
14874     unsigned HiOpc;
14875     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14876     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14877       .addReg(SrcLoReg);
14878     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14879       .addReg(SrcHiReg);
14880     break;
14881   }
14882   case X86::ATOMNAND6432: {
14883     unsigned HiOpc, NOTOpc;
14884     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14885     unsigned TmpL = MRI.createVirtualRegister(RC);
14886     unsigned TmpH = MRI.createVirtualRegister(RC);
14887     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14888       .addReg(t4L);
14889     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14890       .addReg(t4H);
14891     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14892     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14893     break;
14894   }
14895   case X86::ATOMMAX6432:
14896   case X86::ATOMMIN6432:
14897   case X86::ATOMUMAX6432:
14898   case X86::ATOMUMIN6432: {
14899     unsigned HiOpc;
14900     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14901     unsigned cL = MRI.createVirtualRegister(RC8);
14902     unsigned cH = MRI.createVirtualRegister(RC8);
14903     unsigned cL32 = MRI.createVirtualRegister(RC);
14904     unsigned cH32 = MRI.createVirtualRegister(RC);
14905     unsigned cc = MRI.createVirtualRegister(RC);
14906     // cl := cmp src_lo, lo
14907     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14908       .addReg(SrcLoReg).addReg(t4L);
14909     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14910     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14911     // ch := cmp src_hi, hi
14912     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14913       .addReg(SrcHiReg).addReg(t4H);
14914     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14915     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14916     // cc := if (src_hi == hi) ? cl : ch;
14917     if (Subtarget->hasCMov()) {
14918       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14919         .addReg(cH32).addReg(cL32);
14920     } else {
14921       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14922               .addReg(cH32).addReg(cL32)
14923               .addImm(X86::COND_E);
14924       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14925     }
14926     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14927     if (Subtarget->hasCMov()) {
14928       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14929         .addReg(SrcLoReg).addReg(t4L);
14930       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14931         .addReg(SrcHiReg).addReg(t4H);
14932     } else {
14933       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14934               .addReg(SrcLoReg).addReg(t4L)
14935               .addImm(X86::COND_NE);
14936       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14937       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14938       // 2nd CMOV lowering.
14939       mainMBB->addLiveIn(X86::EFLAGS);
14940       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14941               .addReg(SrcHiReg).addReg(t4H)
14942               .addImm(X86::COND_NE);
14943       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14944       // Replace the original PHI node as mainMBB is changed after CMOV
14945       // lowering.
14946       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14947         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14948       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14949         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14950       PhiL->eraseFromParent();
14951       PhiH->eraseFromParent();
14952     }
14953     break;
14954   }
14955   case X86::ATOMSWAP6432: {
14956     unsigned HiOpc;
14957     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14958     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14959     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14960     break;
14961   }
14962   }
14963
14964   // Copy EDX:EAX back from HiReg:LoReg
14965   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14966   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14967   // Copy ECX:EBX from t1H:t1L
14968   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14969   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14970
14971   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14972   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14973     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14974     if (NewMO.isReg())
14975       NewMO.setIsKill(false);
14976     MIB.addOperand(NewMO);
14977   }
14978   MIB.setMemRefs(MMOBegin, MMOEnd);
14979
14980   // Copy EDX:EAX back to t3H:t3L
14981   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14982   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14983
14984   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14985
14986   mainMBB->addSuccessor(origMainMBB);
14987   mainMBB->addSuccessor(sinkMBB);
14988
14989   // sinkMBB:
14990   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14991           TII->get(TargetOpcode::COPY), DstLoReg)
14992     .addReg(t3L);
14993   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14994           TII->get(TargetOpcode::COPY), DstHiReg)
14995     .addReg(t3H);
14996
14997   MI->eraseFromParent();
14998   return sinkMBB;
14999 }
15000
15001 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
15002 // or XMM0_V32I8 in AVX all of this code can be replaced with that
15003 // in the .td file.
15004 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
15005                                        const TargetInstrInfo *TII) {
15006   unsigned Opc;
15007   switch (MI->getOpcode()) {
15008   default: llvm_unreachable("illegal opcode!");
15009   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
15010   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
15011   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
15012   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
15013   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
15014   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
15015   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
15016   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
15017   }
15018
15019   DebugLoc dl = MI->getDebugLoc();
15020   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15021
15022   unsigned NumArgs = MI->getNumOperands();
15023   for (unsigned i = 1; i < NumArgs; ++i) {
15024     MachineOperand &Op = MI->getOperand(i);
15025     if (!(Op.isReg() && Op.isImplicit()))
15026       MIB.addOperand(Op);
15027   }
15028   if (MI->hasOneMemOperand())
15029     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15030
15031   BuildMI(*BB, MI, dl,
15032     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15033     .addReg(X86::XMM0);
15034
15035   MI->eraseFromParent();
15036   return BB;
15037 }
15038
15039 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15040 // defs in an instruction pattern
15041 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15042                                        const TargetInstrInfo *TII) {
15043   unsigned Opc;
15044   switch (MI->getOpcode()) {
15045   default: llvm_unreachable("illegal opcode!");
15046   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
15047   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
15048   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
15049   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
15050   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
15051   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
15052   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
15053   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
15054   }
15055
15056   DebugLoc dl = MI->getDebugLoc();
15057   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15058
15059   unsigned NumArgs = MI->getNumOperands(); // remove the results
15060   for (unsigned i = 1; i < NumArgs; ++i) {
15061     MachineOperand &Op = MI->getOperand(i);
15062     if (!(Op.isReg() && Op.isImplicit()))
15063       MIB.addOperand(Op);
15064   }
15065   if (MI->hasOneMemOperand())
15066     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15067
15068   BuildMI(*BB, MI, dl,
15069     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15070     .addReg(X86::ECX);
15071
15072   MI->eraseFromParent();
15073   return BB;
15074 }
15075
15076 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
15077                                        const TargetInstrInfo *TII,
15078                                        const X86Subtarget* Subtarget) {
15079   DebugLoc dl = MI->getDebugLoc();
15080
15081   // Address into RAX/EAX, other two args into ECX, EDX.
15082   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
15083   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
15084   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
15085   for (int i = 0; i < X86::AddrNumOperands; ++i)
15086     MIB.addOperand(MI->getOperand(i));
15087
15088   unsigned ValOps = X86::AddrNumOperands;
15089   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
15090     .addReg(MI->getOperand(ValOps).getReg());
15091   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
15092     .addReg(MI->getOperand(ValOps+1).getReg());
15093
15094   // The instruction doesn't actually take any operands though.
15095   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
15096
15097   MI->eraseFromParent(); // The pseudo is gone now.
15098   return BB;
15099 }
15100
15101 MachineBasicBlock *
15102 X86TargetLowering::EmitVAARG64WithCustomInserter(
15103                    MachineInstr *MI,
15104                    MachineBasicBlock *MBB) const {
15105   // Emit va_arg instruction on X86-64.
15106
15107   // Operands to this pseudo-instruction:
15108   // 0  ) Output        : destination address (reg)
15109   // 1-5) Input         : va_list address (addr, i64mem)
15110   // 6  ) ArgSize       : Size (in bytes) of vararg type
15111   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
15112   // 8  ) Align         : Alignment of type
15113   // 9  ) EFLAGS (implicit-def)
15114
15115   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
15116   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
15117
15118   unsigned DestReg = MI->getOperand(0).getReg();
15119   MachineOperand &Base = MI->getOperand(1);
15120   MachineOperand &Scale = MI->getOperand(2);
15121   MachineOperand &Index = MI->getOperand(3);
15122   MachineOperand &Disp = MI->getOperand(4);
15123   MachineOperand &Segment = MI->getOperand(5);
15124   unsigned ArgSize = MI->getOperand(6).getImm();
15125   unsigned ArgMode = MI->getOperand(7).getImm();
15126   unsigned Align = MI->getOperand(8).getImm();
15127
15128   // Memory Reference
15129   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
15130   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15131   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15132
15133   // Machine Information
15134   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15135   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
15136   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
15137   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
15138   DebugLoc DL = MI->getDebugLoc();
15139
15140   // struct va_list {
15141   //   i32   gp_offset
15142   //   i32   fp_offset
15143   //   i64   overflow_area (address)
15144   //   i64   reg_save_area (address)
15145   // }
15146   // sizeof(va_list) = 24
15147   // alignment(va_list) = 8
15148
15149   unsigned TotalNumIntRegs = 6;
15150   unsigned TotalNumXMMRegs = 8;
15151   bool UseGPOffset = (ArgMode == 1);
15152   bool UseFPOffset = (ArgMode == 2);
15153   unsigned MaxOffset = TotalNumIntRegs * 8 +
15154                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
15155
15156   /* Align ArgSize to a multiple of 8 */
15157   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
15158   bool NeedsAlign = (Align > 8);
15159
15160   MachineBasicBlock *thisMBB = MBB;
15161   MachineBasicBlock *overflowMBB;
15162   MachineBasicBlock *offsetMBB;
15163   MachineBasicBlock *endMBB;
15164
15165   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
15166   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
15167   unsigned OffsetReg = 0;
15168
15169   if (!UseGPOffset && !UseFPOffset) {
15170     // If we only pull from the overflow region, we don't create a branch.
15171     // We don't need to alter control flow.
15172     OffsetDestReg = 0; // unused
15173     OverflowDestReg = DestReg;
15174
15175     offsetMBB = NULL;
15176     overflowMBB = thisMBB;
15177     endMBB = thisMBB;
15178   } else {
15179     // First emit code to check if gp_offset (or fp_offset) is below the bound.
15180     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15181     // If not, pull from overflow_area. (branch to overflowMBB)
15182     //
15183     //       thisMBB
15184     //         |     .
15185     //         |        .
15186     //     offsetMBB   overflowMBB
15187     //         |        .
15188     //         |     .
15189     //        endMBB
15190
15191     // Registers for the PHI in endMBB
15192     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
15193     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
15194
15195     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15196     MachineFunction *MF = MBB->getParent();
15197     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15198     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15199     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15200
15201     MachineFunction::iterator MBBIter = MBB;
15202     ++MBBIter;
15203
15204     // Insert the new basic blocks
15205     MF->insert(MBBIter, offsetMBB);
15206     MF->insert(MBBIter, overflowMBB);
15207     MF->insert(MBBIter, endMBB);
15208
15209     // Transfer the remainder of MBB and its successor edges to endMBB.
15210     endMBB->splice(endMBB->begin(), thisMBB,
15211                     llvm::next(MachineBasicBlock::iterator(MI)),
15212                     thisMBB->end());
15213     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
15214
15215     // Make offsetMBB and overflowMBB successors of thisMBB
15216     thisMBB->addSuccessor(offsetMBB);
15217     thisMBB->addSuccessor(overflowMBB);
15218
15219     // endMBB is a successor of both offsetMBB and overflowMBB
15220     offsetMBB->addSuccessor(endMBB);
15221     overflowMBB->addSuccessor(endMBB);
15222
15223     // Load the offset value into a register
15224     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15225     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
15226       .addOperand(Base)
15227       .addOperand(Scale)
15228       .addOperand(Index)
15229       .addDisp(Disp, UseFPOffset ? 4 : 0)
15230       .addOperand(Segment)
15231       .setMemRefs(MMOBegin, MMOEnd);
15232
15233     // Check if there is enough room left to pull this argument.
15234     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15235       .addReg(OffsetReg)
15236       .addImm(MaxOffset + 8 - ArgSizeA8);
15237
15238     // Branch to "overflowMBB" if offset >= max
15239     // Fall through to "offsetMBB" otherwise
15240     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15241       .addMBB(overflowMBB);
15242   }
15243
15244   // In offsetMBB, emit code to use the reg_save_area.
15245   if (offsetMBB) {
15246     assert(OffsetReg != 0);
15247
15248     // Read the reg_save_area address.
15249     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15250     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15251       .addOperand(Base)
15252       .addOperand(Scale)
15253       .addOperand(Index)
15254       .addDisp(Disp, 16)
15255       .addOperand(Segment)
15256       .setMemRefs(MMOBegin, MMOEnd);
15257
15258     // Zero-extend the offset
15259     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15260       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15261         .addImm(0)
15262         .addReg(OffsetReg)
15263         .addImm(X86::sub_32bit);
15264
15265     // Add the offset to the reg_save_area to get the final address.
15266     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15267       .addReg(OffsetReg64)
15268       .addReg(RegSaveReg);
15269
15270     // Compute the offset for the next argument
15271     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15272     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15273       .addReg(OffsetReg)
15274       .addImm(UseFPOffset ? 16 : 8);
15275
15276     // Store it back into the va_list.
15277     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15278       .addOperand(Base)
15279       .addOperand(Scale)
15280       .addOperand(Index)
15281       .addDisp(Disp, UseFPOffset ? 4 : 0)
15282       .addOperand(Segment)
15283       .addReg(NextOffsetReg)
15284       .setMemRefs(MMOBegin, MMOEnd);
15285
15286     // Jump to endMBB
15287     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15288       .addMBB(endMBB);
15289   }
15290
15291   //
15292   // Emit code to use overflow area
15293   //
15294
15295   // Load the overflow_area address into a register.
15296   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15297   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15298     .addOperand(Base)
15299     .addOperand(Scale)
15300     .addOperand(Index)
15301     .addDisp(Disp, 8)
15302     .addOperand(Segment)
15303     .setMemRefs(MMOBegin, MMOEnd);
15304
15305   // If we need to align it, do so. Otherwise, just copy the address
15306   // to OverflowDestReg.
15307   if (NeedsAlign) {
15308     // Align the overflow address
15309     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15310     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15311
15312     // aligned_addr = (addr + (align-1)) & ~(align-1)
15313     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15314       .addReg(OverflowAddrReg)
15315       .addImm(Align-1);
15316
15317     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15318       .addReg(TmpReg)
15319       .addImm(~(uint64_t)(Align-1));
15320   } else {
15321     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15322       .addReg(OverflowAddrReg);
15323   }
15324
15325   // Compute the next overflow address after this argument.
15326   // (the overflow address should be kept 8-byte aligned)
15327   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15328   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15329     .addReg(OverflowDestReg)
15330     .addImm(ArgSizeA8);
15331
15332   // Store the new overflow address.
15333   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15334     .addOperand(Base)
15335     .addOperand(Scale)
15336     .addOperand(Index)
15337     .addDisp(Disp, 8)
15338     .addOperand(Segment)
15339     .addReg(NextAddrReg)
15340     .setMemRefs(MMOBegin, MMOEnd);
15341
15342   // If we branched, emit the PHI to the front of endMBB.
15343   if (offsetMBB) {
15344     BuildMI(*endMBB, endMBB->begin(), DL,
15345             TII->get(X86::PHI), DestReg)
15346       .addReg(OffsetDestReg).addMBB(offsetMBB)
15347       .addReg(OverflowDestReg).addMBB(overflowMBB);
15348   }
15349
15350   // Erase the pseudo instruction
15351   MI->eraseFromParent();
15352
15353   return endMBB;
15354 }
15355
15356 MachineBasicBlock *
15357 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15358                                                  MachineInstr *MI,
15359                                                  MachineBasicBlock *MBB) const {
15360   // Emit code to save XMM registers to the stack. The ABI says that the
15361   // number of registers to save is given in %al, so it's theoretically
15362   // possible to do an indirect jump trick to avoid saving all of them,
15363   // however this code takes a simpler approach and just executes all
15364   // of the stores if %al is non-zero. It's less code, and it's probably
15365   // easier on the hardware branch predictor, and stores aren't all that
15366   // expensive anyway.
15367
15368   // Create the new basic blocks. One block contains all the XMM stores,
15369   // and one block is the final destination regardless of whether any
15370   // stores were performed.
15371   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15372   MachineFunction *F = MBB->getParent();
15373   MachineFunction::iterator MBBIter = MBB;
15374   ++MBBIter;
15375   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15376   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15377   F->insert(MBBIter, XMMSaveMBB);
15378   F->insert(MBBIter, EndMBB);
15379
15380   // Transfer the remainder of MBB and its successor edges to EndMBB.
15381   EndMBB->splice(EndMBB->begin(), MBB,
15382                  llvm::next(MachineBasicBlock::iterator(MI)),
15383                  MBB->end());
15384   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15385
15386   // The original block will now fall through to the XMM save block.
15387   MBB->addSuccessor(XMMSaveMBB);
15388   // The XMMSaveMBB will fall through to the end block.
15389   XMMSaveMBB->addSuccessor(EndMBB);
15390
15391   // Now add the instructions.
15392   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15393   DebugLoc DL = MI->getDebugLoc();
15394
15395   unsigned CountReg = MI->getOperand(0).getReg();
15396   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15397   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15398
15399   if (!Subtarget->isTargetWin64()) {
15400     // If %al is 0, branch around the XMM save block.
15401     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15402     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15403     MBB->addSuccessor(EndMBB);
15404   }
15405
15406   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
15407   // that was just emitted, but clearly shouldn't be "saved".
15408   assert((MI->getNumOperands() <= 3 ||
15409           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
15410           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
15411          && "Expected last argument to be EFLAGS");
15412   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15413   // In the XMM save block, save all the XMM argument registers.
15414   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
15415     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15416     MachineMemOperand *MMO =
15417       F->getMachineMemOperand(
15418           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15419         MachineMemOperand::MOStore,
15420         /*Size=*/16, /*Align=*/16);
15421     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15422       .addFrameIndex(RegSaveFrameIndex)
15423       .addImm(/*Scale=*/1)
15424       .addReg(/*IndexReg=*/0)
15425       .addImm(/*Disp=*/Offset)
15426       .addReg(/*Segment=*/0)
15427       .addReg(MI->getOperand(i).getReg())
15428       .addMemOperand(MMO);
15429   }
15430
15431   MI->eraseFromParent();   // The pseudo instruction is gone now.
15432
15433   return EndMBB;
15434 }
15435
15436 // The EFLAGS operand of SelectItr might be missing a kill marker
15437 // because there were multiple uses of EFLAGS, and ISel didn't know
15438 // which to mark. Figure out whether SelectItr should have had a
15439 // kill marker, and set it if it should. Returns the correct kill
15440 // marker value.
15441 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15442                                      MachineBasicBlock* BB,
15443                                      const TargetRegisterInfo* TRI) {
15444   // Scan forward through BB for a use/def of EFLAGS.
15445   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15446   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15447     const MachineInstr& mi = *miI;
15448     if (mi.readsRegister(X86::EFLAGS))
15449       return false;
15450     if (mi.definesRegister(X86::EFLAGS))
15451       break; // Should have kill-flag - update below.
15452   }
15453
15454   // If we hit the end of the block, check whether EFLAGS is live into a
15455   // successor.
15456   if (miI == BB->end()) {
15457     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15458                                           sEnd = BB->succ_end();
15459          sItr != sEnd; ++sItr) {
15460       MachineBasicBlock* succ = *sItr;
15461       if (succ->isLiveIn(X86::EFLAGS))
15462         return false;
15463     }
15464   }
15465
15466   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15467   // out. SelectMI should have a kill flag on EFLAGS.
15468   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15469   return true;
15470 }
15471
15472 MachineBasicBlock *
15473 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15474                                      MachineBasicBlock *BB) const {
15475   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15476   DebugLoc DL = MI->getDebugLoc();
15477
15478   // To "insert" a SELECT_CC instruction, we actually have to insert the
15479   // diamond control-flow pattern.  The incoming instruction knows the
15480   // destination vreg to set, the condition code register to branch on, the
15481   // true/false values to select between, and a branch opcode to use.
15482   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15483   MachineFunction::iterator It = BB;
15484   ++It;
15485
15486   //  thisMBB:
15487   //  ...
15488   //   TrueVal = ...
15489   //   cmpTY ccX, r1, r2
15490   //   bCC copy1MBB
15491   //   fallthrough --> copy0MBB
15492   MachineBasicBlock *thisMBB = BB;
15493   MachineFunction *F = BB->getParent();
15494   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15495   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15496   F->insert(It, copy0MBB);
15497   F->insert(It, sinkMBB);
15498
15499   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15500   // live into the sink and copy blocks.
15501   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15502   if (!MI->killsRegister(X86::EFLAGS) &&
15503       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15504     copy0MBB->addLiveIn(X86::EFLAGS);
15505     sinkMBB->addLiveIn(X86::EFLAGS);
15506   }
15507
15508   // Transfer the remainder of BB and its successor edges to sinkMBB.
15509   sinkMBB->splice(sinkMBB->begin(), BB,
15510                   llvm::next(MachineBasicBlock::iterator(MI)),
15511                   BB->end());
15512   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15513
15514   // Add the true and fallthrough blocks as its successors.
15515   BB->addSuccessor(copy0MBB);
15516   BB->addSuccessor(sinkMBB);
15517
15518   // Create the conditional branch instruction.
15519   unsigned Opc =
15520     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15521   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15522
15523   //  copy0MBB:
15524   //   %FalseValue = ...
15525   //   # fallthrough to sinkMBB
15526   copy0MBB->addSuccessor(sinkMBB);
15527
15528   //  sinkMBB:
15529   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15530   //  ...
15531   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15532           TII->get(X86::PHI), MI->getOperand(0).getReg())
15533     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15534     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15535
15536   MI->eraseFromParent();   // The pseudo instruction is gone now.
15537   return sinkMBB;
15538 }
15539
15540 MachineBasicBlock *
15541 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15542                                         bool Is64Bit) const {
15543   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15544   DebugLoc DL = MI->getDebugLoc();
15545   MachineFunction *MF = BB->getParent();
15546   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15547
15548   assert(getTargetMachine().Options.EnableSegmentedStacks);
15549
15550   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15551   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15552
15553   // BB:
15554   //  ... [Till the alloca]
15555   // If stacklet is not large enough, jump to mallocMBB
15556   //
15557   // bumpMBB:
15558   //  Allocate by subtracting from RSP
15559   //  Jump to continueMBB
15560   //
15561   // mallocMBB:
15562   //  Allocate by call to runtime
15563   //
15564   // continueMBB:
15565   //  ...
15566   //  [rest of original BB]
15567   //
15568
15569   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15570   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15571   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15572
15573   MachineRegisterInfo &MRI = MF->getRegInfo();
15574   const TargetRegisterClass *AddrRegClass =
15575     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15576
15577   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15578     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15579     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15580     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15581     sizeVReg = MI->getOperand(1).getReg(),
15582     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15583
15584   MachineFunction::iterator MBBIter = BB;
15585   ++MBBIter;
15586
15587   MF->insert(MBBIter, bumpMBB);
15588   MF->insert(MBBIter, mallocMBB);
15589   MF->insert(MBBIter, continueMBB);
15590
15591   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15592                       (MachineBasicBlock::iterator(MI)), BB->end());
15593   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15594
15595   // Add code to the main basic block to check if the stack limit has been hit,
15596   // and if so, jump to mallocMBB otherwise to bumpMBB.
15597   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15598   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15599     .addReg(tmpSPVReg).addReg(sizeVReg);
15600   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15601     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15602     .addReg(SPLimitVReg);
15603   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15604
15605   // bumpMBB simply decreases the stack pointer, since we know the current
15606   // stacklet has enough space.
15607   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15608     .addReg(SPLimitVReg);
15609   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15610     .addReg(SPLimitVReg);
15611   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15612
15613   // Calls into a routine in libgcc to allocate more space from the heap.
15614   const uint32_t *RegMask =
15615     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15616   if (Is64Bit) {
15617     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15618       .addReg(sizeVReg);
15619     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15620       .addExternalSymbol("__morestack_allocate_stack_space")
15621       .addRegMask(RegMask)
15622       .addReg(X86::RDI, RegState::Implicit)
15623       .addReg(X86::RAX, RegState::ImplicitDefine);
15624   } else {
15625     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15626       .addImm(12);
15627     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15628     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15629       .addExternalSymbol("__morestack_allocate_stack_space")
15630       .addRegMask(RegMask)
15631       .addReg(X86::EAX, RegState::ImplicitDefine);
15632   }
15633
15634   if (!Is64Bit)
15635     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15636       .addImm(16);
15637
15638   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15639     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15640   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15641
15642   // Set up the CFG correctly.
15643   BB->addSuccessor(bumpMBB);
15644   BB->addSuccessor(mallocMBB);
15645   mallocMBB->addSuccessor(continueMBB);
15646   bumpMBB->addSuccessor(continueMBB);
15647
15648   // Take care of the PHI nodes.
15649   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15650           MI->getOperand(0).getReg())
15651     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15652     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15653
15654   // Delete the original pseudo instruction.
15655   MI->eraseFromParent();
15656
15657   // And we're done.
15658   return continueMBB;
15659 }
15660
15661 MachineBasicBlock *
15662 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15663                                           MachineBasicBlock *BB) const {
15664   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15665   DebugLoc DL = MI->getDebugLoc();
15666
15667   assert(!Subtarget->isTargetMacho());
15668
15669   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15670   // non-trivial part is impdef of ESP.
15671
15672   if (Subtarget->isTargetWin64()) {
15673     if (Subtarget->isTargetCygMing()) {
15674       // ___chkstk(Mingw64):
15675       // Clobbers R10, R11, RAX and EFLAGS.
15676       // Updates RSP.
15677       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15678         .addExternalSymbol("___chkstk")
15679         .addReg(X86::RAX, RegState::Implicit)
15680         .addReg(X86::RSP, RegState::Implicit)
15681         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15682         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15683         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15684     } else {
15685       // __chkstk(MSVCRT): does not update stack pointer.
15686       // Clobbers R10, R11 and EFLAGS.
15687       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15688         .addExternalSymbol("__chkstk")
15689         .addReg(X86::RAX, RegState::Implicit)
15690         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15691       // RAX has the offset to be subtracted from RSP.
15692       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15693         .addReg(X86::RSP)
15694         .addReg(X86::RAX);
15695     }
15696   } else {
15697     const char *StackProbeSymbol =
15698       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15699
15700     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15701       .addExternalSymbol(StackProbeSymbol)
15702       .addReg(X86::EAX, RegState::Implicit)
15703       .addReg(X86::ESP, RegState::Implicit)
15704       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15705       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15706       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15707   }
15708
15709   MI->eraseFromParent();   // The pseudo instruction is gone now.
15710   return BB;
15711 }
15712
15713 MachineBasicBlock *
15714 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15715                                       MachineBasicBlock *BB) const {
15716   // This is pretty easy.  We're taking the value that we received from
15717   // our load from the relocation, sticking it in either RDI (x86-64)
15718   // or EAX and doing an indirect call.  The return value will then
15719   // be in the normal return register.
15720   const X86InstrInfo *TII
15721     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15722   DebugLoc DL = MI->getDebugLoc();
15723   MachineFunction *F = BB->getParent();
15724
15725   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15726   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15727
15728   // Get a register mask for the lowered call.
15729   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15730   // proper register mask.
15731   const uint32_t *RegMask =
15732     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15733   if (Subtarget->is64Bit()) {
15734     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15735                                       TII->get(X86::MOV64rm), X86::RDI)
15736     .addReg(X86::RIP)
15737     .addImm(0).addReg(0)
15738     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15739                       MI->getOperand(3).getTargetFlags())
15740     .addReg(0);
15741     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15742     addDirectMem(MIB, X86::RDI);
15743     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15744   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15745     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15746                                       TII->get(X86::MOV32rm), X86::EAX)
15747     .addReg(0)
15748     .addImm(0).addReg(0)
15749     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15750                       MI->getOperand(3).getTargetFlags())
15751     .addReg(0);
15752     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15753     addDirectMem(MIB, X86::EAX);
15754     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15755   } else {
15756     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15757                                       TII->get(X86::MOV32rm), X86::EAX)
15758     .addReg(TII->getGlobalBaseReg(F))
15759     .addImm(0).addReg(0)
15760     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15761                       MI->getOperand(3).getTargetFlags())
15762     .addReg(0);
15763     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15764     addDirectMem(MIB, X86::EAX);
15765     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15766   }
15767
15768   MI->eraseFromParent(); // The pseudo instruction is gone now.
15769   return BB;
15770 }
15771
15772 MachineBasicBlock *
15773 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15774                                     MachineBasicBlock *MBB) const {
15775   DebugLoc DL = MI->getDebugLoc();
15776   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15777
15778   MachineFunction *MF = MBB->getParent();
15779   MachineRegisterInfo &MRI = MF->getRegInfo();
15780
15781   const BasicBlock *BB = MBB->getBasicBlock();
15782   MachineFunction::iterator I = MBB;
15783   ++I;
15784
15785   // Memory Reference
15786   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15787   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15788
15789   unsigned DstReg;
15790   unsigned MemOpndSlot = 0;
15791
15792   unsigned CurOp = 0;
15793
15794   DstReg = MI->getOperand(CurOp++).getReg();
15795   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15796   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15797   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15798   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15799
15800   MemOpndSlot = CurOp;
15801
15802   MVT PVT = getPointerTy();
15803   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15804          "Invalid Pointer Size!");
15805
15806   // For v = setjmp(buf), we generate
15807   //
15808   // thisMBB:
15809   //  buf[LabelOffset] = restoreMBB
15810   //  SjLjSetup restoreMBB
15811   //
15812   // mainMBB:
15813   //  v_main = 0
15814   //
15815   // sinkMBB:
15816   //  v = phi(main, restore)
15817   //
15818   // restoreMBB:
15819   //  v_restore = 1
15820
15821   MachineBasicBlock *thisMBB = MBB;
15822   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15823   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15824   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15825   MF->insert(I, mainMBB);
15826   MF->insert(I, sinkMBB);
15827   MF->push_back(restoreMBB);
15828
15829   MachineInstrBuilder MIB;
15830
15831   // Transfer the remainder of BB and its successor edges to sinkMBB.
15832   sinkMBB->splice(sinkMBB->begin(), MBB,
15833                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15834   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15835
15836   // thisMBB:
15837   unsigned PtrStoreOpc = 0;
15838   unsigned LabelReg = 0;
15839   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15840   Reloc::Model RM = getTargetMachine().getRelocationModel();
15841   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15842                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15843
15844   // Prepare IP either in reg or imm.
15845   if (!UseImmLabel) {
15846     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15847     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15848     LabelReg = MRI.createVirtualRegister(PtrRC);
15849     if (Subtarget->is64Bit()) {
15850       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15851               .addReg(X86::RIP)
15852               .addImm(0)
15853               .addReg(0)
15854               .addMBB(restoreMBB)
15855               .addReg(0);
15856     } else {
15857       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15858       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15859               .addReg(XII->getGlobalBaseReg(MF))
15860               .addImm(0)
15861               .addReg(0)
15862               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15863               .addReg(0);
15864     }
15865   } else
15866     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15867   // Store IP
15868   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15869   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15870     if (i == X86::AddrDisp)
15871       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15872     else
15873       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15874   }
15875   if (!UseImmLabel)
15876     MIB.addReg(LabelReg);
15877   else
15878     MIB.addMBB(restoreMBB);
15879   MIB.setMemRefs(MMOBegin, MMOEnd);
15880   // Setup
15881   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15882           .addMBB(restoreMBB);
15883
15884   const X86RegisterInfo *RegInfo =
15885     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15886   MIB.addRegMask(RegInfo->getNoPreservedMask());
15887   thisMBB->addSuccessor(mainMBB);
15888   thisMBB->addSuccessor(restoreMBB);
15889
15890   // mainMBB:
15891   //  EAX = 0
15892   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15893   mainMBB->addSuccessor(sinkMBB);
15894
15895   // sinkMBB:
15896   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15897           TII->get(X86::PHI), DstReg)
15898     .addReg(mainDstReg).addMBB(mainMBB)
15899     .addReg(restoreDstReg).addMBB(restoreMBB);
15900
15901   // restoreMBB:
15902   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15903   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15904   restoreMBB->addSuccessor(sinkMBB);
15905
15906   MI->eraseFromParent();
15907   return sinkMBB;
15908 }
15909
15910 MachineBasicBlock *
15911 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15912                                      MachineBasicBlock *MBB) const {
15913   DebugLoc DL = MI->getDebugLoc();
15914   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15915
15916   MachineFunction *MF = MBB->getParent();
15917   MachineRegisterInfo &MRI = MF->getRegInfo();
15918
15919   // Memory Reference
15920   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15921   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15922
15923   MVT PVT = getPointerTy();
15924   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15925          "Invalid Pointer Size!");
15926
15927   const TargetRegisterClass *RC =
15928     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15929   unsigned Tmp = MRI.createVirtualRegister(RC);
15930   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15931   const X86RegisterInfo *RegInfo =
15932     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15933   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15934   unsigned SP = RegInfo->getStackRegister();
15935
15936   MachineInstrBuilder MIB;
15937
15938   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15939   const int64_t SPOffset = 2 * PVT.getStoreSize();
15940
15941   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15942   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15943
15944   // Reload FP
15945   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15946   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15947     MIB.addOperand(MI->getOperand(i));
15948   MIB.setMemRefs(MMOBegin, MMOEnd);
15949   // Reload IP
15950   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15951   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15952     if (i == X86::AddrDisp)
15953       MIB.addDisp(MI->getOperand(i), LabelOffset);
15954     else
15955       MIB.addOperand(MI->getOperand(i));
15956   }
15957   MIB.setMemRefs(MMOBegin, MMOEnd);
15958   // Reload SP
15959   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15960   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15961     if (i == X86::AddrDisp)
15962       MIB.addDisp(MI->getOperand(i), SPOffset);
15963     else
15964       MIB.addOperand(MI->getOperand(i));
15965   }
15966   MIB.setMemRefs(MMOBegin, MMOEnd);
15967   // Jump
15968   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15969
15970   MI->eraseFromParent();
15971   return MBB;
15972 }
15973
15974 MachineBasicBlock *
15975 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15976                                                MachineBasicBlock *BB) const {
15977   switch (MI->getOpcode()) {
15978   default: llvm_unreachable("Unexpected instr type to insert");
15979   case X86::TAILJMPd64:
15980   case X86::TAILJMPr64:
15981   case X86::TAILJMPm64:
15982     llvm_unreachable("TAILJMP64 would not be touched here.");
15983   case X86::TCRETURNdi64:
15984   case X86::TCRETURNri64:
15985   case X86::TCRETURNmi64:
15986     return BB;
15987   case X86::WIN_ALLOCA:
15988     return EmitLoweredWinAlloca(MI, BB);
15989   case X86::SEG_ALLOCA_32:
15990     return EmitLoweredSegAlloca(MI, BB, false);
15991   case X86::SEG_ALLOCA_64:
15992     return EmitLoweredSegAlloca(MI, BB, true);
15993   case X86::TLSCall_32:
15994   case X86::TLSCall_64:
15995     return EmitLoweredTLSCall(MI, BB);
15996   case X86::CMOV_GR8:
15997   case X86::CMOV_FR32:
15998   case X86::CMOV_FR64:
15999   case X86::CMOV_V4F32:
16000   case X86::CMOV_V2F64:
16001   case X86::CMOV_V2I64:
16002   case X86::CMOV_V8F32:
16003   case X86::CMOV_V4F64:
16004   case X86::CMOV_V4I64:
16005   case X86::CMOV_V16F32:
16006   case X86::CMOV_V8F64:
16007   case X86::CMOV_V8I64:
16008   case X86::CMOV_GR16:
16009   case X86::CMOV_GR32:
16010   case X86::CMOV_RFP32:
16011   case X86::CMOV_RFP64:
16012   case X86::CMOV_RFP80:
16013     return EmitLoweredSelect(MI, BB);
16014
16015   case X86::FP32_TO_INT16_IN_MEM:
16016   case X86::FP32_TO_INT32_IN_MEM:
16017   case X86::FP32_TO_INT64_IN_MEM:
16018   case X86::FP64_TO_INT16_IN_MEM:
16019   case X86::FP64_TO_INT32_IN_MEM:
16020   case X86::FP64_TO_INT64_IN_MEM:
16021   case X86::FP80_TO_INT16_IN_MEM:
16022   case X86::FP80_TO_INT32_IN_MEM:
16023   case X86::FP80_TO_INT64_IN_MEM: {
16024     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16025     DebugLoc DL = MI->getDebugLoc();
16026
16027     // Change the floating point control register to use "round towards zero"
16028     // mode when truncating to an integer value.
16029     MachineFunction *F = BB->getParent();
16030     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
16031     addFrameReference(BuildMI(*BB, MI, DL,
16032                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
16033
16034     // Load the old value of the high byte of the control word...
16035     unsigned OldCW =
16036       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
16037     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
16038                       CWFrameIdx);
16039
16040     // Set the high part to be round to zero...
16041     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
16042       .addImm(0xC7F);
16043
16044     // Reload the modified control word now...
16045     addFrameReference(BuildMI(*BB, MI, DL,
16046                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16047
16048     // Restore the memory image of control word to original value
16049     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
16050       .addReg(OldCW);
16051
16052     // Get the X86 opcode to use.
16053     unsigned Opc;
16054     switch (MI->getOpcode()) {
16055     default: llvm_unreachable("illegal opcode!");
16056     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
16057     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
16058     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
16059     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
16060     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
16061     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
16062     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
16063     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
16064     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
16065     }
16066
16067     X86AddressMode AM;
16068     MachineOperand &Op = MI->getOperand(0);
16069     if (Op.isReg()) {
16070       AM.BaseType = X86AddressMode::RegBase;
16071       AM.Base.Reg = Op.getReg();
16072     } else {
16073       AM.BaseType = X86AddressMode::FrameIndexBase;
16074       AM.Base.FrameIndex = Op.getIndex();
16075     }
16076     Op = MI->getOperand(1);
16077     if (Op.isImm())
16078       AM.Scale = Op.getImm();
16079     Op = MI->getOperand(2);
16080     if (Op.isImm())
16081       AM.IndexReg = Op.getImm();
16082     Op = MI->getOperand(3);
16083     if (Op.isGlobal()) {
16084       AM.GV = Op.getGlobal();
16085     } else {
16086       AM.Disp = Op.getImm();
16087     }
16088     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
16089                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
16090
16091     // Reload the original control word now.
16092     addFrameReference(BuildMI(*BB, MI, DL,
16093                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16094
16095     MI->eraseFromParent();   // The pseudo instruction is gone now.
16096     return BB;
16097   }
16098     // String/text processing lowering.
16099   case X86::PCMPISTRM128REG:
16100   case X86::VPCMPISTRM128REG:
16101   case X86::PCMPISTRM128MEM:
16102   case X86::VPCMPISTRM128MEM:
16103   case X86::PCMPESTRM128REG:
16104   case X86::VPCMPESTRM128REG:
16105   case X86::PCMPESTRM128MEM:
16106   case X86::VPCMPESTRM128MEM:
16107     assert(Subtarget->hasSSE42() &&
16108            "Target must have SSE4.2 or AVX features enabled");
16109     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
16110
16111   // String/text processing lowering.
16112   case X86::PCMPISTRIREG:
16113   case X86::VPCMPISTRIREG:
16114   case X86::PCMPISTRIMEM:
16115   case X86::VPCMPISTRIMEM:
16116   case X86::PCMPESTRIREG:
16117   case X86::VPCMPESTRIREG:
16118   case X86::PCMPESTRIMEM:
16119   case X86::VPCMPESTRIMEM:
16120     assert(Subtarget->hasSSE42() &&
16121            "Target must have SSE4.2 or AVX features enabled");
16122     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
16123
16124   // Thread synchronization.
16125   case X86::MONITOR:
16126     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
16127
16128   // xbegin
16129   case X86::XBEGIN:
16130     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
16131
16132   // Atomic Lowering.
16133   case X86::ATOMAND8:
16134   case X86::ATOMAND16:
16135   case X86::ATOMAND32:
16136   case X86::ATOMAND64:
16137     // Fall through
16138   case X86::ATOMOR8:
16139   case X86::ATOMOR16:
16140   case X86::ATOMOR32:
16141   case X86::ATOMOR64:
16142     // Fall through
16143   case X86::ATOMXOR16:
16144   case X86::ATOMXOR8:
16145   case X86::ATOMXOR32:
16146   case X86::ATOMXOR64:
16147     // Fall through
16148   case X86::ATOMNAND8:
16149   case X86::ATOMNAND16:
16150   case X86::ATOMNAND32:
16151   case X86::ATOMNAND64:
16152     // Fall through
16153   case X86::ATOMMAX8:
16154   case X86::ATOMMAX16:
16155   case X86::ATOMMAX32:
16156   case X86::ATOMMAX64:
16157     // Fall through
16158   case X86::ATOMMIN8:
16159   case X86::ATOMMIN16:
16160   case X86::ATOMMIN32:
16161   case X86::ATOMMIN64:
16162     // Fall through
16163   case X86::ATOMUMAX8:
16164   case X86::ATOMUMAX16:
16165   case X86::ATOMUMAX32:
16166   case X86::ATOMUMAX64:
16167     // Fall through
16168   case X86::ATOMUMIN8:
16169   case X86::ATOMUMIN16:
16170   case X86::ATOMUMIN32:
16171   case X86::ATOMUMIN64:
16172     return EmitAtomicLoadArith(MI, BB);
16173
16174   // This group does 64-bit operations on a 32-bit host.
16175   case X86::ATOMAND6432:
16176   case X86::ATOMOR6432:
16177   case X86::ATOMXOR6432:
16178   case X86::ATOMNAND6432:
16179   case X86::ATOMADD6432:
16180   case X86::ATOMSUB6432:
16181   case X86::ATOMMAX6432:
16182   case X86::ATOMMIN6432:
16183   case X86::ATOMUMAX6432:
16184   case X86::ATOMUMIN6432:
16185   case X86::ATOMSWAP6432:
16186     return EmitAtomicLoadArith6432(MI, BB);
16187
16188   case X86::VASTART_SAVE_XMM_REGS:
16189     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
16190
16191   case X86::VAARG_64:
16192     return EmitVAARG64WithCustomInserter(MI, BB);
16193
16194   case X86::EH_SjLj_SetJmp32:
16195   case X86::EH_SjLj_SetJmp64:
16196     return emitEHSjLjSetJmp(MI, BB);
16197
16198   case X86::EH_SjLj_LongJmp32:
16199   case X86::EH_SjLj_LongJmp64:
16200     return emitEHSjLjLongJmp(MI, BB);
16201
16202   case TargetOpcode::STACKMAP:
16203   case TargetOpcode::PATCHPOINT:
16204     return emitPatchPoint(MI, BB);
16205   }
16206 }
16207
16208 //===----------------------------------------------------------------------===//
16209 //                           X86 Optimization Hooks
16210 //===----------------------------------------------------------------------===//
16211
16212 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
16213                                                        APInt &KnownZero,
16214                                                        APInt &KnownOne,
16215                                                        const SelectionDAG &DAG,
16216                                                        unsigned Depth) const {
16217   unsigned BitWidth = KnownZero.getBitWidth();
16218   unsigned Opc = Op.getOpcode();
16219   assert((Opc >= ISD::BUILTIN_OP_END ||
16220           Opc == ISD::INTRINSIC_WO_CHAIN ||
16221           Opc == ISD::INTRINSIC_W_CHAIN ||
16222           Opc == ISD::INTRINSIC_VOID) &&
16223          "Should use MaskedValueIsZero if you don't know whether Op"
16224          " is a target node!");
16225
16226   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
16227   switch (Opc) {
16228   default: break;
16229   case X86ISD::ADD:
16230   case X86ISD::SUB:
16231   case X86ISD::ADC:
16232   case X86ISD::SBB:
16233   case X86ISD::SMUL:
16234   case X86ISD::UMUL:
16235   case X86ISD::INC:
16236   case X86ISD::DEC:
16237   case X86ISD::OR:
16238   case X86ISD::XOR:
16239   case X86ISD::AND:
16240     // These nodes' second result is a boolean.
16241     if (Op.getResNo() == 0)
16242       break;
16243     // Fallthrough
16244   case X86ISD::SETCC:
16245     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
16246     break;
16247   case ISD::INTRINSIC_WO_CHAIN: {
16248     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16249     unsigned NumLoBits = 0;
16250     switch (IntId) {
16251     default: break;
16252     case Intrinsic::x86_sse_movmsk_ps:
16253     case Intrinsic::x86_avx_movmsk_ps_256:
16254     case Intrinsic::x86_sse2_movmsk_pd:
16255     case Intrinsic::x86_avx_movmsk_pd_256:
16256     case Intrinsic::x86_mmx_pmovmskb:
16257     case Intrinsic::x86_sse2_pmovmskb_128:
16258     case Intrinsic::x86_avx2_pmovmskb: {
16259       // High bits of movmskp{s|d}, pmovmskb are known zero.
16260       switch (IntId) {
16261         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16262         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
16263         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
16264         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
16265         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
16266         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
16267         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
16268         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
16269       }
16270       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
16271       break;
16272     }
16273     }
16274     break;
16275   }
16276   }
16277 }
16278
16279 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16280                                                          unsigned Depth) const {
16281   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16282   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16283     return Op.getValueType().getScalarType().getSizeInBits();
16284
16285   // Fallback case.
16286   return 1;
16287 }
16288
16289 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16290 /// node is a GlobalAddress + offset.
16291 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16292                                        const GlobalValue* &GA,
16293                                        int64_t &Offset) const {
16294   if (N->getOpcode() == X86ISD::Wrapper) {
16295     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16296       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16297       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16298       return true;
16299     }
16300   }
16301   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16302 }
16303
16304 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16305 /// same as extracting the high 128-bit part of 256-bit vector and then
16306 /// inserting the result into the low part of a new 256-bit vector
16307 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16308   EVT VT = SVOp->getValueType(0);
16309   unsigned NumElems = VT.getVectorNumElements();
16310
16311   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16312   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16313     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16314         SVOp->getMaskElt(j) >= 0)
16315       return false;
16316
16317   return true;
16318 }
16319
16320 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16321 /// same as extracting the low 128-bit part of 256-bit vector and then
16322 /// inserting the result into the high part of a new 256-bit vector
16323 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16324   EVT VT = SVOp->getValueType(0);
16325   unsigned NumElems = VT.getVectorNumElements();
16326
16327   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16328   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16329     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16330         SVOp->getMaskElt(j) >= 0)
16331       return false;
16332
16333   return true;
16334 }
16335
16336 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16337 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16338                                         TargetLowering::DAGCombinerInfo &DCI,
16339                                         const X86Subtarget* Subtarget) {
16340   SDLoc dl(N);
16341   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16342   SDValue V1 = SVOp->getOperand(0);
16343   SDValue V2 = SVOp->getOperand(1);
16344   EVT VT = SVOp->getValueType(0);
16345   unsigned NumElems = VT.getVectorNumElements();
16346
16347   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16348       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16349     //
16350     //                   0,0,0,...
16351     //                      |
16352     //    V      UNDEF    BUILD_VECTOR    UNDEF
16353     //     \      /           \           /
16354     //  CONCAT_VECTOR         CONCAT_VECTOR
16355     //         \                  /
16356     //          \                /
16357     //          RESULT: V + zero extended
16358     //
16359     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16360         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16361         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16362       return SDValue();
16363
16364     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16365       return SDValue();
16366
16367     // To match the shuffle mask, the first half of the mask should
16368     // be exactly the first vector, and all the rest a splat with the
16369     // first element of the second one.
16370     for (unsigned i = 0; i != NumElems/2; ++i)
16371       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16372           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16373         return SDValue();
16374
16375     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16376     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16377       if (Ld->hasNUsesOfValue(1, 0)) {
16378         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16379         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16380         SDValue ResNode =
16381           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16382                                   array_lengthof(Ops),
16383                                   Ld->getMemoryVT(),
16384                                   Ld->getPointerInfo(),
16385                                   Ld->getAlignment(),
16386                                   false/*isVolatile*/, true/*ReadMem*/,
16387                                   false/*WriteMem*/);
16388
16389         // Make sure the newly-created LOAD is in the same position as Ld in
16390         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16391         // and update uses of Ld's output chain to use the TokenFactor.
16392         if (Ld->hasAnyUseOfValue(1)) {
16393           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16394                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16395           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16396           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16397                                  SDValue(ResNode.getNode(), 1));
16398         }
16399
16400         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16401       }
16402     }
16403
16404     // Emit a zeroed vector and insert the desired subvector on its
16405     // first half.
16406     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16407     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16408     return DCI.CombineTo(N, InsV);
16409   }
16410
16411   //===--------------------------------------------------------------------===//
16412   // Combine some shuffles into subvector extracts and inserts:
16413   //
16414
16415   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16416   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16417     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16418     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16419     return DCI.CombineTo(N, InsV);
16420   }
16421
16422   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16423   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16424     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16425     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16426     return DCI.CombineTo(N, InsV);
16427   }
16428
16429   return SDValue();
16430 }
16431
16432 /// PerformShuffleCombine - Performs several different shuffle combines.
16433 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16434                                      TargetLowering::DAGCombinerInfo &DCI,
16435                                      const X86Subtarget *Subtarget) {
16436   SDLoc dl(N);
16437   EVT VT = N->getValueType(0);
16438
16439   // Don't create instructions with illegal types after legalize types has run.
16440   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16441   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16442     return SDValue();
16443
16444   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16445   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16446       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16447     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16448
16449   // Only handle 128 wide vector from here on.
16450   if (!VT.is128BitVector())
16451     return SDValue();
16452
16453   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16454   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16455   // consecutive, non-overlapping, and in the right order.
16456   SmallVector<SDValue, 16> Elts;
16457   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16458     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16459
16460   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
16461 }
16462
16463 /// PerformTruncateCombine - Converts truncate operation to
16464 /// a sequence of vector shuffle operations.
16465 /// It is possible when we truncate 256-bit vector to 128-bit vector
16466 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16467                                       TargetLowering::DAGCombinerInfo &DCI,
16468                                       const X86Subtarget *Subtarget)  {
16469   return SDValue();
16470 }
16471
16472 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16473 /// specific shuffle of a load can be folded into a single element load.
16474 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16475 /// shuffles have been customed lowered so we need to handle those here.
16476 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16477                                          TargetLowering::DAGCombinerInfo &DCI) {
16478   if (DCI.isBeforeLegalizeOps())
16479     return SDValue();
16480
16481   SDValue InVec = N->getOperand(0);
16482   SDValue EltNo = N->getOperand(1);
16483
16484   if (!isa<ConstantSDNode>(EltNo))
16485     return SDValue();
16486
16487   EVT VT = InVec.getValueType();
16488
16489   bool HasShuffleIntoBitcast = false;
16490   if (InVec.getOpcode() == ISD::BITCAST) {
16491     // Don't duplicate a load with other uses.
16492     if (!InVec.hasOneUse())
16493       return SDValue();
16494     EVT BCVT = InVec.getOperand(0).getValueType();
16495     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16496       return SDValue();
16497     InVec = InVec.getOperand(0);
16498     HasShuffleIntoBitcast = true;
16499   }
16500
16501   if (!isTargetShuffle(InVec.getOpcode()))
16502     return SDValue();
16503
16504   // Don't duplicate a load with other uses.
16505   if (!InVec.hasOneUse())
16506     return SDValue();
16507
16508   SmallVector<int, 16> ShuffleMask;
16509   bool UnaryShuffle;
16510   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16511                             UnaryShuffle))
16512     return SDValue();
16513
16514   // Select the input vector, guarding against out of range extract vector.
16515   unsigned NumElems = VT.getVectorNumElements();
16516   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16517   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16518   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16519                                          : InVec.getOperand(1);
16520
16521   // If inputs to shuffle are the same for both ops, then allow 2 uses
16522   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16523
16524   if (LdNode.getOpcode() == ISD::BITCAST) {
16525     // Don't duplicate a load with other uses.
16526     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16527       return SDValue();
16528
16529     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16530     LdNode = LdNode.getOperand(0);
16531   }
16532
16533   if (!ISD::isNormalLoad(LdNode.getNode()))
16534     return SDValue();
16535
16536   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16537
16538   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16539     return SDValue();
16540
16541   if (HasShuffleIntoBitcast) {
16542     // If there's a bitcast before the shuffle, check if the load type and
16543     // alignment is valid.
16544     unsigned Align = LN0->getAlignment();
16545     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16546     unsigned NewAlign = TLI.getDataLayout()->
16547       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16548
16549     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16550       return SDValue();
16551   }
16552
16553   // All checks match so transform back to vector_shuffle so that DAG combiner
16554   // can finish the job
16555   SDLoc dl(N);
16556
16557   // Create shuffle node taking into account the case that its a unary shuffle
16558   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16559   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16560                                  InVec.getOperand(0), Shuffle,
16561                                  &ShuffleMask[0]);
16562   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16563   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16564                      EltNo);
16565 }
16566
16567 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16568 /// generation and convert it from being a bunch of shuffles and extracts
16569 /// to a simple store and scalar loads to extract the elements.
16570 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16571                                          TargetLowering::DAGCombinerInfo &DCI) {
16572   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16573   if (NewOp.getNode())
16574     return NewOp;
16575
16576   SDValue InputVector = N->getOperand(0);
16577
16578   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16579   // from mmx to v2i32 has a single usage.
16580   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16581       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16582       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16583     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16584                        N->getValueType(0),
16585                        InputVector.getNode()->getOperand(0));
16586
16587   // Only operate on vectors of 4 elements, where the alternative shuffling
16588   // gets to be more expensive.
16589   if (InputVector.getValueType() != MVT::v4i32)
16590     return SDValue();
16591
16592   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16593   // single use which is a sign-extend or zero-extend, and all elements are
16594   // used.
16595   SmallVector<SDNode *, 4> Uses;
16596   unsigned ExtractedElements = 0;
16597   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16598        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16599     if (UI.getUse().getResNo() != InputVector.getResNo())
16600       return SDValue();
16601
16602     SDNode *Extract = *UI;
16603     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16604       return SDValue();
16605
16606     if (Extract->getValueType(0) != MVT::i32)
16607       return SDValue();
16608     if (!Extract->hasOneUse())
16609       return SDValue();
16610     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16611         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16612       return SDValue();
16613     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16614       return SDValue();
16615
16616     // Record which element was extracted.
16617     ExtractedElements |=
16618       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16619
16620     Uses.push_back(Extract);
16621   }
16622
16623   // If not all the elements were used, this may not be worthwhile.
16624   if (ExtractedElements != 15)
16625     return SDValue();
16626
16627   // Ok, we've now decided to do the transformation.
16628   SDLoc dl(InputVector);
16629
16630   // Store the value to a temporary stack slot.
16631   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16632   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16633                             MachinePointerInfo(), false, false, 0);
16634
16635   // Replace each use (extract) with a load of the appropriate element.
16636   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16637        UE = Uses.end(); UI != UE; ++UI) {
16638     SDNode *Extract = *UI;
16639
16640     // cOMpute the element's address.
16641     SDValue Idx = Extract->getOperand(1);
16642     unsigned EltSize =
16643         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16644     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16645     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16646     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16647
16648     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16649                                      StackPtr, OffsetVal);
16650
16651     // Load the scalar.
16652     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16653                                      ScalarAddr, MachinePointerInfo(),
16654                                      false, false, false, 0);
16655
16656     // Replace the exact with the load.
16657     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16658   }
16659
16660   // The replacement was made in place; don't return anything.
16661   return SDValue();
16662 }
16663
16664 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16665 static std::pair<unsigned, bool>
16666 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16667                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16668   if (!VT.isVector())
16669     return std::make_pair(0, false);
16670
16671   bool NeedSplit = false;
16672   switch (VT.getSimpleVT().SimpleTy) {
16673   default: return std::make_pair(0, false);
16674   case MVT::v32i8:
16675   case MVT::v16i16:
16676   case MVT::v8i32:
16677     if (!Subtarget->hasAVX2())
16678       NeedSplit = true;
16679     if (!Subtarget->hasAVX())
16680       return std::make_pair(0, false);
16681     break;
16682   case MVT::v16i8:
16683   case MVT::v8i16:
16684   case MVT::v4i32:
16685     if (!Subtarget->hasSSE2())
16686       return std::make_pair(0, false);
16687   }
16688
16689   // SSE2 has only a small subset of the operations.
16690   bool hasUnsigned = Subtarget->hasSSE41() ||
16691                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16692   bool hasSigned = Subtarget->hasSSE41() ||
16693                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16694
16695   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16696
16697   unsigned Opc = 0;
16698   // Check for x CC y ? x : y.
16699   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16700       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16701     switch (CC) {
16702     default: break;
16703     case ISD::SETULT:
16704     case ISD::SETULE:
16705       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16706     case ISD::SETUGT:
16707     case ISD::SETUGE:
16708       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16709     case ISD::SETLT:
16710     case ISD::SETLE:
16711       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16712     case ISD::SETGT:
16713     case ISD::SETGE:
16714       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16715     }
16716   // Check for x CC y ? y : x -- a min/max with reversed arms.
16717   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16718              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16719     switch (CC) {
16720     default: break;
16721     case ISD::SETULT:
16722     case ISD::SETULE:
16723       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16724     case ISD::SETUGT:
16725     case ISD::SETUGE:
16726       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16727     case ISD::SETLT:
16728     case ISD::SETLE:
16729       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16730     case ISD::SETGT:
16731     case ISD::SETGE:
16732       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16733     }
16734   }
16735
16736   return std::make_pair(Opc, NeedSplit);
16737 }
16738
16739 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16740 /// nodes.
16741 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16742                                     TargetLowering::DAGCombinerInfo &DCI,
16743                                     const X86Subtarget *Subtarget) {
16744   SDLoc DL(N);
16745   SDValue Cond = N->getOperand(0);
16746   // Get the LHS/RHS of the select.
16747   SDValue LHS = N->getOperand(1);
16748   SDValue RHS = N->getOperand(2);
16749   EVT VT = LHS.getValueType();
16750   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16751
16752   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16753   // instructions match the semantics of the common C idiom x<y?x:y but not
16754   // x<=y?x:y, because of how they handle negative zero (which can be
16755   // ignored in unsafe-math mode).
16756   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16757       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16758       (Subtarget->hasSSE2() ||
16759        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16760     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16761
16762     unsigned Opcode = 0;
16763     // Check for x CC y ? x : y.
16764     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16765         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16766       switch (CC) {
16767       default: break;
16768       case ISD::SETULT:
16769         // Converting this to a min would handle NaNs incorrectly, and swapping
16770         // the operands would cause it to handle comparisons between positive
16771         // and negative zero incorrectly.
16772         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16773           if (!DAG.getTarget().Options.UnsafeFPMath &&
16774               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16775             break;
16776           std::swap(LHS, RHS);
16777         }
16778         Opcode = X86ISD::FMIN;
16779         break;
16780       case ISD::SETOLE:
16781         // Converting this to a min would handle comparisons between positive
16782         // and negative zero incorrectly.
16783         if (!DAG.getTarget().Options.UnsafeFPMath &&
16784             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16785           break;
16786         Opcode = X86ISD::FMIN;
16787         break;
16788       case ISD::SETULE:
16789         // Converting this to a min would handle both negative zeros and NaNs
16790         // incorrectly, but we can swap the operands to fix both.
16791         std::swap(LHS, RHS);
16792       case ISD::SETOLT:
16793       case ISD::SETLT:
16794       case ISD::SETLE:
16795         Opcode = X86ISD::FMIN;
16796         break;
16797
16798       case ISD::SETOGE:
16799         // Converting this to a max would handle comparisons between positive
16800         // and negative zero incorrectly.
16801         if (!DAG.getTarget().Options.UnsafeFPMath &&
16802             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16803           break;
16804         Opcode = X86ISD::FMAX;
16805         break;
16806       case ISD::SETUGT:
16807         // Converting this to a max would handle NaNs incorrectly, and swapping
16808         // the operands would cause it to handle comparisons between positive
16809         // and negative zero incorrectly.
16810         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16811           if (!DAG.getTarget().Options.UnsafeFPMath &&
16812               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16813             break;
16814           std::swap(LHS, RHS);
16815         }
16816         Opcode = X86ISD::FMAX;
16817         break;
16818       case ISD::SETUGE:
16819         // Converting this to a max would handle both negative zeros and NaNs
16820         // incorrectly, but we can swap the operands to fix both.
16821         std::swap(LHS, RHS);
16822       case ISD::SETOGT:
16823       case ISD::SETGT:
16824       case ISD::SETGE:
16825         Opcode = X86ISD::FMAX;
16826         break;
16827       }
16828     // Check for x CC y ? y : x -- a min/max with reversed arms.
16829     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16830                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16831       switch (CC) {
16832       default: break;
16833       case ISD::SETOGE:
16834         // Converting this to a min would handle comparisons between positive
16835         // and negative zero incorrectly, and swapping the operands would
16836         // cause it to handle NaNs incorrectly.
16837         if (!DAG.getTarget().Options.UnsafeFPMath &&
16838             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16839           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16840             break;
16841           std::swap(LHS, RHS);
16842         }
16843         Opcode = X86ISD::FMIN;
16844         break;
16845       case ISD::SETUGT:
16846         // Converting this to a min would handle NaNs incorrectly.
16847         if (!DAG.getTarget().Options.UnsafeFPMath &&
16848             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16849           break;
16850         Opcode = X86ISD::FMIN;
16851         break;
16852       case ISD::SETUGE:
16853         // Converting this to a min would handle both negative zeros and NaNs
16854         // incorrectly, but we can swap the operands to fix both.
16855         std::swap(LHS, RHS);
16856       case ISD::SETOGT:
16857       case ISD::SETGT:
16858       case ISD::SETGE:
16859         Opcode = X86ISD::FMIN;
16860         break;
16861
16862       case ISD::SETULT:
16863         // Converting this to a max would handle NaNs incorrectly.
16864         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16865           break;
16866         Opcode = X86ISD::FMAX;
16867         break;
16868       case ISD::SETOLE:
16869         // Converting this to a max would handle comparisons between positive
16870         // and negative zero incorrectly, and swapping the operands would
16871         // cause it to handle NaNs incorrectly.
16872         if (!DAG.getTarget().Options.UnsafeFPMath &&
16873             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16874           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16875             break;
16876           std::swap(LHS, RHS);
16877         }
16878         Opcode = X86ISD::FMAX;
16879         break;
16880       case ISD::SETULE:
16881         // Converting this to a max would handle both negative zeros and NaNs
16882         // incorrectly, but we can swap the operands to fix both.
16883         std::swap(LHS, RHS);
16884       case ISD::SETOLT:
16885       case ISD::SETLT:
16886       case ISD::SETLE:
16887         Opcode = X86ISD::FMAX;
16888         break;
16889       }
16890     }
16891
16892     if (Opcode)
16893       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16894   }
16895
16896   EVT CondVT = Cond.getValueType();
16897   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
16898       CondVT.getVectorElementType() == MVT::i1) {
16899     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16900     // lowering on AVX-512. In this case we convert it to
16901     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16902     // The same situation for all 128 and 256-bit vectors of i8 and i16
16903     EVT OpVT = LHS.getValueType();
16904     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16905         (OpVT.getVectorElementType() == MVT::i8 ||
16906          OpVT.getVectorElementType() == MVT::i16)) {
16907       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16908       DCI.AddToWorklist(Cond.getNode());
16909       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16910     }
16911   }
16912   // If this is a select between two integer constants, try to do some
16913   // optimizations.
16914   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16915     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16916       // Don't do this for crazy integer types.
16917       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16918         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16919         // so that TrueC (the true value) is larger than FalseC.
16920         bool NeedsCondInvert = false;
16921
16922         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16923             // Efficiently invertible.
16924             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16925              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16926               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16927           NeedsCondInvert = true;
16928           std::swap(TrueC, FalseC);
16929         }
16930
16931         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16932         if (FalseC->getAPIntValue() == 0 &&
16933             TrueC->getAPIntValue().isPowerOf2()) {
16934           if (NeedsCondInvert) // Invert the condition if needed.
16935             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16936                                DAG.getConstant(1, Cond.getValueType()));
16937
16938           // Zero extend the condition if needed.
16939           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16940
16941           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16942           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16943                              DAG.getConstant(ShAmt, MVT::i8));
16944         }
16945
16946         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16947         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16948           if (NeedsCondInvert) // Invert the condition if needed.
16949             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16950                                DAG.getConstant(1, Cond.getValueType()));
16951
16952           // Zero extend the condition if needed.
16953           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16954                              FalseC->getValueType(0), Cond);
16955           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16956                              SDValue(FalseC, 0));
16957         }
16958
16959         // Optimize cases that will turn into an LEA instruction.  This requires
16960         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16961         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16962           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16963           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16964
16965           bool isFastMultiplier = false;
16966           if (Diff < 10) {
16967             switch ((unsigned char)Diff) {
16968               default: break;
16969               case 1:  // result = add base, cond
16970               case 2:  // result = lea base(    , cond*2)
16971               case 3:  // result = lea base(cond, cond*2)
16972               case 4:  // result = lea base(    , cond*4)
16973               case 5:  // result = lea base(cond, cond*4)
16974               case 8:  // result = lea base(    , cond*8)
16975               case 9:  // result = lea base(cond, cond*8)
16976                 isFastMultiplier = true;
16977                 break;
16978             }
16979           }
16980
16981           if (isFastMultiplier) {
16982             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16983             if (NeedsCondInvert) // Invert the condition if needed.
16984               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16985                                  DAG.getConstant(1, Cond.getValueType()));
16986
16987             // Zero extend the condition if needed.
16988             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16989                                Cond);
16990             // Scale the condition by the difference.
16991             if (Diff != 1)
16992               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16993                                  DAG.getConstant(Diff, Cond.getValueType()));
16994
16995             // Add the base if non-zero.
16996             if (FalseC->getAPIntValue() != 0)
16997               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16998                                  SDValue(FalseC, 0));
16999             return Cond;
17000           }
17001         }
17002       }
17003   }
17004
17005   // Canonicalize max and min:
17006   // (x > y) ? x : y -> (x >= y) ? x : y
17007   // (x < y) ? x : y -> (x <= y) ? x : y
17008   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
17009   // the need for an extra compare
17010   // against zero. e.g.
17011   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
17012   // subl   %esi, %edi
17013   // testl  %edi, %edi
17014   // movl   $0, %eax
17015   // cmovgl %edi, %eax
17016   // =>
17017   // xorl   %eax, %eax
17018   // subl   %esi, $edi
17019   // cmovsl %eax, %edi
17020   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
17021       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17022       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17023     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17024     switch (CC) {
17025     default: break;
17026     case ISD::SETLT:
17027     case ISD::SETGT: {
17028       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
17029       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
17030                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
17031       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
17032     }
17033     }
17034   }
17035
17036   // Early exit check
17037   if (!TLI.isTypeLegal(VT))
17038     return SDValue();
17039
17040   // Match VSELECTs into subs with unsigned saturation.
17041   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17042       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
17043       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
17044        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
17045     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17046
17047     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
17048     // left side invert the predicate to simplify logic below.
17049     SDValue Other;
17050     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
17051       Other = RHS;
17052       CC = ISD::getSetCCInverse(CC, true);
17053     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
17054       Other = LHS;
17055     }
17056
17057     if (Other.getNode() && Other->getNumOperands() == 2 &&
17058         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
17059       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
17060       SDValue CondRHS = Cond->getOperand(1);
17061
17062       // Look for a general sub with unsigned saturation first.
17063       // x >= y ? x-y : 0 --> subus x, y
17064       // x >  y ? x-y : 0 --> subus x, y
17065       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
17066           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
17067         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17068
17069       // If the RHS is a constant we have to reverse the const canonicalization.
17070       // x > C-1 ? x+-C : 0 --> subus x, C
17071       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
17072           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
17073         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17074         if (CondRHS.getConstantOperandVal(0) == -A-1)
17075           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
17076                              DAG.getConstant(-A, VT));
17077       }
17078
17079       // Another special case: If C was a sign bit, the sub has been
17080       // canonicalized into a xor.
17081       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
17082       //        it's safe to decanonicalize the xor?
17083       // x s< 0 ? x^C : 0 --> subus x, C
17084       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
17085           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
17086           isSplatVector(OpRHS.getNode())) {
17087         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17088         if (A.isSignBit())
17089           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17090       }
17091     }
17092   }
17093
17094   // Try to match a min/max vector operation.
17095   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
17096     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
17097     unsigned Opc = ret.first;
17098     bool NeedSplit = ret.second;
17099
17100     if (Opc && NeedSplit) {
17101       unsigned NumElems = VT.getVectorNumElements();
17102       // Extract the LHS vectors
17103       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
17104       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
17105
17106       // Extract the RHS vectors
17107       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
17108       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
17109
17110       // Create min/max for each subvector
17111       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
17112       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
17113
17114       // Merge the result
17115       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
17116     } else if (Opc)
17117       return DAG.getNode(Opc, DL, VT, LHS, RHS);
17118   }
17119
17120   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
17121   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17122       // Check if SETCC has already been promoted
17123       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
17124       // Check that condition value type matches vselect operand type
17125       CondVT == VT) { 
17126
17127     assert(Cond.getValueType().isVector() &&
17128            "vector select expects a vector selector!");
17129
17130     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
17131     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
17132
17133     if (!TValIsAllOnes && !FValIsAllZeros) {
17134       // Try invert the condition if true value is not all 1s and false value
17135       // is not all 0s.
17136       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
17137       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
17138
17139       if (TValIsAllZeros || FValIsAllOnes) {
17140         SDValue CC = Cond.getOperand(2);
17141         ISD::CondCode NewCC =
17142           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
17143                                Cond.getOperand(0).getValueType().isInteger());
17144         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
17145         std::swap(LHS, RHS);
17146         TValIsAllOnes = FValIsAllOnes;
17147         FValIsAllZeros = TValIsAllZeros;
17148       }
17149     }
17150
17151     if (TValIsAllOnes || FValIsAllZeros) {
17152       SDValue Ret;
17153
17154       if (TValIsAllOnes && FValIsAllZeros)
17155         Ret = Cond;
17156       else if (TValIsAllOnes)
17157         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
17158                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
17159       else if (FValIsAllZeros)
17160         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
17161                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
17162
17163       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
17164     }
17165   }
17166
17167   // If we know that this node is legal then we know that it is going to be
17168   // matched by one of the SSE/AVX BLEND instructions. These instructions only
17169   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
17170   // to simplify previous instructions.
17171   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
17172       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
17173     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
17174
17175     // Don't optimize vector selects that map to mask-registers.
17176     if (BitWidth == 1)
17177       return SDValue();
17178
17179     // Check all uses of that condition operand to check whether it will be
17180     // consumed by non-BLEND instructions, which may depend on all bits are set
17181     // properly.
17182     for (SDNode::use_iterator I = Cond->use_begin(),
17183                               E = Cond->use_end(); I != E; ++I)
17184       if (I->getOpcode() != ISD::VSELECT)
17185         // TODO: Add other opcodes eventually lowered into BLEND.
17186         return SDValue();
17187
17188     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
17189     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
17190
17191     APInt KnownZero, KnownOne;
17192     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
17193                                           DCI.isBeforeLegalizeOps());
17194     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
17195         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
17196       DCI.CommitTargetLoweringOpt(TLO);
17197   }
17198
17199   return SDValue();
17200 }
17201
17202 // Check whether a boolean test is testing a boolean value generated by
17203 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
17204 // code.
17205 //
17206 // Simplify the following patterns:
17207 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
17208 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
17209 // to (Op EFLAGS Cond)
17210 //
17211 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
17212 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
17213 // to (Op EFLAGS !Cond)
17214 //
17215 // where Op could be BRCOND or CMOV.
17216 //
17217 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
17218   // Quit if not CMP and SUB with its value result used.
17219   if (Cmp.getOpcode() != X86ISD::CMP &&
17220       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
17221       return SDValue();
17222
17223   // Quit if not used as a boolean value.
17224   if (CC != X86::COND_E && CC != X86::COND_NE)
17225     return SDValue();
17226
17227   // Check CMP operands. One of them should be 0 or 1 and the other should be
17228   // an SetCC or extended from it.
17229   SDValue Op1 = Cmp.getOperand(0);
17230   SDValue Op2 = Cmp.getOperand(1);
17231
17232   SDValue SetCC;
17233   const ConstantSDNode* C = 0;
17234   bool needOppositeCond = (CC == X86::COND_E);
17235   bool checkAgainstTrue = false; // Is it a comparison against 1?
17236
17237   if ((C = dyn_cast<ConstantSDNode>(Op1)))
17238     SetCC = Op2;
17239   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17240     SetCC = Op1;
17241   else // Quit if all operands are not constants.
17242     return SDValue();
17243
17244   if (C->getZExtValue() == 1) {
17245     needOppositeCond = !needOppositeCond;
17246     checkAgainstTrue = true;
17247   } else if (C->getZExtValue() != 0)
17248     // Quit if the constant is neither 0 or 1.
17249     return SDValue();
17250
17251   bool truncatedToBoolWithAnd = false;
17252   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17253   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17254          SetCC.getOpcode() == ISD::TRUNCATE ||
17255          SetCC.getOpcode() == ISD::AND) {
17256     if (SetCC.getOpcode() == ISD::AND) {
17257       int OpIdx = -1;
17258       ConstantSDNode *CS;
17259       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17260           CS->getZExtValue() == 1)
17261         OpIdx = 1;
17262       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17263           CS->getZExtValue() == 1)
17264         OpIdx = 0;
17265       if (OpIdx == -1)
17266         break;
17267       SetCC = SetCC.getOperand(OpIdx);
17268       truncatedToBoolWithAnd = true;
17269     } else
17270       SetCC = SetCC.getOperand(0);
17271   }
17272
17273   switch (SetCC.getOpcode()) {
17274   case X86ISD::SETCC_CARRY:
17275     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17276     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17277     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17278     // truncated to i1 using 'and'.
17279     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17280       break;
17281     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17282            "Invalid use of SETCC_CARRY!");
17283     // FALL THROUGH
17284   case X86ISD::SETCC:
17285     // Set the condition code or opposite one if necessary.
17286     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17287     if (needOppositeCond)
17288       CC = X86::GetOppositeBranchCondition(CC);
17289     return SetCC.getOperand(1);
17290   case X86ISD::CMOV: {
17291     // Check whether false/true value has canonical one, i.e. 0 or 1.
17292     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17293     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17294     // Quit if true value is not a constant.
17295     if (!TVal)
17296       return SDValue();
17297     // Quit if false value is not a constant.
17298     if (!FVal) {
17299       SDValue Op = SetCC.getOperand(0);
17300       // Skip 'zext' or 'trunc' node.
17301       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17302           Op.getOpcode() == ISD::TRUNCATE)
17303         Op = Op.getOperand(0);
17304       // A special case for rdrand/rdseed, where 0 is set if false cond is
17305       // found.
17306       if ((Op.getOpcode() != X86ISD::RDRAND &&
17307            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17308         return SDValue();
17309     }
17310     // Quit if false value is not the constant 0 or 1.
17311     bool FValIsFalse = true;
17312     if (FVal && FVal->getZExtValue() != 0) {
17313       if (FVal->getZExtValue() != 1)
17314         return SDValue();
17315       // If FVal is 1, opposite cond is needed.
17316       needOppositeCond = !needOppositeCond;
17317       FValIsFalse = false;
17318     }
17319     // Quit if TVal is not the constant opposite of FVal.
17320     if (FValIsFalse && TVal->getZExtValue() != 1)
17321       return SDValue();
17322     if (!FValIsFalse && TVal->getZExtValue() != 0)
17323       return SDValue();
17324     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17325     if (needOppositeCond)
17326       CC = X86::GetOppositeBranchCondition(CC);
17327     return SetCC.getOperand(3);
17328   }
17329   }
17330
17331   return SDValue();
17332 }
17333
17334 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17335 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17336                                   TargetLowering::DAGCombinerInfo &DCI,
17337                                   const X86Subtarget *Subtarget) {
17338   SDLoc DL(N);
17339
17340   // If the flag operand isn't dead, don't touch this CMOV.
17341   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17342     return SDValue();
17343
17344   SDValue FalseOp = N->getOperand(0);
17345   SDValue TrueOp = N->getOperand(1);
17346   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17347   SDValue Cond = N->getOperand(3);
17348
17349   if (CC == X86::COND_E || CC == X86::COND_NE) {
17350     switch (Cond.getOpcode()) {
17351     default: break;
17352     case X86ISD::BSR:
17353     case X86ISD::BSF:
17354       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17355       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17356         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17357     }
17358   }
17359
17360   SDValue Flags;
17361
17362   Flags = checkBoolTestSetCCCombine(Cond, CC);
17363   if (Flags.getNode() &&
17364       // Extra check as FCMOV only supports a subset of X86 cond.
17365       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17366     SDValue Ops[] = { FalseOp, TrueOp,
17367                       DAG.getConstant(CC, MVT::i8), Flags };
17368     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17369                        Ops, array_lengthof(Ops));
17370   }
17371
17372   // If this is a select between two integer constants, try to do some
17373   // optimizations.  Note that the operands are ordered the opposite of SELECT
17374   // operands.
17375   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17376     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17377       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17378       // larger than FalseC (the false value).
17379       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17380         CC = X86::GetOppositeBranchCondition(CC);
17381         std::swap(TrueC, FalseC);
17382         std::swap(TrueOp, FalseOp);
17383       }
17384
17385       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17386       // This is efficient for any integer data type (including i8/i16) and
17387       // shift amount.
17388       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17389         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17390                            DAG.getConstant(CC, MVT::i8), Cond);
17391
17392         // Zero extend the condition if needed.
17393         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17394
17395         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17396         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17397                            DAG.getConstant(ShAmt, MVT::i8));
17398         if (N->getNumValues() == 2)  // Dead flag value?
17399           return DCI.CombineTo(N, Cond, SDValue());
17400         return Cond;
17401       }
17402
17403       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17404       // for any integer data type, including i8/i16.
17405       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17406         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17407                            DAG.getConstant(CC, MVT::i8), Cond);
17408
17409         // Zero extend the condition if needed.
17410         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17411                            FalseC->getValueType(0), Cond);
17412         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17413                            SDValue(FalseC, 0));
17414
17415         if (N->getNumValues() == 2)  // Dead flag value?
17416           return DCI.CombineTo(N, Cond, SDValue());
17417         return Cond;
17418       }
17419
17420       // Optimize cases that will turn into an LEA instruction.  This requires
17421       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17422       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17423         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17424         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17425
17426         bool isFastMultiplier = false;
17427         if (Diff < 10) {
17428           switch ((unsigned char)Diff) {
17429           default: break;
17430           case 1:  // result = add base, cond
17431           case 2:  // result = lea base(    , cond*2)
17432           case 3:  // result = lea base(cond, cond*2)
17433           case 4:  // result = lea base(    , cond*4)
17434           case 5:  // result = lea base(cond, cond*4)
17435           case 8:  // result = lea base(    , cond*8)
17436           case 9:  // result = lea base(cond, cond*8)
17437             isFastMultiplier = true;
17438             break;
17439           }
17440         }
17441
17442         if (isFastMultiplier) {
17443           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17444           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17445                              DAG.getConstant(CC, MVT::i8), Cond);
17446           // Zero extend the condition if needed.
17447           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17448                              Cond);
17449           // Scale the condition by the difference.
17450           if (Diff != 1)
17451             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17452                                DAG.getConstant(Diff, Cond.getValueType()));
17453
17454           // Add the base if non-zero.
17455           if (FalseC->getAPIntValue() != 0)
17456             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17457                                SDValue(FalseC, 0));
17458           if (N->getNumValues() == 2)  // Dead flag value?
17459             return DCI.CombineTo(N, Cond, SDValue());
17460           return Cond;
17461         }
17462       }
17463     }
17464   }
17465
17466   // Handle these cases:
17467   //   (select (x != c), e, c) -> select (x != c), e, x),
17468   //   (select (x == c), c, e) -> select (x == c), x, e)
17469   // where the c is an integer constant, and the "select" is the combination
17470   // of CMOV and CMP.
17471   //
17472   // The rationale for this change is that the conditional-move from a constant
17473   // needs two instructions, however, conditional-move from a register needs
17474   // only one instruction.
17475   //
17476   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17477   //  some instruction-combining opportunities. This opt needs to be
17478   //  postponed as late as possible.
17479   //
17480   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17481     // the DCI.xxxx conditions are provided to postpone the optimization as
17482     // late as possible.
17483
17484     ConstantSDNode *CmpAgainst = 0;
17485     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17486         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17487         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17488
17489       if (CC == X86::COND_NE &&
17490           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17491         CC = X86::GetOppositeBranchCondition(CC);
17492         std::swap(TrueOp, FalseOp);
17493       }
17494
17495       if (CC == X86::COND_E &&
17496           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17497         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17498                           DAG.getConstant(CC, MVT::i8), Cond };
17499         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17500                            array_lengthof(Ops));
17501       }
17502     }
17503   }
17504
17505   return SDValue();
17506 }
17507
17508 /// PerformMulCombine - Optimize a single multiply with constant into two
17509 /// in order to implement it with two cheaper instructions, e.g.
17510 /// LEA + SHL, LEA + LEA.
17511 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17512                                  TargetLowering::DAGCombinerInfo &DCI) {
17513   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17514     return SDValue();
17515
17516   EVT VT = N->getValueType(0);
17517   if (VT != MVT::i64)
17518     return SDValue();
17519
17520   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17521   if (!C)
17522     return SDValue();
17523   uint64_t MulAmt = C->getZExtValue();
17524   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17525     return SDValue();
17526
17527   uint64_t MulAmt1 = 0;
17528   uint64_t MulAmt2 = 0;
17529   if ((MulAmt % 9) == 0) {
17530     MulAmt1 = 9;
17531     MulAmt2 = MulAmt / 9;
17532   } else if ((MulAmt % 5) == 0) {
17533     MulAmt1 = 5;
17534     MulAmt2 = MulAmt / 5;
17535   } else if ((MulAmt % 3) == 0) {
17536     MulAmt1 = 3;
17537     MulAmt2 = MulAmt / 3;
17538   }
17539   if (MulAmt2 &&
17540       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17541     SDLoc DL(N);
17542
17543     if (isPowerOf2_64(MulAmt2) &&
17544         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17545       // If second multiplifer is pow2, issue it first. We want the multiply by
17546       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17547       // is an add.
17548       std::swap(MulAmt1, MulAmt2);
17549
17550     SDValue NewMul;
17551     if (isPowerOf2_64(MulAmt1))
17552       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17553                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17554     else
17555       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17556                            DAG.getConstant(MulAmt1, VT));
17557
17558     if (isPowerOf2_64(MulAmt2))
17559       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17560                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17561     else
17562       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17563                            DAG.getConstant(MulAmt2, VT));
17564
17565     // Do not add new nodes to DAG combiner worklist.
17566     DCI.CombineTo(N, NewMul, false);
17567   }
17568   return SDValue();
17569 }
17570
17571 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17572   SDValue N0 = N->getOperand(0);
17573   SDValue N1 = N->getOperand(1);
17574   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17575   EVT VT = N0.getValueType();
17576
17577   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17578   // since the result of setcc_c is all zero's or all ones.
17579   if (VT.isInteger() && !VT.isVector() &&
17580       N1C && N0.getOpcode() == ISD::AND &&
17581       N0.getOperand(1).getOpcode() == ISD::Constant) {
17582     SDValue N00 = N0.getOperand(0);
17583     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17584         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17585           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17586          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17587       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17588       APInt ShAmt = N1C->getAPIntValue();
17589       Mask = Mask.shl(ShAmt);
17590       if (Mask != 0)
17591         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17592                            N00, DAG.getConstant(Mask, VT));
17593     }
17594   }
17595
17596   // Hardware support for vector shifts is sparse which makes us scalarize the
17597   // vector operations in many cases. Also, on sandybridge ADD is faster than
17598   // shl.
17599   // (shl V, 1) -> add V,V
17600   if (isSplatVector(N1.getNode())) {
17601     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17602     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17603     // We shift all of the values by one. In many cases we do not have
17604     // hardware support for this operation. This is better expressed as an ADD
17605     // of two values.
17606     if (N1C && (1 == N1C->getZExtValue())) {
17607       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17608     }
17609   }
17610
17611   return SDValue();
17612 }
17613
17614 /// \brief Returns a vector of 0s if the node in input is a vector logical
17615 /// shift by a constant amount which is known to be bigger than or equal
17616 /// to the vector element size in bits.
17617 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17618                                       const X86Subtarget *Subtarget) {
17619   EVT VT = N->getValueType(0);
17620
17621   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17622       (!Subtarget->hasInt256() ||
17623        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17624     return SDValue();
17625
17626   SDValue Amt = N->getOperand(1);
17627   SDLoc DL(N);
17628   if (isSplatVector(Amt.getNode())) {
17629     SDValue SclrAmt = Amt->getOperand(0);
17630     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17631       APInt ShiftAmt = C->getAPIntValue();
17632       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17633
17634       // SSE2/AVX2 logical shifts always return a vector of 0s
17635       // if the shift amount is bigger than or equal to
17636       // the element size. The constant shift amount will be
17637       // encoded as a 8-bit immediate.
17638       if (ShiftAmt.trunc(8).uge(MaxAmount))
17639         return getZeroVector(VT, Subtarget, DAG, DL);
17640     }
17641   }
17642
17643   return SDValue();
17644 }
17645
17646 /// PerformShiftCombine - Combine shifts.
17647 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17648                                    TargetLowering::DAGCombinerInfo &DCI,
17649                                    const X86Subtarget *Subtarget) {
17650   if (N->getOpcode() == ISD::SHL) {
17651     SDValue V = PerformSHLCombine(N, DAG);
17652     if (V.getNode()) return V;
17653   }
17654
17655   if (N->getOpcode() != ISD::SRA) {
17656     // Try to fold this logical shift into a zero vector.
17657     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17658     if (V.getNode()) return V;
17659   }
17660
17661   return SDValue();
17662 }
17663
17664 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17665 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17666 // and friends.  Likewise for OR -> CMPNEQSS.
17667 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17668                             TargetLowering::DAGCombinerInfo &DCI,
17669                             const X86Subtarget *Subtarget) {
17670   unsigned opcode;
17671
17672   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17673   // we're requiring SSE2 for both.
17674   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17675     SDValue N0 = N->getOperand(0);
17676     SDValue N1 = N->getOperand(1);
17677     SDValue CMP0 = N0->getOperand(1);
17678     SDValue CMP1 = N1->getOperand(1);
17679     SDLoc DL(N);
17680
17681     // The SETCCs should both refer to the same CMP.
17682     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17683       return SDValue();
17684
17685     SDValue CMP00 = CMP0->getOperand(0);
17686     SDValue CMP01 = CMP0->getOperand(1);
17687     EVT     VT    = CMP00.getValueType();
17688
17689     if (VT == MVT::f32 || VT == MVT::f64) {
17690       bool ExpectingFlags = false;
17691       // Check for any users that want flags:
17692       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17693            !ExpectingFlags && UI != UE; ++UI)
17694         switch (UI->getOpcode()) {
17695         default:
17696         case ISD::BR_CC:
17697         case ISD::BRCOND:
17698         case ISD::SELECT:
17699           ExpectingFlags = true;
17700           break;
17701         case ISD::CopyToReg:
17702         case ISD::SIGN_EXTEND:
17703         case ISD::ZERO_EXTEND:
17704         case ISD::ANY_EXTEND:
17705           break;
17706         }
17707
17708       if (!ExpectingFlags) {
17709         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17710         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17711
17712         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17713           X86::CondCode tmp = cc0;
17714           cc0 = cc1;
17715           cc1 = tmp;
17716         }
17717
17718         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17719             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17720           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17721           // FIXME: need symbolic constants for these magic numbers.
17722           // See X86ATTInstPrinter.cpp:printSSECC().
17723           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17724           if (Subtarget->hasAVX512()) {
17725             // SETCC type in AVX-512 is MVT::i1
17726             assert(N->getValueType(0) == MVT::i1 && "Unexpected AND node type");
17727             return DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00, CMP01,
17728                                DAG.getConstant(x86cc, MVT::i8));
17729           }
17730           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL, CMP00.getValueType(), CMP00, CMP01,
17731                                               DAG.getConstant(x86cc, MVT::i8));
17732           MVT IntVT = (is64BitFP ? MVT::i64 : MVT::i32); 
17733           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT,
17734                                               OnesOrZeroesF);
17735           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
17736                                       DAG.getConstant(1, IntVT));
17737           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17738           return OneBitOfTruth;
17739         }
17740       }
17741     }
17742   }
17743   return SDValue();
17744 }
17745
17746 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17747 /// so it can be folded inside ANDNP.
17748 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17749   EVT VT = N->getValueType(0);
17750
17751   // Match direct AllOnes for 128 and 256-bit vectors
17752   if (ISD::isBuildVectorAllOnes(N))
17753     return true;
17754
17755   // Look through a bit convert.
17756   if (N->getOpcode() == ISD::BITCAST)
17757     N = N->getOperand(0).getNode();
17758
17759   // Sometimes the operand may come from a insert_subvector building a 256-bit
17760   // allones vector
17761   if (VT.is256BitVector() &&
17762       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17763     SDValue V1 = N->getOperand(0);
17764     SDValue V2 = N->getOperand(1);
17765
17766     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17767         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17768         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17769         ISD::isBuildVectorAllOnes(V2.getNode()))
17770       return true;
17771   }
17772
17773   return false;
17774 }
17775
17776 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17777 // register. In most cases we actually compare or select YMM-sized registers
17778 // and mixing the two types creates horrible code. This method optimizes
17779 // some of the transition sequences.
17780 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17781                                  TargetLowering::DAGCombinerInfo &DCI,
17782                                  const X86Subtarget *Subtarget) {
17783   EVT VT = N->getValueType(0);
17784   if (!VT.is256BitVector())
17785     return SDValue();
17786
17787   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17788           N->getOpcode() == ISD::ZERO_EXTEND ||
17789           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17790
17791   SDValue Narrow = N->getOperand(0);
17792   EVT NarrowVT = Narrow->getValueType(0);
17793   if (!NarrowVT.is128BitVector())
17794     return SDValue();
17795
17796   if (Narrow->getOpcode() != ISD::XOR &&
17797       Narrow->getOpcode() != ISD::AND &&
17798       Narrow->getOpcode() != ISD::OR)
17799     return SDValue();
17800
17801   SDValue N0  = Narrow->getOperand(0);
17802   SDValue N1  = Narrow->getOperand(1);
17803   SDLoc DL(Narrow);
17804
17805   // The Left side has to be a trunc.
17806   if (N0.getOpcode() != ISD::TRUNCATE)
17807     return SDValue();
17808
17809   // The type of the truncated inputs.
17810   EVT WideVT = N0->getOperand(0)->getValueType(0);
17811   if (WideVT != VT)
17812     return SDValue();
17813
17814   // The right side has to be a 'trunc' or a constant vector.
17815   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17816   bool RHSConst = (isSplatVector(N1.getNode()) &&
17817                    isa<ConstantSDNode>(N1->getOperand(0)));
17818   if (!RHSTrunc && !RHSConst)
17819     return SDValue();
17820
17821   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17822
17823   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17824     return SDValue();
17825
17826   // Set N0 and N1 to hold the inputs to the new wide operation.
17827   N0 = N0->getOperand(0);
17828   if (RHSConst) {
17829     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17830                      N1->getOperand(0));
17831     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17832     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17833   } else if (RHSTrunc) {
17834     N1 = N1->getOperand(0);
17835   }
17836
17837   // Generate the wide operation.
17838   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17839   unsigned Opcode = N->getOpcode();
17840   switch (Opcode) {
17841   case ISD::ANY_EXTEND:
17842     return Op;
17843   case ISD::ZERO_EXTEND: {
17844     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17845     APInt Mask = APInt::getAllOnesValue(InBits);
17846     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17847     return DAG.getNode(ISD::AND, DL, VT,
17848                        Op, DAG.getConstant(Mask, VT));
17849   }
17850   case ISD::SIGN_EXTEND:
17851     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17852                        Op, DAG.getValueType(NarrowVT));
17853   default:
17854     llvm_unreachable("Unexpected opcode");
17855   }
17856 }
17857
17858 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17859                                  TargetLowering::DAGCombinerInfo &DCI,
17860                                  const X86Subtarget *Subtarget) {
17861   EVT VT = N->getValueType(0);
17862   if (DCI.isBeforeLegalizeOps())
17863     return SDValue();
17864
17865   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17866   if (R.getNode())
17867     return R;
17868
17869   // Create BLSI, BLSR, and BZHI instructions
17870   // BLSI is X & (-X)
17871   // BLSR is X & (X-1)
17872   // BZHI is X & ((1 << Y) - 1)
17873   // BEXTR is ((X >> imm) & (2**size-1))
17874   if (VT == MVT::i32 || VT == MVT::i64) {
17875     SDValue N0 = N->getOperand(0);
17876     SDValue N1 = N->getOperand(1);
17877     SDLoc DL(N);
17878
17879     if (Subtarget->hasBMI()) {
17880       // Check LHS for neg
17881       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17882           isZero(N0.getOperand(0)))
17883         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17884
17885       // Check RHS for neg
17886       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17887           isZero(N1.getOperand(0)))
17888         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17889
17890       // Check LHS for X-1
17891       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17892           isAllOnes(N0.getOperand(1)))
17893         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17894
17895       // Check RHS for X-1
17896       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17897           isAllOnes(N1.getOperand(1)))
17898         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17899     }
17900
17901     if (Subtarget->hasBMI2()) {
17902       // Check for (and (add (shl 1, Y), -1), X)
17903       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17904         SDValue N00 = N0.getOperand(0);
17905         if (N00.getOpcode() == ISD::SHL) {
17906           SDValue N001 = N00.getOperand(1);
17907           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17908           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17909           if (C && C->getZExtValue() == 1)
17910             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17911         }
17912       }
17913
17914       // Check for (and X, (add (shl 1, Y), -1))
17915       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17916         SDValue N10 = N1.getOperand(0);
17917         if (N10.getOpcode() == ISD::SHL) {
17918           SDValue N101 = N10.getOperand(1);
17919           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17920           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17921           if (C && C->getZExtValue() == 1)
17922             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17923         }
17924       }
17925     }
17926
17927     // Check for BEXTR.
17928     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17929         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17930       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17931       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17932       if (MaskNode && ShiftNode) {
17933         uint64_t Mask = MaskNode->getZExtValue();
17934         uint64_t Shift = ShiftNode->getZExtValue();
17935         if (isMask_64(Mask)) {
17936           uint64_t MaskSize = CountPopulation_64(Mask);
17937           if (Shift + MaskSize <= VT.getSizeInBits())
17938             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17939                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17940         }
17941       }
17942     } // BEXTR
17943
17944     return SDValue();
17945   }
17946
17947   // Want to form ANDNP nodes:
17948   // 1) In the hopes of then easily combining them with OR and AND nodes
17949   //    to form PBLEND/PSIGN.
17950   // 2) To match ANDN packed intrinsics
17951   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17952     return SDValue();
17953
17954   SDValue N0 = N->getOperand(0);
17955   SDValue N1 = N->getOperand(1);
17956   SDLoc DL(N);
17957
17958   // Check LHS for vnot
17959   if (N0.getOpcode() == ISD::XOR &&
17960       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17961       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17962     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17963
17964   // Check RHS for vnot
17965   if (N1.getOpcode() == ISD::XOR &&
17966       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17967       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17968     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17969
17970   return SDValue();
17971 }
17972
17973 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17974                                 TargetLowering::DAGCombinerInfo &DCI,
17975                                 const X86Subtarget *Subtarget) {
17976   EVT VT = N->getValueType(0);
17977   if (DCI.isBeforeLegalizeOps())
17978     return SDValue();
17979
17980   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17981   if (R.getNode())
17982     return R;
17983
17984   SDValue N0 = N->getOperand(0);
17985   SDValue N1 = N->getOperand(1);
17986
17987   // look for psign/blend
17988   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17989     if (!Subtarget->hasSSSE3() ||
17990         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17991       return SDValue();
17992
17993     // Canonicalize pandn to RHS
17994     if (N0.getOpcode() == X86ISD::ANDNP)
17995       std::swap(N0, N1);
17996     // or (and (m, y), (pandn m, x))
17997     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17998       SDValue Mask = N1.getOperand(0);
17999       SDValue X    = N1.getOperand(1);
18000       SDValue Y;
18001       if (N0.getOperand(0) == Mask)
18002         Y = N0.getOperand(1);
18003       if (N0.getOperand(1) == Mask)
18004         Y = N0.getOperand(0);
18005
18006       // Check to see if the mask appeared in both the AND and ANDNP and
18007       if (!Y.getNode())
18008         return SDValue();
18009
18010       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
18011       // Look through mask bitcast.
18012       if (Mask.getOpcode() == ISD::BITCAST)
18013         Mask = Mask.getOperand(0);
18014       if (X.getOpcode() == ISD::BITCAST)
18015         X = X.getOperand(0);
18016       if (Y.getOpcode() == ISD::BITCAST)
18017         Y = Y.getOperand(0);
18018
18019       EVT MaskVT = Mask.getValueType();
18020
18021       // Validate that the Mask operand is a vector sra node.
18022       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
18023       // there is no psrai.b
18024       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
18025       unsigned SraAmt = ~0;
18026       if (Mask.getOpcode() == ISD::SRA) {
18027         SDValue Amt = Mask.getOperand(1);
18028         if (isSplatVector(Amt.getNode())) {
18029           SDValue SclrAmt = Amt->getOperand(0);
18030           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
18031             SraAmt = C->getZExtValue();
18032         }
18033       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
18034         SDValue SraC = Mask.getOperand(1);
18035         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
18036       }
18037       if ((SraAmt + 1) != EltBits)
18038         return SDValue();
18039
18040       SDLoc DL(N);
18041
18042       // Now we know we at least have a plendvb with the mask val.  See if
18043       // we can form a psignb/w/d.
18044       // psign = x.type == y.type == mask.type && y = sub(0, x);
18045       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
18046           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
18047           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
18048         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
18049                "Unsupported VT for PSIGN");
18050         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
18051         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18052       }
18053       // PBLENDVB only available on SSE 4.1
18054       if (!Subtarget->hasSSE41())
18055         return SDValue();
18056
18057       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
18058
18059       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
18060       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
18061       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
18062       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
18063       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18064     }
18065   }
18066
18067   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
18068     return SDValue();
18069
18070   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
18071   MachineFunction &MF = DAG.getMachineFunction();
18072   bool OptForSize = MF.getFunction()->getAttributes().
18073     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
18074
18075   // SHLD/SHRD instructions have lower register pressure, but on some
18076   // platforms they have higher latency than the equivalent
18077   // series of shifts/or that would otherwise be generated.
18078   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
18079   // have higher latencies and we are not optimizing for size.
18080   if (!OptForSize && Subtarget->isSHLDSlow())
18081     return SDValue();
18082
18083   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
18084     std::swap(N0, N1);
18085   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
18086     return SDValue();
18087   if (!N0.hasOneUse() || !N1.hasOneUse())
18088     return SDValue();
18089
18090   SDValue ShAmt0 = N0.getOperand(1);
18091   if (ShAmt0.getValueType() != MVT::i8)
18092     return SDValue();
18093   SDValue ShAmt1 = N1.getOperand(1);
18094   if (ShAmt1.getValueType() != MVT::i8)
18095     return SDValue();
18096   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
18097     ShAmt0 = ShAmt0.getOperand(0);
18098   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
18099     ShAmt1 = ShAmt1.getOperand(0);
18100
18101   SDLoc DL(N);
18102   unsigned Opc = X86ISD::SHLD;
18103   SDValue Op0 = N0.getOperand(0);
18104   SDValue Op1 = N1.getOperand(0);
18105   if (ShAmt0.getOpcode() == ISD::SUB) {
18106     Opc = X86ISD::SHRD;
18107     std::swap(Op0, Op1);
18108     std::swap(ShAmt0, ShAmt1);
18109   }
18110
18111   unsigned Bits = VT.getSizeInBits();
18112   if (ShAmt1.getOpcode() == ISD::SUB) {
18113     SDValue Sum = ShAmt1.getOperand(0);
18114     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
18115       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
18116       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
18117         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
18118       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
18119         return DAG.getNode(Opc, DL, VT,
18120                            Op0, Op1,
18121                            DAG.getNode(ISD::TRUNCATE, DL,
18122                                        MVT::i8, ShAmt0));
18123     }
18124   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
18125     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
18126     if (ShAmt0C &&
18127         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
18128       return DAG.getNode(Opc, DL, VT,
18129                          N0.getOperand(0), N1.getOperand(0),
18130                          DAG.getNode(ISD::TRUNCATE, DL,
18131                                        MVT::i8, ShAmt0));
18132   }
18133
18134   return SDValue();
18135 }
18136
18137 // Generate NEG and CMOV for integer abs.
18138 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
18139   EVT VT = N->getValueType(0);
18140
18141   // Since X86 does not have CMOV for 8-bit integer, we don't convert
18142   // 8-bit integer abs to NEG and CMOV.
18143   if (VT.isInteger() && VT.getSizeInBits() == 8)
18144     return SDValue();
18145
18146   SDValue N0 = N->getOperand(0);
18147   SDValue N1 = N->getOperand(1);
18148   SDLoc DL(N);
18149
18150   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
18151   // and change it to SUB and CMOV.
18152   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
18153       N0.getOpcode() == ISD::ADD &&
18154       N0.getOperand(1) == N1 &&
18155       N1.getOpcode() == ISD::SRA &&
18156       N1.getOperand(0) == N0.getOperand(0))
18157     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
18158       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
18159         // Generate SUB & CMOV.
18160         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
18161                                   DAG.getConstant(0, VT), N0.getOperand(0));
18162
18163         SDValue Ops[] = { N0.getOperand(0), Neg,
18164                           DAG.getConstant(X86::COND_GE, MVT::i8),
18165                           SDValue(Neg.getNode(), 1) };
18166         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
18167                            Ops, array_lengthof(Ops));
18168       }
18169   return SDValue();
18170 }
18171
18172 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
18173 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
18174                                  TargetLowering::DAGCombinerInfo &DCI,
18175                                  const X86Subtarget *Subtarget) {
18176   EVT VT = N->getValueType(0);
18177   if (DCI.isBeforeLegalizeOps())
18178     return SDValue();
18179
18180   if (Subtarget->hasCMov()) {
18181     SDValue RV = performIntegerAbsCombine(N, DAG);
18182     if (RV.getNode())
18183       return RV;
18184   }
18185
18186   // Try forming BMI if it is available.
18187   if (!Subtarget->hasBMI())
18188     return SDValue();
18189
18190   if (VT != MVT::i32 && VT != MVT::i64)
18191     return SDValue();
18192
18193   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
18194
18195   // Create BLSMSK instructions by finding X ^ (X-1)
18196   SDValue N0 = N->getOperand(0);
18197   SDValue N1 = N->getOperand(1);
18198   SDLoc DL(N);
18199
18200   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
18201       isAllOnes(N0.getOperand(1)))
18202     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
18203
18204   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
18205       isAllOnes(N1.getOperand(1)))
18206     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
18207
18208   return SDValue();
18209 }
18210
18211 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
18212 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
18213                                   TargetLowering::DAGCombinerInfo &DCI,
18214                                   const X86Subtarget *Subtarget) {
18215   LoadSDNode *Ld = cast<LoadSDNode>(N);
18216   EVT RegVT = Ld->getValueType(0);
18217   EVT MemVT = Ld->getMemoryVT();
18218   SDLoc dl(Ld);
18219   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18220   unsigned RegSz = RegVT.getSizeInBits();
18221
18222   // On Sandybridge unaligned 256bit loads are inefficient.
18223   ISD::LoadExtType Ext = Ld->getExtensionType();
18224   unsigned Alignment = Ld->getAlignment();
18225   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
18226   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
18227       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
18228     unsigned NumElems = RegVT.getVectorNumElements();
18229     if (NumElems < 2)
18230       return SDValue();
18231
18232     SDValue Ptr = Ld->getBasePtr();
18233     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
18234
18235     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18236                                   NumElems/2);
18237     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18238                                 Ld->getPointerInfo(), Ld->isVolatile(),
18239                                 Ld->isNonTemporal(), Ld->isInvariant(),
18240                                 Alignment);
18241     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18242     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18243                                 Ld->getPointerInfo(), Ld->isVolatile(),
18244                                 Ld->isNonTemporal(), Ld->isInvariant(),
18245                                 std::min(16U, Alignment));
18246     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18247                              Load1.getValue(1),
18248                              Load2.getValue(1));
18249
18250     SDValue NewVec = DAG.getUNDEF(RegVT);
18251     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
18252     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
18253     return DCI.CombineTo(N, NewVec, TF, true);
18254   }
18255
18256   // If this is a vector EXT Load then attempt to optimize it using a
18257   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18258   // expansion is still better than scalar code.
18259   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18260   // emit a shuffle and a arithmetic shift.
18261   // TODO: It is possible to support ZExt by zeroing the undef values
18262   // during the shuffle phase or after the shuffle.
18263   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18264       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
18265     assert(MemVT != RegVT && "Cannot extend to the same type");
18266     assert(MemVT.isVector() && "Must load a vector from memory");
18267
18268     unsigned NumElems = RegVT.getVectorNumElements();
18269     unsigned MemSz = MemVT.getSizeInBits();
18270     assert(RegSz > MemSz && "Register size must be greater than the mem size");
18271
18272     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18273       return SDValue();
18274
18275     // All sizes must be a power of two.
18276     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18277       return SDValue();
18278
18279     // Attempt to load the original value using scalar loads.
18280     // Find the largest scalar type that divides the total loaded size.
18281     MVT SclrLoadTy = MVT::i8;
18282     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18283          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18284       MVT Tp = (MVT::SimpleValueType)tp;
18285       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18286         SclrLoadTy = Tp;
18287       }
18288     }
18289
18290     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18291     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18292         (64 <= MemSz))
18293       SclrLoadTy = MVT::f64;
18294
18295     // Calculate the number of scalar loads that we need to perform
18296     // in order to load our vector from memory.
18297     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18298     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18299       return SDValue();
18300
18301     unsigned loadRegZize = RegSz;
18302     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18303       loadRegZize /= 2;
18304
18305     // Represent our vector as a sequence of elements which are the
18306     // largest scalar that we can load.
18307     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18308       loadRegZize/SclrLoadTy.getSizeInBits());
18309
18310     // Represent the data using the same element type that is stored in
18311     // memory. In practice, we ''widen'' MemVT.
18312     EVT WideVecVT =
18313           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18314                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18315
18316     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18317       "Invalid vector type");
18318
18319     // We can't shuffle using an illegal type.
18320     if (!TLI.isTypeLegal(WideVecVT))
18321       return SDValue();
18322
18323     SmallVector<SDValue, 8> Chains;
18324     SDValue Ptr = Ld->getBasePtr();
18325     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18326                                         TLI.getPointerTy());
18327     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18328
18329     for (unsigned i = 0; i < NumLoads; ++i) {
18330       // Perform a single load.
18331       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18332                                        Ptr, Ld->getPointerInfo(),
18333                                        Ld->isVolatile(), Ld->isNonTemporal(),
18334                                        Ld->isInvariant(), Ld->getAlignment());
18335       Chains.push_back(ScalarLoad.getValue(1));
18336       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18337       // another round of DAGCombining.
18338       if (i == 0)
18339         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18340       else
18341         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18342                           ScalarLoad, DAG.getIntPtrConstant(i));
18343
18344       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18345     }
18346
18347     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18348                                Chains.size());
18349
18350     // Bitcast the loaded value to a vector of the original element type, in
18351     // the size of the target vector type.
18352     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18353     unsigned SizeRatio = RegSz/MemSz;
18354
18355     if (Ext == ISD::SEXTLOAD) {
18356       // If we have SSE4.1 we can directly emit a VSEXT node.
18357       if (Subtarget->hasSSE41()) {
18358         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18359         return DCI.CombineTo(N, Sext, TF, true);
18360       }
18361
18362       // Otherwise we'll shuffle the small elements in the high bits of the
18363       // larger type and perform an arithmetic shift. If the shift is not legal
18364       // it's better to scalarize.
18365       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18366         return SDValue();
18367
18368       // Redistribute the loaded elements into the different locations.
18369       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18370       for (unsigned i = 0; i != NumElems; ++i)
18371         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18372
18373       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18374                                            DAG.getUNDEF(WideVecVT),
18375                                            &ShuffleVec[0]);
18376
18377       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18378
18379       // Build the arithmetic shift.
18380       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18381                      MemVT.getVectorElementType().getSizeInBits();
18382       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18383                           DAG.getConstant(Amt, RegVT));
18384
18385       return DCI.CombineTo(N, Shuff, TF, true);
18386     }
18387
18388     // Redistribute the loaded elements into the different locations.
18389     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18390     for (unsigned i = 0; i != NumElems; ++i)
18391       ShuffleVec[i*SizeRatio] = i;
18392
18393     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18394                                          DAG.getUNDEF(WideVecVT),
18395                                          &ShuffleVec[0]);
18396
18397     // Bitcast to the requested type.
18398     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18399     // Replace the original load with the new sequence
18400     // and return the new chain.
18401     return DCI.CombineTo(N, Shuff, TF, true);
18402   }
18403
18404   return SDValue();
18405 }
18406
18407 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18408 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18409                                    const X86Subtarget *Subtarget) {
18410   StoreSDNode *St = cast<StoreSDNode>(N);
18411   EVT VT = St->getValue().getValueType();
18412   EVT StVT = St->getMemoryVT();
18413   SDLoc dl(St);
18414   SDValue StoredVal = St->getOperand(1);
18415   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18416
18417   // If we are saving a concatenation of two XMM registers, perform two stores.
18418   // On Sandy Bridge, 256-bit memory operations are executed by two
18419   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18420   // memory  operation.
18421   unsigned Alignment = St->getAlignment();
18422   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18423   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18424       StVT == VT && !IsAligned) {
18425     unsigned NumElems = VT.getVectorNumElements();
18426     if (NumElems < 2)
18427       return SDValue();
18428
18429     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18430     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18431
18432     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18433     SDValue Ptr0 = St->getBasePtr();
18434     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18435
18436     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18437                                 St->getPointerInfo(), St->isVolatile(),
18438                                 St->isNonTemporal(), Alignment);
18439     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18440                                 St->getPointerInfo(), St->isVolatile(),
18441                                 St->isNonTemporal(),
18442                                 std::min(16U, Alignment));
18443     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18444   }
18445
18446   // Optimize trunc store (of multiple scalars) to shuffle and store.
18447   // First, pack all of the elements in one place. Next, store to memory
18448   // in fewer chunks.
18449   if (St->isTruncatingStore() && VT.isVector()) {
18450     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18451     unsigned NumElems = VT.getVectorNumElements();
18452     assert(StVT != VT && "Cannot truncate to the same type");
18453     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18454     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18455
18456     // From, To sizes and ElemCount must be pow of two
18457     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18458     // We are going to use the original vector elt for storing.
18459     // Accumulated smaller vector elements must be a multiple of the store size.
18460     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18461
18462     unsigned SizeRatio  = FromSz / ToSz;
18463
18464     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18465
18466     // Create a type on which we perform the shuffle
18467     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18468             StVT.getScalarType(), NumElems*SizeRatio);
18469
18470     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18471
18472     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18473     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18474     for (unsigned i = 0; i != NumElems; ++i)
18475       ShuffleVec[i] = i * SizeRatio;
18476
18477     // Can't shuffle using an illegal type.
18478     if (!TLI.isTypeLegal(WideVecVT))
18479       return SDValue();
18480
18481     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18482                                          DAG.getUNDEF(WideVecVT),
18483                                          &ShuffleVec[0]);
18484     // At this point all of the data is stored at the bottom of the
18485     // register. We now need to save it to mem.
18486
18487     // Find the largest store unit
18488     MVT StoreType = MVT::i8;
18489     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18490          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18491       MVT Tp = (MVT::SimpleValueType)tp;
18492       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18493         StoreType = Tp;
18494     }
18495
18496     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18497     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18498         (64 <= NumElems * ToSz))
18499       StoreType = MVT::f64;
18500
18501     // Bitcast the original vector into a vector of store-size units
18502     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18503             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18504     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18505     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18506     SmallVector<SDValue, 8> Chains;
18507     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18508                                         TLI.getPointerTy());
18509     SDValue Ptr = St->getBasePtr();
18510
18511     // Perform one or more big stores into memory.
18512     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18513       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18514                                    StoreType, ShuffWide,
18515                                    DAG.getIntPtrConstant(i));
18516       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18517                                 St->getPointerInfo(), St->isVolatile(),
18518                                 St->isNonTemporal(), St->getAlignment());
18519       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18520       Chains.push_back(Ch);
18521     }
18522
18523     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18524                                Chains.size());
18525   }
18526
18527   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18528   // the FP state in cases where an emms may be missing.
18529   // A preferable solution to the general problem is to figure out the right
18530   // places to insert EMMS.  This qualifies as a quick hack.
18531
18532   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18533   if (VT.getSizeInBits() != 64)
18534     return SDValue();
18535
18536   const Function *F = DAG.getMachineFunction().getFunction();
18537   bool NoImplicitFloatOps = F->getAttributes().
18538     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18539   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18540                      && Subtarget->hasSSE2();
18541   if ((VT.isVector() ||
18542        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18543       isa<LoadSDNode>(St->getValue()) &&
18544       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18545       St->getChain().hasOneUse() && !St->isVolatile()) {
18546     SDNode* LdVal = St->getValue().getNode();
18547     LoadSDNode *Ld = 0;
18548     int TokenFactorIndex = -1;
18549     SmallVector<SDValue, 8> Ops;
18550     SDNode* ChainVal = St->getChain().getNode();
18551     // Must be a store of a load.  We currently handle two cases:  the load
18552     // is a direct child, and it's under an intervening TokenFactor.  It is
18553     // possible to dig deeper under nested TokenFactors.
18554     if (ChainVal == LdVal)
18555       Ld = cast<LoadSDNode>(St->getChain());
18556     else if (St->getValue().hasOneUse() &&
18557              ChainVal->getOpcode() == ISD::TokenFactor) {
18558       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18559         if (ChainVal->getOperand(i).getNode() == LdVal) {
18560           TokenFactorIndex = i;
18561           Ld = cast<LoadSDNode>(St->getValue());
18562         } else
18563           Ops.push_back(ChainVal->getOperand(i));
18564       }
18565     }
18566
18567     if (!Ld || !ISD::isNormalLoad(Ld))
18568       return SDValue();
18569
18570     // If this is not the MMX case, i.e. we are just turning i64 load/store
18571     // into f64 load/store, avoid the transformation if there are multiple
18572     // uses of the loaded value.
18573     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18574       return SDValue();
18575
18576     SDLoc LdDL(Ld);
18577     SDLoc StDL(N);
18578     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18579     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18580     // pair instead.
18581     if (Subtarget->is64Bit() || F64IsLegal) {
18582       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18583       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18584                                   Ld->getPointerInfo(), Ld->isVolatile(),
18585                                   Ld->isNonTemporal(), Ld->isInvariant(),
18586                                   Ld->getAlignment());
18587       SDValue NewChain = NewLd.getValue(1);
18588       if (TokenFactorIndex != -1) {
18589         Ops.push_back(NewChain);
18590         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18591                                Ops.size());
18592       }
18593       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18594                           St->getPointerInfo(),
18595                           St->isVolatile(), St->isNonTemporal(),
18596                           St->getAlignment());
18597     }
18598
18599     // Otherwise, lower to two pairs of 32-bit loads / stores.
18600     SDValue LoAddr = Ld->getBasePtr();
18601     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18602                                  DAG.getConstant(4, MVT::i32));
18603
18604     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18605                                Ld->getPointerInfo(),
18606                                Ld->isVolatile(), Ld->isNonTemporal(),
18607                                Ld->isInvariant(), Ld->getAlignment());
18608     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18609                                Ld->getPointerInfo().getWithOffset(4),
18610                                Ld->isVolatile(), Ld->isNonTemporal(),
18611                                Ld->isInvariant(),
18612                                MinAlign(Ld->getAlignment(), 4));
18613
18614     SDValue NewChain = LoLd.getValue(1);
18615     if (TokenFactorIndex != -1) {
18616       Ops.push_back(LoLd);
18617       Ops.push_back(HiLd);
18618       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18619                              Ops.size());
18620     }
18621
18622     LoAddr = St->getBasePtr();
18623     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18624                          DAG.getConstant(4, MVT::i32));
18625
18626     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18627                                 St->getPointerInfo(),
18628                                 St->isVolatile(), St->isNonTemporal(),
18629                                 St->getAlignment());
18630     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18631                                 St->getPointerInfo().getWithOffset(4),
18632                                 St->isVolatile(),
18633                                 St->isNonTemporal(),
18634                                 MinAlign(St->getAlignment(), 4));
18635     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18636   }
18637   return SDValue();
18638 }
18639
18640 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18641 /// and return the operands for the horizontal operation in LHS and RHS.  A
18642 /// horizontal operation performs the binary operation on successive elements
18643 /// of its first operand, then on successive elements of its second operand,
18644 /// returning the resulting values in a vector.  For example, if
18645 ///   A = < float a0, float a1, float a2, float a3 >
18646 /// and
18647 ///   B = < float b0, float b1, float b2, float b3 >
18648 /// then the result of doing a horizontal operation on A and B is
18649 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18650 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18651 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18652 /// set to A, RHS to B, and the routine returns 'true'.
18653 /// Note that the binary operation should have the property that if one of the
18654 /// operands is UNDEF then the result is UNDEF.
18655 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18656   // Look for the following pattern: if
18657   //   A = < float a0, float a1, float a2, float a3 >
18658   //   B = < float b0, float b1, float b2, float b3 >
18659   // and
18660   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18661   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18662   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18663   // which is A horizontal-op B.
18664
18665   // At least one of the operands should be a vector shuffle.
18666   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18667       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18668     return false;
18669
18670   MVT VT = LHS.getSimpleValueType();
18671
18672   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18673          "Unsupported vector type for horizontal add/sub");
18674
18675   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18676   // operate independently on 128-bit lanes.
18677   unsigned NumElts = VT.getVectorNumElements();
18678   unsigned NumLanes = VT.getSizeInBits()/128;
18679   unsigned NumLaneElts = NumElts / NumLanes;
18680   assert((NumLaneElts % 2 == 0) &&
18681          "Vector type should have an even number of elements in each lane");
18682   unsigned HalfLaneElts = NumLaneElts/2;
18683
18684   // View LHS in the form
18685   //   LHS = VECTOR_SHUFFLE A, B, LMask
18686   // If LHS is not a shuffle then pretend it is the shuffle
18687   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18688   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18689   // type VT.
18690   SDValue A, B;
18691   SmallVector<int, 16> LMask(NumElts);
18692   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18693     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18694       A = LHS.getOperand(0);
18695     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18696       B = LHS.getOperand(1);
18697     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18698     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18699   } else {
18700     if (LHS.getOpcode() != ISD::UNDEF)
18701       A = LHS;
18702     for (unsigned i = 0; i != NumElts; ++i)
18703       LMask[i] = i;
18704   }
18705
18706   // Likewise, view RHS in the form
18707   //   RHS = VECTOR_SHUFFLE C, D, RMask
18708   SDValue C, D;
18709   SmallVector<int, 16> RMask(NumElts);
18710   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18711     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18712       C = RHS.getOperand(0);
18713     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18714       D = RHS.getOperand(1);
18715     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18716     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18717   } else {
18718     if (RHS.getOpcode() != ISD::UNDEF)
18719       C = RHS;
18720     for (unsigned i = 0; i != NumElts; ++i)
18721       RMask[i] = i;
18722   }
18723
18724   // Check that the shuffles are both shuffling the same vectors.
18725   if (!(A == C && B == D) && !(A == D && B == C))
18726     return false;
18727
18728   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18729   if (!A.getNode() && !B.getNode())
18730     return false;
18731
18732   // If A and B occur in reverse order in RHS, then "swap" them (which means
18733   // rewriting the mask).
18734   if (A != C)
18735     CommuteVectorShuffleMask(RMask, NumElts);
18736
18737   // At this point LHS and RHS are equivalent to
18738   //   LHS = VECTOR_SHUFFLE A, B, LMask
18739   //   RHS = VECTOR_SHUFFLE A, B, RMask
18740   // Check that the masks correspond to performing a horizontal operation.
18741   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18742     for (unsigned i = 0; i != NumLaneElts; ++i) {
18743       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18744
18745       // Ignore any UNDEF components.
18746       if (LIdx < 0 || RIdx < 0 ||
18747           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18748           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18749         continue;
18750
18751       // Check that successive elements are being operated on.  If not, this is
18752       // not a horizontal operation.
18753       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18754       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18755       if (!(LIdx == Index && RIdx == Index + 1) &&
18756           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18757         return false;
18758     }
18759   }
18760
18761   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18762   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18763   return true;
18764 }
18765
18766 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18767 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18768                                   const X86Subtarget *Subtarget) {
18769   EVT VT = N->getValueType(0);
18770   SDValue LHS = N->getOperand(0);
18771   SDValue RHS = N->getOperand(1);
18772
18773   // Try to synthesize horizontal adds from adds of shuffles.
18774   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18775        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18776       isHorizontalBinOp(LHS, RHS, true))
18777     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18778   return SDValue();
18779 }
18780
18781 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18782 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18783                                   const X86Subtarget *Subtarget) {
18784   EVT VT = N->getValueType(0);
18785   SDValue LHS = N->getOperand(0);
18786   SDValue RHS = N->getOperand(1);
18787
18788   // Try to synthesize horizontal subs from subs of shuffles.
18789   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18790        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18791       isHorizontalBinOp(LHS, RHS, false))
18792     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18793   return SDValue();
18794 }
18795
18796 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18797 /// X86ISD::FXOR nodes.
18798 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18799   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18800   // F[X]OR(0.0, x) -> x
18801   // F[X]OR(x, 0.0) -> x
18802   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18803     if (C->getValueAPF().isPosZero())
18804       return N->getOperand(1);
18805   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18806     if (C->getValueAPF().isPosZero())
18807       return N->getOperand(0);
18808   return SDValue();
18809 }
18810
18811 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18812 /// X86ISD::FMAX nodes.
18813 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18814   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18815
18816   // Only perform optimizations if UnsafeMath is used.
18817   if (!DAG.getTarget().Options.UnsafeFPMath)
18818     return SDValue();
18819
18820   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18821   // into FMINC and FMAXC, which are Commutative operations.
18822   unsigned NewOp = 0;
18823   switch (N->getOpcode()) {
18824     default: llvm_unreachable("unknown opcode");
18825     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18826     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18827   }
18828
18829   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18830                      N->getOperand(0), N->getOperand(1));
18831 }
18832
18833 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18834 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18835   // FAND(0.0, x) -> 0.0
18836   // FAND(x, 0.0) -> 0.0
18837   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18838     if (C->getValueAPF().isPosZero())
18839       return N->getOperand(0);
18840   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18841     if (C->getValueAPF().isPosZero())
18842       return N->getOperand(1);
18843   return SDValue();
18844 }
18845
18846 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18847 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18848   // FANDN(x, 0.0) -> 0.0
18849   // FANDN(0.0, x) -> x
18850   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18851     if (C->getValueAPF().isPosZero())
18852       return N->getOperand(1);
18853   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18854     if (C->getValueAPF().isPosZero())
18855       return N->getOperand(1);
18856   return SDValue();
18857 }
18858
18859 static SDValue PerformBTCombine(SDNode *N,
18860                                 SelectionDAG &DAG,
18861                                 TargetLowering::DAGCombinerInfo &DCI) {
18862   // BT ignores high bits in the bit index operand.
18863   SDValue Op1 = N->getOperand(1);
18864   if (Op1.hasOneUse()) {
18865     unsigned BitWidth = Op1.getValueSizeInBits();
18866     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18867     APInt KnownZero, KnownOne;
18868     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18869                                           !DCI.isBeforeLegalizeOps());
18870     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18871     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18872         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18873       DCI.CommitTargetLoweringOpt(TLO);
18874   }
18875   return SDValue();
18876 }
18877
18878 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18879   SDValue Op = N->getOperand(0);
18880   if (Op.getOpcode() == ISD::BITCAST)
18881     Op = Op.getOperand(0);
18882   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18883   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18884       VT.getVectorElementType().getSizeInBits() ==
18885       OpVT.getVectorElementType().getSizeInBits()) {
18886     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18887   }
18888   return SDValue();
18889 }
18890
18891 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18892                                                const X86Subtarget *Subtarget) {
18893   EVT VT = N->getValueType(0);
18894   if (!VT.isVector())
18895     return SDValue();
18896
18897   SDValue N0 = N->getOperand(0);
18898   SDValue N1 = N->getOperand(1);
18899   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18900   SDLoc dl(N);
18901
18902   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18903   // both SSE and AVX2 since there is no sign-extended shift right
18904   // operation on a vector with 64-bit elements.
18905   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18906   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18907   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18908       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18909     SDValue N00 = N0.getOperand(0);
18910
18911     // EXTLOAD has a better solution on AVX2,
18912     // it may be replaced with X86ISD::VSEXT node.
18913     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18914       if (!ISD::isNormalLoad(N00.getNode()))
18915         return SDValue();
18916
18917     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18918         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18919                                   N00, N1);
18920       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18921     }
18922   }
18923   return SDValue();
18924 }
18925
18926 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18927                                   TargetLowering::DAGCombinerInfo &DCI,
18928                                   const X86Subtarget *Subtarget) {
18929   if (!DCI.isBeforeLegalizeOps())
18930     return SDValue();
18931
18932   if (!Subtarget->hasFp256())
18933     return SDValue();
18934
18935   EVT VT = N->getValueType(0);
18936   if (VT.isVector() && VT.getSizeInBits() == 256) {
18937     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18938     if (R.getNode())
18939       return R;
18940   }
18941
18942   return SDValue();
18943 }
18944
18945 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18946                                  const X86Subtarget* Subtarget) {
18947   SDLoc dl(N);
18948   EVT VT = N->getValueType(0);
18949
18950   // Let legalize expand this if it isn't a legal type yet.
18951   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18952     return SDValue();
18953
18954   EVT ScalarVT = VT.getScalarType();
18955   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18956       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18957     return SDValue();
18958
18959   SDValue A = N->getOperand(0);
18960   SDValue B = N->getOperand(1);
18961   SDValue C = N->getOperand(2);
18962
18963   bool NegA = (A.getOpcode() == ISD::FNEG);
18964   bool NegB = (B.getOpcode() == ISD::FNEG);
18965   bool NegC = (C.getOpcode() == ISD::FNEG);
18966
18967   // Negative multiplication when NegA xor NegB
18968   bool NegMul = (NegA != NegB);
18969   if (NegA)
18970     A = A.getOperand(0);
18971   if (NegB)
18972     B = B.getOperand(0);
18973   if (NegC)
18974     C = C.getOperand(0);
18975
18976   unsigned Opcode;
18977   if (!NegMul)
18978     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18979   else
18980     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18981
18982   return DAG.getNode(Opcode, dl, VT, A, B, C);
18983 }
18984
18985 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18986                                   TargetLowering::DAGCombinerInfo &DCI,
18987                                   const X86Subtarget *Subtarget) {
18988   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18989   //           (and (i32 x86isd::setcc_carry), 1)
18990   // This eliminates the zext. This transformation is necessary because
18991   // ISD::SETCC is always legalized to i8.
18992   SDLoc dl(N);
18993   SDValue N0 = N->getOperand(0);
18994   EVT VT = N->getValueType(0);
18995
18996   if (N0.getOpcode() == ISD::AND &&
18997       N0.hasOneUse() &&
18998       N0.getOperand(0).hasOneUse()) {
18999     SDValue N00 = N0.getOperand(0);
19000     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19001       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
19002       if (!C || C->getZExtValue() != 1)
19003         return SDValue();
19004       return DAG.getNode(ISD::AND, dl, VT,
19005                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19006                                      N00.getOperand(0), N00.getOperand(1)),
19007                          DAG.getConstant(1, VT));
19008     }
19009   }
19010
19011   if (N0.getOpcode() == ISD::TRUNCATE &&
19012       N0.hasOneUse() &&
19013       N0.getOperand(0).hasOneUse()) {
19014     SDValue N00 = N0.getOperand(0);
19015     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19016       return DAG.getNode(ISD::AND, dl, VT,
19017                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19018                                      N00.getOperand(0), N00.getOperand(1)),
19019                          DAG.getConstant(1, VT));
19020     }
19021   }
19022   if (VT.is256BitVector()) {
19023     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19024     if (R.getNode())
19025       return R;
19026   }
19027
19028   return SDValue();
19029 }
19030
19031 // Optimize x == -y --> x+y == 0
19032 //          x != -y --> x+y != 0
19033 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
19034   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
19035   SDValue LHS = N->getOperand(0);
19036   SDValue RHS = N->getOperand(1);
19037
19038   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
19039     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
19040       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
19041         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19042                                    LHS.getValueType(), RHS, LHS.getOperand(1));
19043         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19044                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19045       }
19046   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
19047     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
19048       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
19049         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19050                                    RHS.getValueType(), LHS, RHS.getOperand(1));
19051         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19052                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19053       }
19054   return SDValue();
19055 }
19056
19057 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
19058 // as "sbb reg,reg", since it can be extended without zext and produces
19059 // an all-ones bit which is more useful than 0/1 in some cases.
19060 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
19061                                MVT VT) {
19062   if (VT == MVT::i8)
19063     return DAG.getNode(ISD::AND, DL, VT,
19064                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19065                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
19066                        DAG.getConstant(1, VT));
19067   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
19068   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
19069                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19070                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
19071 }
19072
19073 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
19074 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
19075                                    TargetLowering::DAGCombinerInfo &DCI,
19076                                    const X86Subtarget *Subtarget) {
19077   SDLoc DL(N);
19078   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
19079   SDValue EFLAGS = N->getOperand(1);
19080
19081   if (CC == X86::COND_A) {
19082     // Try to convert COND_A into COND_B in an attempt to facilitate
19083     // materializing "setb reg".
19084     //
19085     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
19086     // cannot take an immediate as its first operand.
19087     //
19088     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
19089         EFLAGS.getValueType().isInteger() &&
19090         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
19091       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
19092                                    EFLAGS.getNode()->getVTList(),
19093                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
19094       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
19095       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
19096     }
19097   }
19098
19099   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
19100   // a zext and produces an all-ones bit which is more useful than 0/1 in some
19101   // cases.
19102   if (CC == X86::COND_B)
19103     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
19104
19105   SDValue Flags;
19106
19107   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19108   if (Flags.getNode()) {
19109     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19110     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
19111   }
19112
19113   return SDValue();
19114 }
19115
19116 // Optimize branch condition evaluation.
19117 //
19118 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
19119                                     TargetLowering::DAGCombinerInfo &DCI,
19120                                     const X86Subtarget *Subtarget) {
19121   SDLoc DL(N);
19122   SDValue Chain = N->getOperand(0);
19123   SDValue Dest = N->getOperand(1);
19124   SDValue EFLAGS = N->getOperand(3);
19125   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
19126
19127   SDValue Flags;
19128
19129   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19130   if (Flags.getNode()) {
19131     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19132     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
19133                        Flags);
19134   }
19135
19136   return SDValue();
19137 }
19138
19139 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
19140                                         const X86TargetLowering *XTLI) {
19141   SDValue Op0 = N->getOperand(0);
19142   EVT InVT = Op0->getValueType(0);
19143
19144   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
19145   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
19146     SDLoc dl(N);
19147     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
19148     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
19149     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
19150   }
19151
19152   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
19153   // a 32-bit target where SSE doesn't support i64->FP operations.
19154   if (Op0.getOpcode() == ISD::LOAD) {
19155     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
19156     EVT VT = Ld->getValueType(0);
19157     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
19158         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
19159         !XTLI->getSubtarget()->is64Bit() &&
19160         VT == MVT::i64) {
19161       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
19162                                           Ld->getChain(), Op0, DAG);
19163       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
19164       return FILDChain;
19165     }
19166   }
19167   return SDValue();
19168 }
19169
19170 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
19171 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
19172                                  X86TargetLowering::DAGCombinerInfo &DCI) {
19173   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
19174   // the result is either zero or one (depending on the input carry bit).
19175   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
19176   if (X86::isZeroNode(N->getOperand(0)) &&
19177       X86::isZeroNode(N->getOperand(1)) &&
19178       // We don't have a good way to replace an EFLAGS use, so only do this when
19179       // dead right now.
19180       SDValue(N, 1).use_empty()) {
19181     SDLoc DL(N);
19182     EVT VT = N->getValueType(0);
19183     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
19184     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
19185                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
19186                                            DAG.getConstant(X86::COND_B,MVT::i8),
19187                                            N->getOperand(2)),
19188                                DAG.getConstant(1, VT));
19189     return DCI.CombineTo(N, Res1, CarryOut);
19190   }
19191
19192   return SDValue();
19193 }
19194
19195 // fold (add Y, (sete  X, 0)) -> adc  0, Y
19196 //      (add Y, (setne X, 0)) -> sbb -1, Y
19197 //      (sub (sete  X, 0), Y) -> sbb  0, Y
19198 //      (sub (setne X, 0), Y) -> adc -1, Y
19199 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
19200   SDLoc DL(N);
19201
19202   // Look through ZExts.
19203   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
19204   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
19205     return SDValue();
19206
19207   SDValue SetCC = Ext.getOperand(0);
19208   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
19209     return SDValue();
19210
19211   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
19212   if (CC != X86::COND_E && CC != X86::COND_NE)
19213     return SDValue();
19214
19215   SDValue Cmp = SetCC.getOperand(1);
19216   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
19217       !X86::isZeroNode(Cmp.getOperand(1)) ||
19218       !Cmp.getOperand(0).getValueType().isInteger())
19219     return SDValue();
19220
19221   SDValue CmpOp0 = Cmp.getOperand(0);
19222   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
19223                                DAG.getConstant(1, CmpOp0.getValueType()));
19224
19225   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
19226   if (CC == X86::COND_NE)
19227     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
19228                        DL, OtherVal.getValueType(), OtherVal,
19229                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
19230   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
19231                      DL, OtherVal.getValueType(), OtherVal,
19232                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
19233 }
19234
19235 /// PerformADDCombine - Do target-specific dag combines on integer adds.
19236 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
19237                                  const X86Subtarget *Subtarget) {
19238   EVT VT = N->getValueType(0);
19239   SDValue Op0 = N->getOperand(0);
19240   SDValue Op1 = N->getOperand(1);
19241
19242   // Try to synthesize horizontal adds from adds of shuffles.
19243   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19244        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19245       isHorizontalBinOp(Op0, Op1, true))
19246     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
19247
19248   return OptimizeConditionalInDecrement(N, DAG);
19249 }
19250
19251 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
19252                                  const X86Subtarget *Subtarget) {
19253   SDValue Op0 = N->getOperand(0);
19254   SDValue Op1 = N->getOperand(1);
19255
19256   // X86 can't encode an immediate LHS of a sub. See if we can push the
19257   // negation into a preceding instruction.
19258   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
19259     // If the RHS of the sub is a XOR with one use and a constant, invert the
19260     // immediate. Then add one to the LHS of the sub so we can turn
19261     // X-Y -> X+~Y+1, saving one register.
19262     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
19263         isa<ConstantSDNode>(Op1.getOperand(1))) {
19264       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
19265       EVT VT = Op0.getValueType();
19266       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
19267                                    Op1.getOperand(0),
19268                                    DAG.getConstant(~XorC, VT));
19269       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
19270                          DAG.getConstant(C->getAPIntValue()+1, VT));
19271     }
19272   }
19273
19274   // Try to synthesize horizontal adds from adds of shuffles.
19275   EVT VT = N->getValueType(0);
19276   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19277        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19278       isHorizontalBinOp(Op0, Op1, true))
19279     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
19280
19281   return OptimizeConditionalInDecrement(N, DAG);
19282 }
19283
19284 /// performVZEXTCombine - Performs build vector combines
19285 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19286                                         TargetLowering::DAGCombinerInfo &DCI,
19287                                         const X86Subtarget *Subtarget) {
19288   // (vzext (bitcast (vzext (x)) -> (vzext x)
19289   SDValue In = N->getOperand(0);
19290   while (In.getOpcode() == ISD::BITCAST)
19291     In = In.getOperand(0);
19292
19293   if (In.getOpcode() != X86ISD::VZEXT)
19294     return SDValue();
19295
19296   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
19297                      In.getOperand(0));
19298 }
19299
19300 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19301                                              DAGCombinerInfo &DCI) const {
19302   SelectionDAG &DAG = DCI.DAG;
19303   switch (N->getOpcode()) {
19304   default: break;
19305   case ISD::EXTRACT_VECTOR_ELT:
19306     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19307   case ISD::VSELECT:
19308   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19309   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19310   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19311   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19312   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19313   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19314   case ISD::SHL:
19315   case ISD::SRA:
19316   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19317   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19318   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19319   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19320   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19321   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19322   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19323   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19324   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19325   case X86ISD::FXOR:
19326   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19327   case X86ISD::FMIN:
19328   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19329   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19330   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19331   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19332   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19333   case ISD::ANY_EXTEND:
19334   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19335   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19336   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19337   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19338   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19339   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19340   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19341   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19342   case X86ISD::SHUFP:       // Handle all target specific shuffles
19343   case X86ISD::PALIGNR:
19344   case X86ISD::UNPCKH:
19345   case X86ISD::UNPCKL:
19346   case X86ISD::MOVHLPS:
19347   case X86ISD::MOVLHPS:
19348   case X86ISD::PSHUFD:
19349   case X86ISD::PSHUFHW:
19350   case X86ISD::PSHUFLW:
19351   case X86ISD::MOVSS:
19352   case X86ISD::MOVSD:
19353   case X86ISD::VPERMILP:
19354   case X86ISD::VPERM2X128:
19355   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19356   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19357   }
19358
19359   return SDValue();
19360 }
19361
19362 /// isTypeDesirableForOp - Return true if the target has native support for
19363 /// the specified value type and it is 'desirable' to use the type for the
19364 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19365 /// instruction encodings are longer and some i16 instructions are slow.
19366 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19367   if (!isTypeLegal(VT))
19368     return false;
19369   if (VT != MVT::i16)
19370     return true;
19371
19372   switch (Opc) {
19373   default:
19374     return true;
19375   case ISD::LOAD:
19376   case ISD::SIGN_EXTEND:
19377   case ISD::ZERO_EXTEND:
19378   case ISD::ANY_EXTEND:
19379   case ISD::SHL:
19380   case ISD::SRL:
19381   case ISD::SUB:
19382   case ISD::ADD:
19383   case ISD::MUL:
19384   case ISD::AND:
19385   case ISD::OR:
19386   case ISD::XOR:
19387     return false;
19388   }
19389 }
19390
19391 /// IsDesirableToPromoteOp - This method query the target whether it is
19392 /// beneficial for dag combiner to promote the specified node. If true, it
19393 /// should return the desired promotion type by reference.
19394 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19395   EVT VT = Op.getValueType();
19396   if (VT != MVT::i16)
19397     return false;
19398
19399   bool Promote = false;
19400   bool Commute = false;
19401   switch (Op.getOpcode()) {
19402   default: break;
19403   case ISD::LOAD: {
19404     LoadSDNode *LD = cast<LoadSDNode>(Op);
19405     // If the non-extending load has a single use and it's not live out, then it
19406     // might be folded.
19407     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19408                                                      Op.hasOneUse()*/) {
19409       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19410              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19411         // The only case where we'd want to promote LOAD (rather then it being
19412         // promoted as an operand is when it's only use is liveout.
19413         if (UI->getOpcode() != ISD::CopyToReg)
19414           return false;
19415       }
19416     }
19417     Promote = true;
19418     break;
19419   }
19420   case ISD::SIGN_EXTEND:
19421   case ISD::ZERO_EXTEND:
19422   case ISD::ANY_EXTEND:
19423     Promote = true;
19424     break;
19425   case ISD::SHL:
19426   case ISD::SRL: {
19427     SDValue N0 = Op.getOperand(0);
19428     // Look out for (store (shl (load), x)).
19429     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19430       return false;
19431     Promote = true;
19432     break;
19433   }
19434   case ISD::ADD:
19435   case ISD::MUL:
19436   case ISD::AND:
19437   case ISD::OR:
19438   case ISD::XOR:
19439     Commute = true;
19440     // fallthrough
19441   case ISD::SUB: {
19442     SDValue N0 = Op.getOperand(0);
19443     SDValue N1 = Op.getOperand(1);
19444     if (!Commute && MayFoldLoad(N1))
19445       return false;
19446     // Avoid disabling potential load folding opportunities.
19447     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19448       return false;
19449     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19450       return false;
19451     Promote = true;
19452   }
19453   }
19454
19455   PVT = MVT::i32;
19456   return Promote;
19457 }
19458
19459 //===----------------------------------------------------------------------===//
19460 //                           X86 Inline Assembly Support
19461 //===----------------------------------------------------------------------===//
19462
19463 namespace {
19464   // Helper to match a string separated by whitespace.
19465   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19466     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19467
19468     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19469       StringRef piece(*args[i]);
19470       if (!s.startswith(piece)) // Check if the piece matches.
19471         return false;
19472
19473       s = s.substr(piece.size());
19474       StringRef::size_type pos = s.find_first_not_of(" \t");
19475       if (pos == 0) // We matched a prefix.
19476         return false;
19477
19478       s = s.substr(pos);
19479     }
19480
19481     return s.empty();
19482   }
19483   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19484 }
19485
19486 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19487
19488   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19489     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19490         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19491         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19492
19493       if (AsmPieces.size() == 3)
19494         return true;
19495       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19496         return true;
19497     }
19498   }
19499   return false;
19500 }
19501
19502 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19503   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19504
19505   std::string AsmStr = IA->getAsmString();
19506
19507   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19508   if (!Ty || Ty->getBitWidth() % 16 != 0)
19509     return false;
19510
19511   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19512   SmallVector<StringRef, 4> AsmPieces;
19513   SplitString(AsmStr, AsmPieces, ";\n");
19514
19515   switch (AsmPieces.size()) {
19516   default: return false;
19517   case 1:
19518     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19519     // we will turn this bswap into something that will be lowered to logical
19520     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19521     // lower so don't worry about this.
19522     // bswap $0
19523     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19524         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19525         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19526         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19527         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19528         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19529       // No need to check constraints, nothing other than the equivalent of
19530       // "=r,0" would be valid here.
19531       return IntrinsicLowering::LowerToByteSwap(CI);
19532     }
19533
19534     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19535     if (CI->getType()->isIntegerTy(16) &&
19536         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19537         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19538          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19539       AsmPieces.clear();
19540       const std::string &ConstraintsStr = IA->getConstraintString();
19541       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19542       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19543       if (clobbersFlagRegisters(AsmPieces))
19544         return IntrinsicLowering::LowerToByteSwap(CI);
19545     }
19546     break;
19547   case 3:
19548     if (CI->getType()->isIntegerTy(32) &&
19549         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19550         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19551         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19552         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19553       AsmPieces.clear();
19554       const std::string &ConstraintsStr = IA->getConstraintString();
19555       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19556       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19557       if (clobbersFlagRegisters(AsmPieces))
19558         return IntrinsicLowering::LowerToByteSwap(CI);
19559     }
19560
19561     if (CI->getType()->isIntegerTy(64)) {
19562       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19563       if (Constraints.size() >= 2 &&
19564           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19565           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19566         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19567         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19568             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19569             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19570           return IntrinsicLowering::LowerToByteSwap(CI);
19571       }
19572     }
19573     break;
19574   }
19575   return false;
19576 }
19577
19578 /// getConstraintType - Given a constraint letter, return the type of
19579 /// constraint it is for this target.
19580 X86TargetLowering::ConstraintType
19581 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19582   if (Constraint.size() == 1) {
19583     switch (Constraint[0]) {
19584     case 'R':
19585     case 'q':
19586     case 'Q':
19587     case 'f':
19588     case 't':
19589     case 'u':
19590     case 'y':
19591     case 'x':
19592     case 'Y':
19593     case 'l':
19594       return C_RegisterClass;
19595     case 'a':
19596     case 'b':
19597     case 'c':
19598     case 'd':
19599     case 'S':
19600     case 'D':
19601     case 'A':
19602       return C_Register;
19603     case 'I':
19604     case 'J':
19605     case 'K':
19606     case 'L':
19607     case 'M':
19608     case 'N':
19609     case 'G':
19610     case 'C':
19611     case 'e':
19612     case 'Z':
19613       return C_Other;
19614     default:
19615       break;
19616     }
19617   }
19618   return TargetLowering::getConstraintType(Constraint);
19619 }
19620
19621 /// Examine constraint type and operand type and determine a weight value.
19622 /// This object must already have been set up with the operand type
19623 /// and the current alternative constraint selected.
19624 TargetLowering::ConstraintWeight
19625   X86TargetLowering::getSingleConstraintMatchWeight(
19626     AsmOperandInfo &info, const char *constraint) const {
19627   ConstraintWeight weight = CW_Invalid;
19628   Value *CallOperandVal = info.CallOperandVal;
19629     // If we don't have a value, we can't do a match,
19630     // but allow it at the lowest weight.
19631   if (CallOperandVal == NULL)
19632     return CW_Default;
19633   Type *type = CallOperandVal->getType();
19634   // Look at the constraint type.
19635   switch (*constraint) {
19636   default:
19637     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19638   case 'R':
19639   case 'q':
19640   case 'Q':
19641   case 'a':
19642   case 'b':
19643   case 'c':
19644   case 'd':
19645   case 'S':
19646   case 'D':
19647   case 'A':
19648     if (CallOperandVal->getType()->isIntegerTy())
19649       weight = CW_SpecificReg;
19650     break;
19651   case 'f':
19652   case 't':
19653   case 'u':
19654     if (type->isFloatingPointTy())
19655       weight = CW_SpecificReg;
19656     break;
19657   case 'y':
19658     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19659       weight = CW_SpecificReg;
19660     break;
19661   case 'x':
19662   case 'Y':
19663     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19664         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19665       weight = CW_Register;
19666     break;
19667   case 'I':
19668     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19669       if (C->getZExtValue() <= 31)
19670         weight = CW_Constant;
19671     }
19672     break;
19673   case 'J':
19674     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19675       if (C->getZExtValue() <= 63)
19676         weight = CW_Constant;
19677     }
19678     break;
19679   case 'K':
19680     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19681       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19682         weight = CW_Constant;
19683     }
19684     break;
19685   case 'L':
19686     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19687       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19688         weight = CW_Constant;
19689     }
19690     break;
19691   case 'M':
19692     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19693       if (C->getZExtValue() <= 3)
19694         weight = CW_Constant;
19695     }
19696     break;
19697   case 'N':
19698     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19699       if (C->getZExtValue() <= 0xff)
19700         weight = CW_Constant;
19701     }
19702     break;
19703   case 'G':
19704   case 'C':
19705     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19706       weight = CW_Constant;
19707     }
19708     break;
19709   case 'e':
19710     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19711       if ((C->getSExtValue() >= -0x80000000LL) &&
19712           (C->getSExtValue() <= 0x7fffffffLL))
19713         weight = CW_Constant;
19714     }
19715     break;
19716   case 'Z':
19717     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19718       if (C->getZExtValue() <= 0xffffffff)
19719         weight = CW_Constant;
19720     }
19721     break;
19722   }
19723   return weight;
19724 }
19725
19726 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19727 /// with another that has more specific requirements based on the type of the
19728 /// corresponding operand.
19729 const char *X86TargetLowering::
19730 LowerXConstraint(EVT ConstraintVT) const {
19731   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19732   // 'f' like normal targets.
19733   if (ConstraintVT.isFloatingPoint()) {
19734     if (Subtarget->hasSSE2())
19735       return "Y";
19736     if (Subtarget->hasSSE1())
19737       return "x";
19738   }
19739
19740   return TargetLowering::LowerXConstraint(ConstraintVT);
19741 }
19742
19743 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19744 /// vector.  If it is invalid, don't add anything to Ops.
19745 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19746                                                      std::string &Constraint,
19747                                                      std::vector<SDValue>&Ops,
19748                                                      SelectionDAG &DAG) const {
19749   SDValue Result(0, 0);
19750
19751   // Only support length 1 constraints for now.
19752   if (Constraint.length() > 1) return;
19753
19754   char ConstraintLetter = Constraint[0];
19755   switch (ConstraintLetter) {
19756   default: break;
19757   case 'I':
19758     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19759       if (C->getZExtValue() <= 31) {
19760         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19761         break;
19762       }
19763     }
19764     return;
19765   case 'J':
19766     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19767       if (C->getZExtValue() <= 63) {
19768         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19769         break;
19770       }
19771     }
19772     return;
19773   case 'K':
19774     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19775       if (isInt<8>(C->getSExtValue())) {
19776         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19777         break;
19778       }
19779     }
19780     return;
19781   case 'N':
19782     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19783       if (C->getZExtValue() <= 255) {
19784         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19785         break;
19786       }
19787     }
19788     return;
19789   case 'e': {
19790     // 32-bit signed value
19791     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19792       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19793                                            C->getSExtValue())) {
19794         // Widen to 64 bits here to get it sign extended.
19795         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19796         break;
19797       }
19798     // FIXME gcc accepts some relocatable values here too, but only in certain
19799     // memory models; it's complicated.
19800     }
19801     return;
19802   }
19803   case 'Z': {
19804     // 32-bit unsigned value
19805     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19806       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19807                                            C->getZExtValue())) {
19808         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19809         break;
19810       }
19811     }
19812     // FIXME gcc accepts some relocatable values here too, but only in certain
19813     // memory models; it's complicated.
19814     return;
19815   }
19816   case 'i': {
19817     // Literal immediates are always ok.
19818     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19819       // Widen to 64 bits here to get it sign extended.
19820       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19821       break;
19822     }
19823
19824     // In any sort of PIC mode addresses need to be computed at runtime by
19825     // adding in a register or some sort of table lookup.  These can't
19826     // be used as immediates.
19827     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19828       return;
19829
19830     // If we are in non-pic codegen mode, we allow the address of a global (with
19831     // an optional displacement) to be used with 'i'.
19832     GlobalAddressSDNode *GA = 0;
19833     int64_t Offset = 0;
19834
19835     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19836     while (1) {
19837       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19838         Offset += GA->getOffset();
19839         break;
19840       } else if (Op.getOpcode() == ISD::ADD) {
19841         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19842           Offset += C->getZExtValue();
19843           Op = Op.getOperand(0);
19844           continue;
19845         }
19846       } else if (Op.getOpcode() == ISD::SUB) {
19847         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19848           Offset += -C->getZExtValue();
19849           Op = Op.getOperand(0);
19850           continue;
19851         }
19852       }
19853
19854       // Otherwise, this isn't something we can handle, reject it.
19855       return;
19856     }
19857
19858     const GlobalValue *GV = GA->getGlobal();
19859     // If we require an extra load to get this address, as in PIC mode, we
19860     // can't accept it.
19861     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19862                                                         getTargetMachine())))
19863       return;
19864
19865     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19866                                         GA->getValueType(0), Offset);
19867     break;
19868   }
19869   }
19870
19871   if (Result.getNode()) {
19872     Ops.push_back(Result);
19873     return;
19874   }
19875   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19876 }
19877
19878 std::pair<unsigned, const TargetRegisterClass*>
19879 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19880                                                 MVT VT) const {
19881   // First, see if this is a constraint that directly corresponds to an LLVM
19882   // register class.
19883   if (Constraint.size() == 1) {
19884     // GCC Constraint Letters
19885     switch (Constraint[0]) {
19886     default: break;
19887       // TODO: Slight differences here in allocation order and leaving
19888       // RIP in the class. Do they matter any more here than they do
19889       // in the normal allocation?
19890     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19891       if (Subtarget->is64Bit()) {
19892         if (VT == MVT::i32 || VT == MVT::f32)
19893           return std::make_pair(0U, &X86::GR32RegClass);
19894         if (VT == MVT::i16)
19895           return std::make_pair(0U, &X86::GR16RegClass);
19896         if (VT == MVT::i8 || VT == MVT::i1)
19897           return std::make_pair(0U, &X86::GR8RegClass);
19898         if (VT == MVT::i64 || VT == MVT::f64)
19899           return std::make_pair(0U, &X86::GR64RegClass);
19900         break;
19901       }
19902       // 32-bit fallthrough
19903     case 'Q':   // Q_REGS
19904       if (VT == MVT::i32 || VT == MVT::f32)
19905         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19906       if (VT == MVT::i16)
19907         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19908       if (VT == MVT::i8 || VT == MVT::i1)
19909         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19910       if (VT == MVT::i64)
19911         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19912       break;
19913     case 'r':   // GENERAL_REGS
19914     case 'l':   // INDEX_REGS
19915       if (VT == MVT::i8 || VT == MVT::i1)
19916         return std::make_pair(0U, &X86::GR8RegClass);
19917       if (VT == MVT::i16)
19918         return std::make_pair(0U, &X86::GR16RegClass);
19919       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19920         return std::make_pair(0U, &X86::GR32RegClass);
19921       return std::make_pair(0U, &X86::GR64RegClass);
19922     case 'R':   // LEGACY_REGS
19923       if (VT == MVT::i8 || VT == MVT::i1)
19924         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19925       if (VT == MVT::i16)
19926         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19927       if (VT == MVT::i32 || !Subtarget->is64Bit())
19928         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19929       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19930     case 'f':  // FP Stack registers.
19931       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19932       // value to the correct fpstack register class.
19933       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19934         return std::make_pair(0U, &X86::RFP32RegClass);
19935       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19936         return std::make_pair(0U, &X86::RFP64RegClass);
19937       return std::make_pair(0U, &X86::RFP80RegClass);
19938     case 'y':   // MMX_REGS if MMX allowed.
19939       if (!Subtarget->hasMMX()) break;
19940       return std::make_pair(0U, &X86::VR64RegClass);
19941     case 'Y':   // SSE_REGS if SSE2 allowed
19942       if (!Subtarget->hasSSE2()) break;
19943       // FALL THROUGH.
19944     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19945       if (!Subtarget->hasSSE1()) break;
19946
19947       switch (VT.SimpleTy) {
19948       default: break;
19949       // Scalar SSE types.
19950       case MVT::f32:
19951       case MVT::i32:
19952         return std::make_pair(0U, &X86::FR32RegClass);
19953       case MVT::f64:
19954       case MVT::i64:
19955         return std::make_pair(0U, &X86::FR64RegClass);
19956       // Vector types.
19957       case MVT::v16i8:
19958       case MVT::v8i16:
19959       case MVT::v4i32:
19960       case MVT::v2i64:
19961       case MVT::v4f32:
19962       case MVT::v2f64:
19963         return std::make_pair(0U, &X86::VR128RegClass);
19964       // AVX types.
19965       case MVT::v32i8:
19966       case MVT::v16i16:
19967       case MVT::v8i32:
19968       case MVT::v4i64:
19969       case MVT::v8f32:
19970       case MVT::v4f64:
19971         return std::make_pair(0U, &X86::VR256RegClass);
19972       case MVT::v8f64:
19973       case MVT::v16f32:
19974       case MVT::v16i32:
19975       case MVT::v8i64:
19976         return std::make_pair(0U, &X86::VR512RegClass);
19977       }
19978       break;
19979     }
19980   }
19981
19982   // Use the default implementation in TargetLowering to convert the register
19983   // constraint into a member of a register class.
19984   std::pair<unsigned, const TargetRegisterClass*> Res;
19985   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19986
19987   // Not found as a standard register?
19988   if (Res.second == 0) {
19989     // Map st(0) -> st(7) -> ST0
19990     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19991         tolower(Constraint[1]) == 's' &&
19992         tolower(Constraint[2]) == 't' &&
19993         Constraint[3] == '(' &&
19994         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19995         Constraint[5] == ')' &&
19996         Constraint[6] == '}') {
19997
19998       Res.first = X86::ST0+Constraint[4]-'0';
19999       Res.second = &X86::RFP80RegClass;
20000       return Res;
20001     }
20002
20003     // GCC allows "st(0)" to be called just plain "st".
20004     if (StringRef("{st}").equals_lower(Constraint)) {
20005       Res.first = X86::ST0;
20006       Res.second = &X86::RFP80RegClass;
20007       return Res;
20008     }
20009
20010     // flags -> EFLAGS
20011     if (StringRef("{flags}").equals_lower(Constraint)) {
20012       Res.first = X86::EFLAGS;
20013       Res.second = &X86::CCRRegClass;
20014       return Res;
20015     }
20016
20017     // 'A' means EAX + EDX.
20018     if (Constraint == "A") {
20019       Res.first = X86::EAX;
20020       Res.second = &X86::GR32_ADRegClass;
20021       return Res;
20022     }
20023     return Res;
20024   }
20025
20026   // Otherwise, check to see if this is a register class of the wrong value
20027   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
20028   // turn into {ax},{dx}.
20029   if (Res.second->hasType(VT))
20030     return Res;   // Correct type already, nothing to do.
20031
20032   // All of the single-register GCC register classes map their values onto
20033   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
20034   // really want an 8-bit or 32-bit register, map to the appropriate register
20035   // class and return the appropriate register.
20036   if (Res.second == &X86::GR16RegClass) {
20037     if (VT == MVT::i8 || VT == MVT::i1) {
20038       unsigned DestReg = 0;
20039       switch (Res.first) {
20040       default: break;
20041       case X86::AX: DestReg = X86::AL; break;
20042       case X86::DX: DestReg = X86::DL; break;
20043       case X86::CX: DestReg = X86::CL; break;
20044       case X86::BX: DestReg = X86::BL; break;
20045       }
20046       if (DestReg) {
20047         Res.first = DestReg;
20048         Res.second = &X86::GR8RegClass;
20049       }
20050     } else if (VT == MVT::i32 || VT == MVT::f32) {
20051       unsigned DestReg = 0;
20052       switch (Res.first) {
20053       default: break;
20054       case X86::AX: DestReg = X86::EAX; break;
20055       case X86::DX: DestReg = X86::EDX; break;
20056       case X86::CX: DestReg = X86::ECX; break;
20057       case X86::BX: DestReg = X86::EBX; break;
20058       case X86::SI: DestReg = X86::ESI; break;
20059       case X86::DI: DestReg = X86::EDI; break;
20060       case X86::BP: DestReg = X86::EBP; break;
20061       case X86::SP: DestReg = X86::ESP; break;
20062       }
20063       if (DestReg) {
20064         Res.first = DestReg;
20065         Res.second = &X86::GR32RegClass;
20066       }
20067     } else if (VT == MVT::i64 || VT == MVT::f64) {
20068       unsigned DestReg = 0;
20069       switch (Res.first) {
20070       default: break;
20071       case X86::AX: DestReg = X86::RAX; break;
20072       case X86::DX: DestReg = X86::RDX; break;
20073       case X86::CX: DestReg = X86::RCX; break;
20074       case X86::BX: DestReg = X86::RBX; break;
20075       case X86::SI: DestReg = X86::RSI; break;
20076       case X86::DI: DestReg = X86::RDI; break;
20077       case X86::BP: DestReg = X86::RBP; break;
20078       case X86::SP: DestReg = X86::RSP; break;
20079       }
20080       if (DestReg) {
20081         Res.first = DestReg;
20082         Res.second = &X86::GR64RegClass;
20083       }
20084     }
20085   } else if (Res.second == &X86::FR32RegClass ||
20086              Res.second == &X86::FR64RegClass ||
20087              Res.second == &X86::VR128RegClass ||
20088              Res.second == &X86::VR256RegClass ||
20089              Res.second == &X86::FR32XRegClass ||
20090              Res.second == &X86::FR64XRegClass ||
20091              Res.second == &X86::VR128XRegClass ||
20092              Res.second == &X86::VR256XRegClass ||
20093              Res.second == &X86::VR512RegClass) {
20094     // Handle references to XMM physical registers that got mapped into the
20095     // wrong class.  This can happen with constraints like {xmm0} where the
20096     // target independent register mapper will just pick the first match it can
20097     // find, ignoring the required type.
20098
20099     if (VT == MVT::f32 || VT == MVT::i32)
20100       Res.second = &X86::FR32RegClass;
20101     else if (VT == MVT::f64 || VT == MVT::i64)
20102       Res.second = &X86::FR64RegClass;
20103     else if (X86::VR128RegClass.hasType(VT))
20104       Res.second = &X86::VR128RegClass;
20105     else if (X86::VR256RegClass.hasType(VT))
20106       Res.second = &X86::VR256RegClass;
20107     else if (X86::VR512RegClass.hasType(VT))
20108       Res.second = &X86::VR512RegClass;
20109   }
20110
20111   return Res;
20112 }