Switch from EVT to MVT in more of the x86 instruction lowering code.
[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 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
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 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
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   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9300   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9301   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9302                              MachinePointerInfo::getConstantPool(),
9303                              false, false, false, Alignment);
9304   if (VT.isVector()) {
9305     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9306     return DAG.getNode(ISD::BITCAST, dl, VT,
9307                        DAG.getNode(ISD::AND, dl, ANDVT,
9308                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9309                                                Op.getOperand(0)),
9310                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9311   }
9312   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9313 }
9314
9315 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
9316   LLVMContext *Context = DAG.getContext();
9317   SDLoc dl(Op);
9318   MVT VT = Op.getSimpleValueType();
9319   MVT EltVT = VT;
9320   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9321   if (VT.isVector()) {
9322     EltVT = VT.getVectorElementType();
9323     NumElts = VT.getVectorNumElements();
9324   }
9325   Constant *C;
9326   if (EltVT == MVT::f64)
9327     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9328                                           APInt(64, 1ULL << 63)));
9329   else
9330     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9331                                           APInt(32, 1U << 31)));
9332   C = ConstantVector::getSplat(NumElts, C);
9333   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9334   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9335   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9336                              MachinePointerInfo::getConstantPool(),
9337                              false, false, false, Alignment);
9338   if (VT.isVector()) {
9339     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9340     return DAG.getNode(ISD::BITCAST, dl, VT,
9341                        DAG.getNode(ISD::XOR, dl, XORVT,
9342                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9343                                                Op.getOperand(0)),
9344                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9345   }
9346
9347   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9348 }
9349
9350 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
9351   LLVMContext *Context = DAG.getContext();
9352   SDValue Op0 = Op.getOperand(0);
9353   SDValue Op1 = Op.getOperand(1);
9354   SDLoc dl(Op);
9355   MVT VT = Op.getSimpleValueType();
9356   MVT SrcVT = Op1.getSimpleValueType();
9357
9358   // If second operand is smaller, extend it first.
9359   if (SrcVT.bitsLT(VT)) {
9360     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9361     SrcVT = VT;
9362   }
9363   // And if it is bigger, shrink it first.
9364   if (SrcVT.bitsGT(VT)) {
9365     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9366     SrcVT = VT;
9367   }
9368
9369   // At this point the operands and the result should have the same
9370   // type, and that won't be f80 since that is not custom lowered.
9371
9372   // First get the sign bit of second operand.
9373   SmallVector<Constant*,4> CV;
9374   if (SrcVT == MVT::f64) {
9375     const fltSemantics &Sem = APFloat::IEEEdouble;
9376     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9377     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9378   } else {
9379     const fltSemantics &Sem = APFloat::IEEEsingle;
9380     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9381     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9382     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9383     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9384   }
9385   Constant *C = ConstantVector::get(CV);
9386   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9387   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9388                               MachinePointerInfo::getConstantPool(),
9389                               false, false, false, 16);
9390   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9391
9392   // Shift sign bit right or left if the two operands have different types.
9393   if (SrcVT.bitsGT(VT)) {
9394     // Op0 is MVT::f32, Op1 is MVT::f64.
9395     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9396     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9397                           DAG.getConstant(32, MVT::i32));
9398     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9399     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9400                           DAG.getIntPtrConstant(0));
9401   }
9402
9403   // Clear first operand sign bit.
9404   CV.clear();
9405   if (VT == MVT::f64) {
9406     const fltSemantics &Sem = APFloat::IEEEdouble;
9407     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9408                                                    APInt(64, ~(1ULL << 63)))));
9409     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9410   } else {
9411     const fltSemantics &Sem = APFloat::IEEEsingle;
9412     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9413                                                    APInt(32, ~(1U << 31)))));
9414     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9415     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9416     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9417   }
9418   C = ConstantVector::get(CV);
9419   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9420   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9421                               MachinePointerInfo::getConstantPool(),
9422                               false, false, false, 16);
9423   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9424
9425   // Or the value with the sign bit.
9426   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9427 }
9428
9429 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9430   SDValue N0 = Op.getOperand(0);
9431   SDLoc dl(Op);
9432   MVT VT = Op.getSimpleValueType();
9433
9434   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9435   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9436                                   DAG.getConstant(1, VT));
9437   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9438 }
9439
9440 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9441 //
9442 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9443                                       SelectionDAG &DAG) {
9444   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9445
9446   if (!Subtarget->hasSSE41())
9447     return SDValue();
9448
9449   if (!Op->hasOneUse())
9450     return SDValue();
9451
9452   SDNode *N = Op.getNode();
9453   SDLoc DL(N);
9454
9455   SmallVector<SDValue, 8> Opnds;
9456   DenseMap<SDValue, unsigned> VecInMap;
9457   EVT VT = MVT::Other;
9458
9459   // Recognize a special case where a vector is casted into wide integer to
9460   // test all 0s.
9461   Opnds.push_back(N->getOperand(0));
9462   Opnds.push_back(N->getOperand(1));
9463
9464   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9465     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9466     // BFS traverse all OR'd operands.
9467     if (I->getOpcode() == ISD::OR) {
9468       Opnds.push_back(I->getOperand(0));
9469       Opnds.push_back(I->getOperand(1));
9470       // Re-evaluate the number of nodes to be traversed.
9471       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9472       continue;
9473     }
9474
9475     // Quit if a non-EXTRACT_VECTOR_ELT
9476     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9477       return SDValue();
9478
9479     // Quit if without a constant index.
9480     SDValue Idx = I->getOperand(1);
9481     if (!isa<ConstantSDNode>(Idx))
9482       return SDValue();
9483
9484     SDValue ExtractedFromVec = I->getOperand(0);
9485     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9486     if (M == VecInMap.end()) {
9487       VT = ExtractedFromVec.getValueType();
9488       // Quit if not 128/256-bit vector.
9489       if (!VT.is128BitVector() && !VT.is256BitVector())
9490         return SDValue();
9491       // Quit if not the same type.
9492       if (VecInMap.begin() != VecInMap.end() &&
9493           VT != VecInMap.begin()->first.getValueType())
9494         return SDValue();
9495       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9496     }
9497     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9498   }
9499
9500   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9501          "Not extracted from 128-/256-bit vector.");
9502
9503   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9504   SmallVector<SDValue, 8> VecIns;
9505
9506   for (DenseMap<SDValue, unsigned>::const_iterator
9507         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9508     // Quit if not all elements are used.
9509     if (I->second != FullMask)
9510       return SDValue();
9511     VecIns.push_back(I->first);
9512   }
9513
9514   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9515
9516   // Cast all vectors into TestVT for PTEST.
9517   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9518     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9519
9520   // If more than one full vectors are evaluated, OR them first before PTEST.
9521   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9522     // Each iteration will OR 2 nodes and append the result until there is only
9523     // 1 node left, i.e. the final OR'd value of all vectors.
9524     SDValue LHS = VecIns[Slot];
9525     SDValue RHS = VecIns[Slot + 1];
9526     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9527   }
9528
9529   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9530                      VecIns.back(), VecIns.back());
9531 }
9532
9533 /// Emit nodes that will be selected as "test Op0,Op0", or something
9534 /// equivalent.
9535 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9536                                     SelectionDAG &DAG) const {
9537   SDLoc dl(Op);
9538
9539   // CF and OF aren't always set the way we want. Determine which
9540   // of these we need.
9541   bool NeedCF = false;
9542   bool NeedOF = false;
9543   switch (X86CC) {
9544   default: break;
9545   case X86::COND_A: case X86::COND_AE:
9546   case X86::COND_B: case X86::COND_BE:
9547     NeedCF = true;
9548     break;
9549   case X86::COND_G: case X86::COND_GE:
9550   case X86::COND_L: case X86::COND_LE:
9551   case X86::COND_O: case X86::COND_NO:
9552     NeedOF = true;
9553     break;
9554   }
9555
9556   // See if we can use the EFLAGS value from the operand instead of
9557   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9558   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9559   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
9560     // Emit a CMP with 0, which is the TEST pattern.
9561     if (Op.getValueType() == MVT::i1)
9562       return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
9563                          DAG.getConstant(0, MVT::i1));
9564     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9565                        DAG.getConstant(0, Op.getValueType()));
9566   }
9567   unsigned Opcode = 0;
9568   unsigned NumOperands = 0;
9569
9570   // Truncate operations may prevent the merge of the SETCC instruction
9571   // and the arithmetic instruction before it. Attempt to truncate the operands
9572   // of the arithmetic instruction and use a reduced bit-width instruction.
9573   bool NeedTruncation = false;
9574   SDValue ArithOp = Op;
9575   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9576     SDValue Arith = Op->getOperand(0);
9577     // Both the trunc and the arithmetic op need to have one user each.
9578     if (Arith->hasOneUse())
9579       switch (Arith.getOpcode()) {
9580         default: break;
9581         case ISD::ADD:
9582         case ISD::SUB:
9583         case ISD::AND:
9584         case ISD::OR:
9585         case ISD::XOR: {
9586           NeedTruncation = true;
9587           ArithOp = Arith;
9588         }
9589       }
9590   }
9591
9592   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9593   // which may be the result of a CAST.  We use the variable 'Op', which is the
9594   // non-casted variable when we check for possible users.
9595   switch (ArithOp.getOpcode()) {
9596   case ISD::ADD:
9597     // Due to an isel shortcoming, be conservative if this add is likely to be
9598     // selected as part of a load-modify-store instruction. When the root node
9599     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9600     // uses of other nodes in the match, such as the ADD in this case. This
9601     // leads to the ADD being left around and reselected, with the result being
9602     // two adds in the output.  Alas, even if none our users are stores, that
9603     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9604     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9605     // climbing the DAG back to the root, and it doesn't seem to be worth the
9606     // effort.
9607     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9608          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9609       if (UI->getOpcode() != ISD::CopyToReg &&
9610           UI->getOpcode() != ISD::SETCC &&
9611           UI->getOpcode() != ISD::STORE)
9612         goto default_case;
9613
9614     if (ConstantSDNode *C =
9615         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9616       // An add of one will be selected as an INC.
9617       if (C->getAPIntValue() == 1) {
9618         Opcode = X86ISD::INC;
9619         NumOperands = 1;
9620         break;
9621       }
9622
9623       // An add of negative one (subtract of one) will be selected as a DEC.
9624       if (C->getAPIntValue().isAllOnesValue()) {
9625         Opcode = X86ISD::DEC;
9626         NumOperands = 1;
9627         break;
9628       }
9629     }
9630
9631     // Otherwise use a regular EFLAGS-setting add.
9632     Opcode = X86ISD::ADD;
9633     NumOperands = 2;
9634     break;
9635   case ISD::AND: {
9636     // If the primary and result isn't used, don't bother using X86ISD::AND,
9637     // because a TEST instruction will be better.
9638     bool NonFlagUse = false;
9639     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9640            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9641       SDNode *User = *UI;
9642       unsigned UOpNo = UI.getOperandNo();
9643       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9644         // Look pass truncate.
9645         UOpNo = User->use_begin().getOperandNo();
9646         User = *User->use_begin();
9647       }
9648
9649       if (User->getOpcode() != ISD::BRCOND &&
9650           User->getOpcode() != ISD::SETCC &&
9651           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9652         NonFlagUse = true;
9653         break;
9654       }
9655     }
9656
9657     if (!NonFlagUse)
9658       break;
9659   }
9660     // FALL THROUGH
9661   case ISD::SUB:
9662   case ISD::OR:
9663   case ISD::XOR:
9664     // Due to the ISEL shortcoming noted above, be conservative if this op is
9665     // likely to be selected as part of a load-modify-store instruction.
9666     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9667            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9668       if (UI->getOpcode() == ISD::STORE)
9669         goto default_case;
9670
9671     // Otherwise use a regular EFLAGS-setting instruction.
9672     switch (ArithOp.getOpcode()) {
9673     default: llvm_unreachable("unexpected operator!");
9674     case ISD::SUB: Opcode = X86ISD::SUB; break;
9675     case ISD::XOR: Opcode = X86ISD::XOR; break;
9676     case ISD::AND: Opcode = X86ISD::AND; break;
9677     case ISD::OR: {
9678       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9679         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9680         if (EFLAGS.getNode())
9681           return EFLAGS;
9682       }
9683       Opcode = X86ISD::OR;
9684       break;
9685     }
9686     }
9687
9688     NumOperands = 2;
9689     break;
9690   case X86ISD::ADD:
9691   case X86ISD::SUB:
9692   case X86ISD::INC:
9693   case X86ISD::DEC:
9694   case X86ISD::OR:
9695   case X86ISD::XOR:
9696   case X86ISD::AND:
9697     return SDValue(Op.getNode(), 1);
9698   default:
9699   default_case:
9700     break;
9701   }
9702
9703   // If we found that truncation is beneficial, perform the truncation and
9704   // update 'Op'.
9705   if (NeedTruncation) {
9706     EVT VT = Op.getValueType();
9707     SDValue WideVal = Op->getOperand(0);
9708     EVT WideVT = WideVal.getValueType();
9709     unsigned ConvertedOp = 0;
9710     // Use a target machine opcode to prevent further DAGCombine
9711     // optimizations that may separate the arithmetic operations
9712     // from the setcc node.
9713     switch (WideVal.getOpcode()) {
9714       default: break;
9715       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9716       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9717       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9718       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9719       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9720     }
9721
9722     if (ConvertedOp) {
9723       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9724       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9725         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9726         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9727         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9728       }
9729     }
9730   }
9731
9732   if (Opcode == 0)
9733     // Emit a CMP with 0, which is the TEST pattern.
9734     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9735                        DAG.getConstant(0, Op.getValueType()));
9736
9737   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9738   SmallVector<SDValue, 4> Ops;
9739   for (unsigned i = 0; i != NumOperands; ++i)
9740     Ops.push_back(Op.getOperand(i));
9741
9742   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9743   DAG.ReplaceAllUsesWith(Op, New);
9744   return SDValue(New.getNode(), 1);
9745 }
9746
9747 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9748 /// equivalent.
9749 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9750                                    SelectionDAG &DAG) const {
9751   SDLoc dl(Op0);
9752   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
9753     if (C->getAPIntValue() == 0)
9754       return EmitTest(Op0, X86CC, DAG);
9755
9756      if (Op0.getValueType() == MVT::i1) {
9757       Op0 = DAG.getNode(ISD::XOR, dl, MVT::i1, Op0,
9758                         DAG.getConstant(-1, MVT::i1));
9759       return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op0,
9760                          DAG.getConstant(0, MVT::i1));
9761      }
9762   }
9763  
9764   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9765        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9766     // Do the comparison at i32 if it's smaller. This avoids subregister
9767     // aliasing issues. Keep the smaller reference if we're optimizing for
9768     // size, however, as that'll allow better folding of memory operations.
9769     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
9770         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
9771              AttributeSet::FunctionIndex, Attribute::MinSize)) {
9772       unsigned ExtendOp =
9773           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
9774       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
9775       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
9776     }
9777     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9778     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9779     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9780                               Op0, Op1);
9781     return SDValue(Sub.getNode(), 1);
9782   }
9783   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9784 }
9785
9786 /// Convert a comparison if required by the subtarget.
9787 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9788                                                  SelectionDAG &DAG) const {
9789   // If the subtarget does not support the FUCOMI instruction, floating-point
9790   // comparisons have to be converted.
9791   if (Subtarget->hasCMov() ||
9792       Cmp.getOpcode() != X86ISD::CMP ||
9793       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9794       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9795     return Cmp;
9796
9797   // The instruction selector will select an FUCOM instruction instead of
9798   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9799   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9800   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9801   SDLoc dl(Cmp);
9802   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9803   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9804   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9805                             DAG.getConstant(8, MVT::i8));
9806   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9807   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9808 }
9809
9810 static bool isAllOnes(SDValue V) {
9811   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9812   return C && C->isAllOnesValue();
9813 }
9814
9815 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9816 /// if it's possible.
9817 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9818                                      SDLoc dl, SelectionDAG &DAG) const {
9819   SDValue Op0 = And.getOperand(0);
9820   SDValue Op1 = And.getOperand(1);
9821   if (Op0.getOpcode() == ISD::TRUNCATE)
9822     Op0 = Op0.getOperand(0);
9823   if (Op1.getOpcode() == ISD::TRUNCATE)
9824     Op1 = Op1.getOperand(0);
9825
9826   SDValue LHS, RHS;
9827   if (Op1.getOpcode() == ISD::SHL)
9828     std::swap(Op0, Op1);
9829   if (Op0.getOpcode() == ISD::SHL) {
9830     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9831       if (And00C->getZExtValue() == 1) {
9832         // If we looked past a truncate, check that it's only truncating away
9833         // known zeros.
9834         unsigned BitWidth = Op0.getValueSizeInBits();
9835         unsigned AndBitWidth = And.getValueSizeInBits();
9836         if (BitWidth > AndBitWidth) {
9837           APInt Zeros, Ones;
9838           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9839           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9840             return SDValue();
9841         }
9842         LHS = Op1;
9843         RHS = Op0.getOperand(1);
9844       }
9845   } else if (Op1.getOpcode() == ISD::Constant) {
9846     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9847     uint64_t AndRHSVal = AndRHS->getZExtValue();
9848     SDValue AndLHS = Op0;
9849
9850     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9851       LHS = AndLHS.getOperand(0);
9852       RHS = AndLHS.getOperand(1);
9853     }
9854
9855     // Use BT if the immediate can't be encoded in a TEST instruction.
9856     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9857       LHS = AndLHS;
9858       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9859     }
9860   }
9861
9862   if (LHS.getNode()) {
9863     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9864     // instruction.  Since the shift amount is in-range-or-undefined, we know
9865     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9866     // the encoding for the i16 version is larger than the i32 version.
9867     // Also promote i16 to i32 for performance / code size reason.
9868     if (LHS.getValueType() == MVT::i8 ||
9869         LHS.getValueType() == MVT::i16)
9870       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9871
9872     // If the operand types disagree, extend the shift amount to match.  Since
9873     // BT ignores high bits (like shifts) we can use anyextend.
9874     if (LHS.getValueType() != RHS.getValueType())
9875       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9876
9877     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9878     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9879     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9880                        DAG.getConstant(Cond, MVT::i8), BT);
9881   }
9882
9883   return SDValue();
9884 }
9885
9886 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9887 /// mask CMPs.
9888 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9889                               SDValue &Op1) {
9890   unsigned SSECC;
9891   bool Swap = false;
9892
9893   // SSE Condition code mapping:
9894   //  0 - EQ
9895   //  1 - LT
9896   //  2 - LE
9897   //  3 - UNORD
9898   //  4 - NEQ
9899   //  5 - NLT
9900   //  6 - NLE
9901   //  7 - ORD
9902   switch (SetCCOpcode) {
9903   default: llvm_unreachable("Unexpected SETCC condition");
9904   case ISD::SETOEQ:
9905   case ISD::SETEQ:  SSECC = 0; break;
9906   case ISD::SETOGT:
9907   case ISD::SETGT:  Swap = true; // Fallthrough
9908   case ISD::SETLT:
9909   case ISD::SETOLT: SSECC = 1; break;
9910   case ISD::SETOGE:
9911   case ISD::SETGE:  Swap = true; // Fallthrough
9912   case ISD::SETLE:
9913   case ISD::SETOLE: SSECC = 2; break;
9914   case ISD::SETUO:  SSECC = 3; break;
9915   case ISD::SETUNE:
9916   case ISD::SETNE:  SSECC = 4; break;
9917   case ISD::SETULE: Swap = true; // Fallthrough
9918   case ISD::SETUGE: SSECC = 5; break;
9919   case ISD::SETULT: Swap = true; // Fallthrough
9920   case ISD::SETUGT: SSECC = 6; break;
9921   case ISD::SETO:   SSECC = 7; break;
9922   case ISD::SETUEQ:
9923   case ISD::SETONE: SSECC = 8; break;
9924   }
9925   if (Swap)
9926     std::swap(Op0, Op1);
9927
9928   return SSECC;
9929 }
9930
9931 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9932 // ones, and then concatenate the result back.
9933 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9934   MVT VT = Op.getSimpleValueType();
9935
9936   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9937          "Unsupported value type for operation");
9938
9939   unsigned NumElems = VT.getVectorNumElements();
9940   SDLoc dl(Op);
9941   SDValue CC = Op.getOperand(2);
9942
9943   // Extract the LHS vectors
9944   SDValue LHS = Op.getOperand(0);
9945   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9946   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9947
9948   // Extract the RHS vectors
9949   SDValue RHS = Op.getOperand(1);
9950   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9951   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9952
9953   // Issue the operation on the smaller types and concatenate the result back
9954   MVT EltVT = VT.getVectorElementType();
9955   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9956   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9957                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9958                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9959 }
9960
9961 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9962   SDValue Op0 = Op.getOperand(0);
9963   SDValue Op1 = Op.getOperand(1);
9964   SDValue CC = Op.getOperand(2);
9965   MVT VT = Op.getSimpleValueType();
9966
9967   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9968          Op.getValueType().getScalarType() == MVT::i1 &&
9969          "Cannot set masked compare for this operation");
9970
9971   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9972   SDLoc dl(Op);
9973
9974   bool Unsigned = false;
9975   unsigned SSECC;
9976   switch (SetCCOpcode) {
9977   default: llvm_unreachable("Unexpected SETCC condition");
9978   case ISD::SETNE:  SSECC = 4; break;
9979   case ISD::SETEQ:  SSECC = 0; break;
9980   case ISD::SETUGT: Unsigned = true;
9981   case ISD::SETGT:  SSECC = 6; break; // NLE
9982   case ISD::SETULT: Unsigned = true;
9983   case ISD::SETLT:  SSECC = 1; break;
9984   case ISD::SETUGE: Unsigned = true;
9985   case ISD::SETGE:  SSECC = 5; break; // NLT
9986   case ISD::SETULE: Unsigned = true;
9987   case ISD::SETLE:  SSECC = 2; break;
9988   }
9989   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9990   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9991                      DAG.getConstant(SSECC, MVT::i8));
9992
9993 }
9994
9995 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9996                            SelectionDAG &DAG) {
9997   SDValue Op0 = Op.getOperand(0);
9998   SDValue Op1 = Op.getOperand(1);
9999   SDValue CC = Op.getOperand(2);
10000   MVT VT = Op.getSimpleValueType();
10001   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10002   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
10003   SDLoc dl(Op);
10004
10005   if (isFP) {
10006 #ifndef NDEBUG
10007     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
10008     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
10009 #endif
10010
10011     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
10012     unsigned Opc = X86ISD::CMPP;
10013     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
10014       assert(VT.getVectorNumElements() <= 16);
10015       Opc = X86ISD::CMPM;
10016     }
10017     // In the two special cases we can't handle, emit two comparisons.
10018     if (SSECC == 8) {
10019       unsigned CC0, CC1;
10020       unsigned CombineOpc;
10021       if (SetCCOpcode == ISD::SETUEQ) {
10022         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
10023       } else {
10024         assert(SetCCOpcode == ISD::SETONE);
10025         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
10026       }
10027
10028       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10029                                  DAG.getConstant(CC0, MVT::i8));
10030       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10031                                  DAG.getConstant(CC1, MVT::i8));
10032       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
10033     }
10034     // Handle all other FP comparisons here.
10035     return DAG.getNode(Opc, dl, VT, Op0, Op1,
10036                        DAG.getConstant(SSECC, MVT::i8));
10037   }
10038
10039   // Break 256-bit integer vector compare into smaller ones.
10040   if (VT.is256BitVector() && !Subtarget->hasInt256())
10041     return Lower256IntVSETCC(Op, DAG);
10042
10043   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
10044   EVT OpVT = Op1.getValueType();
10045   if (Subtarget->hasAVX512()) {
10046     if (Op1.getValueType().is512BitVector() ||
10047         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
10048       return LowerIntVSETCC_AVX512(Op, DAG);
10049
10050     // In AVX-512 architecture setcc returns mask with i1 elements,
10051     // But there is no compare instruction for i8 and i16 elements.
10052     // We are not talking about 512-bit operands in this case, these
10053     // types are illegal.
10054     if (MaskResult &&
10055         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
10056          OpVT.getVectorElementType().getSizeInBits() >= 8))
10057       return DAG.getNode(ISD::TRUNCATE, dl, VT,
10058                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
10059   }
10060
10061   // We are handling one of the integer comparisons here.  Since SSE only has
10062   // GT and EQ comparisons for integer, swapping operands and multiple
10063   // operations may be required for some comparisons.
10064   unsigned Opc;
10065   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
10066
10067   switch (SetCCOpcode) {
10068   default: llvm_unreachable("Unexpected SETCC condition");
10069   case ISD::SETNE:  Invert = true;
10070   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
10071   case ISD::SETLT:  Swap = true;
10072   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
10073   case ISD::SETGE:  Swap = true;
10074   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10075                     Invert = true; break;
10076   case ISD::SETULT: Swap = true;
10077   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10078                     FlipSigns = true; break;
10079   case ISD::SETUGE: Swap = true;
10080   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10081                     FlipSigns = true; Invert = true; break;
10082   }
10083
10084   // Special case: Use min/max operations for SETULE/SETUGE
10085   MVT VET = VT.getVectorElementType();
10086   bool hasMinMax =
10087        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
10088     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
10089
10090   if (hasMinMax) {
10091     switch (SetCCOpcode) {
10092     default: break;
10093     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
10094     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
10095     }
10096
10097     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
10098   }
10099
10100   if (Swap)
10101     std::swap(Op0, Op1);
10102
10103   // Check that the operation in question is available (most are plain SSE2,
10104   // but PCMPGTQ and PCMPEQQ have different requirements).
10105   if (VT == MVT::v2i64) {
10106     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
10107       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
10108
10109       // First cast everything to the right type.
10110       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10111       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10112
10113       // Since SSE has no unsigned integer comparisons, we need to flip the sign
10114       // bits of the inputs before performing those operations. The lower
10115       // compare is always unsigned.
10116       SDValue SB;
10117       if (FlipSigns) {
10118         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10119       } else {
10120         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10121         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10122         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10123                          Sign, Zero, Sign, Zero);
10124       }
10125       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10126       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
10127
10128       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10129       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10130       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10131
10132       // Create masks for only the low parts/high parts of the 64 bit integers.
10133       static const int MaskHi[] = { 1, 1, 3, 3 };
10134       static const int MaskLo[] = { 0, 0, 2, 2 };
10135       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10136       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10137       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10138
10139       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10140       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10141
10142       if (Invert)
10143         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10144
10145       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10146     }
10147
10148     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10149       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10150       // pcmpeqd + pshufd + pand.
10151       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10152
10153       // First cast everything to the right type.
10154       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10155       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10156
10157       // Do the compare.
10158       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10159
10160       // Make sure the lower and upper halves are both all-ones.
10161       static const int Mask[] = { 1, 0, 3, 2 };
10162       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10163       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10164
10165       if (Invert)
10166         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10167
10168       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10169     }
10170   }
10171
10172   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10173   // bits of the inputs before performing those operations.
10174   if (FlipSigns) {
10175     EVT EltVT = VT.getVectorElementType();
10176     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10177     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10178     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10179   }
10180
10181   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10182
10183   // If the logical-not of the result is required, perform that now.
10184   if (Invert)
10185     Result = DAG.getNOT(dl, Result, VT);
10186
10187   if (MinMax)
10188     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10189
10190   return Result;
10191 }
10192
10193 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10194
10195   MVT VT = Op.getSimpleValueType();
10196
10197   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10198
10199   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
10200          && "SetCC type must be 8-bit or 1-bit integer");
10201   SDValue Op0 = Op.getOperand(0);
10202   SDValue Op1 = Op.getOperand(1);
10203   SDLoc dl(Op);
10204   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10205
10206   // Optimize to BT if possible.
10207   // Lower (X & (1 << N)) == 0 to BT(X, N).
10208   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10209   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10210   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10211       Op1.getOpcode() == ISD::Constant &&
10212       cast<ConstantSDNode>(Op1)->isNullValue() &&
10213       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10214     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10215     if (NewSetCC.getNode())
10216       return NewSetCC;
10217   }
10218
10219   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10220   // these.
10221   if (Op1.getOpcode() == ISD::Constant &&
10222       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10223        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10224       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10225
10226     // If the input is a setcc, then reuse the input setcc or use a new one with
10227     // the inverted condition.
10228     if (Op0.getOpcode() == X86ISD::SETCC) {
10229       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10230       bool Invert = (CC == ISD::SETNE) ^
10231         cast<ConstantSDNode>(Op1)->isNullValue();
10232       if (!Invert) return Op0;
10233
10234       CCode = X86::GetOppositeBranchCondition(CCode);
10235       return DAG.getNode(X86ISD::SETCC, dl, VT,
10236                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10237     }
10238   }
10239
10240   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10241   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10242   if (X86CC == X86::COND_INVALID)
10243     return SDValue();
10244
10245   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10246   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10247   return DAG.getNode(X86ISD::SETCC, dl, VT,
10248                       DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10249 }
10250
10251 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10252 static bool isX86LogicalCmp(SDValue Op) {
10253   unsigned Opc = Op.getNode()->getOpcode();
10254   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10255       Opc == X86ISD::SAHF)
10256     return true;
10257   if (Op.getResNo() == 1 &&
10258       (Opc == X86ISD::ADD ||
10259        Opc == X86ISD::SUB ||
10260        Opc == X86ISD::ADC ||
10261        Opc == X86ISD::SBB ||
10262        Opc == X86ISD::SMUL ||
10263        Opc == X86ISD::UMUL ||
10264        Opc == X86ISD::INC ||
10265        Opc == X86ISD::DEC ||
10266        Opc == X86ISD::OR ||
10267        Opc == X86ISD::XOR ||
10268        Opc == X86ISD::AND))
10269     return true;
10270
10271   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10272     return true;
10273
10274   return false;
10275 }
10276
10277 static bool isZero(SDValue V) {
10278   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10279   return C && C->isNullValue();
10280 }
10281
10282 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10283   if (V.getOpcode() != ISD::TRUNCATE)
10284     return false;
10285
10286   SDValue VOp0 = V.getOperand(0);
10287   unsigned InBits = VOp0.getValueSizeInBits();
10288   unsigned Bits = V.getValueSizeInBits();
10289   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10290 }
10291
10292 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10293   bool addTest = true;
10294   SDValue Cond  = Op.getOperand(0);
10295   SDValue Op1 = Op.getOperand(1);
10296   SDValue Op2 = Op.getOperand(2);
10297   SDLoc DL(Op);
10298   EVT VT = Op1.getValueType();
10299   SDValue CC;
10300
10301   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10302   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10303   // sequence later on.
10304   if (Cond.getOpcode() == ISD::SETCC &&
10305       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10306        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10307       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10308     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10309     int SSECC = translateX86FSETCC(
10310         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10311
10312     if (SSECC != 8) {
10313       if (Subtarget->hasAVX512()) {
10314         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
10315                                   DAG.getConstant(SSECC, MVT::i8));
10316         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
10317       }
10318       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
10319                                 DAG.getConstant(SSECC, MVT::i8));
10320       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10321       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10322       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10323     }
10324   }
10325
10326   if (Cond.getOpcode() == ISD::SETCC) {
10327     SDValue NewCond = LowerSETCC(Cond, DAG);
10328     if (NewCond.getNode())
10329       Cond = NewCond;
10330   }
10331
10332   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10333   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10334   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10335   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10336   if (Cond.getOpcode() == X86ISD::SETCC &&
10337       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10338       isZero(Cond.getOperand(1).getOperand(1))) {
10339     SDValue Cmp = Cond.getOperand(1);
10340
10341     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10342
10343     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10344         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10345       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10346
10347       SDValue CmpOp0 = Cmp.getOperand(0);
10348       // Apply further optimizations for special cases
10349       // (select (x != 0), -1, 0) -> neg & sbb
10350       // (select (x == 0), 0, -1) -> neg & sbb
10351       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10352         if (YC->isNullValue() &&
10353             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10354           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10355           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10356                                     DAG.getConstant(0, CmpOp0.getValueType()),
10357                                     CmpOp0);
10358           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10359                                     DAG.getConstant(X86::COND_B, MVT::i8),
10360                                     SDValue(Neg.getNode(), 1));
10361           return Res;
10362         }
10363
10364       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10365                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10366       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10367
10368       SDValue Res =   // Res = 0 or -1.
10369         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10370                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10371
10372       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10373         Res = DAG.getNOT(DL, Res, Res.getValueType());
10374
10375       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10376       if (N2C == 0 || !N2C->isNullValue())
10377         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10378       return Res;
10379     }
10380   }
10381
10382   // Look past (and (setcc_carry (cmp ...)), 1).
10383   if (Cond.getOpcode() == ISD::AND &&
10384       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10385     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10386     if (C && C->getAPIntValue() == 1)
10387       Cond = Cond.getOperand(0);
10388   }
10389
10390   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10391   // setting operand in place of the X86ISD::SETCC.
10392   unsigned CondOpcode = Cond.getOpcode();
10393   if (CondOpcode == X86ISD::SETCC ||
10394       CondOpcode == X86ISD::SETCC_CARRY) {
10395     CC = Cond.getOperand(0);
10396
10397     SDValue Cmp = Cond.getOperand(1);
10398     unsigned Opc = Cmp.getOpcode();
10399     MVT VT = Op.getSimpleValueType();
10400
10401     bool IllegalFPCMov = false;
10402     if (VT.isFloatingPoint() && !VT.isVector() &&
10403         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10404       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10405
10406     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10407         Opc == X86ISD::BT) { // FIXME
10408       Cond = Cmp;
10409       addTest = false;
10410     }
10411   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10412              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10413              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10414               Cond.getOperand(0).getValueType() != MVT::i8)) {
10415     SDValue LHS = Cond.getOperand(0);
10416     SDValue RHS = Cond.getOperand(1);
10417     unsigned X86Opcode;
10418     unsigned X86Cond;
10419     SDVTList VTs;
10420     switch (CondOpcode) {
10421     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10422     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10423     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10424     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10425     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10426     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10427     default: llvm_unreachable("unexpected overflowing operator");
10428     }
10429     if (CondOpcode == ISD::UMULO)
10430       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10431                           MVT::i32);
10432     else
10433       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10434
10435     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10436
10437     if (CondOpcode == ISD::UMULO)
10438       Cond = X86Op.getValue(2);
10439     else
10440       Cond = X86Op.getValue(1);
10441
10442     CC = DAG.getConstant(X86Cond, MVT::i8);
10443     addTest = false;
10444   }
10445
10446   if (addTest) {
10447     // Look pass the truncate if the high bits are known zero.
10448     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10449         Cond = Cond.getOperand(0);
10450
10451     // We know the result of AND is compared against zero. Try to match
10452     // it to BT.
10453     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10454       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10455       if (NewSetCC.getNode()) {
10456         CC = NewSetCC.getOperand(0);
10457         Cond = NewSetCC.getOperand(1);
10458         addTest = false;
10459       }
10460     }
10461   }
10462
10463   if (addTest) {
10464     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10465     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10466   }
10467
10468   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10469   // a <  b ?  0 : -1 -> RES = setcc_carry
10470   // a >= b ? -1 :  0 -> RES = setcc_carry
10471   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10472   if (Cond.getOpcode() == X86ISD::SUB) {
10473     Cond = ConvertCmpIfNecessary(Cond, DAG);
10474     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10475
10476     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10477         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10478       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10479                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10480       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10481         return DAG.getNOT(DL, Res, Res.getValueType());
10482       return Res;
10483     }
10484   }
10485
10486   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10487   // widen the cmov and push the truncate through. This avoids introducing a new
10488   // branch during isel and doesn't add any extensions.
10489   if (Op.getValueType() == MVT::i8 &&
10490       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10491     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10492     if (T1.getValueType() == T2.getValueType() &&
10493         // Blacklist CopyFromReg to avoid partial register stalls.
10494         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10495       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10496       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10497       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10498     }
10499   }
10500
10501   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10502   // condition is true.
10503   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10504   SDValue Ops[] = { Op2, Op1, CC, Cond };
10505   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10506 }
10507
10508 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10509   MVT VT = Op->getSimpleValueType(0);
10510   SDValue In = Op->getOperand(0);
10511   MVT InVT = In.getSimpleValueType();
10512   SDLoc dl(Op);
10513
10514   unsigned int NumElts = VT.getVectorNumElements();
10515   if (NumElts != 8 && NumElts != 16)
10516     return SDValue();
10517
10518   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10519     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10520
10521   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10522   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10523
10524   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10525   Constant *C = ConstantInt::get(*DAG.getContext(),
10526     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10527
10528   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10529   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10530   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10531                           MachinePointerInfo::getConstantPool(),
10532                           false, false, false, Alignment);
10533   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10534   if (VT.is512BitVector())
10535     return Brcst;
10536   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10537 }
10538
10539 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10540                                 SelectionDAG &DAG) {
10541   MVT VT = Op->getSimpleValueType(0);
10542   SDValue In = Op->getOperand(0);
10543   MVT InVT = In.getSimpleValueType();
10544   SDLoc dl(Op);
10545
10546   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10547     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10548
10549   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10550       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10551       (VT != MVT::v16i16 || InVT != MVT::v16i8))
10552     return SDValue();
10553
10554   if (Subtarget->hasInt256())
10555     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10556
10557   // Optimize vectors in AVX mode
10558   // Sign extend  v8i16 to v8i32 and
10559   //              v4i32 to v4i64
10560   //
10561   // Divide input vector into two parts
10562   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10563   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10564   // concat the vectors to original VT
10565
10566   unsigned NumElems = InVT.getVectorNumElements();
10567   SDValue Undef = DAG.getUNDEF(InVT);
10568
10569   SmallVector<int,8> ShufMask1(NumElems, -1);
10570   for (unsigned i = 0; i != NumElems/2; ++i)
10571     ShufMask1[i] = i;
10572
10573   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10574
10575   SmallVector<int,8> ShufMask2(NumElems, -1);
10576   for (unsigned i = 0; i != NumElems/2; ++i)
10577     ShufMask2[i] = i + NumElems/2;
10578
10579   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10580
10581   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10582                                 VT.getVectorNumElements()/2);
10583
10584   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10585   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10586
10587   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10588 }
10589
10590 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10591 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10592 // from the AND / OR.
10593 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10594   Opc = Op.getOpcode();
10595   if (Opc != ISD::OR && Opc != ISD::AND)
10596     return false;
10597   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10598           Op.getOperand(0).hasOneUse() &&
10599           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10600           Op.getOperand(1).hasOneUse());
10601 }
10602
10603 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10604 // 1 and that the SETCC node has a single use.
10605 static bool isXor1OfSetCC(SDValue Op) {
10606   if (Op.getOpcode() != ISD::XOR)
10607     return false;
10608   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10609   if (N1C && N1C->getAPIntValue() == 1) {
10610     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10611       Op.getOperand(0).hasOneUse();
10612   }
10613   return false;
10614 }
10615
10616 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10617   bool addTest = true;
10618   SDValue Chain = Op.getOperand(0);
10619   SDValue Cond  = Op.getOperand(1);
10620   SDValue Dest  = Op.getOperand(2);
10621   SDLoc dl(Op);
10622   SDValue CC;
10623   bool Inverted = false;
10624
10625   if (Cond.getOpcode() == ISD::SETCC) {
10626     // Check for setcc([su]{add,sub,mul}o == 0).
10627     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10628         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10629         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10630         Cond.getOperand(0).getResNo() == 1 &&
10631         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10632          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10633          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10634          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10635          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10636          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10637       Inverted = true;
10638       Cond = Cond.getOperand(0);
10639     } else {
10640       SDValue NewCond = LowerSETCC(Cond, DAG);
10641       if (NewCond.getNode())
10642         Cond = NewCond;
10643     }
10644   }
10645 #if 0
10646   // FIXME: LowerXALUO doesn't handle these!!
10647   else if (Cond.getOpcode() == X86ISD::ADD  ||
10648            Cond.getOpcode() == X86ISD::SUB  ||
10649            Cond.getOpcode() == X86ISD::SMUL ||
10650            Cond.getOpcode() == X86ISD::UMUL)
10651     Cond = LowerXALUO(Cond, DAG);
10652 #endif
10653
10654   // Look pass (and (setcc_carry (cmp ...)), 1).
10655   if (Cond.getOpcode() == ISD::AND &&
10656       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10657     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10658     if (C && C->getAPIntValue() == 1)
10659       Cond = Cond.getOperand(0);
10660   }
10661
10662   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10663   // setting operand in place of the X86ISD::SETCC.
10664   unsigned CondOpcode = Cond.getOpcode();
10665   if (CondOpcode == X86ISD::SETCC ||
10666       CondOpcode == X86ISD::SETCC_CARRY) {
10667     CC = Cond.getOperand(0);
10668
10669     SDValue Cmp = Cond.getOperand(1);
10670     unsigned Opc = Cmp.getOpcode();
10671     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10672     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10673       Cond = Cmp;
10674       addTest = false;
10675     } else {
10676       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10677       default: break;
10678       case X86::COND_O:
10679       case X86::COND_B:
10680         // These can only come from an arithmetic instruction with overflow,
10681         // e.g. SADDO, UADDO.
10682         Cond = Cond.getNode()->getOperand(1);
10683         addTest = false;
10684         break;
10685       }
10686     }
10687   }
10688   CondOpcode = Cond.getOpcode();
10689   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10690       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10691       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10692        Cond.getOperand(0).getValueType() != MVT::i8)) {
10693     SDValue LHS = Cond.getOperand(0);
10694     SDValue RHS = Cond.getOperand(1);
10695     unsigned X86Opcode;
10696     unsigned X86Cond;
10697     SDVTList VTs;
10698     switch (CondOpcode) {
10699     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10700     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10701     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10702     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10703     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10704     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10705     default: llvm_unreachable("unexpected overflowing operator");
10706     }
10707     if (Inverted)
10708       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10709     if (CondOpcode == ISD::UMULO)
10710       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10711                           MVT::i32);
10712     else
10713       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10714
10715     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10716
10717     if (CondOpcode == ISD::UMULO)
10718       Cond = X86Op.getValue(2);
10719     else
10720       Cond = X86Op.getValue(1);
10721
10722     CC = DAG.getConstant(X86Cond, MVT::i8);
10723     addTest = false;
10724   } else {
10725     unsigned CondOpc;
10726     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10727       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10728       if (CondOpc == ISD::OR) {
10729         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10730         // two branches instead of an explicit OR instruction with a
10731         // separate test.
10732         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10733             isX86LogicalCmp(Cmp)) {
10734           CC = Cond.getOperand(0).getOperand(0);
10735           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10736                               Chain, Dest, CC, Cmp);
10737           CC = Cond.getOperand(1).getOperand(0);
10738           Cond = Cmp;
10739           addTest = false;
10740         }
10741       } else { // ISD::AND
10742         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10743         // two branches instead of an explicit AND instruction with a
10744         // separate test. However, we only do this if this block doesn't
10745         // have a fall-through edge, because this requires an explicit
10746         // jmp when the condition is false.
10747         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10748             isX86LogicalCmp(Cmp) &&
10749             Op.getNode()->hasOneUse()) {
10750           X86::CondCode CCode =
10751             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10752           CCode = X86::GetOppositeBranchCondition(CCode);
10753           CC = DAG.getConstant(CCode, MVT::i8);
10754           SDNode *User = *Op.getNode()->use_begin();
10755           // Look for an unconditional branch following this conditional branch.
10756           // We need this because we need to reverse the successors in order
10757           // to implement FCMP_OEQ.
10758           if (User->getOpcode() == ISD::BR) {
10759             SDValue FalseBB = User->getOperand(1);
10760             SDNode *NewBR =
10761               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10762             assert(NewBR == User);
10763             (void)NewBR;
10764             Dest = FalseBB;
10765
10766             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10767                                 Chain, Dest, CC, Cmp);
10768             X86::CondCode CCode =
10769               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10770             CCode = X86::GetOppositeBranchCondition(CCode);
10771             CC = DAG.getConstant(CCode, MVT::i8);
10772             Cond = Cmp;
10773             addTest = false;
10774           }
10775         }
10776       }
10777     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10778       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10779       // It should be transformed during dag combiner except when the condition
10780       // is set by a arithmetics with overflow node.
10781       X86::CondCode CCode =
10782         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10783       CCode = X86::GetOppositeBranchCondition(CCode);
10784       CC = DAG.getConstant(CCode, MVT::i8);
10785       Cond = Cond.getOperand(0).getOperand(1);
10786       addTest = false;
10787     } else if (Cond.getOpcode() == ISD::SETCC &&
10788                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10789       // For FCMP_OEQ, we can emit
10790       // two branches instead of an explicit AND instruction with a
10791       // separate test. However, we only do this if this block doesn't
10792       // have a fall-through edge, because this requires an explicit
10793       // jmp when the condition is false.
10794       if (Op.getNode()->hasOneUse()) {
10795         SDNode *User = *Op.getNode()->use_begin();
10796         // Look for an unconditional branch following this conditional branch.
10797         // We need this because we need to reverse the successors in order
10798         // to implement FCMP_OEQ.
10799         if (User->getOpcode() == ISD::BR) {
10800           SDValue FalseBB = User->getOperand(1);
10801           SDNode *NewBR =
10802             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10803           assert(NewBR == User);
10804           (void)NewBR;
10805           Dest = FalseBB;
10806
10807           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10808                                     Cond.getOperand(0), Cond.getOperand(1));
10809           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10810           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10811           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10812                               Chain, Dest, CC, Cmp);
10813           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10814           Cond = Cmp;
10815           addTest = false;
10816         }
10817       }
10818     } else if (Cond.getOpcode() == ISD::SETCC &&
10819                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10820       // For FCMP_UNE, we can emit
10821       // two branches instead of an explicit AND instruction with a
10822       // separate test. However, we only do this if this block doesn't
10823       // have a fall-through edge, because this requires an explicit
10824       // jmp when the condition is false.
10825       if (Op.getNode()->hasOneUse()) {
10826         SDNode *User = *Op.getNode()->use_begin();
10827         // Look for an unconditional branch following this conditional branch.
10828         // We need this because we need to reverse the successors in order
10829         // to implement FCMP_UNE.
10830         if (User->getOpcode() == ISD::BR) {
10831           SDValue FalseBB = User->getOperand(1);
10832           SDNode *NewBR =
10833             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10834           assert(NewBR == User);
10835           (void)NewBR;
10836
10837           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10838                                     Cond.getOperand(0), Cond.getOperand(1));
10839           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10840           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10841           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10842                               Chain, Dest, CC, Cmp);
10843           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10844           Cond = Cmp;
10845           addTest = false;
10846           Dest = FalseBB;
10847         }
10848       }
10849     }
10850   }
10851
10852   if (addTest) {
10853     // Look pass the truncate if the high bits are known zero.
10854     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10855         Cond = Cond.getOperand(0);
10856
10857     // We know the result of AND is compared against zero. Try to match
10858     // it to BT.
10859     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10860       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10861       if (NewSetCC.getNode()) {
10862         CC = NewSetCC.getOperand(0);
10863         Cond = NewSetCC.getOperand(1);
10864         addTest = false;
10865       }
10866     }
10867   }
10868
10869   if (addTest) {
10870     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10871     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10872   }
10873   Cond = ConvertCmpIfNecessary(Cond, DAG);
10874   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10875                      Chain, Dest, CC, Cond);
10876 }
10877
10878 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10879 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10880 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10881 // that the guard pages used by the OS virtual memory manager are allocated in
10882 // correct sequence.
10883 SDValue
10884 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10885                                            SelectionDAG &DAG) const {
10886   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10887           getTargetMachine().Options.EnableSegmentedStacks) &&
10888          "This should be used only on Windows targets or when segmented stacks "
10889          "are being used");
10890   assert(!Subtarget->isTargetMacho() && "Not implemented");
10891   SDLoc dl(Op);
10892
10893   // Get the inputs.
10894   SDValue Chain = Op.getOperand(0);
10895   SDValue Size  = Op.getOperand(1);
10896   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10897   EVT VT = Op.getNode()->getValueType(0);
10898
10899   bool Is64Bit = Subtarget->is64Bit();
10900   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10901
10902   if (getTargetMachine().Options.EnableSegmentedStacks) {
10903     MachineFunction &MF = DAG.getMachineFunction();
10904     MachineRegisterInfo &MRI = MF.getRegInfo();
10905
10906     if (Is64Bit) {
10907       // The 64 bit implementation of segmented stacks needs to clobber both r10
10908       // r11. This makes it impossible to use it along with nested parameters.
10909       const Function *F = MF.getFunction();
10910
10911       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10912            I != E; ++I)
10913         if (I->hasNestAttr())
10914           report_fatal_error("Cannot use segmented stacks with functions that "
10915                              "have nested arguments.");
10916     }
10917
10918     const TargetRegisterClass *AddrRegClass =
10919       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10920     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10921     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10922     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10923                                 DAG.getRegister(Vreg, SPTy));
10924     SDValue Ops1[2] = { Value, Chain };
10925     return DAG.getMergeValues(Ops1, 2, dl);
10926   } else {
10927     SDValue Flag;
10928     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10929
10930     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10931     Flag = Chain.getValue(1);
10932     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10933
10934     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10935
10936     const X86RegisterInfo *RegInfo =
10937       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10938     unsigned SPReg = RegInfo->getStackRegister();
10939     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10940     Chain = SP.getValue(1);
10941
10942     if (Align) {
10943       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10944                        DAG.getConstant(-(uint64_t)Align, VT));
10945       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10946     }
10947
10948     SDValue Ops1[2] = { SP, Chain };
10949     return DAG.getMergeValues(Ops1, 2, dl);
10950   }
10951 }
10952
10953 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10954   MachineFunction &MF = DAG.getMachineFunction();
10955   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10956
10957   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10958   SDLoc DL(Op);
10959
10960   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10961     // vastart just stores the address of the VarArgsFrameIndex slot into the
10962     // memory location argument.
10963     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10964                                    getPointerTy());
10965     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10966                         MachinePointerInfo(SV), false, false, 0);
10967   }
10968
10969   // __va_list_tag:
10970   //   gp_offset         (0 - 6 * 8)
10971   //   fp_offset         (48 - 48 + 8 * 16)
10972   //   overflow_arg_area (point to parameters coming in memory).
10973   //   reg_save_area
10974   SmallVector<SDValue, 8> MemOps;
10975   SDValue FIN = Op.getOperand(1);
10976   // Store gp_offset
10977   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10978                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10979                                                MVT::i32),
10980                                FIN, MachinePointerInfo(SV), false, false, 0);
10981   MemOps.push_back(Store);
10982
10983   // Store fp_offset
10984   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10985                     FIN, DAG.getIntPtrConstant(4));
10986   Store = DAG.getStore(Op.getOperand(0), DL,
10987                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10988                                        MVT::i32),
10989                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
10990   MemOps.push_back(Store);
10991
10992   // Store ptr to overflow_arg_area
10993   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
10994                     FIN, DAG.getIntPtrConstant(4));
10995   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10996                                     getPointerTy());
10997   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10998                        MachinePointerInfo(SV, 8),
10999                        false, false, 0);
11000   MemOps.push_back(Store);
11001
11002   // Store ptr to reg_save_area.
11003   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11004                     FIN, DAG.getIntPtrConstant(8));
11005   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
11006                                     getPointerTy());
11007   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
11008                        MachinePointerInfo(SV, 16), false, false, 0);
11009   MemOps.push_back(Store);
11010   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
11011                      &MemOps[0], MemOps.size());
11012 }
11013
11014 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
11015   assert(Subtarget->is64Bit() &&
11016          "LowerVAARG only handles 64-bit va_arg!");
11017   assert((Subtarget->isTargetLinux() ||
11018           Subtarget->isTargetDarwin()) &&
11019           "Unhandled target in LowerVAARG");
11020   assert(Op.getNode()->getNumOperands() == 4);
11021   SDValue Chain = Op.getOperand(0);
11022   SDValue SrcPtr = Op.getOperand(1);
11023   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11024   unsigned Align = Op.getConstantOperandVal(3);
11025   SDLoc dl(Op);
11026
11027   EVT ArgVT = Op.getNode()->getValueType(0);
11028   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11029   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
11030   uint8_t ArgMode;
11031
11032   // Decide which area this value should be read from.
11033   // TODO: Implement the AMD64 ABI in its entirety. This simple
11034   // selection mechanism works only for the basic types.
11035   if (ArgVT == MVT::f80) {
11036     llvm_unreachable("va_arg for f80 not yet implemented");
11037   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
11038     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
11039   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
11040     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
11041   } else {
11042     llvm_unreachable("Unhandled argument type in LowerVAARG");
11043   }
11044
11045   if (ArgMode == 2) {
11046     // Sanity Check: Make sure using fp_offset makes sense.
11047     assert(!getTargetMachine().Options.UseSoftFloat &&
11048            !(DAG.getMachineFunction()
11049                 .getFunction()->getAttributes()
11050                 .hasAttribute(AttributeSet::FunctionIndex,
11051                               Attribute::NoImplicitFloat)) &&
11052            Subtarget->hasSSE1());
11053   }
11054
11055   // Insert VAARG_64 node into the DAG
11056   // VAARG_64 returns two values: Variable Argument Address, Chain
11057   SmallVector<SDValue, 11> InstOps;
11058   InstOps.push_back(Chain);
11059   InstOps.push_back(SrcPtr);
11060   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11061   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
11062   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
11063   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
11064   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
11065                                           VTs, &InstOps[0], InstOps.size(),
11066                                           MVT::i64,
11067                                           MachinePointerInfo(SV),
11068                                           /*Align=*/0,
11069                                           /*Volatile=*/false,
11070                                           /*ReadMem=*/true,
11071                                           /*WriteMem=*/true);
11072   Chain = VAARG.getValue(1);
11073
11074   // Load the next argument and return it
11075   return DAG.getLoad(ArgVT, dl,
11076                      Chain,
11077                      VAARG,
11078                      MachinePointerInfo(),
11079                      false, false, false, 0);
11080 }
11081
11082 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
11083                            SelectionDAG &DAG) {
11084   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
11085   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
11086   SDValue Chain = Op.getOperand(0);
11087   SDValue DstPtr = Op.getOperand(1);
11088   SDValue SrcPtr = Op.getOperand(2);
11089   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
11090   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11091   SDLoc DL(Op);
11092
11093   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
11094                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
11095                        false,
11096                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
11097 }
11098
11099 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
11100 // amount is a constant. Takes immediate version of shift as input.
11101 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
11102                                           SDValue SrcOp, uint64_t ShiftAmt,
11103                                           SelectionDAG &DAG) {
11104   MVT ElementType = VT.getVectorElementType();
11105
11106   // Check for ShiftAmt >= element width
11107   if (ShiftAmt >= ElementType.getSizeInBits()) {
11108     if (Opc == X86ISD::VSRAI)
11109       ShiftAmt = ElementType.getSizeInBits() - 1;
11110     else
11111       return DAG.getConstant(0, VT);
11112   }
11113
11114   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
11115          && "Unknown target vector shift-by-constant node");
11116
11117   // Fold this packed vector shift into a build vector if SrcOp is a
11118   // vector of ConstantSDNodes or UNDEFs.
11119   if (ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
11120     SmallVector<SDValue, 8> Elts;
11121     unsigned NumElts = SrcOp->getNumOperands();
11122     ConstantSDNode *ND;
11123
11124     switch(Opc) {
11125     default: llvm_unreachable(0);
11126     case X86ISD::VSHLI:
11127       for (unsigned i=0; i!=NumElts; ++i) {
11128         SDValue CurrentOp = SrcOp->getOperand(i);
11129         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11130           Elts.push_back(CurrentOp);
11131           continue;
11132         }
11133         ND = cast<ConstantSDNode>(CurrentOp);
11134         const APInt &C = ND->getAPIntValue();
11135         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
11136       }
11137       break;
11138     case X86ISD::VSRLI:
11139       for (unsigned i=0; i!=NumElts; ++i) {
11140         SDValue CurrentOp = SrcOp->getOperand(i);
11141         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11142           Elts.push_back(CurrentOp);
11143           continue;
11144         }
11145         ND = cast<ConstantSDNode>(CurrentOp);
11146         const APInt &C = ND->getAPIntValue();
11147         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
11148       }
11149       break;
11150     case X86ISD::VSRAI:
11151       for (unsigned i=0; i!=NumElts; ++i) {
11152         SDValue CurrentOp = SrcOp->getOperand(i);
11153         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11154           Elts.push_back(CurrentOp);
11155           continue;
11156         }
11157         ND = cast<ConstantSDNode>(CurrentOp);
11158         const APInt &C = ND->getAPIntValue();
11159         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
11160       }
11161       break;
11162     }
11163
11164     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Elts[0], NumElts);
11165   }
11166
11167   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
11168 }
11169
11170 // getTargetVShiftNode - Handle vector element shifts where the shift amount
11171 // may or may not be a constant. Takes immediate version of shift as input.
11172 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
11173                                    SDValue SrcOp, SDValue ShAmt,
11174                                    SelectionDAG &DAG) {
11175   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11176
11177   // Catch shift-by-constant.
11178   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11179     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11180                                       CShAmt->getZExtValue(), DAG);
11181
11182   // Change opcode to non-immediate version
11183   switch (Opc) {
11184     default: llvm_unreachable("Unknown target vector shift node");
11185     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11186     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11187     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11188   }
11189
11190   // Need to build a vector containing shift amount
11191   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11192   SDValue ShOps[4];
11193   ShOps[0] = ShAmt;
11194   ShOps[1] = DAG.getConstant(0, MVT::i32);
11195   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
11196   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
11197
11198   // The return type has to be a 128-bit type with the same element
11199   // type as the input type.
11200   MVT EltVT = VT.getVectorElementType();
11201   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11202
11203   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11204   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11205 }
11206
11207 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11208   SDLoc dl(Op);
11209   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11210   switch (IntNo) {
11211   default: return SDValue();    // Don't custom lower most intrinsics.
11212   // Comparison intrinsics.
11213   case Intrinsic::x86_sse_comieq_ss:
11214   case Intrinsic::x86_sse_comilt_ss:
11215   case Intrinsic::x86_sse_comile_ss:
11216   case Intrinsic::x86_sse_comigt_ss:
11217   case Intrinsic::x86_sse_comige_ss:
11218   case Intrinsic::x86_sse_comineq_ss:
11219   case Intrinsic::x86_sse_ucomieq_ss:
11220   case Intrinsic::x86_sse_ucomilt_ss:
11221   case Intrinsic::x86_sse_ucomile_ss:
11222   case Intrinsic::x86_sse_ucomigt_ss:
11223   case Intrinsic::x86_sse_ucomige_ss:
11224   case Intrinsic::x86_sse_ucomineq_ss:
11225   case Intrinsic::x86_sse2_comieq_sd:
11226   case Intrinsic::x86_sse2_comilt_sd:
11227   case Intrinsic::x86_sse2_comile_sd:
11228   case Intrinsic::x86_sse2_comigt_sd:
11229   case Intrinsic::x86_sse2_comige_sd:
11230   case Intrinsic::x86_sse2_comineq_sd:
11231   case Intrinsic::x86_sse2_ucomieq_sd:
11232   case Intrinsic::x86_sse2_ucomilt_sd:
11233   case Intrinsic::x86_sse2_ucomile_sd:
11234   case Intrinsic::x86_sse2_ucomigt_sd:
11235   case Intrinsic::x86_sse2_ucomige_sd:
11236   case Intrinsic::x86_sse2_ucomineq_sd: {
11237     unsigned Opc;
11238     ISD::CondCode CC;
11239     switch (IntNo) {
11240     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11241     case Intrinsic::x86_sse_comieq_ss:
11242     case Intrinsic::x86_sse2_comieq_sd:
11243       Opc = X86ISD::COMI;
11244       CC = ISD::SETEQ;
11245       break;
11246     case Intrinsic::x86_sse_comilt_ss:
11247     case Intrinsic::x86_sse2_comilt_sd:
11248       Opc = X86ISD::COMI;
11249       CC = ISD::SETLT;
11250       break;
11251     case Intrinsic::x86_sse_comile_ss:
11252     case Intrinsic::x86_sse2_comile_sd:
11253       Opc = X86ISD::COMI;
11254       CC = ISD::SETLE;
11255       break;
11256     case Intrinsic::x86_sse_comigt_ss:
11257     case Intrinsic::x86_sse2_comigt_sd:
11258       Opc = X86ISD::COMI;
11259       CC = ISD::SETGT;
11260       break;
11261     case Intrinsic::x86_sse_comige_ss:
11262     case Intrinsic::x86_sse2_comige_sd:
11263       Opc = X86ISD::COMI;
11264       CC = ISD::SETGE;
11265       break;
11266     case Intrinsic::x86_sse_comineq_ss:
11267     case Intrinsic::x86_sse2_comineq_sd:
11268       Opc = X86ISD::COMI;
11269       CC = ISD::SETNE;
11270       break;
11271     case Intrinsic::x86_sse_ucomieq_ss:
11272     case Intrinsic::x86_sse2_ucomieq_sd:
11273       Opc = X86ISD::UCOMI;
11274       CC = ISD::SETEQ;
11275       break;
11276     case Intrinsic::x86_sse_ucomilt_ss:
11277     case Intrinsic::x86_sse2_ucomilt_sd:
11278       Opc = X86ISD::UCOMI;
11279       CC = ISD::SETLT;
11280       break;
11281     case Intrinsic::x86_sse_ucomile_ss:
11282     case Intrinsic::x86_sse2_ucomile_sd:
11283       Opc = X86ISD::UCOMI;
11284       CC = ISD::SETLE;
11285       break;
11286     case Intrinsic::x86_sse_ucomigt_ss:
11287     case Intrinsic::x86_sse2_ucomigt_sd:
11288       Opc = X86ISD::UCOMI;
11289       CC = ISD::SETGT;
11290       break;
11291     case Intrinsic::x86_sse_ucomige_ss:
11292     case Intrinsic::x86_sse2_ucomige_sd:
11293       Opc = X86ISD::UCOMI;
11294       CC = ISD::SETGE;
11295       break;
11296     case Intrinsic::x86_sse_ucomineq_ss:
11297     case Intrinsic::x86_sse2_ucomineq_sd:
11298       Opc = X86ISD::UCOMI;
11299       CC = ISD::SETNE;
11300       break;
11301     }
11302
11303     SDValue LHS = Op.getOperand(1);
11304     SDValue RHS = Op.getOperand(2);
11305     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11306     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11307     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11308     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11309                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11310     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11311   }
11312
11313   // Arithmetic intrinsics.
11314   case Intrinsic::x86_sse2_pmulu_dq:
11315   case Intrinsic::x86_avx2_pmulu_dq:
11316     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11317                        Op.getOperand(1), Op.getOperand(2));
11318
11319   // SSE2/AVX2 sub with unsigned saturation intrinsics
11320   case Intrinsic::x86_sse2_psubus_b:
11321   case Intrinsic::x86_sse2_psubus_w:
11322   case Intrinsic::x86_avx2_psubus_b:
11323   case Intrinsic::x86_avx2_psubus_w:
11324     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11325                        Op.getOperand(1), Op.getOperand(2));
11326
11327   // SSE3/AVX horizontal add/sub intrinsics
11328   case Intrinsic::x86_sse3_hadd_ps:
11329   case Intrinsic::x86_sse3_hadd_pd:
11330   case Intrinsic::x86_avx_hadd_ps_256:
11331   case Intrinsic::x86_avx_hadd_pd_256:
11332   case Intrinsic::x86_sse3_hsub_ps:
11333   case Intrinsic::x86_sse3_hsub_pd:
11334   case Intrinsic::x86_avx_hsub_ps_256:
11335   case Intrinsic::x86_avx_hsub_pd_256:
11336   case Intrinsic::x86_ssse3_phadd_w_128:
11337   case Intrinsic::x86_ssse3_phadd_d_128:
11338   case Intrinsic::x86_avx2_phadd_w:
11339   case Intrinsic::x86_avx2_phadd_d:
11340   case Intrinsic::x86_ssse3_phsub_w_128:
11341   case Intrinsic::x86_ssse3_phsub_d_128:
11342   case Intrinsic::x86_avx2_phsub_w:
11343   case Intrinsic::x86_avx2_phsub_d: {
11344     unsigned Opcode;
11345     switch (IntNo) {
11346     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11347     case Intrinsic::x86_sse3_hadd_ps:
11348     case Intrinsic::x86_sse3_hadd_pd:
11349     case Intrinsic::x86_avx_hadd_ps_256:
11350     case Intrinsic::x86_avx_hadd_pd_256:
11351       Opcode = X86ISD::FHADD;
11352       break;
11353     case Intrinsic::x86_sse3_hsub_ps:
11354     case Intrinsic::x86_sse3_hsub_pd:
11355     case Intrinsic::x86_avx_hsub_ps_256:
11356     case Intrinsic::x86_avx_hsub_pd_256:
11357       Opcode = X86ISD::FHSUB;
11358       break;
11359     case Intrinsic::x86_ssse3_phadd_w_128:
11360     case Intrinsic::x86_ssse3_phadd_d_128:
11361     case Intrinsic::x86_avx2_phadd_w:
11362     case Intrinsic::x86_avx2_phadd_d:
11363       Opcode = X86ISD::HADD;
11364       break;
11365     case Intrinsic::x86_ssse3_phsub_w_128:
11366     case Intrinsic::x86_ssse3_phsub_d_128:
11367     case Intrinsic::x86_avx2_phsub_w:
11368     case Intrinsic::x86_avx2_phsub_d:
11369       Opcode = X86ISD::HSUB;
11370       break;
11371     }
11372     return DAG.getNode(Opcode, dl, Op.getValueType(),
11373                        Op.getOperand(1), Op.getOperand(2));
11374   }
11375
11376   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11377   case Intrinsic::x86_sse2_pmaxu_b:
11378   case Intrinsic::x86_sse41_pmaxuw:
11379   case Intrinsic::x86_sse41_pmaxud:
11380   case Intrinsic::x86_avx2_pmaxu_b:
11381   case Intrinsic::x86_avx2_pmaxu_w:
11382   case Intrinsic::x86_avx2_pmaxu_d:
11383   case Intrinsic::x86_avx512_pmaxu_d:
11384   case Intrinsic::x86_avx512_pmaxu_q:
11385   case Intrinsic::x86_sse2_pminu_b:
11386   case Intrinsic::x86_sse41_pminuw:
11387   case Intrinsic::x86_sse41_pminud:
11388   case Intrinsic::x86_avx2_pminu_b:
11389   case Intrinsic::x86_avx2_pminu_w:
11390   case Intrinsic::x86_avx2_pminu_d:
11391   case Intrinsic::x86_avx512_pminu_d:
11392   case Intrinsic::x86_avx512_pminu_q:
11393   case Intrinsic::x86_sse41_pmaxsb:
11394   case Intrinsic::x86_sse2_pmaxs_w:
11395   case Intrinsic::x86_sse41_pmaxsd:
11396   case Intrinsic::x86_avx2_pmaxs_b:
11397   case Intrinsic::x86_avx2_pmaxs_w:
11398   case Intrinsic::x86_avx2_pmaxs_d:
11399   case Intrinsic::x86_avx512_pmaxs_d:
11400   case Intrinsic::x86_avx512_pmaxs_q:
11401   case Intrinsic::x86_sse41_pminsb:
11402   case Intrinsic::x86_sse2_pmins_w:
11403   case Intrinsic::x86_sse41_pminsd:
11404   case Intrinsic::x86_avx2_pmins_b:
11405   case Intrinsic::x86_avx2_pmins_w:
11406   case Intrinsic::x86_avx2_pmins_d:
11407   case Intrinsic::x86_avx512_pmins_d:
11408   case Intrinsic::x86_avx512_pmins_q: {
11409     unsigned Opcode;
11410     switch (IntNo) {
11411     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11412     case Intrinsic::x86_sse2_pmaxu_b:
11413     case Intrinsic::x86_sse41_pmaxuw:
11414     case Intrinsic::x86_sse41_pmaxud:
11415     case Intrinsic::x86_avx2_pmaxu_b:
11416     case Intrinsic::x86_avx2_pmaxu_w:
11417     case Intrinsic::x86_avx2_pmaxu_d:
11418     case Intrinsic::x86_avx512_pmaxu_d:
11419     case Intrinsic::x86_avx512_pmaxu_q:
11420       Opcode = X86ISD::UMAX;
11421       break;
11422     case Intrinsic::x86_sse2_pminu_b:
11423     case Intrinsic::x86_sse41_pminuw:
11424     case Intrinsic::x86_sse41_pminud:
11425     case Intrinsic::x86_avx2_pminu_b:
11426     case Intrinsic::x86_avx2_pminu_w:
11427     case Intrinsic::x86_avx2_pminu_d:
11428     case Intrinsic::x86_avx512_pminu_d:
11429     case Intrinsic::x86_avx512_pminu_q:
11430       Opcode = X86ISD::UMIN;
11431       break;
11432     case Intrinsic::x86_sse41_pmaxsb:
11433     case Intrinsic::x86_sse2_pmaxs_w:
11434     case Intrinsic::x86_sse41_pmaxsd:
11435     case Intrinsic::x86_avx2_pmaxs_b:
11436     case Intrinsic::x86_avx2_pmaxs_w:
11437     case Intrinsic::x86_avx2_pmaxs_d:
11438     case Intrinsic::x86_avx512_pmaxs_d:
11439     case Intrinsic::x86_avx512_pmaxs_q:
11440       Opcode = X86ISD::SMAX;
11441       break;
11442     case Intrinsic::x86_sse41_pminsb:
11443     case Intrinsic::x86_sse2_pmins_w:
11444     case Intrinsic::x86_sse41_pminsd:
11445     case Intrinsic::x86_avx2_pmins_b:
11446     case Intrinsic::x86_avx2_pmins_w:
11447     case Intrinsic::x86_avx2_pmins_d:
11448     case Intrinsic::x86_avx512_pmins_d:
11449     case Intrinsic::x86_avx512_pmins_q:
11450       Opcode = X86ISD::SMIN;
11451       break;
11452     }
11453     return DAG.getNode(Opcode, dl, Op.getValueType(),
11454                        Op.getOperand(1), Op.getOperand(2));
11455   }
11456
11457   // SSE/SSE2/AVX floating point max/min intrinsics.
11458   case Intrinsic::x86_sse_max_ps:
11459   case Intrinsic::x86_sse2_max_pd:
11460   case Intrinsic::x86_avx_max_ps_256:
11461   case Intrinsic::x86_avx_max_pd_256:
11462   case Intrinsic::x86_avx512_max_ps_512:
11463   case Intrinsic::x86_avx512_max_pd_512:
11464   case Intrinsic::x86_sse_min_ps:
11465   case Intrinsic::x86_sse2_min_pd:
11466   case Intrinsic::x86_avx_min_ps_256:
11467   case Intrinsic::x86_avx_min_pd_256:
11468   case Intrinsic::x86_avx512_min_ps_512:
11469   case Intrinsic::x86_avx512_min_pd_512:  {
11470     unsigned Opcode;
11471     switch (IntNo) {
11472     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11473     case Intrinsic::x86_sse_max_ps:
11474     case Intrinsic::x86_sse2_max_pd:
11475     case Intrinsic::x86_avx_max_ps_256:
11476     case Intrinsic::x86_avx_max_pd_256:
11477     case Intrinsic::x86_avx512_max_ps_512:
11478     case Intrinsic::x86_avx512_max_pd_512:
11479       Opcode = X86ISD::FMAX;
11480       break;
11481     case Intrinsic::x86_sse_min_ps:
11482     case Intrinsic::x86_sse2_min_pd:
11483     case Intrinsic::x86_avx_min_ps_256:
11484     case Intrinsic::x86_avx_min_pd_256:
11485     case Intrinsic::x86_avx512_min_ps_512:
11486     case Intrinsic::x86_avx512_min_pd_512:
11487       Opcode = X86ISD::FMIN;
11488       break;
11489     }
11490     return DAG.getNode(Opcode, dl, Op.getValueType(),
11491                        Op.getOperand(1), Op.getOperand(2));
11492   }
11493
11494   // AVX2 variable shift intrinsics
11495   case Intrinsic::x86_avx2_psllv_d:
11496   case Intrinsic::x86_avx2_psllv_q:
11497   case Intrinsic::x86_avx2_psllv_d_256:
11498   case Intrinsic::x86_avx2_psllv_q_256:
11499   case Intrinsic::x86_avx2_psrlv_d:
11500   case Intrinsic::x86_avx2_psrlv_q:
11501   case Intrinsic::x86_avx2_psrlv_d_256:
11502   case Intrinsic::x86_avx2_psrlv_q_256:
11503   case Intrinsic::x86_avx2_psrav_d:
11504   case Intrinsic::x86_avx2_psrav_d_256: {
11505     unsigned Opcode;
11506     switch (IntNo) {
11507     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11508     case Intrinsic::x86_avx2_psllv_d:
11509     case Intrinsic::x86_avx2_psllv_q:
11510     case Intrinsic::x86_avx2_psllv_d_256:
11511     case Intrinsic::x86_avx2_psllv_q_256:
11512       Opcode = ISD::SHL;
11513       break;
11514     case Intrinsic::x86_avx2_psrlv_d:
11515     case Intrinsic::x86_avx2_psrlv_q:
11516     case Intrinsic::x86_avx2_psrlv_d_256:
11517     case Intrinsic::x86_avx2_psrlv_q_256:
11518       Opcode = ISD::SRL;
11519       break;
11520     case Intrinsic::x86_avx2_psrav_d:
11521     case Intrinsic::x86_avx2_psrav_d_256:
11522       Opcode = ISD::SRA;
11523       break;
11524     }
11525     return DAG.getNode(Opcode, dl, Op.getValueType(),
11526                        Op.getOperand(1), Op.getOperand(2));
11527   }
11528
11529   case Intrinsic::x86_ssse3_pshuf_b_128:
11530   case Intrinsic::x86_avx2_pshuf_b:
11531     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11532                        Op.getOperand(1), Op.getOperand(2));
11533
11534   case Intrinsic::x86_ssse3_psign_b_128:
11535   case Intrinsic::x86_ssse3_psign_w_128:
11536   case Intrinsic::x86_ssse3_psign_d_128:
11537   case Intrinsic::x86_avx2_psign_b:
11538   case Intrinsic::x86_avx2_psign_w:
11539   case Intrinsic::x86_avx2_psign_d:
11540     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11541                        Op.getOperand(1), Op.getOperand(2));
11542
11543   case Intrinsic::x86_sse41_insertps:
11544     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11545                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11546
11547   case Intrinsic::x86_avx_vperm2f128_ps_256:
11548   case Intrinsic::x86_avx_vperm2f128_pd_256:
11549   case Intrinsic::x86_avx_vperm2f128_si_256:
11550   case Intrinsic::x86_avx2_vperm2i128:
11551     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11552                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11553
11554   case Intrinsic::x86_avx2_permd:
11555   case Intrinsic::x86_avx2_permps:
11556     // Operands intentionally swapped. Mask is last operand to intrinsic,
11557     // but second operand for node/instruction.
11558     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11559                        Op.getOperand(2), Op.getOperand(1));
11560
11561   case Intrinsic::x86_sse_sqrt_ps:
11562   case Intrinsic::x86_sse2_sqrt_pd:
11563   case Intrinsic::x86_avx_sqrt_ps_256:
11564   case Intrinsic::x86_avx_sqrt_pd_256:
11565     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11566
11567   // ptest and testp intrinsics. The intrinsic these come from are designed to
11568   // return an integer value, not just an instruction so lower it to the ptest
11569   // or testp pattern and a setcc for the result.
11570   case Intrinsic::x86_sse41_ptestz:
11571   case Intrinsic::x86_sse41_ptestc:
11572   case Intrinsic::x86_sse41_ptestnzc:
11573   case Intrinsic::x86_avx_ptestz_256:
11574   case Intrinsic::x86_avx_ptestc_256:
11575   case Intrinsic::x86_avx_ptestnzc_256:
11576   case Intrinsic::x86_avx_vtestz_ps:
11577   case Intrinsic::x86_avx_vtestc_ps:
11578   case Intrinsic::x86_avx_vtestnzc_ps:
11579   case Intrinsic::x86_avx_vtestz_pd:
11580   case Intrinsic::x86_avx_vtestc_pd:
11581   case Intrinsic::x86_avx_vtestnzc_pd:
11582   case Intrinsic::x86_avx_vtestz_ps_256:
11583   case Intrinsic::x86_avx_vtestc_ps_256:
11584   case Intrinsic::x86_avx_vtestnzc_ps_256:
11585   case Intrinsic::x86_avx_vtestz_pd_256:
11586   case Intrinsic::x86_avx_vtestc_pd_256:
11587   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11588     bool IsTestPacked = false;
11589     unsigned X86CC;
11590     switch (IntNo) {
11591     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11592     case Intrinsic::x86_avx_vtestz_ps:
11593     case Intrinsic::x86_avx_vtestz_pd:
11594     case Intrinsic::x86_avx_vtestz_ps_256:
11595     case Intrinsic::x86_avx_vtestz_pd_256:
11596       IsTestPacked = true; // Fallthrough
11597     case Intrinsic::x86_sse41_ptestz:
11598     case Intrinsic::x86_avx_ptestz_256:
11599       // ZF = 1
11600       X86CC = X86::COND_E;
11601       break;
11602     case Intrinsic::x86_avx_vtestc_ps:
11603     case Intrinsic::x86_avx_vtestc_pd:
11604     case Intrinsic::x86_avx_vtestc_ps_256:
11605     case Intrinsic::x86_avx_vtestc_pd_256:
11606       IsTestPacked = true; // Fallthrough
11607     case Intrinsic::x86_sse41_ptestc:
11608     case Intrinsic::x86_avx_ptestc_256:
11609       // CF = 1
11610       X86CC = X86::COND_B;
11611       break;
11612     case Intrinsic::x86_avx_vtestnzc_ps:
11613     case Intrinsic::x86_avx_vtestnzc_pd:
11614     case Intrinsic::x86_avx_vtestnzc_ps_256:
11615     case Intrinsic::x86_avx_vtestnzc_pd_256:
11616       IsTestPacked = true; // Fallthrough
11617     case Intrinsic::x86_sse41_ptestnzc:
11618     case Intrinsic::x86_avx_ptestnzc_256:
11619       // ZF and CF = 0
11620       X86CC = X86::COND_A;
11621       break;
11622     }
11623
11624     SDValue LHS = Op.getOperand(1);
11625     SDValue RHS = Op.getOperand(2);
11626     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11627     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11628     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11629     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11630     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11631   }
11632   case Intrinsic::x86_avx512_kortestz_w:
11633   case Intrinsic::x86_avx512_kortestc_w: {
11634     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
11635     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11636     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11637     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11638     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11639     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
11640     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11641   }
11642
11643   // SSE/AVX shift intrinsics
11644   case Intrinsic::x86_sse2_psll_w:
11645   case Intrinsic::x86_sse2_psll_d:
11646   case Intrinsic::x86_sse2_psll_q:
11647   case Intrinsic::x86_avx2_psll_w:
11648   case Intrinsic::x86_avx2_psll_d:
11649   case Intrinsic::x86_avx2_psll_q:
11650   case Intrinsic::x86_sse2_psrl_w:
11651   case Intrinsic::x86_sse2_psrl_d:
11652   case Intrinsic::x86_sse2_psrl_q:
11653   case Intrinsic::x86_avx2_psrl_w:
11654   case Intrinsic::x86_avx2_psrl_d:
11655   case Intrinsic::x86_avx2_psrl_q:
11656   case Intrinsic::x86_sse2_psra_w:
11657   case Intrinsic::x86_sse2_psra_d:
11658   case Intrinsic::x86_avx2_psra_w:
11659   case Intrinsic::x86_avx2_psra_d: {
11660     unsigned Opcode;
11661     switch (IntNo) {
11662     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11663     case Intrinsic::x86_sse2_psll_w:
11664     case Intrinsic::x86_sse2_psll_d:
11665     case Intrinsic::x86_sse2_psll_q:
11666     case Intrinsic::x86_avx2_psll_w:
11667     case Intrinsic::x86_avx2_psll_d:
11668     case Intrinsic::x86_avx2_psll_q:
11669       Opcode = X86ISD::VSHL;
11670       break;
11671     case Intrinsic::x86_sse2_psrl_w:
11672     case Intrinsic::x86_sse2_psrl_d:
11673     case Intrinsic::x86_sse2_psrl_q:
11674     case Intrinsic::x86_avx2_psrl_w:
11675     case Intrinsic::x86_avx2_psrl_d:
11676     case Intrinsic::x86_avx2_psrl_q:
11677       Opcode = X86ISD::VSRL;
11678       break;
11679     case Intrinsic::x86_sse2_psra_w:
11680     case Intrinsic::x86_sse2_psra_d:
11681     case Intrinsic::x86_avx2_psra_w:
11682     case Intrinsic::x86_avx2_psra_d:
11683       Opcode = X86ISD::VSRA;
11684       break;
11685     }
11686     return DAG.getNode(Opcode, dl, Op.getValueType(),
11687                        Op.getOperand(1), Op.getOperand(2));
11688   }
11689
11690   // SSE/AVX immediate shift intrinsics
11691   case Intrinsic::x86_sse2_pslli_w:
11692   case Intrinsic::x86_sse2_pslli_d:
11693   case Intrinsic::x86_sse2_pslli_q:
11694   case Intrinsic::x86_avx2_pslli_w:
11695   case Intrinsic::x86_avx2_pslli_d:
11696   case Intrinsic::x86_avx2_pslli_q:
11697   case Intrinsic::x86_sse2_psrli_w:
11698   case Intrinsic::x86_sse2_psrli_d:
11699   case Intrinsic::x86_sse2_psrli_q:
11700   case Intrinsic::x86_avx2_psrli_w:
11701   case Intrinsic::x86_avx2_psrli_d:
11702   case Intrinsic::x86_avx2_psrli_q:
11703   case Intrinsic::x86_sse2_psrai_w:
11704   case Intrinsic::x86_sse2_psrai_d:
11705   case Intrinsic::x86_avx2_psrai_w:
11706   case Intrinsic::x86_avx2_psrai_d: {
11707     unsigned Opcode;
11708     switch (IntNo) {
11709     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11710     case Intrinsic::x86_sse2_pslli_w:
11711     case Intrinsic::x86_sse2_pslli_d:
11712     case Intrinsic::x86_sse2_pslli_q:
11713     case Intrinsic::x86_avx2_pslli_w:
11714     case Intrinsic::x86_avx2_pslli_d:
11715     case Intrinsic::x86_avx2_pslli_q:
11716       Opcode = X86ISD::VSHLI;
11717       break;
11718     case Intrinsic::x86_sse2_psrli_w:
11719     case Intrinsic::x86_sse2_psrli_d:
11720     case Intrinsic::x86_sse2_psrli_q:
11721     case Intrinsic::x86_avx2_psrli_w:
11722     case Intrinsic::x86_avx2_psrli_d:
11723     case Intrinsic::x86_avx2_psrli_q:
11724       Opcode = X86ISD::VSRLI;
11725       break;
11726     case Intrinsic::x86_sse2_psrai_w:
11727     case Intrinsic::x86_sse2_psrai_d:
11728     case Intrinsic::x86_avx2_psrai_w:
11729     case Intrinsic::x86_avx2_psrai_d:
11730       Opcode = X86ISD::VSRAI;
11731       break;
11732     }
11733     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
11734                                Op.getOperand(1), Op.getOperand(2), DAG);
11735   }
11736
11737   case Intrinsic::x86_sse42_pcmpistria128:
11738   case Intrinsic::x86_sse42_pcmpestria128:
11739   case Intrinsic::x86_sse42_pcmpistric128:
11740   case Intrinsic::x86_sse42_pcmpestric128:
11741   case Intrinsic::x86_sse42_pcmpistrio128:
11742   case Intrinsic::x86_sse42_pcmpestrio128:
11743   case Intrinsic::x86_sse42_pcmpistris128:
11744   case Intrinsic::x86_sse42_pcmpestris128:
11745   case Intrinsic::x86_sse42_pcmpistriz128:
11746   case Intrinsic::x86_sse42_pcmpestriz128: {
11747     unsigned Opcode;
11748     unsigned X86CC;
11749     switch (IntNo) {
11750     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11751     case Intrinsic::x86_sse42_pcmpistria128:
11752       Opcode = X86ISD::PCMPISTRI;
11753       X86CC = X86::COND_A;
11754       break;
11755     case Intrinsic::x86_sse42_pcmpestria128:
11756       Opcode = X86ISD::PCMPESTRI;
11757       X86CC = X86::COND_A;
11758       break;
11759     case Intrinsic::x86_sse42_pcmpistric128:
11760       Opcode = X86ISD::PCMPISTRI;
11761       X86CC = X86::COND_B;
11762       break;
11763     case Intrinsic::x86_sse42_pcmpestric128:
11764       Opcode = X86ISD::PCMPESTRI;
11765       X86CC = X86::COND_B;
11766       break;
11767     case Intrinsic::x86_sse42_pcmpistrio128:
11768       Opcode = X86ISD::PCMPISTRI;
11769       X86CC = X86::COND_O;
11770       break;
11771     case Intrinsic::x86_sse42_pcmpestrio128:
11772       Opcode = X86ISD::PCMPESTRI;
11773       X86CC = X86::COND_O;
11774       break;
11775     case Intrinsic::x86_sse42_pcmpistris128:
11776       Opcode = X86ISD::PCMPISTRI;
11777       X86CC = X86::COND_S;
11778       break;
11779     case Intrinsic::x86_sse42_pcmpestris128:
11780       Opcode = X86ISD::PCMPESTRI;
11781       X86CC = X86::COND_S;
11782       break;
11783     case Intrinsic::x86_sse42_pcmpistriz128:
11784       Opcode = X86ISD::PCMPISTRI;
11785       X86CC = X86::COND_E;
11786       break;
11787     case Intrinsic::x86_sse42_pcmpestriz128:
11788       Opcode = X86ISD::PCMPESTRI;
11789       X86CC = X86::COND_E;
11790       break;
11791     }
11792     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11793     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11794     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11795     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11796                                 DAG.getConstant(X86CC, MVT::i8),
11797                                 SDValue(PCMP.getNode(), 1));
11798     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11799   }
11800
11801   case Intrinsic::x86_sse42_pcmpistri128:
11802   case Intrinsic::x86_sse42_pcmpestri128: {
11803     unsigned Opcode;
11804     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11805       Opcode = X86ISD::PCMPISTRI;
11806     else
11807       Opcode = X86ISD::PCMPESTRI;
11808
11809     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11810     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11811     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11812   }
11813   case Intrinsic::x86_fma_vfmadd_ps:
11814   case Intrinsic::x86_fma_vfmadd_pd:
11815   case Intrinsic::x86_fma_vfmsub_ps:
11816   case Intrinsic::x86_fma_vfmsub_pd:
11817   case Intrinsic::x86_fma_vfnmadd_ps:
11818   case Intrinsic::x86_fma_vfnmadd_pd:
11819   case Intrinsic::x86_fma_vfnmsub_ps:
11820   case Intrinsic::x86_fma_vfnmsub_pd:
11821   case Intrinsic::x86_fma_vfmaddsub_ps:
11822   case Intrinsic::x86_fma_vfmaddsub_pd:
11823   case Intrinsic::x86_fma_vfmsubadd_ps:
11824   case Intrinsic::x86_fma_vfmsubadd_pd:
11825   case Intrinsic::x86_fma_vfmadd_ps_256:
11826   case Intrinsic::x86_fma_vfmadd_pd_256:
11827   case Intrinsic::x86_fma_vfmsub_ps_256:
11828   case Intrinsic::x86_fma_vfmsub_pd_256:
11829   case Intrinsic::x86_fma_vfnmadd_ps_256:
11830   case Intrinsic::x86_fma_vfnmadd_pd_256:
11831   case Intrinsic::x86_fma_vfnmsub_ps_256:
11832   case Intrinsic::x86_fma_vfnmsub_pd_256:
11833   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11834   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11835   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11836   case Intrinsic::x86_fma_vfmsubadd_pd_256:
11837   case Intrinsic::x86_fma_vfmadd_ps_512:
11838   case Intrinsic::x86_fma_vfmadd_pd_512:
11839   case Intrinsic::x86_fma_vfmsub_ps_512:
11840   case Intrinsic::x86_fma_vfmsub_pd_512:
11841   case Intrinsic::x86_fma_vfnmadd_ps_512:
11842   case Intrinsic::x86_fma_vfnmadd_pd_512:
11843   case Intrinsic::x86_fma_vfnmsub_ps_512:
11844   case Intrinsic::x86_fma_vfnmsub_pd_512:
11845   case Intrinsic::x86_fma_vfmaddsub_ps_512:
11846   case Intrinsic::x86_fma_vfmaddsub_pd_512:
11847   case Intrinsic::x86_fma_vfmsubadd_ps_512:
11848   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
11849     unsigned Opc;
11850     switch (IntNo) {
11851     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11852     case Intrinsic::x86_fma_vfmadd_ps:
11853     case Intrinsic::x86_fma_vfmadd_pd:
11854     case Intrinsic::x86_fma_vfmadd_ps_256:
11855     case Intrinsic::x86_fma_vfmadd_pd_256:
11856     case Intrinsic::x86_fma_vfmadd_ps_512:
11857     case Intrinsic::x86_fma_vfmadd_pd_512:
11858       Opc = X86ISD::FMADD;
11859       break;
11860     case Intrinsic::x86_fma_vfmsub_ps:
11861     case Intrinsic::x86_fma_vfmsub_pd:
11862     case Intrinsic::x86_fma_vfmsub_ps_256:
11863     case Intrinsic::x86_fma_vfmsub_pd_256:
11864     case Intrinsic::x86_fma_vfmsub_ps_512:
11865     case Intrinsic::x86_fma_vfmsub_pd_512:
11866       Opc = X86ISD::FMSUB;
11867       break;
11868     case Intrinsic::x86_fma_vfnmadd_ps:
11869     case Intrinsic::x86_fma_vfnmadd_pd:
11870     case Intrinsic::x86_fma_vfnmadd_ps_256:
11871     case Intrinsic::x86_fma_vfnmadd_pd_256:
11872     case Intrinsic::x86_fma_vfnmadd_ps_512:
11873     case Intrinsic::x86_fma_vfnmadd_pd_512:
11874       Opc = X86ISD::FNMADD;
11875       break;
11876     case Intrinsic::x86_fma_vfnmsub_ps:
11877     case Intrinsic::x86_fma_vfnmsub_pd:
11878     case Intrinsic::x86_fma_vfnmsub_ps_256:
11879     case Intrinsic::x86_fma_vfnmsub_pd_256:
11880     case Intrinsic::x86_fma_vfnmsub_ps_512:
11881     case Intrinsic::x86_fma_vfnmsub_pd_512:
11882       Opc = X86ISD::FNMSUB;
11883       break;
11884     case Intrinsic::x86_fma_vfmaddsub_ps:
11885     case Intrinsic::x86_fma_vfmaddsub_pd:
11886     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11887     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11888     case Intrinsic::x86_fma_vfmaddsub_ps_512:
11889     case Intrinsic::x86_fma_vfmaddsub_pd_512:
11890       Opc = X86ISD::FMADDSUB;
11891       break;
11892     case Intrinsic::x86_fma_vfmsubadd_ps:
11893     case Intrinsic::x86_fma_vfmsubadd_pd:
11894     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11895     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11896     case Intrinsic::x86_fma_vfmsubadd_ps_512:
11897     case Intrinsic::x86_fma_vfmsubadd_pd_512:
11898       Opc = X86ISD::FMSUBADD;
11899       break;
11900     }
11901
11902     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11903                        Op.getOperand(2), Op.getOperand(3));
11904   }
11905   }
11906 }
11907
11908 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11909                              SDValue Base, SDValue Index,
11910                              SDValue ScaleOp, SDValue Chain,
11911                              const X86Subtarget * Subtarget) {
11912   SDLoc dl(Op);
11913   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11914   assert(C && "Invalid scale type");
11915   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11916   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11917   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11918                              Index.getSimpleValueType().getVectorNumElements());
11919   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11920   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11921   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11922   SDValue Segment = DAG.getRegister(0, MVT::i32);
11923   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11924   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11925   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11926   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11927 }
11928
11929 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11930                               SDValue Src, SDValue Mask, SDValue Base,
11931                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11932                               const X86Subtarget * Subtarget) {
11933   SDLoc dl(Op);
11934   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11935   assert(C && "Invalid scale type");
11936   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11937   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11938                              Index.getSimpleValueType().getVectorNumElements());
11939   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11940   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11941   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11942   SDValue Segment = DAG.getRegister(0, MVT::i32);
11943   if (Src.getOpcode() == ISD::UNDEF)
11944     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11945   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11946   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11947   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11948   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11949 }
11950
11951 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11952                               SDValue Src, SDValue Base, SDValue Index,
11953                               SDValue ScaleOp, SDValue Chain) {
11954   SDLoc dl(Op);
11955   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11956   assert(C && "Invalid scale type");
11957   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11958   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11959   SDValue Segment = DAG.getRegister(0, MVT::i32);
11960   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11961                              Index.getSimpleValueType().getVectorNumElements());
11962   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11963   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11964   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11965   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11966   return SDValue(Res, 1);
11967 }
11968
11969 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11970                                SDValue Src, SDValue Mask, SDValue Base,
11971                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11972   SDLoc dl(Op);
11973   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11974   assert(C && "Invalid scale type");
11975   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11976   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11977   SDValue Segment = DAG.getRegister(0, MVT::i32);
11978   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11979                              Index.getSimpleValueType().getVectorNumElements());
11980   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11981   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11982   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11983   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11984   return SDValue(Res, 1);
11985 }
11986
11987 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11988                                       SelectionDAG &DAG) {
11989   SDLoc dl(Op);
11990   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11991   switch (IntNo) {
11992   default: return SDValue();    // Don't custom lower most intrinsics.
11993
11994   // RDRAND/RDSEED intrinsics.
11995   case Intrinsic::x86_rdrand_16:
11996   case Intrinsic::x86_rdrand_32:
11997   case Intrinsic::x86_rdrand_64:
11998   case Intrinsic::x86_rdseed_16:
11999   case Intrinsic::x86_rdseed_32:
12000   case Intrinsic::x86_rdseed_64: {
12001     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
12002                        IntNo == Intrinsic::x86_rdseed_32 ||
12003                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
12004                                                             X86ISD::RDRAND;
12005     // Emit the node with the right value type.
12006     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
12007     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
12008
12009     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
12010     // Otherwise return the value from Rand, which is always 0, casted to i32.
12011     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
12012                       DAG.getConstant(1, Op->getValueType(1)),
12013                       DAG.getConstant(X86::COND_B, MVT::i32),
12014                       SDValue(Result.getNode(), 1) };
12015     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
12016                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
12017                                   Ops, array_lengthof(Ops));
12018
12019     // Return { result, isValid, chain }.
12020     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12021                        SDValue(Result.getNode(), 2));
12022   }
12023   //int_gather(index, base, scale);
12024   case Intrinsic::x86_avx512_gather_qpd_512:
12025   case Intrinsic::x86_avx512_gather_qps_512:
12026   case Intrinsic::x86_avx512_gather_dpd_512:
12027   case Intrinsic::x86_avx512_gather_qpi_512:
12028   case Intrinsic::x86_avx512_gather_qpq_512:
12029   case Intrinsic::x86_avx512_gather_dpq_512:
12030   case Intrinsic::x86_avx512_gather_dps_512:
12031   case Intrinsic::x86_avx512_gather_dpi_512: {
12032     unsigned Opc;
12033     switch (IntNo) {
12034     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12035     case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
12036     case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
12037     case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
12038     case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
12039     case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
12040     case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
12041     case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
12042     case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
12043     }
12044     SDValue Chain = Op.getOperand(0);
12045     SDValue Index = Op.getOperand(2);
12046     SDValue Base  = Op.getOperand(3);
12047     SDValue Scale = Op.getOperand(4);
12048     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
12049   }
12050   //int_gather_mask(v1, mask, index, base, scale);
12051   case Intrinsic::x86_avx512_gather_qps_mask_512:
12052   case Intrinsic::x86_avx512_gather_qpd_mask_512:
12053   case Intrinsic::x86_avx512_gather_dpd_mask_512:
12054   case Intrinsic::x86_avx512_gather_dps_mask_512:
12055   case Intrinsic::x86_avx512_gather_qpi_mask_512:
12056   case Intrinsic::x86_avx512_gather_qpq_mask_512:
12057   case Intrinsic::x86_avx512_gather_dpi_mask_512:
12058   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
12059     unsigned Opc;
12060     switch (IntNo) {
12061     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12062     case Intrinsic::x86_avx512_gather_qps_mask_512:
12063       Opc = X86::VGATHERQPSZrm; break;
12064     case Intrinsic::x86_avx512_gather_qpd_mask_512:
12065       Opc = X86::VGATHERQPDZrm; break;
12066     case Intrinsic::x86_avx512_gather_dpd_mask_512:
12067       Opc = X86::VGATHERDPDZrm; break;
12068     case Intrinsic::x86_avx512_gather_dps_mask_512:
12069       Opc = X86::VGATHERDPSZrm; break;
12070     case Intrinsic::x86_avx512_gather_qpi_mask_512:
12071       Opc = X86::VPGATHERQDZrm; break;
12072     case Intrinsic::x86_avx512_gather_qpq_mask_512:
12073       Opc = X86::VPGATHERQQZrm; break;
12074     case Intrinsic::x86_avx512_gather_dpi_mask_512:
12075       Opc = X86::VPGATHERDDZrm; break;
12076     case Intrinsic::x86_avx512_gather_dpq_mask_512:
12077       Opc = X86::VPGATHERDQZrm; break;
12078     }
12079     SDValue Chain = Op.getOperand(0);
12080     SDValue Src   = Op.getOperand(2);
12081     SDValue Mask  = Op.getOperand(3);
12082     SDValue Index = Op.getOperand(4);
12083     SDValue Base  = Op.getOperand(5);
12084     SDValue Scale = Op.getOperand(6);
12085     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12086                           Subtarget);
12087   }
12088   //int_scatter(base, index, v1, scale);
12089   case Intrinsic::x86_avx512_scatter_qpd_512:
12090   case Intrinsic::x86_avx512_scatter_qps_512:
12091   case Intrinsic::x86_avx512_scatter_dpd_512:
12092   case Intrinsic::x86_avx512_scatter_qpi_512:
12093   case Intrinsic::x86_avx512_scatter_qpq_512:
12094   case Intrinsic::x86_avx512_scatter_dpq_512:
12095   case Intrinsic::x86_avx512_scatter_dps_512:
12096   case Intrinsic::x86_avx512_scatter_dpi_512: {
12097     unsigned Opc;
12098     switch (IntNo) {
12099     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12100     case Intrinsic::x86_avx512_scatter_qpd_512:
12101       Opc = X86::VSCATTERQPDZmr; break;
12102     case Intrinsic::x86_avx512_scatter_qps_512:
12103       Opc = X86::VSCATTERQPSZmr; break;
12104     case Intrinsic::x86_avx512_scatter_dpd_512:
12105       Opc = X86::VSCATTERDPDZmr; break;
12106     case Intrinsic::x86_avx512_scatter_dps_512:
12107       Opc = X86::VSCATTERDPSZmr; break;
12108     case Intrinsic::x86_avx512_scatter_qpi_512:
12109       Opc = X86::VPSCATTERQDZmr; break;
12110     case Intrinsic::x86_avx512_scatter_qpq_512:
12111       Opc = X86::VPSCATTERQQZmr; break;
12112     case Intrinsic::x86_avx512_scatter_dpq_512:
12113       Opc = X86::VPSCATTERDQZmr; break;
12114     case Intrinsic::x86_avx512_scatter_dpi_512:
12115       Opc = X86::VPSCATTERDDZmr; break;
12116     }
12117     SDValue Chain = Op.getOperand(0);
12118     SDValue Base  = Op.getOperand(2);
12119     SDValue Index = Op.getOperand(3);
12120     SDValue Src   = Op.getOperand(4);
12121     SDValue Scale = Op.getOperand(5);
12122     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
12123   }
12124   //int_scatter_mask(base, mask, index, v1, scale);
12125   case Intrinsic::x86_avx512_scatter_qps_mask_512:
12126   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12127   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12128   case Intrinsic::x86_avx512_scatter_dps_mask_512:
12129   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12130   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12131   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12132   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
12133     unsigned Opc;
12134     switch (IntNo) {
12135     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12136     case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12137       Opc = X86::VSCATTERQPDZmr; break;
12138     case Intrinsic::x86_avx512_scatter_qps_mask_512:
12139       Opc = X86::VSCATTERQPSZmr; break;
12140     case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12141       Opc = X86::VSCATTERDPDZmr; break;
12142     case Intrinsic::x86_avx512_scatter_dps_mask_512:
12143       Opc = X86::VSCATTERDPSZmr; break;
12144     case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12145       Opc = X86::VPSCATTERQDZmr; break;
12146     case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12147       Opc = X86::VPSCATTERQQZmr; break;
12148     case Intrinsic::x86_avx512_scatter_dpq_mask_512:
12149       Opc = X86::VPSCATTERDQZmr; break;
12150     case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12151       Opc = X86::VPSCATTERDDZmr; break;
12152     }
12153     SDValue Chain = Op.getOperand(0);
12154     SDValue Base  = Op.getOperand(2);
12155     SDValue Mask  = Op.getOperand(3);
12156     SDValue Index = Op.getOperand(4);
12157     SDValue Src   = Op.getOperand(5);
12158     SDValue Scale = Op.getOperand(6);
12159     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12160   }
12161   // XTEST intrinsics.
12162   case Intrinsic::x86_xtest: {
12163     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12164     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12165     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12166                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12167                                 InTrans);
12168     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12169     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12170                        Ret, SDValue(InTrans.getNode(), 1));
12171   }
12172   }
12173 }
12174
12175 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12176                                            SelectionDAG &DAG) const {
12177   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12178   MFI->setReturnAddressIsTaken(true);
12179
12180   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12181   SDLoc dl(Op);
12182   EVT PtrVT = getPointerTy();
12183
12184   if (Depth > 0) {
12185     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12186     const X86RegisterInfo *RegInfo =
12187       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12188     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12189     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12190                        DAG.getNode(ISD::ADD, dl, PtrVT,
12191                                    FrameAddr, Offset),
12192                        MachinePointerInfo(), false, false, false, 0);
12193   }
12194
12195   // Just load the return address.
12196   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12197   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12198                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12199 }
12200
12201 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12202   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12203   MFI->setFrameAddressIsTaken(true);
12204
12205   EVT VT = Op.getValueType();
12206   SDLoc dl(Op);  // FIXME probably not meaningful
12207   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12208   const X86RegisterInfo *RegInfo =
12209     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12210   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12211   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12212           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12213          "Invalid Frame Register!");
12214   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12215   while (Depth--)
12216     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12217                             MachinePointerInfo(),
12218                             false, false, false, 0);
12219   return FrameAddr;
12220 }
12221
12222 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12223                                                      SelectionDAG &DAG) const {
12224   const X86RegisterInfo *RegInfo =
12225     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12226   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12227 }
12228
12229 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12230   SDValue Chain     = Op.getOperand(0);
12231   SDValue Offset    = Op.getOperand(1);
12232   SDValue Handler   = Op.getOperand(2);
12233   SDLoc dl      (Op);
12234
12235   EVT PtrVT = getPointerTy();
12236   const X86RegisterInfo *RegInfo =
12237     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12238   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12239   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12240           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12241          "Invalid Frame Register!");
12242   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12243   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12244
12245   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12246                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12247   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12248   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12249                        false, false, 0);
12250   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12251
12252   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12253                      DAG.getRegister(StoreAddrReg, PtrVT));
12254 }
12255
12256 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12257                                                SelectionDAG &DAG) const {
12258   SDLoc DL(Op);
12259   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12260                      DAG.getVTList(MVT::i32, MVT::Other),
12261                      Op.getOperand(0), Op.getOperand(1));
12262 }
12263
12264 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12265                                                 SelectionDAG &DAG) const {
12266   SDLoc DL(Op);
12267   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12268                      Op.getOperand(0), Op.getOperand(1));
12269 }
12270
12271 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12272   return Op.getOperand(0);
12273 }
12274
12275 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12276                                                 SelectionDAG &DAG) const {
12277   SDValue Root = Op.getOperand(0);
12278   SDValue Trmp = Op.getOperand(1); // trampoline
12279   SDValue FPtr = Op.getOperand(2); // nested function
12280   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12281   SDLoc dl (Op);
12282
12283   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12284   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12285
12286   if (Subtarget->is64Bit()) {
12287     SDValue OutChains[6];
12288
12289     // Large code-model.
12290     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12291     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12292
12293     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12294     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12295
12296     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12297
12298     // Load the pointer to the nested function into R11.
12299     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12300     SDValue Addr = Trmp;
12301     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12302                                 Addr, MachinePointerInfo(TrmpAddr),
12303                                 false, false, 0);
12304
12305     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12306                        DAG.getConstant(2, MVT::i64));
12307     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12308                                 MachinePointerInfo(TrmpAddr, 2),
12309                                 false, false, 2);
12310
12311     // Load the 'nest' parameter value into R10.
12312     // R10 is specified in X86CallingConv.td
12313     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12314     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12315                        DAG.getConstant(10, MVT::i64));
12316     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12317                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12318                                 false, false, 0);
12319
12320     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12321                        DAG.getConstant(12, MVT::i64));
12322     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12323                                 MachinePointerInfo(TrmpAddr, 12),
12324                                 false, false, 2);
12325
12326     // Jump to the nested function.
12327     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12328     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12329                        DAG.getConstant(20, MVT::i64));
12330     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12331                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12332                                 false, false, 0);
12333
12334     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12335     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12336                        DAG.getConstant(22, MVT::i64));
12337     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12338                                 MachinePointerInfo(TrmpAddr, 22),
12339                                 false, false, 0);
12340
12341     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12342   } else {
12343     const Function *Func =
12344       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12345     CallingConv::ID CC = Func->getCallingConv();
12346     unsigned NestReg;
12347
12348     switch (CC) {
12349     default:
12350       llvm_unreachable("Unsupported calling convention");
12351     case CallingConv::C:
12352     case CallingConv::X86_StdCall: {
12353       // Pass 'nest' parameter in ECX.
12354       // Must be kept in sync with X86CallingConv.td
12355       NestReg = X86::ECX;
12356
12357       // Check that ECX wasn't needed by an 'inreg' parameter.
12358       FunctionType *FTy = Func->getFunctionType();
12359       const AttributeSet &Attrs = Func->getAttributes();
12360
12361       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12362         unsigned InRegCount = 0;
12363         unsigned Idx = 1;
12364
12365         for (FunctionType::param_iterator I = FTy->param_begin(),
12366              E = FTy->param_end(); I != E; ++I, ++Idx)
12367           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12368             // FIXME: should only count parameters that are lowered to integers.
12369             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12370
12371         if (InRegCount > 2) {
12372           report_fatal_error("Nest register in use - reduce number of inreg"
12373                              " parameters!");
12374         }
12375       }
12376       break;
12377     }
12378     case CallingConv::X86_FastCall:
12379     case CallingConv::X86_ThisCall:
12380     case CallingConv::Fast:
12381       // Pass 'nest' parameter in EAX.
12382       // Must be kept in sync with X86CallingConv.td
12383       NestReg = X86::EAX;
12384       break;
12385     }
12386
12387     SDValue OutChains[4];
12388     SDValue Addr, Disp;
12389
12390     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12391                        DAG.getConstant(10, MVT::i32));
12392     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12393
12394     // This is storing the opcode for MOV32ri.
12395     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12396     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12397     OutChains[0] = DAG.getStore(Root, dl,
12398                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12399                                 Trmp, MachinePointerInfo(TrmpAddr),
12400                                 false, false, 0);
12401
12402     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12403                        DAG.getConstant(1, MVT::i32));
12404     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12405                                 MachinePointerInfo(TrmpAddr, 1),
12406                                 false, false, 1);
12407
12408     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12409     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12410                        DAG.getConstant(5, MVT::i32));
12411     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12412                                 MachinePointerInfo(TrmpAddr, 5),
12413                                 false, false, 1);
12414
12415     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12416                        DAG.getConstant(6, MVT::i32));
12417     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12418                                 MachinePointerInfo(TrmpAddr, 6),
12419                                 false, false, 1);
12420
12421     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12422   }
12423 }
12424
12425 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12426                                             SelectionDAG &DAG) const {
12427   /*
12428    The rounding mode is in bits 11:10 of FPSR, and has the following
12429    settings:
12430      00 Round to nearest
12431      01 Round to -inf
12432      10 Round to +inf
12433      11 Round to 0
12434
12435   FLT_ROUNDS, on the other hand, expects the following:
12436     -1 Undefined
12437      0 Round to 0
12438      1 Round to nearest
12439      2 Round to +inf
12440      3 Round to -inf
12441
12442   To perform the conversion, we do:
12443     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12444   */
12445
12446   MachineFunction &MF = DAG.getMachineFunction();
12447   const TargetMachine &TM = MF.getTarget();
12448   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12449   unsigned StackAlignment = TFI.getStackAlignment();
12450   MVT VT = Op.getSimpleValueType();
12451   SDLoc DL(Op);
12452
12453   // Save FP Control Word to stack slot
12454   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12455   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12456
12457   MachineMemOperand *MMO =
12458    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12459                            MachineMemOperand::MOStore, 2, 2);
12460
12461   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12462   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12463                                           DAG.getVTList(MVT::Other),
12464                                           Ops, array_lengthof(Ops), MVT::i16,
12465                                           MMO);
12466
12467   // Load FP Control Word from stack slot
12468   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12469                             MachinePointerInfo(), false, false, false, 0);
12470
12471   // Transform as necessary
12472   SDValue CWD1 =
12473     DAG.getNode(ISD::SRL, DL, MVT::i16,
12474                 DAG.getNode(ISD::AND, DL, MVT::i16,
12475                             CWD, DAG.getConstant(0x800, MVT::i16)),
12476                 DAG.getConstant(11, MVT::i8));
12477   SDValue CWD2 =
12478     DAG.getNode(ISD::SRL, DL, MVT::i16,
12479                 DAG.getNode(ISD::AND, DL, MVT::i16,
12480                             CWD, DAG.getConstant(0x400, MVT::i16)),
12481                 DAG.getConstant(9, MVT::i8));
12482
12483   SDValue RetVal =
12484     DAG.getNode(ISD::AND, DL, MVT::i16,
12485                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12486                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12487                             DAG.getConstant(1, MVT::i16)),
12488                 DAG.getConstant(3, MVT::i16));
12489
12490   return DAG.getNode((VT.getSizeInBits() < 16 ?
12491                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12492 }
12493
12494 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12495   MVT VT = Op.getSimpleValueType();
12496   EVT OpVT = VT;
12497   unsigned NumBits = VT.getSizeInBits();
12498   SDLoc dl(Op);
12499
12500   Op = Op.getOperand(0);
12501   if (VT == MVT::i8) {
12502     // Zero extend to i32 since there is not an i8 bsr.
12503     OpVT = MVT::i32;
12504     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12505   }
12506
12507   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12508   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12509   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12510
12511   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12512   SDValue Ops[] = {
12513     Op,
12514     DAG.getConstant(NumBits+NumBits-1, OpVT),
12515     DAG.getConstant(X86::COND_E, MVT::i8),
12516     Op.getValue(1)
12517   };
12518   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12519
12520   // Finally xor with NumBits-1.
12521   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12522
12523   if (VT == MVT::i8)
12524     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12525   return Op;
12526 }
12527
12528 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12529   MVT VT = Op.getSimpleValueType();
12530   EVT OpVT = VT;
12531   unsigned NumBits = VT.getSizeInBits();
12532   SDLoc dl(Op);
12533
12534   Op = Op.getOperand(0);
12535   if (VT == MVT::i8) {
12536     // Zero extend to i32 since there is not an i8 bsr.
12537     OpVT = MVT::i32;
12538     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12539   }
12540
12541   // Issue a bsr (scan bits in reverse).
12542   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12543   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12544
12545   // And xor with NumBits-1.
12546   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12547
12548   if (VT == MVT::i8)
12549     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12550   return Op;
12551 }
12552
12553 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12554   MVT VT = Op.getSimpleValueType();
12555   unsigned NumBits = VT.getSizeInBits();
12556   SDLoc dl(Op);
12557   Op = Op.getOperand(0);
12558
12559   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12560   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12561   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12562
12563   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12564   SDValue Ops[] = {
12565     Op,
12566     DAG.getConstant(NumBits, VT),
12567     DAG.getConstant(X86::COND_E, MVT::i8),
12568     Op.getValue(1)
12569   };
12570   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12571 }
12572
12573 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12574 // ones, and then concatenate the result back.
12575 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12576   MVT VT = Op.getSimpleValueType();
12577
12578   assert(VT.is256BitVector() && VT.isInteger() &&
12579          "Unsupported value type for operation");
12580
12581   unsigned NumElems = VT.getVectorNumElements();
12582   SDLoc dl(Op);
12583
12584   // Extract the LHS vectors
12585   SDValue LHS = Op.getOperand(0);
12586   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12587   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12588
12589   // Extract the RHS vectors
12590   SDValue RHS = Op.getOperand(1);
12591   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12592   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12593
12594   MVT EltVT = VT.getVectorElementType();
12595   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12596
12597   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12598                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12599                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12600 }
12601
12602 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12603   assert(Op.getSimpleValueType().is256BitVector() &&
12604          Op.getSimpleValueType().isInteger() &&
12605          "Only handle AVX 256-bit vector integer operation");
12606   return Lower256IntArith(Op, DAG);
12607 }
12608
12609 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12610   assert(Op.getSimpleValueType().is256BitVector() &&
12611          Op.getSimpleValueType().isInteger() &&
12612          "Only handle AVX 256-bit vector integer operation");
12613   return Lower256IntArith(Op, DAG);
12614 }
12615
12616 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12617                         SelectionDAG &DAG) {
12618   SDLoc dl(Op);
12619   MVT VT = Op.getSimpleValueType();
12620
12621   // Decompose 256-bit ops into smaller 128-bit ops.
12622   if (VT.is256BitVector() && !Subtarget->hasInt256())
12623     return Lower256IntArith(Op, DAG);
12624
12625   SDValue A = Op.getOperand(0);
12626   SDValue B = Op.getOperand(1);
12627
12628   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12629   if (VT == MVT::v4i32) {
12630     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12631            "Should not custom lower when pmuldq is available!");
12632
12633     // Extract the odd parts.
12634     static const int UnpackMask[] = { 1, -1, 3, -1 };
12635     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12636     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12637
12638     // Multiply the even parts.
12639     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12640     // Now multiply odd parts.
12641     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12642
12643     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12644     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12645
12646     // Merge the two vectors back together with a shuffle. This expands into 2
12647     // shuffles.
12648     static const int ShufMask[] = { 0, 4, 2, 6 };
12649     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12650   }
12651
12652   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12653          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12654
12655   //  Ahi = psrlqi(a, 32);
12656   //  Bhi = psrlqi(b, 32);
12657   //
12658   //  AloBlo = pmuludq(a, b);
12659   //  AloBhi = pmuludq(a, Bhi);
12660   //  AhiBlo = pmuludq(Ahi, b);
12661
12662   //  AloBhi = psllqi(AloBhi, 32);
12663   //  AhiBlo = psllqi(AhiBlo, 32);
12664   //  return AloBlo + AloBhi + AhiBlo;
12665
12666   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12667   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
12668
12669   // Bit cast to 32-bit vectors for MULUDQ
12670   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12671                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12672   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12673   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12674   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12675   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12676
12677   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12678   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12679   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12680
12681   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12682   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
12683
12684   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12685   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12686 }
12687
12688 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12689   MVT VT = Op.getSimpleValueType();
12690   MVT EltTy = VT.getVectorElementType();
12691   unsigned NumElts = VT.getVectorNumElements();
12692   SDValue N0 = Op.getOperand(0);
12693   SDLoc dl(Op);
12694
12695   // Lower sdiv X, pow2-const.
12696   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12697   if (!C)
12698     return SDValue();
12699
12700   APInt SplatValue, SplatUndef;
12701   unsigned SplatBitSize;
12702   bool HasAnyUndefs;
12703   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12704                           HasAnyUndefs) ||
12705       EltTy.getSizeInBits() < SplatBitSize)
12706     return SDValue();
12707
12708   if ((SplatValue != 0) &&
12709       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12710     unsigned Lg2 = SplatValue.countTrailingZeros();
12711     // Splat the sign bit.
12712     SmallVector<SDValue, 16> Sz(NumElts,
12713                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12714                                                 EltTy));
12715     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12716                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12717                                           NumElts));
12718     // Add (N0 < 0) ? abs2 - 1 : 0;
12719     SmallVector<SDValue, 16> Amt(NumElts,
12720                                  DAG.getConstant(EltTy.getSizeInBits() - Lg2,
12721                                                  EltTy));
12722     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12723                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12724                                           NumElts));
12725     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12726     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
12727     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12728                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12729                                           NumElts));
12730
12731     // If we're dividing by a positive value, we're done.  Otherwise, we must
12732     // negate the result.
12733     if (SplatValue.isNonNegative())
12734       return SRA;
12735
12736     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12737     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12738     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12739   }
12740   return SDValue();
12741 }
12742
12743 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12744                                          const X86Subtarget *Subtarget) {
12745   MVT VT = Op.getSimpleValueType();
12746   SDLoc dl(Op);
12747   SDValue R = Op.getOperand(0);
12748   SDValue Amt = Op.getOperand(1);
12749
12750   // Optimize shl/srl/sra with constant shift amount.
12751   if (isSplatVector(Amt.getNode())) {
12752     SDValue SclrAmt = Amt->getOperand(0);
12753     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12754       uint64_t ShiftAmt = C->getZExtValue();
12755
12756       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12757           (Subtarget->hasInt256() &&
12758            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12759           (Subtarget->hasAVX512() &&
12760            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12761         if (Op.getOpcode() == ISD::SHL)
12762           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12763                                             DAG);
12764         if (Op.getOpcode() == ISD::SRL)
12765           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12766                                             DAG);
12767         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12768           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12769                                             DAG);
12770       }
12771
12772       if (VT == MVT::v16i8) {
12773         if (Op.getOpcode() == ISD::SHL) {
12774           // Make a large shift.
12775           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12776                                                    MVT::v8i16, R, ShiftAmt,
12777                                                    DAG);
12778           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12779           // Zero out the rightmost bits.
12780           SmallVector<SDValue, 16> V(16,
12781                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12782                                                      MVT::i8));
12783           return DAG.getNode(ISD::AND, dl, VT, SHL,
12784                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12785         }
12786         if (Op.getOpcode() == ISD::SRL) {
12787           // Make a large shift.
12788           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12789                                                    MVT::v8i16, R, ShiftAmt,
12790                                                    DAG);
12791           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12792           // Zero out the leftmost bits.
12793           SmallVector<SDValue, 16> V(16,
12794                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12795                                                      MVT::i8));
12796           return DAG.getNode(ISD::AND, dl, VT, SRL,
12797                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12798         }
12799         if (Op.getOpcode() == ISD::SRA) {
12800           if (ShiftAmt == 7) {
12801             // R s>> 7  ===  R s< 0
12802             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12803             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12804           }
12805
12806           // R s>> a === ((R u>> a) ^ m) - m
12807           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12808           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12809                                                          MVT::i8));
12810           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12811           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12812           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12813           return Res;
12814         }
12815         llvm_unreachable("Unknown shift opcode.");
12816       }
12817
12818       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12819         if (Op.getOpcode() == ISD::SHL) {
12820           // Make a large shift.
12821           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12822                                                    MVT::v16i16, R, ShiftAmt,
12823                                                    DAG);
12824           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12825           // Zero out the rightmost bits.
12826           SmallVector<SDValue, 32> V(32,
12827                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12828                                                      MVT::i8));
12829           return DAG.getNode(ISD::AND, dl, VT, SHL,
12830                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12831         }
12832         if (Op.getOpcode() == ISD::SRL) {
12833           // Make a large shift.
12834           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12835                                                    MVT::v16i16, R, ShiftAmt,
12836                                                    DAG);
12837           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12838           // Zero out the leftmost bits.
12839           SmallVector<SDValue, 32> V(32,
12840                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12841                                                      MVT::i8));
12842           return DAG.getNode(ISD::AND, dl, VT, SRL,
12843                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12844         }
12845         if (Op.getOpcode() == ISD::SRA) {
12846           if (ShiftAmt == 7) {
12847             // R s>> 7  ===  R s< 0
12848             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12849             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12850           }
12851
12852           // R s>> a === ((R u>> a) ^ m) - m
12853           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12854           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12855                                                          MVT::i8));
12856           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12857           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12858           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12859           return Res;
12860         }
12861         llvm_unreachable("Unknown shift opcode.");
12862       }
12863     }
12864   }
12865
12866   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12867   if (!Subtarget->is64Bit() &&
12868       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12869       Amt.getOpcode() == ISD::BITCAST &&
12870       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12871     Amt = Amt.getOperand(0);
12872     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
12873                      VT.getVectorNumElements();
12874     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12875     uint64_t ShiftAmt = 0;
12876     for (unsigned i = 0; i != Ratio; ++i) {
12877       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12878       if (C == 0)
12879         return SDValue();
12880       // 6 == Log2(64)
12881       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12882     }
12883     // Check remaining shift amounts.
12884     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12885       uint64_t ShAmt = 0;
12886       for (unsigned j = 0; j != Ratio; ++j) {
12887         ConstantSDNode *C =
12888           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12889         if (C == 0)
12890           return SDValue();
12891         // 6 == Log2(64)
12892         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12893       }
12894       if (ShAmt != ShiftAmt)
12895         return SDValue();
12896     }
12897     switch (Op.getOpcode()) {
12898     default:
12899       llvm_unreachable("Unknown shift opcode!");
12900     case ISD::SHL:
12901       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12902                                         DAG);
12903     case ISD::SRL:
12904       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12905                                         DAG);
12906     case ISD::SRA:
12907       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12908                                         DAG);
12909     }
12910   }
12911
12912   return SDValue();
12913 }
12914
12915 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12916                                         const X86Subtarget* Subtarget) {
12917   MVT VT = Op.getSimpleValueType();
12918   SDLoc dl(Op);
12919   SDValue R = Op.getOperand(0);
12920   SDValue Amt = Op.getOperand(1);
12921
12922   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12923       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12924       (Subtarget->hasInt256() &&
12925        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12926         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12927        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12928     SDValue BaseShAmt;
12929     EVT EltVT = VT.getVectorElementType();
12930
12931     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12932       unsigned NumElts = VT.getVectorNumElements();
12933       unsigned i, j;
12934       for (i = 0; i != NumElts; ++i) {
12935         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12936           continue;
12937         break;
12938       }
12939       for (j = i; j != NumElts; ++j) {
12940         SDValue Arg = Amt.getOperand(j);
12941         if (Arg.getOpcode() == ISD::UNDEF) continue;
12942         if (Arg != Amt.getOperand(i))
12943           break;
12944       }
12945       if (i != NumElts && j == NumElts)
12946         BaseShAmt = Amt.getOperand(i);
12947     } else {
12948       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12949         Amt = Amt.getOperand(0);
12950       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12951                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12952         SDValue InVec = Amt.getOperand(0);
12953         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12954           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12955           unsigned i = 0;
12956           for (; i != NumElts; ++i) {
12957             SDValue Arg = InVec.getOperand(i);
12958             if (Arg.getOpcode() == ISD::UNDEF) continue;
12959             BaseShAmt = Arg;
12960             break;
12961           }
12962         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12963            if (ConstantSDNode *C =
12964                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12965              unsigned SplatIdx =
12966                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12967              if (C->getZExtValue() == SplatIdx)
12968                BaseShAmt = InVec.getOperand(1);
12969            }
12970         }
12971         if (BaseShAmt.getNode() == 0)
12972           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12973                                   DAG.getIntPtrConstant(0));
12974       }
12975     }
12976
12977     if (BaseShAmt.getNode()) {
12978       if (EltVT.bitsGT(MVT::i32))
12979         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12980       else if (EltVT.bitsLT(MVT::i32))
12981         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12982
12983       switch (Op.getOpcode()) {
12984       default:
12985         llvm_unreachable("Unknown shift opcode!");
12986       case ISD::SHL:
12987         switch (VT.SimpleTy) {
12988         default: return SDValue();
12989         case MVT::v2i64:
12990         case MVT::v4i32:
12991         case MVT::v8i16:
12992         case MVT::v4i64:
12993         case MVT::v8i32:
12994         case MVT::v16i16:
12995         case MVT::v16i32:
12996         case MVT::v8i64:
12997           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12998         }
12999       case ISD::SRA:
13000         switch (VT.SimpleTy) {
13001         default: return SDValue();
13002         case MVT::v4i32:
13003         case MVT::v8i16:
13004         case MVT::v8i32:
13005         case MVT::v16i16:
13006         case MVT::v16i32:
13007         case MVT::v8i64:
13008           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
13009         }
13010       case ISD::SRL:
13011         switch (VT.SimpleTy) {
13012         default: return SDValue();
13013         case MVT::v2i64:
13014         case MVT::v4i32:
13015         case MVT::v8i16:
13016         case MVT::v4i64:
13017         case MVT::v8i32:
13018         case MVT::v16i16:
13019         case MVT::v16i32:
13020         case MVT::v8i64:
13021           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13022         }
13023       }
13024     }
13025   }
13026
13027   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13028   if (!Subtarget->is64Bit() &&
13029       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13030       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13031       Amt.getOpcode() == ISD::BITCAST &&
13032       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13033     Amt = Amt.getOperand(0);
13034     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13035                      VT.getVectorNumElements();
13036     std::vector<SDValue> Vals(Ratio);
13037     for (unsigned i = 0; i != Ratio; ++i)
13038       Vals[i] = Amt.getOperand(i);
13039     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13040       for (unsigned j = 0; j != Ratio; ++j)
13041         if (Vals[j] != Amt.getOperand(i + j))
13042           return SDValue();
13043     }
13044     switch (Op.getOpcode()) {
13045     default:
13046       llvm_unreachable("Unknown shift opcode!");
13047     case ISD::SHL:
13048       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13049     case ISD::SRL:
13050       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13051     case ISD::SRA:
13052       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13053     }
13054   }
13055
13056   return SDValue();
13057 }
13058
13059 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13060                           SelectionDAG &DAG) {
13061
13062   MVT VT = Op.getSimpleValueType();
13063   SDLoc dl(Op);
13064   SDValue R = Op.getOperand(0);
13065   SDValue Amt = Op.getOperand(1);
13066   SDValue V;
13067
13068   if (!Subtarget->hasSSE2())
13069     return SDValue();
13070
13071   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13072   if (V.getNode())
13073     return V;
13074
13075   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13076   if (V.getNode())
13077       return V;
13078
13079   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13080     return Op;
13081   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13082   if (Subtarget->hasInt256()) {
13083     if (Op.getOpcode() == ISD::SRL &&
13084         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13085          VT == MVT::v4i64 || VT == MVT::v8i32))
13086       return Op;
13087     if (Op.getOpcode() == ISD::SHL &&
13088         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13089          VT == MVT::v4i64 || VT == MVT::v8i32))
13090       return Op;
13091     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13092       return Op;
13093   }
13094
13095   // Lower SHL with variable shift amount.
13096   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13097     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13098
13099     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13100     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13101     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13102     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13103   }
13104   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13105     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13106
13107     // a = a << 5;
13108     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13109     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13110
13111     // Turn 'a' into a mask suitable for VSELECT
13112     SDValue VSelM = DAG.getConstant(0x80, VT);
13113     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13114     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13115
13116     SDValue CM1 = DAG.getConstant(0x0f, VT);
13117     SDValue CM2 = DAG.getConstant(0x3f, VT);
13118
13119     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13120     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13121     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13122     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13123     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13124
13125     // a += a
13126     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13127     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13128     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13129
13130     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
13131     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
13132     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
13133     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13134     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13135
13136     // a += a
13137     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13138     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13139     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13140
13141     // return VSELECT(r, r+r, a);
13142     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
13143                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
13144     return R;
13145   }
13146
13147   // Decompose 256-bit shifts into smaller 128-bit shifts.
13148   if (VT.is256BitVector()) {
13149     unsigned NumElems = VT.getVectorNumElements();
13150     MVT EltVT = VT.getVectorElementType();
13151     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13152
13153     // Extract the two vectors
13154     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
13155     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
13156
13157     // Recreate the shift amount vectors
13158     SDValue Amt1, Amt2;
13159     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13160       // Constant shift amount
13161       SmallVector<SDValue, 4> Amt1Csts;
13162       SmallVector<SDValue, 4> Amt2Csts;
13163       for (unsigned i = 0; i != NumElems/2; ++i)
13164         Amt1Csts.push_back(Amt->getOperand(i));
13165       for (unsigned i = NumElems/2; i != NumElems; ++i)
13166         Amt2Csts.push_back(Amt->getOperand(i));
13167
13168       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13169                                  &Amt1Csts[0], NumElems/2);
13170       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13171                                  &Amt2Csts[0], NumElems/2);
13172     } else {
13173       // Variable shift amount
13174       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13175       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
13176     }
13177
13178     // Issue new vector shifts for the smaller types
13179     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13180     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13181
13182     // Concatenate the result back
13183     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13184   }
13185
13186   return SDValue();
13187 }
13188
13189 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
13190   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13191   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
13192   // looks for this combo and may remove the "setcc" instruction if the "setcc"
13193   // has only one use.
13194   SDNode *N = Op.getNode();
13195   SDValue LHS = N->getOperand(0);
13196   SDValue RHS = N->getOperand(1);
13197   unsigned BaseOp = 0;
13198   unsigned Cond = 0;
13199   SDLoc DL(Op);
13200   switch (Op.getOpcode()) {
13201   default: llvm_unreachable("Unknown ovf instruction!");
13202   case ISD::SADDO:
13203     // A subtract of one will be selected as a INC. Note that INC doesn't
13204     // set CF, so we can't do this for UADDO.
13205     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13206       if (C->isOne()) {
13207         BaseOp = X86ISD::INC;
13208         Cond = X86::COND_O;
13209         break;
13210       }
13211     BaseOp = X86ISD::ADD;
13212     Cond = X86::COND_O;
13213     break;
13214   case ISD::UADDO:
13215     BaseOp = X86ISD::ADD;
13216     Cond = X86::COND_B;
13217     break;
13218   case ISD::SSUBO:
13219     // A subtract of one will be selected as a DEC. Note that DEC doesn't
13220     // set CF, so we can't do this for USUBO.
13221     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13222       if (C->isOne()) {
13223         BaseOp = X86ISD::DEC;
13224         Cond = X86::COND_O;
13225         break;
13226       }
13227     BaseOp = X86ISD::SUB;
13228     Cond = X86::COND_O;
13229     break;
13230   case ISD::USUBO:
13231     BaseOp = X86ISD::SUB;
13232     Cond = X86::COND_B;
13233     break;
13234   case ISD::SMULO:
13235     BaseOp = X86ISD::SMUL;
13236     Cond = X86::COND_O;
13237     break;
13238   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13239     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13240                                  MVT::i32);
13241     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
13242
13243     SDValue SetCC =
13244       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13245                   DAG.getConstant(X86::COND_O, MVT::i32),
13246                   SDValue(Sum.getNode(), 2));
13247
13248     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13249   }
13250   }
13251
13252   // Also sets EFLAGS.
13253   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13254   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13255
13256   SDValue SetCC =
13257     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13258                 DAG.getConstant(Cond, MVT::i32),
13259                 SDValue(Sum.getNode(), 1));
13260
13261   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13262 }
13263
13264 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13265                                                   SelectionDAG &DAG) const {
13266   SDLoc dl(Op);
13267   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13268   MVT VT = Op.getSimpleValueType();
13269
13270   if (!Subtarget->hasSSE2() || !VT.isVector())
13271     return SDValue();
13272
13273   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13274                       ExtraVT.getScalarType().getSizeInBits();
13275
13276   switch (VT.SimpleTy) {
13277     default: return SDValue();
13278     case MVT::v8i32:
13279     case MVT::v16i16:
13280       if (!Subtarget->hasFp256())
13281         return SDValue();
13282       if (!Subtarget->hasInt256()) {
13283         // needs to be split
13284         unsigned NumElems = VT.getVectorNumElements();
13285
13286         // Extract the LHS vectors
13287         SDValue LHS = Op.getOperand(0);
13288         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13289         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13290
13291         MVT EltVT = VT.getVectorElementType();
13292         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13293
13294         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13295         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13296         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13297                                    ExtraNumElems/2);
13298         SDValue Extra = DAG.getValueType(ExtraVT);
13299
13300         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13301         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13302
13303         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13304       }
13305       // fall through
13306     case MVT::v4i32:
13307     case MVT::v8i16: {
13308       SDValue Op0 = Op.getOperand(0);
13309       SDValue Op00 = Op0.getOperand(0);
13310       SDValue Tmp1;
13311       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13312       if (Op0.getOpcode() == ISD::BITCAST &&
13313           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
13314         // (sext (vzext x)) -> (vsext x)
13315         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13316         if (Tmp1.getNode()) {
13317           EVT ExtraEltVT = ExtraVT.getVectorElementType();
13318           // This folding is only valid when the in-reg type is a vector of i8,
13319           // i16, or i32.
13320           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
13321               ExtraEltVT == MVT::i32) {
13322             SDValue Tmp1Op0 = Tmp1.getOperand(0);
13323             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13324                    "This optimization is invalid without a VZEXT.");
13325             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13326           }
13327           Op0 = Tmp1;
13328         }
13329       }
13330
13331       // If the above didn't work, then just use Shift-Left + Shift-Right.
13332       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13333                                         DAG);
13334       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13335                                         DAG);
13336     }
13337   }
13338 }
13339
13340 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13341                                  SelectionDAG &DAG) {
13342   SDLoc dl(Op);
13343   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13344     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13345   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13346     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13347
13348   // The only fence that needs an instruction is a sequentially-consistent
13349   // cross-thread fence.
13350   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13351     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13352     // no-sse2). There isn't any reason to disable it if the target processor
13353     // supports it.
13354     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13355       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13356
13357     SDValue Chain = Op.getOperand(0);
13358     SDValue Zero = DAG.getConstant(0, MVT::i32);
13359     SDValue Ops[] = {
13360       DAG.getRegister(X86::ESP, MVT::i32), // Base
13361       DAG.getTargetConstant(1, MVT::i8),   // Scale
13362       DAG.getRegister(0, MVT::i32),        // Index
13363       DAG.getTargetConstant(0, MVT::i32),  // Disp
13364       DAG.getRegister(0, MVT::i32),        // Segment.
13365       Zero,
13366       Chain
13367     };
13368     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13369     return SDValue(Res, 0);
13370   }
13371
13372   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13373   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13374 }
13375
13376 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13377                              SelectionDAG &DAG) {
13378   MVT T = Op.getSimpleValueType();
13379   SDLoc DL(Op);
13380   unsigned Reg = 0;
13381   unsigned size = 0;
13382   switch(T.SimpleTy) {
13383   default: llvm_unreachable("Invalid value type!");
13384   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13385   case MVT::i16: Reg = X86::AX;  size = 2; break;
13386   case MVT::i32: Reg = X86::EAX; size = 4; break;
13387   case MVT::i64:
13388     assert(Subtarget->is64Bit() && "Node not type legal!");
13389     Reg = X86::RAX; size = 8;
13390     break;
13391   }
13392   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13393                                     Op.getOperand(2), SDValue());
13394   SDValue Ops[] = { cpIn.getValue(0),
13395                     Op.getOperand(1),
13396                     Op.getOperand(3),
13397                     DAG.getTargetConstant(size, MVT::i8),
13398                     cpIn.getValue(1) };
13399   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13400   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13401   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13402                                            Ops, array_lengthof(Ops), T, MMO);
13403   SDValue cpOut =
13404     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13405   return cpOut;
13406 }
13407
13408 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13409                                      SelectionDAG &DAG) {
13410   assert(Subtarget->is64Bit() && "Result not type legalized?");
13411   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13412   SDValue TheChain = Op.getOperand(0);
13413   SDLoc dl(Op);
13414   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13415   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13416   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13417                                    rax.getValue(2));
13418   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13419                             DAG.getConstant(32, MVT::i8));
13420   SDValue Ops[] = {
13421     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13422     rdx.getValue(1)
13423   };
13424   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13425 }
13426
13427 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13428                             SelectionDAG &DAG) {
13429   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13430   MVT DstVT = Op.getSimpleValueType();
13431   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13432          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13433   assert((DstVT == MVT::i64 ||
13434           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13435          "Unexpected custom BITCAST");
13436   // i64 <=> MMX conversions are Legal.
13437   if (SrcVT==MVT::i64 && DstVT.isVector())
13438     return Op;
13439   if (DstVT==MVT::i64 && SrcVT.isVector())
13440     return Op;
13441   // MMX <=> MMX conversions are Legal.
13442   if (SrcVT.isVector() && DstVT.isVector())
13443     return Op;
13444   // All other conversions need to be expanded.
13445   return SDValue();
13446 }
13447
13448 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13449   SDNode *Node = Op.getNode();
13450   SDLoc dl(Node);
13451   EVT T = Node->getValueType(0);
13452   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13453                               DAG.getConstant(0, T), Node->getOperand(2));
13454   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13455                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13456                        Node->getOperand(0),
13457                        Node->getOperand(1), negOp,
13458                        cast<AtomicSDNode>(Node)->getSrcValue(),
13459                        cast<AtomicSDNode>(Node)->getAlignment(),
13460                        cast<AtomicSDNode>(Node)->getOrdering(),
13461                        cast<AtomicSDNode>(Node)->getSynchScope());
13462 }
13463
13464 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13465   SDNode *Node = Op.getNode();
13466   SDLoc dl(Node);
13467   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13468
13469   // Convert seq_cst store -> xchg
13470   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13471   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13472   //        (The only way to get a 16-byte store is cmpxchg16b)
13473   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13474   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13475       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13476     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13477                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13478                                  Node->getOperand(0),
13479                                  Node->getOperand(1), Node->getOperand(2),
13480                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13481                                  cast<AtomicSDNode>(Node)->getOrdering(),
13482                                  cast<AtomicSDNode>(Node)->getSynchScope());
13483     return Swap.getValue(1);
13484   }
13485   // Other atomic stores have a simple pattern.
13486   return Op;
13487 }
13488
13489 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13490   EVT VT = Op.getNode()->getSimpleValueType(0);
13491
13492   // Let legalize expand this if it isn't a legal type yet.
13493   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13494     return SDValue();
13495
13496   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13497
13498   unsigned Opc;
13499   bool ExtraOp = false;
13500   switch (Op.getOpcode()) {
13501   default: llvm_unreachable("Invalid code");
13502   case ISD::ADDC: Opc = X86ISD::ADD; break;
13503   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13504   case ISD::SUBC: Opc = X86ISD::SUB; break;
13505   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13506   }
13507
13508   if (!ExtraOp)
13509     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13510                        Op.getOperand(1));
13511   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13512                      Op.getOperand(1), Op.getOperand(2));
13513 }
13514
13515 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13516                             SelectionDAG &DAG) {
13517   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13518
13519   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13520   // which returns the values as { float, float } (in XMM0) or
13521   // { double, double } (which is returned in XMM0, XMM1).
13522   SDLoc dl(Op);
13523   SDValue Arg = Op.getOperand(0);
13524   EVT ArgVT = Arg.getValueType();
13525   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13526
13527   TargetLowering::ArgListTy Args;
13528   TargetLowering::ArgListEntry Entry;
13529
13530   Entry.Node = Arg;
13531   Entry.Ty = ArgTy;
13532   Entry.isSExt = false;
13533   Entry.isZExt = false;
13534   Args.push_back(Entry);
13535
13536   bool isF64 = ArgVT == MVT::f64;
13537   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13538   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13539   // the results are returned via SRet in memory.
13540   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13541   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13542   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13543
13544   Type *RetTy = isF64
13545     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13546     : (Type*)VectorType::get(ArgTy, 4);
13547   TargetLowering::
13548     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13549                          false, false, false, false, 0,
13550                          CallingConv::C, /*isTaillCall=*/false,
13551                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13552                          Callee, Args, DAG, dl);
13553   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13554
13555   if (isF64)
13556     // Returned in xmm0 and xmm1.
13557     return CallResult.first;
13558
13559   // Returned in bits 0:31 and 32:64 xmm0.
13560   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13561                                CallResult.first, DAG.getIntPtrConstant(0));
13562   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13563                                CallResult.first, DAG.getIntPtrConstant(1));
13564   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13565   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13566 }
13567
13568 /// LowerOperation - Provide custom lowering hooks for some operations.
13569 ///
13570 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13571   switch (Op.getOpcode()) {
13572   default: llvm_unreachable("Should not custom lower this!");
13573   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13574   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13575   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13576   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13577   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13578   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13579   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13580   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13581   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13582   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13583   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13584   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13585   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13586   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13587   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13588   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13589   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13590   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13591   case ISD::SHL_PARTS:
13592   case ISD::SRA_PARTS:
13593   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13594   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13595   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13596   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13597   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13598   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13599   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13600   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13601   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13602   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13603   case ISD::FABS:               return LowerFABS(Op, DAG);
13604   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13605   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13606   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13607   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13608   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13609   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13610   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13611   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13612   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13613   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13614   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13615   case ISD::INTRINSIC_VOID:
13616   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13617   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13618   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13619   case ISD::FRAME_TO_ARGS_OFFSET:
13620                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13621   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13622   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13623   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13624   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13625   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13626   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13627   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13628   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13629   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13630   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13631   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13632   case ISD::SRA:
13633   case ISD::SRL:
13634   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13635   case ISD::SADDO:
13636   case ISD::UADDO:
13637   case ISD::SSUBO:
13638   case ISD::USUBO:
13639   case ISD::SMULO:
13640   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13641   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13642   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13643   case ISD::ADDC:
13644   case ISD::ADDE:
13645   case ISD::SUBC:
13646   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13647   case ISD::ADD:                return LowerADD(Op, DAG);
13648   case ISD::SUB:                return LowerSUB(Op, DAG);
13649   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13650   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13651   }
13652 }
13653
13654 static void ReplaceATOMIC_LOAD(SDNode *Node,
13655                                   SmallVectorImpl<SDValue> &Results,
13656                                   SelectionDAG &DAG) {
13657   SDLoc dl(Node);
13658   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13659
13660   // Convert wide load -> cmpxchg8b/cmpxchg16b
13661   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13662   //        (The only way to get a 16-byte load is cmpxchg16b)
13663   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13664   SDValue Zero = DAG.getConstant(0, VT);
13665   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13666                                Node->getOperand(0),
13667                                Node->getOperand(1), Zero, Zero,
13668                                cast<AtomicSDNode>(Node)->getMemOperand(),
13669                                cast<AtomicSDNode>(Node)->getOrdering(),
13670                                cast<AtomicSDNode>(Node)->getSynchScope());
13671   Results.push_back(Swap.getValue(0));
13672   Results.push_back(Swap.getValue(1));
13673 }
13674
13675 static void
13676 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13677                         SelectionDAG &DAG, unsigned NewOp) {
13678   SDLoc dl(Node);
13679   assert (Node->getValueType(0) == MVT::i64 &&
13680           "Only know how to expand i64 atomics");
13681
13682   SDValue Chain = Node->getOperand(0);
13683   SDValue In1 = Node->getOperand(1);
13684   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13685                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13686   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13687                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13688   SDValue Ops[] = { Chain, In1, In2L, In2H };
13689   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13690   SDValue Result =
13691     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13692                             cast<MemSDNode>(Node)->getMemOperand());
13693   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13694   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13695   Results.push_back(Result.getValue(2));
13696 }
13697
13698 /// ReplaceNodeResults - Replace a node with an illegal result type
13699 /// with a new node built out of custom code.
13700 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13701                                            SmallVectorImpl<SDValue>&Results,
13702                                            SelectionDAG &DAG) const {
13703   SDLoc dl(N);
13704   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13705   switch (N->getOpcode()) {
13706   default:
13707     llvm_unreachable("Do not know how to custom type legalize this operation!");
13708   case ISD::SIGN_EXTEND_INREG:
13709   case ISD::ADDC:
13710   case ISD::ADDE:
13711   case ISD::SUBC:
13712   case ISD::SUBE:
13713     // We don't want to expand or promote these.
13714     return;
13715   case ISD::FP_TO_SINT:
13716   case ISD::FP_TO_UINT: {
13717     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13718
13719     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13720       return;
13721
13722     std::pair<SDValue,SDValue> Vals =
13723         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13724     SDValue FIST = Vals.first, StackSlot = Vals.second;
13725     if (FIST.getNode() != 0) {
13726       EVT VT = N->getValueType(0);
13727       // Return a load from the stack slot.
13728       if (StackSlot.getNode() != 0)
13729         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13730                                       MachinePointerInfo(),
13731                                       false, false, false, 0));
13732       else
13733         Results.push_back(FIST);
13734     }
13735     return;
13736   }
13737   case ISD::UINT_TO_FP: {
13738     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13739     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13740         N->getValueType(0) != MVT::v2f32)
13741       return;
13742     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13743                                  N->getOperand(0));
13744     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13745                                      MVT::f64);
13746     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13747     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13748                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13749     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13750     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13751     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13752     return;
13753   }
13754   case ISD::FP_ROUND: {
13755     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13756         return;
13757     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13758     Results.push_back(V);
13759     return;
13760   }
13761   case ISD::READCYCLECOUNTER: {
13762     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13763     SDValue TheChain = N->getOperand(0);
13764     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13765     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13766                                      rd.getValue(1));
13767     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13768                                      eax.getValue(2));
13769     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13770     SDValue Ops[] = { eax, edx };
13771     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13772                                   array_lengthof(Ops)));
13773     Results.push_back(edx.getValue(1));
13774     return;
13775   }
13776   case ISD::ATOMIC_CMP_SWAP: {
13777     EVT T = N->getValueType(0);
13778     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13779     bool Regs64bit = T == MVT::i128;
13780     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13781     SDValue cpInL, cpInH;
13782     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13783                         DAG.getConstant(0, HalfT));
13784     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13785                         DAG.getConstant(1, HalfT));
13786     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13787                              Regs64bit ? X86::RAX : X86::EAX,
13788                              cpInL, SDValue());
13789     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13790                              Regs64bit ? X86::RDX : X86::EDX,
13791                              cpInH, cpInL.getValue(1));
13792     SDValue swapInL, swapInH;
13793     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13794                           DAG.getConstant(0, HalfT));
13795     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13796                           DAG.getConstant(1, HalfT));
13797     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13798                                Regs64bit ? X86::RBX : X86::EBX,
13799                                swapInL, cpInH.getValue(1));
13800     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13801                                Regs64bit ? X86::RCX : X86::ECX,
13802                                swapInH, swapInL.getValue(1));
13803     SDValue Ops[] = { swapInH.getValue(0),
13804                       N->getOperand(1),
13805                       swapInH.getValue(1) };
13806     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13807     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13808     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13809                                   X86ISD::LCMPXCHG8_DAG;
13810     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13811                                              Ops, array_lengthof(Ops), T, MMO);
13812     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13813                                         Regs64bit ? X86::RAX : X86::EAX,
13814                                         HalfT, Result.getValue(1));
13815     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13816                                         Regs64bit ? X86::RDX : X86::EDX,
13817                                         HalfT, cpOutL.getValue(2));
13818     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13819     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13820     Results.push_back(cpOutH.getValue(1));
13821     return;
13822   }
13823   case ISD::ATOMIC_LOAD_ADD:
13824   case ISD::ATOMIC_LOAD_AND:
13825   case ISD::ATOMIC_LOAD_NAND:
13826   case ISD::ATOMIC_LOAD_OR:
13827   case ISD::ATOMIC_LOAD_SUB:
13828   case ISD::ATOMIC_LOAD_XOR:
13829   case ISD::ATOMIC_LOAD_MAX:
13830   case ISD::ATOMIC_LOAD_MIN:
13831   case ISD::ATOMIC_LOAD_UMAX:
13832   case ISD::ATOMIC_LOAD_UMIN:
13833   case ISD::ATOMIC_SWAP: {
13834     unsigned Opc;
13835     switch (N->getOpcode()) {
13836     default: llvm_unreachable("Unexpected opcode");
13837     case ISD::ATOMIC_LOAD_ADD:
13838       Opc = X86ISD::ATOMADD64_DAG;
13839       break;
13840     case ISD::ATOMIC_LOAD_AND:
13841       Opc = X86ISD::ATOMAND64_DAG;
13842       break;
13843     case ISD::ATOMIC_LOAD_NAND:
13844       Opc = X86ISD::ATOMNAND64_DAG;
13845       break;
13846     case ISD::ATOMIC_LOAD_OR:
13847       Opc = X86ISD::ATOMOR64_DAG;
13848       break;
13849     case ISD::ATOMIC_LOAD_SUB:
13850       Opc = X86ISD::ATOMSUB64_DAG;
13851       break;
13852     case ISD::ATOMIC_LOAD_XOR:
13853       Opc = X86ISD::ATOMXOR64_DAG;
13854       break;
13855     case ISD::ATOMIC_LOAD_MAX:
13856       Opc = X86ISD::ATOMMAX64_DAG;
13857       break;
13858     case ISD::ATOMIC_LOAD_MIN:
13859       Opc = X86ISD::ATOMMIN64_DAG;
13860       break;
13861     case ISD::ATOMIC_LOAD_UMAX:
13862       Opc = X86ISD::ATOMUMAX64_DAG;
13863       break;
13864     case ISD::ATOMIC_LOAD_UMIN:
13865       Opc = X86ISD::ATOMUMIN64_DAG;
13866       break;
13867     case ISD::ATOMIC_SWAP:
13868       Opc = X86ISD::ATOMSWAP64_DAG;
13869       break;
13870     }
13871     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13872     return;
13873   }
13874   case ISD::ATOMIC_LOAD:
13875     ReplaceATOMIC_LOAD(N, Results, DAG);
13876   }
13877 }
13878
13879 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13880   switch (Opcode) {
13881   default: return NULL;
13882   case X86ISD::BSF:                return "X86ISD::BSF";
13883   case X86ISD::BSR:                return "X86ISD::BSR";
13884   case X86ISD::SHLD:               return "X86ISD::SHLD";
13885   case X86ISD::SHRD:               return "X86ISD::SHRD";
13886   case X86ISD::FAND:               return "X86ISD::FAND";
13887   case X86ISD::FANDN:              return "X86ISD::FANDN";
13888   case X86ISD::FOR:                return "X86ISD::FOR";
13889   case X86ISD::FXOR:               return "X86ISD::FXOR";
13890   case X86ISD::FSRL:               return "X86ISD::FSRL";
13891   case X86ISD::FILD:               return "X86ISD::FILD";
13892   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13893   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13894   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13895   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13896   case X86ISD::FLD:                return "X86ISD::FLD";
13897   case X86ISD::FST:                return "X86ISD::FST";
13898   case X86ISD::CALL:               return "X86ISD::CALL";
13899   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13900   case X86ISD::BT:                 return "X86ISD::BT";
13901   case X86ISD::CMP:                return "X86ISD::CMP";
13902   case X86ISD::COMI:               return "X86ISD::COMI";
13903   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13904   case X86ISD::CMPM:               return "X86ISD::CMPM";
13905   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13906   case X86ISD::SETCC:              return "X86ISD::SETCC";
13907   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13908   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
13909   case X86ISD::CMOV:               return "X86ISD::CMOV";
13910   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13911   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13912   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13913   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13914   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13915   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13916   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13917   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13918   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13919   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13920   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13921   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13922   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13923   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13924   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13925   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13926   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13927   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13928   case X86ISD::HADD:               return "X86ISD::HADD";
13929   case X86ISD::HSUB:               return "X86ISD::HSUB";
13930   case X86ISD::FHADD:              return "X86ISD::FHADD";
13931   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13932   case X86ISD::UMAX:               return "X86ISD::UMAX";
13933   case X86ISD::UMIN:               return "X86ISD::UMIN";
13934   case X86ISD::SMAX:               return "X86ISD::SMAX";
13935   case X86ISD::SMIN:               return "X86ISD::SMIN";
13936   case X86ISD::FMAX:               return "X86ISD::FMAX";
13937   case X86ISD::FMIN:               return "X86ISD::FMIN";
13938   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13939   case X86ISD::FMINC:              return "X86ISD::FMINC";
13940   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13941   case X86ISD::FRCP:               return "X86ISD::FRCP";
13942   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13943   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13944   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13945   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13946   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13947   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13948   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13949   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13950   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13951   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13952   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13953   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13954   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13955   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13956   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13957   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13958   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13959   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13960   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13961   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13962   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13963   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13964   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13965   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13966   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13967   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13968   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13969   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13970   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13971   case X86ISD::VSHL:               return "X86ISD::VSHL";
13972   case X86ISD::VSRL:               return "X86ISD::VSRL";
13973   case X86ISD::VSRA:               return "X86ISD::VSRA";
13974   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13975   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13976   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13977   case X86ISD::CMPP:               return "X86ISD::CMPP";
13978   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13979   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13980   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13981   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13982   case X86ISD::ADD:                return "X86ISD::ADD";
13983   case X86ISD::SUB:                return "X86ISD::SUB";
13984   case X86ISD::ADC:                return "X86ISD::ADC";
13985   case X86ISD::SBB:                return "X86ISD::SBB";
13986   case X86ISD::SMUL:               return "X86ISD::SMUL";
13987   case X86ISD::UMUL:               return "X86ISD::UMUL";
13988   case X86ISD::INC:                return "X86ISD::INC";
13989   case X86ISD::DEC:                return "X86ISD::DEC";
13990   case X86ISD::OR:                 return "X86ISD::OR";
13991   case X86ISD::XOR:                return "X86ISD::XOR";
13992   case X86ISD::AND:                return "X86ISD::AND";
13993   case X86ISD::BLSI:               return "X86ISD::BLSI";
13994   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13995   case X86ISD::BLSR:               return "X86ISD::BLSR";
13996   case X86ISD::BZHI:               return "X86ISD::BZHI";
13997   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13998   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13999   case X86ISD::PTEST:              return "X86ISD::PTEST";
14000   case X86ISD::TESTP:              return "X86ISD::TESTP";
14001   case X86ISD::TESTM:              return "X86ISD::TESTM";
14002   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
14003   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
14004   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
14005   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
14006   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
14007   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
14008   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
14009   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
14010   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
14011   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
14012   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
14013   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
14014   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
14015   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
14016   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
14017   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14018   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14019   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14020   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14021   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14022   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14023   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14024   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14025   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14026   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14027   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14028   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14029   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14030   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14031   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14032   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14033   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14034   case X86ISD::SAHF:               return "X86ISD::SAHF";
14035   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14036   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14037   case X86ISD::FMADD:              return "X86ISD::FMADD";
14038   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14039   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14040   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14041   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14042   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14043   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14044   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14045   case X86ISD::XTEST:              return "X86ISD::XTEST";
14046   }
14047 }
14048
14049 // isLegalAddressingMode - Return true if the addressing mode represented
14050 // by AM is legal for this target, for a load/store of the specified type.
14051 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14052                                               Type *Ty) const {
14053   // X86 supports extremely general addressing modes.
14054   CodeModel::Model M = getTargetMachine().getCodeModel();
14055   Reloc::Model R = getTargetMachine().getRelocationModel();
14056
14057   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14058   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
14059     return false;
14060
14061   if (AM.BaseGV) {
14062     unsigned GVFlags =
14063       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14064
14065     // If a reference to this global requires an extra load, we can't fold it.
14066     if (isGlobalStubReference(GVFlags))
14067       return false;
14068
14069     // If BaseGV requires a register for the PIC base, we cannot also have a
14070     // BaseReg specified.
14071     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
14072       return false;
14073
14074     // If lower 4G is not available, then we must use rip-relative addressing.
14075     if ((M != CodeModel::Small || R != Reloc::Static) &&
14076         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
14077       return false;
14078   }
14079
14080   switch (AM.Scale) {
14081   case 0:
14082   case 1:
14083   case 2:
14084   case 4:
14085   case 8:
14086     // These scales always work.
14087     break;
14088   case 3:
14089   case 5:
14090   case 9:
14091     // These scales are formed with basereg+scalereg.  Only accept if there is
14092     // no basereg yet.
14093     if (AM.HasBaseReg)
14094       return false;
14095     break;
14096   default:  // Other stuff never works.
14097     return false;
14098   }
14099
14100   return true;
14101 }
14102
14103 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
14104   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14105     return false;
14106   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
14107   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
14108   return NumBits1 > NumBits2;
14109 }
14110
14111 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
14112   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14113     return false;
14114
14115   if (!isTypeLegal(EVT::getEVT(Ty1)))
14116     return false;
14117
14118   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
14119
14120   // Assuming the caller doesn't have a zeroext or signext return parameter,
14121   // truncation all the way down to i1 is valid.
14122   return true;
14123 }
14124
14125 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
14126   return isInt<32>(Imm);
14127 }
14128
14129 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
14130   // Can also use sub to handle negated immediates.
14131   return isInt<32>(Imm);
14132 }
14133
14134 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
14135   if (!VT1.isInteger() || !VT2.isInteger())
14136     return false;
14137   unsigned NumBits1 = VT1.getSizeInBits();
14138   unsigned NumBits2 = VT2.getSizeInBits();
14139   return NumBits1 > NumBits2;
14140 }
14141
14142 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
14143   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14144   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
14145 }
14146
14147 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
14148   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14149   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
14150 }
14151
14152 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
14153   EVT VT1 = Val.getValueType();
14154   if (isZExtFree(VT1, VT2))
14155     return true;
14156
14157   if (Val.getOpcode() != ISD::LOAD)
14158     return false;
14159
14160   if (!VT1.isSimple() || !VT1.isInteger() ||
14161       !VT2.isSimple() || !VT2.isInteger())
14162     return false;
14163
14164   switch (VT1.getSimpleVT().SimpleTy) {
14165   default: break;
14166   case MVT::i8:
14167   case MVT::i16:
14168   case MVT::i32:
14169     // X86 has 8, 16, and 32-bit zero-extending loads.
14170     return true;
14171   }
14172
14173   return false;
14174 }
14175
14176 bool
14177 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14178   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14179     return false;
14180
14181   VT = VT.getScalarType();
14182
14183   if (!VT.isSimple())
14184     return false;
14185
14186   switch (VT.getSimpleVT().SimpleTy) {
14187   case MVT::f32:
14188   case MVT::f64:
14189     return true;
14190   default:
14191     break;
14192   }
14193
14194   return false;
14195 }
14196
14197 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
14198   // i16 instructions are longer (0x66 prefix) and potentially slower.
14199   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
14200 }
14201
14202 /// isShuffleMaskLegal - Targets can use this to indicate that they only
14203 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
14204 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
14205 /// are assumed to be legal.
14206 bool
14207 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
14208                                       EVT VT) const {
14209   if (!VT.isSimple())
14210     return false;
14211
14212   MVT SVT = VT.getSimpleVT();
14213
14214   // Very little shuffling can be done for 64-bit vectors right now.
14215   if (VT.getSizeInBits() == 64)
14216     return false;
14217
14218   // FIXME: pshufb, blends, shifts.
14219   return (SVT.getVectorNumElements() == 2 ||
14220           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
14221           isMOVLMask(M, SVT) ||
14222           isSHUFPMask(M, SVT) ||
14223           isPSHUFDMask(M, SVT) ||
14224           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14225           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14226           isPALIGNRMask(M, SVT, Subtarget) ||
14227           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14228           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14229           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14230           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
14231 }
14232
14233 bool
14234 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
14235                                           EVT VT) const {
14236   if (!VT.isSimple())
14237     return false;
14238
14239   MVT SVT = VT.getSimpleVT();
14240   unsigned NumElts = SVT.getVectorNumElements();
14241   // FIXME: This collection of masks seems suspect.
14242   if (NumElts == 2)
14243     return true;
14244   if (NumElts == 4 && SVT.is128BitVector()) {
14245     return (isMOVLMask(Mask, SVT)  ||
14246             isCommutedMOVLMask(Mask, SVT, true) ||
14247             isSHUFPMask(Mask, SVT) ||
14248             isSHUFPMask(Mask, SVT, /* Commuted */ true));
14249   }
14250   return false;
14251 }
14252
14253 //===----------------------------------------------------------------------===//
14254 //                           X86 Scheduler Hooks
14255 //===----------------------------------------------------------------------===//
14256
14257 /// Utility function to emit xbegin specifying the start of an RTM region.
14258 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14259                                      const TargetInstrInfo *TII) {
14260   DebugLoc DL = MI->getDebugLoc();
14261
14262   const BasicBlock *BB = MBB->getBasicBlock();
14263   MachineFunction::iterator I = MBB;
14264   ++I;
14265
14266   // For the v = xbegin(), we generate
14267   //
14268   // thisMBB:
14269   //  xbegin sinkMBB
14270   //
14271   // mainMBB:
14272   //  eax = -1
14273   //
14274   // sinkMBB:
14275   //  v = eax
14276
14277   MachineBasicBlock *thisMBB = MBB;
14278   MachineFunction *MF = MBB->getParent();
14279   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14280   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14281   MF->insert(I, mainMBB);
14282   MF->insert(I, sinkMBB);
14283
14284   // Transfer the remainder of BB and its successor edges to sinkMBB.
14285   sinkMBB->splice(sinkMBB->begin(), MBB,
14286                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14287   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14288
14289   // thisMBB:
14290   //  xbegin sinkMBB
14291   //  # fallthrough to mainMBB
14292   //  # abortion to sinkMBB
14293   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14294   thisMBB->addSuccessor(mainMBB);
14295   thisMBB->addSuccessor(sinkMBB);
14296
14297   // mainMBB:
14298   //  EAX = -1
14299   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14300   mainMBB->addSuccessor(sinkMBB);
14301
14302   // sinkMBB:
14303   // EAX is live into the sinkMBB
14304   sinkMBB->addLiveIn(X86::EAX);
14305   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14306           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14307     .addReg(X86::EAX);
14308
14309   MI->eraseFromParent();
14310   return sinkMBB;
14311 }
14312
14313 // Get CMPXCHG opcode for the specified data type.
14314 static unsigned getCmpXChgOpcode(EVT VT) {
14315   switch (VT.getSimpleVT().SimpleTy) {
14316   case MVT::i8:  return X86::LCMPXCHG8;
14317   case MVT::i16: return X86::LCMPXCHG16;
14318   case MVT::i32: return X86::LCMPXCHG32;
14319   case MVT::i64: return X86::LCMPXCHG64;
14320   default:
14321     break;
14322   }
14323   llvm_unreachable("Invalid operand size!");
14324 }
14325
14326 // Get LOAD opcode for the specified data type.
14327 static unsigned getLoadOpcode(EVT VT) {
14328   switch (VT.getSimpleVT().SimpleTy) {
14329   case MVT::i8:  return X86::MOV8rm;
14330   case MVT::i16: return X86::MOV16rm;
14331   case MVT::i32: return X86::MOV32rm;
14332   case MVT::i64: return X86::MOV64rm;
14333   default:
14334     break;
14335   }
14336   llvm_unreachable("Invalid operand size!");
14337 }
14338
14339 // Get opcode of the non-atomic one from the specified atomic instruction.
14340 static unsigned getNonAtomicOpcode(unsigned Opc) {
14341   switch (Opc) {
14342   case X86::ATOMAND8:  return X86::AND8rr;
14343   case X86::ATOMAND16: return X86::AND16rr;
14344   case X86::ATOMAND32: return X86::AND32rr;
14345   case X86::ATOMAND64: return X86::AND64rr;
14346   case X86::ATOMOR8:   return X86::OR8rr;
14347   case X86::ATOMOR16:  return X86::OR16rr;
14348   case X86::ATOMOR32:  return X86::OR32rr;
14349   case X86::ATOMOR64:  return X86::OR64rr;
14350   case X86::ATOMXOR8:  return X86::XOR8rr;
14351   case X86::ATOMXOR16: return X86::XOR16rr;
14352   case X86::ATOMXOR32: return X86::XOR32rr;
14353   case X86::ATOMXOR64: return X86::XOR64rr;
14354   }
14355   llvm_unreachable("Unhandled atomic-load-op opcode!");
14356 }
14357
14358 // Get opcode of the non-atomic one from the specified atomic instruction with
14359 // extra opcode.
14360 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14361                                                unsigned &ExtraOpc) {
14362   switch (Opc) {
14363   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14364   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14365   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14366   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14367   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14368   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14369   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14370   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14371   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14372   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14373   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14374   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14375   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14376   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14377   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14378   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14379   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14380   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14381   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14382   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14383   }
14384   llvm_unreachable("Unhandled atomic-load-op opcode!");
14385 }
14386
14387 // Get opcode of the non-atomic one from the specified atomic instruction for
14388 // 64-bit data type on 32-bit target.
14389 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14390   switch (Opc) {
14391   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14392   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14393   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14394   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14395   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14396   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14397   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14398   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14399   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14400   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14401   }
14402   llvm_unreachable("Unhandled atomic-load-op opcode!");
14403 }
14404
14405 // Get opcode of the non-atomic one from the specified atomic instruction for
14406 // 64-bit data type on 32-bit target with extra opcode.
14407 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14408                                                    unsigned &HiOpc,
14409                                                    unsigned &ExtraOpc) {
14410   switch (Opc) {
14411   case X86::ATOMNAND6432:
14412     ExtraOpc = X86::NOT32r;
14413     HiOpc = X86::AND32rr;
14414     return X86::AND32rr;
14415   }
14416   llvm_unreachable("Unhandled atomic-load-op opcode!");
14417 }
14418
14419 // Get pseudo CMOV opcode from the specified data type.
14420 static unsigned getPseudoCMOVOpc(EVT VT) {
14421   switch (VT.getSimpleVT().SimpleTy) {
14422   case MVT::i8:  return X86::CMOV_GR8;
14423   case MVT::i16: return X86::CMOV_GR16;
14424   case MVT::i32: return X86::CMOV_GR32;
14425   default:
14426     break;
14427   }
14428   llvm_unreachable("Unknown CMOV opcode!");
14429 }
14430
14431 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14432 // They will be translated into a spin-loop or compare-exchange loop from
14433 //
14434 //    ...
14435 //    dst = atomic-fetch-op MI.addr, MI.val
14436 //    ...
14437 //
14438 // to
14439 //
14440 //    ...
14441 //    t1 = LOAD MI.addr
14442 // loop:
14443 //    t4 = phi(t1, t3 / loop)
14444 //    t2 = OP MI.val, t4
14445 //    EAX = t4
14446 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14447 //    t3 = EAX
14448 //    JNE loop
14449 // sink:
14450 //    dst = t3
14451 //    ...
14452 MachineBasicBlock *
14453 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14454                                        MachineBasicBlock *MBB) const {
14455   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14456   DebugLoc DL = MI->getDebugLoc();
14457
14458   MachineFunction *MF = MBB->getParent();
14459   MachineRegisterInfo &MRI = MF->getRegInfo();
14460
14461   const BasicBlock *BB = MBB->getBasicBlock();
14462   MachineFunction::iterator I = MBB;
14463   ++I;
14464
14465   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14466          "Unexpected number of operands");
14467
14468   assert(MI->hasOneMemOperand() &&
14469          "Expected atomic-load-op to have one memoperand");
14470
14471   // Memory Reference
14472   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14473   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14474
14475   unsigned DstReg, SrcReg;
14476   unsigned MemOpndSlot;
14477
14478   unsigned CurOp = 0;
14479
14480   DstReg = MI->getOperand(CurOp++).getReg();
14481   MemOpndSlot = CurOp;
14482   CurOp += X86::AddrNumOperands;
14483   SrcReg = MI->getOperand(CurOp++).getReg();
14484
14485   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14486   MVT::SimpleValueType VT = *RC->vt_begin();
14487   unsigned t1 = MRI.createVirtualRegister(RC);
14488   unsigned t2 = MRI.createVirtualRegister(RC);
14489   unsigned t3 = MRI.createVirtualRegister(RC);
14490   unsigned t4 = MRI.createVirtualRegister(RC);
14491   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14492
14493   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14494   unsigned LOADOpc = getLoadOpcode(VT);
14495
14496   // For the atomic load-arith operator, we generate
14497   //
14498   //  thisMBB:
14499   //    t1 = LOAD [MI.addr]
14500   //  mainMBB:
14501   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14502   //    t1 = OP MI.val, EAX
14503   //    EAX = t4
14504   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14505   //    t3 = EAX
14506   //    JNE mainMBB
14507   //  sinkMBB:
14508   //    dst = t3
14509
14510   MachineBasicBlock *thisMBB = MBB;
14511   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14512   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14513   MF->insert(I, mainMBB);
14514   MF->insert(I, sinkMBB);
14515
14516   MachineInstrBuilder MIB;
14517
14518   // Transfer the remainder of BB and its successor edges to sinkMBB.
14519   sinkMBB->splice(sinkMBB->begin(), MBB,
14520                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14521   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14522
14523   // thisMBB:
14524   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14525   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14526     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14527     if (NewMO.isReg())
14528       NewMO.setIsKill(false);
14529     MIB.addOperand(NewMO);
14530   }
14531   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14532     unsigned flags = (*MMOI)->getFlags();
14533     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14534     MachineMemOperand *MMO =
14535       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14536                                (*MMOI)->getSize(),
14537                                (*MMOI)->getBaseAlignment(),
14538                                (*MMOI)->getTBAAInfo(),
14539                                (*MMOI)->getRanges());
14540     MIB.addMemOperand(MMO);
14541   }
14542
14543   thisMBB->addSuccessor(mainMBB);
14544
14545   // mainMBB:
14546   MachineBasicBlock *origMainMBB = mainMBB;
14547
14548   // Add a PHI.
14549   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14550                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14551
14552   unsigned Opc = MI->getOpcode();
14553   switch (Opc) {
14554   default:
14555     llvm_unreachable("Unhandled atomic-load-op opcode!");
14556   case X86::ATOMAND8:
14557   case X86::ATOMAND16:
14558   case X86::ATOMAND32:
14559   case X86::ATOMAND64:
14560   case X86::ATOMOR8:
14561   case X86::ATOMOR16:
14562   case X86::ATOMOR32:
14563   case X86::ATOMOR64:
14564   case X86::ATOMXOR8:
14565   case X86::ATOMXOR16:
14566   case X86::ATOMXOR32:
14567   case X86::ATOMXOR64: {
14568     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14569     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14570       .addReg(t4);
14571     break;
14572   }
14573   case X86::ATOMNAND8:
14574   case X86::ATOMNAND16:
14575   case X86::ATOMNAND32:
14576   case X86::ATOMNAND64: {
14577     unsigned Tmp = MRI.createVirtualRegister(RC);
14578     unsigned NOTOpc;
14579     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14580     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14581       .addReg(t4);
14582     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14583     break;
14584   }
14585   case X86::ATOMMAX8:
14586   case X86::ATOMMAX16:
14587   case X86::ATOMMAX32:
14588   case X86::ATOMMAX64:
14589   case X86::ATOMMIN8:
14590   case X86::ATOMMIN16:
14591   case X86::ATOMMIN32:
14592   case X86::ATOMMIN64:
14593   case X86::ATOMUMAX8:
14594   case X86::ATOMUMAX16:
14595   case X86::ATOMUMAX32:
14596   case X86::ATOMUMAX64:
14597   case X86::ATOMUMIN8:
14598   case X86::ATOMUMIN16:
14599   case X86::ATOMUMIN32:
14600   case X86::ATOMUMIN64: {
14601     unsigned CMPOpc;
14602     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14603
14604     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14605       .addReg(SrcReg)
14606       .addReg(t4);
14607
14608     if (Subtarget->hasCMov()) {
14609       if (VT != MVT::i8) {
14610         // Native support
14611         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14612           .addReg(SrcReg)
14613           .addReg(t4);
14614       } else {
14615         // Promote i8 to i32 to use CMOV32
14616         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14617         const TargetRegisterClass *RC32 =
14618           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14619         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14620         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14621         unsigned Tmp = MRI.createVirtualRegister(RC32);
14622
14623         unsigned Undef = MRI.createVirtualRegister(RC32);
14624         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14625
14626         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14627           .addReg(Undef)
14628           .addReg(SrcReg)
14629           .addImm(X86::sub_8bit);
14630         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14631           .addReg(Undef)
14632           .addReg(t4)
14633           .addImm(X86::sub_8bit);
14634
14635         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14636           .addReg(SrcReg32)
14637           .addReg(AccReg32);
14638
14639         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14640           .addReg(Tmp, 0, X86::sub_8bit);
14641       }
14642     } else {
14643       // Use pseudo select and lower them.
14644       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14645              "Invalid atomic-load-op transformation!");
14646       unsigned SelOpc = getPseudoCMOVOpc(VT);
14647       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14648       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14649       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14650               .addReg(SrcReg).addReg(t4)
14651               .addImm(CC);
14652       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14653       // Replace the original PHI node as mainMBB is changed after CMOV
14654       // lowering.
14655       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14656         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14657       Phi->eraseFromParent();
14658     }
14659     break;
14660   }
14661   }
14662
14663   // Copy PhyReg back from virtual register.
14664   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14665     .addReg(t4);
14666
14667   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14668   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14669     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14670     if (NewMO.isReg())
14671       NewMO.setIsKill(false);
14672     MIB.addOperand(NewMO);
14673   }
14674   MIB.addReg(t2);
14675   MIB.setMemRefs(MMOBegin, MMOEnd);
14676
14677   // Copy PhyReg back to virtual register.
14678   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14679     .addReg(PhyReg);
14680
14681   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14682
14683   mainMBB->addSuccessor(origMainMBB);
14684   mainMBB->addSuccessor(sinkMBB);
14685
14686   // sinkMBB:
14687   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14688           TII->get(TargetOpcode::COPY), DstReg)
14689     .addReg(t3);
14690
14691   MI->eraseFromParent();
14692   return sinkMBB;
14693 }
14694
14695 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14696 // instructions. They will be translated into a spin-loop or compare-exchange
14697 // loop from
14698 //
14699 //    ...
14700 //    dst = atomic-fetch-op MI.addr, MI.val
14701 //    ...
14702 //
14703 // to
14704 //
14705 //    ...
14706 //    t1L = LOAD [MI.addr + 0]
14707 //    t1H = LOAD [MI.addr + 4]
14708 // loop:
14709 //    t4L = phi(t1L, t3L / loop)
14710 //    t4H = phi(t1H, t3H / loop)
14711 //    t2L = OP MI.val.lo, t4L
14712 //    t2H = OP MI.val.hi, t4H
14713 //    EAX = t4L
14714 //    EDX = t4H
14715 //    EBX = t2L
14716 //    ECX = t2H
14717 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14718 //    t3L = EAX
14719 //    t3H = EDX
14720 //    JNE loop
14721 // sink:
14722 //    dstL = t3L
14723 //    dstH = t3H
14724 //    ...
14725 MachineBasicBlock *
14726 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14727                                            MachineBasicBlock *MBB) const {
14728   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14729   DebugLoc DL = MI->getDebugLoc();
14730
14731   MachineFunction *MF = MBB->getParent();
14732   MachineRegisterInfo &MRI = MF->getRegInfo();
14733
14734   const BasicBlock *BB = MBB->getBasicBlock();
14735   MachineFunction::iterator I = MBB;
14736   ++I;
14737
14738   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14739          "Unexpected number of operands");
14740
14741   assert(MI->hasOneMemOperand() &&
14742          "Expected atomic-load-op32 to have one memoperand");
14743
14744   // Memory Reference
14745   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14746   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14747
14748   unsigned DstLoReg, DstHiReg;
14749   unsigned SrcLoReg, SrcHiReg;
14750   unsigned MemOpndSlot;
14751
14752   unsigned CurOp = 0;
14753
14754   DstLoReg = MI->getOperand(CurOp++).getReg();
14755   DstHiReg = MI->getOperand(CurOp++).getReg();
14756   MemOpndSlot = CurOp;
14757   CurOp += X86::AddrNumOperands;
14758   SrcLoReg = MI->getOperand(CurOp++).getReg();
14759   SrcHiReg = MI->getOperand(CurOp++).getReg();
14760
14761   const TargetRegisterClass *RC = &X86::GR32RegClass;
14762   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14763
14764   unsigned t1L = MRI.createVirtualRegister(RC);
14765   unsigned t1H = MRI.createVirtualRegister(RC);
14766   unsigned t2L = MRI.createVirtualRegister(RC);
14767   unsigned t2H = MRI.createVirtualRegister(RC);
14768   unsigned t3L = MRI.createVirtualRegister(RC);
14769   unsigned t3H = MRI.createVirtualRegister(RC);
14770   unsigned t4L = MRI.createVirtualRegister(RC);
14771   unsigned t4H = MRI.createVirtualRegister(RC);
14772
14773   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14774   unsigned LOADOpc = X86::MOV32rm;
14775
14776   // For the atomic load-arith operator, we generate
14777   //
14778   //  thisMBB:
14779   //    t1L = LOAD [MI.addr + 0]
14780   //    t1H = LOAD [MI.addr + 4]
14781   //  mainMBB:
14782   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14783   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14784   //    t2L = OP MI.val.lo, t4L
14785   //    t2H = OP MI.val.hi, t4H
14786   //    EBX = t2L
14787   //    ECX = t2H
14788   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14789   //    t3L = EAX
14790   //    t3H = EDX
14791   //    JNE loop
14792   //  sinkMBB:
14793   //    dstL = t3L
14794   //    dstH = t3H
14795
14796   MachineBasicBlock *thisMBB = MBB;
14797   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14798   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14799   MF->insert(I, mainMBB);
14800   MF->insert(I, sinkMBB);
14801
14802   MachineInstrBuilder MIB;
14803
14804   // Transfer the remainder of BB and its successor edges to sinkMBB.
14805   sinkMBB->splice(sinkMBB->begin(), MBB,
14806                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14807   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14808
14809   // thisMBB:
14810   // Lo
14811   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14812   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14813     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14814     if (NewMO.isReg())
14815       NewMO.setIsKill(false);
14816     MIB.addOperand(NewMO);
14817   }
14818   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14819     unsigned flags = (*MMOI)->getFlags();
14820     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14821     MachineMemOperand *MMO =
14822       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14823                                (*MMOI)->getSize(),
14824                                (*MMOI)->getBaseAlignment(),
14825                                (*MMOI)->getTBAAInfo(),
14826                                (*MMOI)->getRanges());
14827     MIB.addMemOperand(MMO);
14828   };
14829   MachineInstr *LowMI = MIB;
14830
14831   // Hi
14832   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14833   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14834     if (i == X86::AddrDisp) {
14835       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14836     } else {
14837       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14838       if (NewMO.isReg())
14839         NewMO.setIsKill(false);
14840       MIB.addOperand(NewMO);
14841     }
14842   }
14843   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14844
14845   thisMBB->addSuccessor(mainMBB);
14846
14847   // mainMBB:
14848   MachineBasicBlock *origMainMBB = mainMBB;
14849
14850   // Add PHIs.
14851   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14852                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14853   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14854                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14855
14856   unsigned Opc = MI->getOpcode();
14857   switch (Opc) {
14858   default:
14859     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14860   case X86::ATOMAND6432:
14861   case X86::ATOMOR6432:
14862   case X86::ATOMXOR6432:
14863   case X86::ATOMADD6432:
14864   case X86::ATOMSUB6432: {
14865     unsigned HiOpc;
14866     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14867     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14868       .addReg(SrcLoReg);
14869     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14870       .addReg(SrcHiReg);
14871     break;
14872   }
14873   case X86::ATOMNAND6432: {
14874     unsigned HiOpc, NOTOpc;
14875     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14876     unsigned TmpL = MRI.createVirtualRegister(RC);
14877     unsigned TmpH = MRI.createVirtualRegister(RC);
14878     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14879       .addReg(t4L);
14880     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14881       .addReg(t4H);
14882     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14883     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14884     break;
14885   }
14886   case X86::ATOMMAX6432:
14887   case X86::ATOMMIN6432:
14888   case X86::ATOMUMAX6432:
14889   case X86::ATOMUMIN6432: {
14890     unsigned HiOpc;
14891     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14892     unsigned cL = MRI.createVirtualRegister(RC8);
14893     unsigned cH = MRI.createVirtualRegister(RC8);
14894     unsigned cL32 = MRI.createVirtualRegister(RC);
14895     unsigned cH32 = MRI.createVirtualRegister(RC);
14896     unsigned cc = MRI.createVirtualRegister(RC);
14897     // cl := cmp src_lo, lo
14898     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14899       .addReg(SrcLoReg).addReg(t4L);
14900     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14901     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14902     // ch := cmp src_hi, hi
14903     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14904       .addReg(SrcHiReg).addReg(t4H);
14905     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14906     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14907     // cc := if (src_hi == hi) ? cl : ch;
14908     if (Subtarget->hasCMov()) {
14909       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14910         .addReg(cH32).addReg(cL32);
14911     } else {
14912       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14913               .addReg(cH32).addReg(cL32)
14914               .addImm(X86::COND_E);
14915       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14916     }
14917     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14918     if (Subtarget->hasCMov()) {
14919       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14920         .addReg(SrcLoReg).addReg(t4L);
14921       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14922         .addReg(SrcHiReg).addReg(t4H);
14923     } else {
14924       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14925               .addReg(SrcLoReg).addReg(t4L)
14926               .addImm(X86::COND_NE);
14927       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14928       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14929       // 2nd CMOV lowering.
14930       mainMBB->addLiveIn(X86::EFLAGS);
14931       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14932               .addReg(SrcHiReg).addReg(t4H)
14933               .addImm(X86::COND_NE);
14934       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14935       // Replace the original PHI node as mainMBB is changed after CMOV
14936       // lowering.
14937       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14938         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14939       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14940         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14941       PhiL->eraseFromParent();
14942       PhiH->eraseFromParent();
14943     }
14944     break;
14945   }
14946   case X86::ATOMSWAP6432: {
14947     unsigned HiOpc;
14948     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14949     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14950     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14951     break;
14952   }
14953   }
14954
14955   // Copy EDX:EAX back from HiReg:LoReg
14956   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14957   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14958   // Copy ECX:EBX from t1H:t1L
14959   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14960   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14961
14962   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14963   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14964     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14965     if (NewMO.isReg())
14966       NewMO.setIsKill(false);
14967     MIB.addOperand(NewMO);
14968   }
14969   MIB.setMemRefs(MMOBegin, MMOEnd);
14970
14971   // Copy EDX:EAX back to t3H:t3L
14972   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14973   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14974
14975   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14976
14977   mainMBB->addSuccessor(origMainMBB);
14978   mainMBB->addSuccessor(sinkMBB);
14979
14980   // sinkMBB:
14981   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14982           TII->get(TargetOpcode::COPY), DstLoReg)
14983     .addReg(t3L);
14984   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14985           TII->get(TargetOpcode::COPY), DstHiReg)
14986     .addReg(t3H);
14987
14988   MI->eraseFromParent();
14989   return sinkMBB;
14990 }
14991
14992 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14993 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14994 // in the .td file.
14995 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14996                                        const TargetInstrInfo *TII) {
14997   unsigned Opc;
14998   switch (MI->getOpcode()) {
14999   default: llvm_unreachable("illegal opcode!");
15000   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
15001   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
15002   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
15003   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
15004   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
15005   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
15006   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
15007   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
15008   }
15009
15010   DebugLoc dl = MI->getDebugLoc();
15011   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15012
15013   unsigned NumArgs = MI->getNumOperands();
15014   for (unsigned i = 1; i < NumArgs; ++i) {
15015     MachineOperand &Op = MI->getOperand(i);
15016     if (!(Op.isReg() && Op.isImplicit()))
15017       MIB.addOperand(Op);
15018   }
15019   if (MI->hasOneMemOperand())
15020     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15021
15022   BuildMI(*BB, MI, dl,
15023     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15024     .addReg(X86::XMM0);
15025
15026   MI->eraseFromParent();
15027   return BB;
15028 }
15029
15030 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15031 // defs in an instruction pattern
15032 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15033                                        const TargetInstrInfo *TII) {
15034   unsigned Opc;
15035   switch (MI->getOpcode()) {
15036   default: llvm_unreachable("illegal opcode!");
15037   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
15038   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
15039   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
15040   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
15041   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
15042   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
15043   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
15044   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
15045   }
15046
15047   DebugLoc dl = MI->getDebugLoc();
15048   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15049
15050   unsigned NumArgs = MI->getNumOperands(); // remove the results
15051   for (unsigned i = 1; i < NumArgs; ++i) {
15052     MachineOperand &Op = MI->getOperand(i);
15053     if (!(Op.isReg() && Op.isImplicit()))
15054       MIB.addOperand(Op);
15055   }
15056   if (MI->hasOneMemOperand())
15057     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15058
15059   BuildMI(*BB, MI, dl,
15060     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15061     .addReg(X86::ECX);
15062
15063   MI->eraseFromParent();
15064   return BB;
15065 }
15066
15067 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
15068                                        const TargetInstrInfo *TII,
15069                                        const X86Subtarget* Subtarget) {
15070   DebugLoc dl = MI->getDebugLoc();
15071
15072   // Address into RAX/EAX, other two args into ECX, EDX.
15073   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
15074   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
15075   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
15076   for (int i = 0; i < X86::AddrNumOperands; ++i)
15077     MIB.addOperand(MI->getOperand(i));
15078
15079   unsigned ValOps = X86::AddrNumOperands;
15080   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
15081     .addReg(MI->getOperand(ValOps).getReg());
15082   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
15083     .addReg(MI->getOperand(ValOps+1).getReg());
15084
15085   // The instruction doesn't actually take any operands though.
15086   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
15087
15088   MI->eraseFromParent(); // The pseudo is gone now.
15089   return BB;
15090 }
15091
15092 MachineBasicBlock *
15093 X86TargetLowering::EmitVAARG64WithCustomInserter(
15094                    MachineInstr *MI,
15095                    MachineBasicBlock *MBB) const {
15096   // Emit va_arg instruction on X86-64.
15097
15098   // Operands to this pseudo-instruction:
15099   // 0  ) Output        : destination address (reg)
15100   // 1-5) Input         : va_list address (addr, i64mem)
15101   // 6  ) ArgSize       : Size (in bytes) of vararg type
15102   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
15103   // 8  ) Align         : Alignment of type
15104   // 9  ) EFLAGS (implicit-def)
15105
15106   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
15107   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
15108
15109   unsigned DestReg = MI->getOperand(0).getReg();
15110   MachineOperand &Base = MI->getOperand(1);
15111   MachineOperand &Scale = MI->getOperand(2);
15112   MachineOperand &Index = MI->getOperand(3);
15113   MachineOperand &Disp = MI->getOperand(4);
15114   MachineOperand &Segment = MI->getOperand(5);
15115   unsigned ArgSize = MI->getOperand(6).getImm();
15116   unsigned ArgMode = MI->getOperand(7).getImm();
15117   unsigned Align = MI->getOperand(8).getImm();
15118
15119   // Memory Reference
15120   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
15121   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15122   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15123
15124   // Machine Information
15125   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15126   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
15127   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
15128   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
15129   DebugLoc DL = MI->getDebugLoc();
15130
15131   // struct va_list {
15132   //   i32   gp_offset
15133   //   i32   fp_offset
15134   //   i64   overflow_area (address)
15135   //   i64   reg_save_area (address)
15136   // }
15137   // sizeof(va_list) = 24
15138   // alignment(va_list) = 8
15139
15140   unsigned TotalNumIntRegs = 6;
15141   unsigned TotalNumXMMRegs = 8;
15142   bool UseGPOffset = (ArgMode == 1);
15143   bool UseFPOffset = (ArgMode == 2);
15144   unsigned MaxOffset = TotalNumIntRegs * 8 +
15145                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
15146
15147   /* Align ArgSize to a multiple of 8 */
15148   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
15149   bool NeedsAlign = (Align > 8);
15150
15151   MachineBasicBlock *thisMBB = MBB;
15152   MachineBasicBlock *overflowMBB;
15153   MachineBasicBlock *offsetMBB;
15154   MachineBasicBlock *endMBB;
15155
15156   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
15157   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
15158   unsigned OffsetReg = 0;
15159
15160   if (!UseGPOffset && !UseFPOffset) {
15161     // If we only pull from the overflow region, we don't create a branch.
15162     // We don't need to alter control flow.
15163     OffsetDestReg = 0; // unused
15164     OverflowDestReg = DestReg;
15165
15166     offsetMBB = NULL;
15167     overflowMBB = thisMBB;
15168     endMBB = thisMBB;
15169   } else {
15170     // First emit code to check if gp_offset (or fp_offset) is below the bound.
15171     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15172     // If not, pull from overflow_area. (branch to overflowMBB)
15173     //
15174     //       thisMBB
15175     //         |     .
15176     //         |        .
15177     //     offsetMBB   overflowMBB
15178     //         |        .
15179     //         |     .
15180     //        endMBB
15181
15182     // Registers for the PHI in endMBB
15183     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
15184     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
15185
15186     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15187     MachineFunction *MF = MBB->getParent();
15188     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15189     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15190     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15191
15192     MachineFunction::iterator MBBIter = MBB;
15193     ++MBBIter;
15194
15195     // Insert the new basic blocks
15196     MF->insert(MBBIter, offsetMBB);
15197     MF->insert(MBBIter, overflowMBB);
15198     MF->insert(MBBIter, endMBB);
15199
15200     // Transfer the remainder of MBB and its successor edges to endMBB.
15201     endMBB->splice(endMBB->begin(), thisMBB,
15202                     llvm::next(MachineBasicBlock::iterator(MI)),
15203                     thisMBB->end());
15204     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
15205
15206     // Make offsetMBB and overflowMBB successors of thisMBB
15207     thisMBB->addSuccessor(offsetMBB);
15208     thisMBB->addSuccessor(overflowMBB);
15209
15210     // endMBB is a successor of both offsetMBB and overflowMBB
15211     offsetMBB->addSuccessor(endMBB);
15212     overflowMBB->addSuccessor(endMBB);
15213
15214     // Load the offset value into a register
15215     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15216     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
15217       .addOperand(Base)
15218       .addOperand(Scale)
15219       .addOperand(Index)
15220       .addDisp(Disp, UseFPOffset ? 4 : 0)
15221       .addOperand(Segment)
15222       .setMemRefs(MMOBegin, MMOEnd);
15223
15224     // Check if there is enough room left to pull this argument.
15225     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15226       .addReg(OffsetReg)
15227       .addImm(MaxOffset + 8 - ArgSizeA8);
15228
15229     // Branch to "overflowMBB" if offset >= max
15230     // Fall through to "offsetMBB" otherwise
15231     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15232       .addMBB(overflowMBB);
15233   }
15234
15235   // In offsetMBB, emit code to use the reg_save_area.
15236   if (offsetMBB) {
15237     assert(OffsetReg != 0);
15238
15239     // Read the reg_save_area address.
15240     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15241     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15242       .addOperand(Base)
15243       .addOperand(Scale)
15244       .addOperand(Index)
15245       .addDisp(Disp, 16)
15246       .addOperand(Segment)
15247       .setMemRefs(MMOBegin, MMOEnd);
15248
15249     // Zero-extend the offset
15250     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15251       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15252         .addImm(0)
15253         .addReg(OffsetReg)
15254         .addImm(X86::sub_32bit);
15255
15256     // Add the offset to the reg_save_area to get the final address.
15257     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15258       .addReg(OffsetReg64)
15259       .addReg(RegSaveReg);
15260
15261     // Compute the offset for the next argument
15262     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15263     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15264       .addReg(OffsetReg)
15265       .addImm(UseFPOffset ? 16 : 8);
15266
15267     // Store it back into the va_list.
15268     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15269       .addOperand(Base)
15270       .addOperand(Scale)
15271       .addOperand(Index)
15272       .addDisp(Disp, UseFPOffset ? 4 : 0)
15273       .addOperand(Segment)
15274       .addReg(NextOffsetReg)
15275       .setMemRefs(MMOBegin, MMOEnd);
15276
15277     // Jump to endMBB
15278     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15279       .addMBB(endMBB);
15280   }
15281
15282   //
15283   // Emit code to use overflow area
15284   //
15285
15286   // Load the overflow_area address into a register.
15287   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15288   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15289     .addOperand(Base)
15290     .addOperand(Scale)
15291     .addOperand(Index)
15292     .addDisp(Disp, 8)
15293     .addOperand(Segment)
15294     .setMemRefs(MMOBegin, MMOEnd);
15295
15296   // If we need to align it, do so. Otherwise, just copy the address
15297   // to OverflowDestReg.
15298   if (NeedsAlign) {
15299     // Align the overflow address
15300     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15301     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15302
15303     // aligned_addr = (addr + (align-1)) & ~(align-1)
15304     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15305       .addReg(OverflowAddrReg)
15306       .addImm(Align-1);
15307
15308     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15309       .addReg(TmpReg)
15310       .addImm(~(uint64_t)(Align-1));
15311   } else {
15312     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15313       .addReg(OverflowAddrReg);
15314   }
15315
15316   // Compute the next overflow address after this argument.
15317   // (the overflow address should be kept 8-byte aligned)
15318   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15319   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15320     .addReg(OverflowDestReg)
15321     .addImm(ArgSizeA8);
15322
15323   // Store the new overflow address.
15324   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15325     .addOperand(Base)
15326     .addOperand(Scale)
15327     .addOperand(Index)
15328     .addDisp(Disp, 8)
15329     .addOperand(Segment)
15330     .addReg(NextAddrReg)
15331     .setMemRefs(MMOBegin, MMOEnd);
15332
15333   // If we branched, emit the PHI to the front of endMBB.
15334   if (offsetMBB) {
15335     BuildMI(*endMBB, endMBB->begin(), DL,
15336             TII->get(X86::PHI), DestReg)
15337       .addReg(OffsetDestReg).addMBB(offsetMBB)
15338       .addReg(OverflowDestReg).addMBB(overflowMBB);
15339   }
15340
15341   // Erase the pseudo instruction
15342   MI->eraseFromParent();
15343
15344   return endMBB;
15345 }
15346
15347 MachineBasicBlock *
15348 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15349                                                  MachineInstr *MI,
15350                                                  MachineBasicBlock *MBB) const {
15351   // Emit code to save XMM registers to the stack. The ABI says that the
15352   // number of registers to save is given in %al, so it's theoretically
15353   // possible to do an indirect jump trick to avoid saving all of them,
15354   // however this code takes a simpler approach and just executes all
15355   // of the stores if %al is non-zero. It's less code, and it's probably
15356   // easier on the hardware branch predictor, and stores aren't all that
15357   // expensive anyway.
15358
15359   // Create the new basic blocks. One block contains all the XMM stores,
15360   // and one block is the final destination regardless of whether any
15361   // stores were performed.
15362   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15363   MachineFunction *F = MBB->getParent();
15364   MachineFunction::iterator MBBIter = MBB;
15365   ++MBBIter;
15366   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15367   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15368   F->insert(MBBIter, XMMSaveMBB);
15369   F->insert(MBBIter, EndMBB);
15370
15371   // Transfer the remainder of MBB and its successor edges to EndMBB.
15372   EndMBB->splice(EndMBB->begin(), MBB,
15373                  llvm::next(MachineBasicBlock::iterator(MI)),
15374                  MBB->end());
15375   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15376
15377   // The original block will now fall through to the XMM save block.
15378   MBB->addSuccessor(XMMSaveMBB);
15379   // The XMMSaveMBB will fall through to the end block.
15380   XMMSaveMBB->addSuccessor(EndMBB);
15381
15382   // Now add the instructions.
15383   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15384   DebugLoc DL = MI->getDebugLoc();
15385
15386   unsigned CountReg = MI->getOperand(0).getReg();
15387   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15388   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15389
15390   if (!Subtarget->isTargetWin64()) {
15391     // If %al is 0, branch around the XMM save block.
15392     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15393     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15394     MBB->addSuccessor(EndMBB);
15395   }
15396
15397   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
15398   // that was just emitted, but clearly shouldn't be "saved".
15399   assert((MI->getNumOperands() <= 3 ||
15400           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
15401           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
15402          && "Expected last argument to be EFLAGS");
15403   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15404   // In the XMM save block, save all the XMM argument registers.
15405   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
15406     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15407     MachineMemOperand *MMO =
15408       F->getMachineMemOperand(
15409           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15410         MachineMemOperand::MOStore,
15411         /*Size=*/16, /*Align=*/16);
15412     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15413       .addFrameIndex(RegSaveFrameIndex)
15414       .addImm(/*Scale=*/1)
15415       .addReg(/*IndexReg=*/0)
15416       .addImm(/*Disp=*/Offset)
15417       .addReg(/*Segment=*/0)
15418       .addReg(MI->getOperand(i).getReg())
15419       .addMemOperand(MMO);
15420   }
15421
15422   MI->eraseFromParent();   // The pseudo instruction is gone now.
15423
15424   return EndMBB;
15425 }
15426
15427 // The EFLAGS operand of SelectItr might be missing a kill marker
15428 // because there were multiple uses of EFLAGS, and ISel didn't know
15429 // which to mark. Figure out whether SelectItr should have had a
15430 // kill marker, and set it if it should. Returns the correct kill
15431 // marker value.
15432 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15433                                      MachineBasicBlock* BB,
15434                                      const TargetRegisterInfo* TRI) {
15435   // Scan forward through BB for a use/def of EFLAGS.
15436   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15437   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15438     const MachineInstr& mi = *miI;
15439     if (mi.readsRegister(X86::EFLAGS))
15440       return false;
15441     if (mi.definesRegister(X86::EFLAGS))
15442       break; // Should have kill-flag - update below.
15443   }
15444
15445   // If we hit the end of the block, check whether EFLAGS is live into a
15446   // successor.
15447   if (miI == BB->end()) {
15448     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15449                                           sEnd = BB->succ_end();
15450          sItr != sEnd; ++sItr) {
15451       MachineBasicBlock* succ = *sItr;
15452       if (succ->isLiveIn(X86::EFLAGS))
15453         return false;
15454     }
15455   }
15456
15457   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15458   // out. SelectMI should have a kill flag on EFLAGS.
15459   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15460   return true;
15461 }
15462
15463 MachineBasicBlock *
15464 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15465                                      MachineBasicBlock *BB) const {
15466   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15467   DebugLoc DL = MI->getDebugLoc();
15468
15469   // To "insert" a SELECT_CC instruction, we actually have to insert the
15470   // diamond control-flow pattern.  The incoming instruction knows the
15471   // destination vreg to set, the condition code register to branch on, the
15472   // true/false values to select between, and a branch opcode to use.
15473   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15474   MachineFunction::iterator It = BB;
15475   ++It;
15476
15477   //  thisMBB:
15478   //  ...
15479   //   TrueVal = ...
15480   //   cmpTY ccX, r1, r2
15481   //   bCC copy1MBB
15482   //   fallthrough --> copy0MBB
15483   MachineBasicBlock *thisMBB = BB;
15484   MachineFunction *F = BB->getParent();
15485   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15486   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15487   F->insert(It, copy0MBB);
15488   F->insert(It, sinkMBB);
15489
15490   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15491   // live into the sink and copy blocks.
15492   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15493   if (!MI->killsRegister(X86::EFLAGS) &&
15494       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15495     copy0MBB->addLiveIn(X86::EFLAGS);
15496     sinkMBB->addLiveIn(X86::EFLAGS);
15497   }
15498
15499   // Transfer the remainder of BB and its successor edges to sinkMBB.
15500   sinkMBB->splice(sinkMBB->begin(), BB,
15501                   llvm::next(MachineBasicBlock::iterator(MI)),
15502                   BB->end());
15503   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15504
15505   // Add the true and fallthrough blocks as its successors.
15506   BB->addSuccessor(copy0MBB);
15507   BB->addSuccessor(sinkMBB);
15508
15509   // Create the conditional branch instruction.
15510   unsigned Opc =
15511     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15512   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15513
15514   //  copy0MBB:
15515   //   %FalseValue = ...
15516   //   # fallthrough to sinkMBB
15517   copy0MBB->addSuccessor(sinkMBB);
15518
15519   //  sinkMBB:
15520   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15521   //  ...
15522   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15523           TII->get(X86::PHI), MI->getOperand(0).getReg())
15524     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15525     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15526
15527   MI->eraseFromParent();   // The pseudo instruction is gone now.
15528   return sinkMBB;
15529 }
15530
15531 MachineBasicBlock *
15532 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15533                                         bool Is64Bit) const {
15534   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15535   DebugLoc DL = MI->getDebugLoc();
15536   MachineFunction *MF = BB->getParent();
15537   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15538
15539   assert(getTargetMachine().Options.EnableSegmentedStacks);
15540
15541   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15542   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15543
15544   // BB:
15545   //  ... [Till the alloca]
15546   // If stacklet is not large enough, jump to mallocMBB
15547   //
15548   // bumpMBB:
15549   //  Allocate by subtracting from RSP
15550   //  Jump to continueMBB
15551   //
15552   // mallocMBB:
15553   //  Allocate by call to runtime
15554   //
15555   // continueMBB:
15556   //  ...
15557   //  [rest of original BB]
15558   //
15559
15560   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15561   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15562   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15563
15564   MachineRegisterInfo &MRI = MF->getRegInfo();
15565   const TargetRegisterClass *AddrRegClass =
15566     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15567
15568   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15569     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15570     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15571     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15572     sizeVReg = MI->getOperand(1).getReg(),
15573     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15574
15575   MachineFunction::iterator MBBIter = BB;
15576   ++MBBIter;
15577
15578   MF->insert(MBBIter, bumpMBB);
15579   MF->insert(MBBIter, mallocMBB);
15580   MF->insert(MBBIter, continueMBB);
15581
15582   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15583                       (MachineBasicBlock::iterator(MI)), BB->end());
15584   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15585
15586   // Add code to the main basic block to check if the stack limit has been hit,
15587   // and if so, jump to mallocMBB otherwise to bumpMBB.
15588   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15589   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15590     .addReg(tmpSPVReg).addReg(sizeVReg);
15591   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15592     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15593     .addReg(SPLimitVReg);
15594   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15595
15596   // bumpMBB simply decreases the stack pointer, since we know the current
15597   // stacklet has enough space.
15598   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15599     .addReg(SPLimitVReg);
15600   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15601     .addReg(SPLimitVReg);
15602   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15603
15604   // Calls into a routine in libgcc to allocate more space from the heap.
15605   const uint32_t *RegMask =
15606     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15607   if (Is64Bit) {
15608     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15609       .addReg(sizeVReg);
15610     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15611       .addExternalSymbol("__morestack_allocate_stack_space")
15612       .addRegMask(RegMask)
15613       .addReg(X86::RDI, RegState::Implicit)
15614       .addReg(X86::RAX, RegState::ImplicitDefine);
15615   } else {
15616     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15617       .addImm(12);
15618     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15619     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15620       .addExternalSymbol("__morestack_allocate_stack_space")
15621       .addRegMask(RegMask)
15622       .addReg(X86::EAX, RegState::ImplicitDefine);
15623   }
15624
15625   if (!Is64Bit)
15626     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15627       .addImm(16);
15628
15629   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15630     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15631   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15632
15633   // Set up the CFG correctly.
15634   BB->addSuccessor(bumpMBB);
15635   BB->addSuccessor(mallocMBB);
15636   mallocMBB->addSuccessor(continueMBB);
15637   bumpMBB->addSuccessor(continueMBB);
15638
15639   // Take care of the PHI nodes.
15640   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15641           MI->getOperand(0).getReg())
15642     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15643     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15644
15645   // Delete the original pseudo instruction.
15646   MI->eraseFromParent();
15647
15648   // And we're done.
15649   return continueMBB;
15650 }
15651
15652 MachineBasicBlock *
15653 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15654                                           MachineBasicBlock *BB) const {
15655   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15656   DebugLoc DL = MI->getDebugLoc();
15657
15658   assert(!Subtarget->isTargetMacho());
15659
15660   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15661   // non-trivial part is impdef of ESP.
15662
15663   if (Subtarget->isTargetWin64()) {
15664     if (Subtarget->isTargetCygMing()) {
15665       // ___chkstk(Mingw64):
15666       // Clobbers R10, R11, RAX and EFLAGS.
15667       // Updates RSP.
15668       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15669         .addExternalSymbol("___chkstk")
15670         .addReg(X86::RAX, RegState::Implicit)
15671         .addReg(X86::RSP, RegState::Implicit)
15672         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15673         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15674         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15675     } else {
15676       // __chkstk(MSVCRT): does not update stack pointer.
15677       // Clobbers R10, R11 and EFLAGS.
15678       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15679         .addExternalSymbol("__chkstk")
15680         .addReg(X86::RAX, RegState::Implicit)
15681         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15682       // RAX has the offset to be subtracted from RSP.
15683       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15684         .addReg(X86::RSP)
15685         .addReg(X86::RAX);
15686     }
15687   } else {
15688     const char *StackProbeSymbol =
15689       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15690
15691     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15692       .addExternalSymbol(StackProbeSymbol)
15693       .addReg(X86::EAX, RegState::Implicit)
15694       .addReg(X86::ESP, RegState::Implicit)
15695       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15696       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15697       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15698   }
15699
15700   MI->eraseFromParent();   // The pseudo instruction is gone now.
15701   return BB;
15702 }
15703
15704 MachineBasicBlock *
15705 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15706                                       MachineBasicBlock *BB) const {
15707   // This is pretty easy.  We're taking the value that we received from
15708   // our load from the relocation, sticking it in either RDI (x86-64)
15709   // or EAX and doing an indirect call.  The return value will then
15710   // be in the normal return register.
15711   const X86InstrInfo *TII
15712     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15713   DebugLoc DL = MI->getDebugLoc();
15714   MachineFunction *F = BB->getParent();
15715
15716   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15717   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15718
15719   // Get a register mask for the lowered call.
15720   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15721   // proper register mask.
15722   const uint32_t *RegMask =
15723     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15724   if (Subtarget->is64Bit()) {
15725     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15726                                       TII->get(X86::MOV64rm), X86::RDI)
15727     .addReg(X86::RIP)
15728     .addImm(0).addReg(0)
15729     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15730                       MI->getOperand(3).getTargetFlags())
15731     .addReg(0);
15732     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15733     addDirectMem(MIB, X86::RDI);
15734     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15735   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15736     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15737                                       TII->get(X86::MOV32rm), X86::EAX)
15738     .addReg(0)
15739     .addImm(0).addReg(0)
15740     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15741                       MI->getOperand(3).getTargetFlags())
15742     .addReg(0);
15743     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15744     addDirectMem(MIB, X86::EAX);
15745     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15746   } else {
15747     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15748                                       TII->get(X86::MOV32rm), X86::EAX)
15749     .addReg(TII->getGlobalBaseReg(F))
15750     .addImm(0).addReg(0)
15751     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15752                       MI->getOperand(3).getTargetFlags())
15753     .addReg(0);
15754     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15755     addDirectMem(MIB, X86::EAX);
15756     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15757   }
15758
15759   MI->eraseFromParent(); // The pseudo instruction is gone now.
15760   return BB;
15761 }
15762
15763 MachineBasicBlock *
15764 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15765                                     MachineBasicBlock *MBB) const {
15766   DebugLoc DL = MI->getDebugLoc();
15767   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15768
15769   MachineFunction *MF = MBB->getParent();
15770   MachineRegisterInfo &MRI = MF->getRegInfo();
15771
15772   const BasicBlock *BB = MBB->getBasicBlock();
15773   MachineFunction::iterator I = MBB;
15774   ++I;
15775
15776   // Memory Reference
15777   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15778   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15779
15780   unsigned DstReg;
15781   unsigned MemOpndSlot = 0;
15782
15783   unsigned CurOp = 0;
15784
15785   DstReg = MI->getOperand(CurOp++).getReg();
15786   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15787   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15788   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15789   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15790
15791   MemOpndSlot = CurOp;
15792
15793   MVT PVT = getPointerTy();
15794   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15795          "Invalid Pointer Size!");
15796
15797   // For v = setjmp(buf), we generate
15798   //
15799   // thisMBB:
15800   //  buf[LabelOffset] = restoreMBB
15801   //  SjLjSetup restoreMBB
15802   //
15803   // mainMBB:
15804   //  v_main = 0
15805   //
15806   // sinkMBB:
15807   //  v = phi(main, restore)
15808   //
15809   // restoreMBB:
15810   //  v_restore = 1
15811
15812   MachineBasicBlock *thisMBB = MBB;
15813   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15814   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15815   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15816   MF->insert(I, mainMBB);
15817   MF->insert(I, sinkMBB);
15818   MF->push_back(restoreMBB);
15819
15820   MachineInstrBuilder MIB;
15821
15822   // Transfer the remainder of BB and its successor edges to sinkMBB.
15823   sinkMBB->splice(sinkMBB->begin(), MBB,
15824                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15825   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15826
15827   // thisMBB:
15828   unsigned PtrStoreOpc = 0;
15829   unsigned LabelReg = 0;
15830   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15831   Reloc::Model RM = getTargetMachine().getRelocationModel();
15832   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15833                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15834
15835   // Prepare IP either in reg or imm.
15836   if (!UseImmLabel) {
15837     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15838     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15839     LabelReg = MRI.createVirtualRegister(PtrRC);
15840     if (Subtarget->is64Bit()) {
15841       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15842               .addReg(X86::RIP)
15843               .addImm(0)
15844               .addReg(0)
15845               .addMBB(restoreMBB)
15846               .addReg(0);
15847     } else {
15848       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15849       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15850               .addReg(XII->getGlobalBaseReg(MF))
15851               .addImm(0)
15852               .addReg(0)
15853               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15854               .addReg(0);
15855     }
15856   } else
15857     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15858   // Store IP
15859   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15860   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15861     if (i == X86::AddrDisp)
15862       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15863     else
15864       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15865   }
15866   if (!UseImmLabel)
15867     MIB.addReg(LabelReg);
15868   else
15869     MIB.addMBB(restoreMBB);
15870   MIB.setMemRefs(MMOBegin, MMOEnd);
15871   // Setup
15872   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15873           .addMBB(restoreMBB);
15874
15875   const X86RegisterInfo *RegInfo =
15876     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15877   MIB.addRegMask(RegInfo->getNoPreservedMask());
15878   thisMBB->addSuccessor(mainMBB);
15879   thisMBB->addSuccessor(restoreMBB);
15880
15881   // mainMBB:
15882   //  EAX = 0
15883   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15884   mainMBB->addSuccessor(sinkMBB);
15885
15886   // sinkMBB:
15887   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15888           TII->get(X86::PHI), DstReg)
15889     .addReg(mainDstReg).addMBB(mainMBB)
15890     .addReg(restoreDstReg).addMBB(restoreMBB);
15891
15892   // restoreMBB:
15893   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15894   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15895   restoreMBB->addSuccessor(sinkMBB);
15896
15897   MI->eraseFromParent();
15898   return sinkMBB;
15899 }
15900
15901 MachineBasicBlock *
15902 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15903                                      MachineBasicBlock *MBB) const {
15904   DebugLoc DL = MI->getDebugLoc();
15905   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15906
15907   MachineFunction *MF = MBB->getParent();
15908   MachineRegisterInfo &MRI = MF->getRegInfo();
15909
15910   // Memory Reference
15911   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15912   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15913
15914   MVT PVT = getPointerTy();
15915   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15916          "Invalid Pointer Size!");
15917
15918   const TargetRegisterClass *RC =
15919     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15920   unsigned Tmp = MRI.createVirtualRegister(RC);
15921   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15922   const X86RegisterInfo *RegInfo =
15923     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15924   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15925   unsigned SP = RegInfo->getStackRegister();
15926
15927   MachineInstrBuilder MIB;
15928
15929   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15930   const int64_t SPOffset = 2 * PVT.getStoreSize();
15931
15932   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15933   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15934
15935   // Reload FP
15936   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15937   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15938     MIB.addOperand(MI->getOperand(i));
15939   MIB.setMemRefs(MMOBegin, MMOEnd);
15940   // Reload IP
15941   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15942   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15943     if (i == X86::AddrDisp)
15944       MIB.addDisp(MI->getOperand(i), LabelOffset);
15945     else
15946       MIB.addOperand(MI->getOperand(i));
15947   }
15948   MIB.setMemRefs(MMOBegin, MMOEnd);
15949   // Reload SP
15950   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15951   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15952     if (i == X86::AddrDisp)
15953       MIB.addDisp(MI->getOperand(i), SPOffset);
15954     else
15955       MIB.addOperand(MI->getOperand(i));
15956   }
15957   MIB.setMemRefs(MMOBegin, MMOEnd);
15958   // Jump
15959   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15960
15961   MI->eraseFromParent();
15962   return MBB;
15963 }
15964
15965 MachineBasicBlock *
15966 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15967                                                MachineBasicBlock *BB) const {
15968   switch (MI->getOpcode()) {
15969   default: llvm_unreachable("Unexpected instr type to insert");
15970   case X86::TAILJMPd64:
15971   case X86::TAILJMPr64:
15972   case X86::TAILJMPm64:
15973     llvm_unreachable("TAILJMP64 would not be touched here.");
15974   case X86::TCRETURNdi64:
15975   case X86::TCRETURNri64:
15976   case X86::TCRETURNmi64:
15977     return BB;
15978   case X86::WIN_ALLOCA:
15979     return EmitLoweredWinAlloca(MI, BB);
15980   case X86::SEG_ALLOCA_32:
15981     return EmitLoweredSegAlloca(MI, BB, false);
15982   case X86::SEG_ALLOCA_64:
15983     return EmitLoweredSegAlloca(MI, BB, true);
15984   case X86::TLSCall_32:
15985   case X86::TLSCall_64:
15986     return EmitLoweredTLSCall(MI, BB);
15987   case X86::CMOV_GR8:
15988   case X86::CMOV_FR32:
15989   case X86::CMOV_FR64:
15990   case X86::CMOV_V4F32:
15991   case X86::CMOV_V2F64:
15992   case X86::CMOV_V2I64:
15993   case X86::CMOV_V8F32:
15994   case X86::CMOV_V4F64:
15995   case X86::CMOV_V4I64:
15996   case X86::CMOV_V16F32:
15997   case X86::CMOV_V8F64:
15998   case X86::CMOV_V8I64:
15999   case X86::CMOV_GR16:
16000   case X86::CMOV_GR32:
16001   case X86::CMOV_RFP32:
16002   case X86::CMOV_RFP64:
16003   case X86::CMOV_RFP80:
16004     return EmitLoweredSelect(MI, BB);
16005
16006   case X86::FP32_TO_INT16_IN_MEM:
16007   case X86::FP32_TO_INT32_IN_MEM:
16008   case X86::FP32_TO_INT64_IN_MEM:
16009   case X86::FP64_TO_INT16_IN_MEM:
16010   case X86::FP64_TO_INT32_IN_MEM:
16011   case X86::FP64_TO_INT64_IN_MEM:
16012   case X86::FP80_TO_INT16_IN_MEM:
16013   case X86::FP80_TO_INT32_IN_MEM:
16014   case X86::FP80_TO_INT64_IN_MEM: {
16015     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16016     DebugLoc DL = MI->getDebugLoc();
16017
16018     // Change the floating point control register to use "round towards zero"
16019     // mode when truncating to an integer value.
16020     MachineFunction *F = BB->getParent();
16021     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
16022     addFrameReference(BuildMI(*BB, MI, DL,
16023                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
16024
16025     // Load the old value of the high byte of the control word...
16026     unsigned OldCW =
16027       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
16028     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
16029                       CWFrameIdx);
16030
16031     // Set the high part to be round to zero...
16032     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
16033       .addImm(0xC7F);
16034
16035     // Reload the modified control word now...
16036     addFrameReference(BuildMI(*BB, MI, DL,
16037                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16038
16039     // Restore the memory image of control word to original value
16040     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
16041       .addReg(OldCW);
16042
16043     // Get the X86 opcode to use.
16044     unsigned Opc;
16045     switch (MI->getOpcode()) {
16046     default: llvm_unreachable("illegal opcode!");
16047     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
16048     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
16049     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
16050     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
16051     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
16052     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
16053     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
16054     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
16055     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
16056     }
16057
16058     X86AddressMode AM;
16059     MachineOperand &Op = MI->getOperand(0);
16060     if (Op.isReg()) {
16061       AM.BaseType = X86AddressMode::RegBase;
16062       AM.Base.Reg = Op.getReg();
16063     } else {
16064       AM.BaseType = X86AddressMode::FrameIndexBase;
16065       AM.Base.FrameIndex = Op.getIndex();
16066     }
16067     Op = MI->getOperand(1);
16068     if (Op.isImm())
16069       AM.Scale = Op.getImm();
16070     Op = MI->getOperand(2);
16071     if (Op.isImm())
16072       AM.IndexReg = Op.getImm();
16073     Op = MI->getOperand(3);
16074     if (Op.isGlobal()) {
16075       AM.GV = Op.getGlobal();
16076     } else {
16077       AM.Disp = Op.getImm();
16078     }
16079     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
16080                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
16081
16082     // Reload the original control word now.
16083     addFrameReference(BuildMI(*BB, MI, DL,
16084                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16085
16086     MI->eraseFromParent();   // The pseudo instruction is gone now.
16087     return BB;
16088   }
16089     // String/text processing lowering.
16090   case X86::PCMPISTRM128REG:
16091   case X86::VPCMPISTRM128REG:
16092   case X86::PCMPISTRM128MEM:
16093   case X86::VPCMPISTRM128MEM:
16094   case X86::PCMPESTRM128REG:
16095   case X86::VPCMPESTRM128REG:
16096   case X86::PCMPESTRM128MEM:
16097   case X86::VPCMPESTRM128MEM:
16098     assert(Subtarget->hasSSE42() &&
16099            "Target must have SSE4.2 or AVX features enabled");
16100     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
16101
16102   // String/text processing lowering.
16103   case X86::PCMPISTRIREG:
16104   case X86::VPCMPISTRIREG:
16105   case X86::PCMPISTRIMEM:
16106   case X86::VPCMPISTRIMEM:
16107   case X86::PCMPESTRIREG:
16108   case X86::VPCMPESTRIREG:
16109   case X86::PCMPESTRIMEM:
16110   case X86::VPCMPESTRIMEM:
16111     assert(Subtarget->hasSSE42() &&
16112            "Target must have SSE4.2 or AVX features enabled");
16113     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
16114
16115   // Thread synchronization.
16116   case X86::MONITOR:
16117     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
16118
16119   // xbegin
16120   case X86::XBEGIN:
16121     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
16122
16123   // Atomic Lowering.
16124   case X86::ATOMAND8:
16125   case X86::ATOMAND16:
16126   case X86::ATOMAND32:
16127   case X86::ATOMAND64:
16128     // Fall through
16129   case X86::ATOMOR8:
16130   case X86::ATOMOR16:
16131   case X86::ATOMOR32:
16132   case X86::ATOMOR64:
16133     // Fall through
16134   case X86::ATOMXOR16:
16135   case X86::ATOMXOR8:
16136   case X86::ATOMXOR32:
16137   case X86::ATOMXOR64:
16138     // Fall through
16139   case X86::ATOMNAND8:
16140   case X86::ATOMNAND16:
16141   case X86::ATOMNAND32:
16142   case X86::ATOMNAND64:
16143     // Fall through
16144   case X86::ATOMMAX8:
16145   case X86::ATOMMAX16:
16146   case X86::ATOMMAX32:
16147   case X86::ATOMMAX64:
16148     // Fall through
16149   case X86::ATOMMIN8:
16150   case X86::ATOMMIN16:
16151   case X86::ATOMMIN32:
16152   case X86::ATOMMIN64:
16153     // Fall through
16154   case X86::ATOMUMAX8:
16155   case X86::ATOMUMAX16:
16156   case X86::ATOMUMAX32:
16157   case X86::ATOMUMAX64:
16158     // Fall through
16159   case X86::ATOMUMIN8:
16160   case X86::ATOMUMIN16:
16161   case X86::ATOMUMIN32:
16162   case X86::ATOMUMIN64:
16163     return EmitAtomicLoadArith(MI, BB);
16164
16165   // This group does 64-bit operations on a 32-bit host.
16166   case X86::ATOMAND6432:
16167   case X86::ATOMOR6432:
16168   case X86::ATOMXOR6432:
16169   case X86::ATOMNAND6432:
16170   case X86::ATOMADD6432:
16171   case X86::ATOMSUB6432:
16172   case X86::ATOMMAX6432:
16173   case X86::ATOMMIN6432:
16174   case X86::ATOMUMAX6432:
16175   case X86::ATOMUMIN6432:
16176   case X86::ATOMSWAP6432:
16177     return EmitAtomicLoadArith6432(MI, BB);
16178
16179   case X86::VASTART_SAVE_XMM_REGS:
16180     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
16181
16182   case X86::VAARG_64:
16183     return EmitVAARG64WithCustomInserter(MI, BB);
16184
16185   case X86::EH_SjLj_SetJmp32:
16186   case X86::EH_SjLj_SetJmp64:
16187     return emitEHSjLjSetJmp(MI, BB);
16188
16189   case X86::EH_SjLj_LongJmp32:
16190   case X86::EH_SjLj_LongJmp64:
16191     return emitEHSjLjLongJmp(MI, BB);
16192
16193   case TargetOpcode::STACKMAP:
16194   case TargetOpcode::PATCHPOINT:
16195     return emitPatchPoint(MI, BB);
16196   }
16197 }
16198
16199 //===----------------------------------------------------------------------===//
16200 //                           X86 Optimization Hooks
16201 //===----------------------------------------------------------------------===//
16202
16203 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
16204                                                        APInt &KnownZero,
16205                                                        APInt &KnownOne,
16206                                                        const SelectionDAG &DAG,
16207                                                        unsigned Depth) const {
16208   unsigned BitWidth = KnownZero.getBitWidth();
16209   unsigned Opc = Op.getOpcode();
16210   assert((Opc >= ISD::BUILTIN_OP_END ||
16211           Opc == ISD::INTRINSIC_WO_CHAIN ||
16212           Opc == ISD::INTRINSIC_W_CHAIN ||
16213           Opc == ISD::INTRINSIC_VOID) &&
16214          "Should use MaskedValueIsZero if you don't know whether Op"
16215          " is a target node!");
16216
16217   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
16218   switch (Opc) {
16219   default: break;
16220   case X86ISD::ADD:
16221   case X86ISD::SUB:
16222   case X86ISD::ADC:
16223   case X86ISD::SBB:
16224   case X86ISD::SMUL:
16225   case X86ISD::UMUL:
16226   case X86ISD::INC:
16227   case X86ISD::DEC:
16228   case X86ISD::OR:
16229   case X86ISD::XOR:
16230   case X86ISD::AND:
16231     // These nodes' second result is a boolean.
16232     if (Op.getResNo() == 0)
16233       break;
16234     // Fallthrough
16235   case X86ISD::SETCC:
16236     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
16237     break;
16238   case ISD::INTRINSIC_WO_CHAIN: {
16239     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16240     unsigned NumLoBits = 0;
16241     switch (IntId) {
16242     default: break;
16243     case Intrinsic::x86_sse_movmsk_ps:
16244     case Intrinsic::x86_avx_movmsk_ps_256:
16245     case Intrinsic::x86_sse2_movmsk_pd:
16246     case Intrinsic::x86_avx_movmsk_pd_256:
16247     case Intrinsic::x86_mmx_pmovmskb:
16248     case Intrinsic::x86_sse2_pmovmskb_128:
16249     case Intrinsic::x86_avx2_pmovmskb: {
16250       // High bits of movmskp{s|d}, pmovmskb are known zero.
16251       switch (IntId) {
16252         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16253         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
16254         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
16255         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
16256         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
16257         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
16258         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
16259         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
16260       }
16261       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
16262       break;
16263     }
16264     }
16265     break;
16266   }
16267   }
16268 }
16269
16270 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16271                                                          unsigned Depth) const {
16272   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16273   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16274     return Op.getValueType().getScalarType().getSizeInBits();
16275
16276   // Fallback case.
16277   return 1;
16278 }
16279
16280 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16281 /// node is a GlobalAddress + offset.
16282 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16283                                        const GlobalValue* &GA,
16284                                        int64_t &Offset) const {
16285   if (N->getOpcode() == X86ISD::Wrapper) {
16286     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16287       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16288       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16289       return true;
16290     }
16291   }
16292   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16293 }
16294
16295 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16296 /// same as extracting the high 128-bit part of 256-bit vector and then
16297 /// inserting the result into the low part of a new 256-bit vector
16298 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16299   EVT VT = SVOp->getValueType(0);
16300   unsigned NumElems = VT.getVectorNumElements();
16301
16302   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16303   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16304     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16305         SVOp->getMaskElt(j) >= 0)
16306       return false;
16307
16308   return true;
16309 }
16310
16311 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16312 /// same as extracting the low 128-bit part of 256-bit vector and then
16313 /// inserting the result into the high part of a new 256-bit vector
16314 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16315   EVT VT = SVOp->getValueType(0);
16316   unsigned NumElems = VT.getVectorNumElements();
16317
16318   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16319   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16320     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16321         SVOp->getMaskElt(j) >= 0)
16322       return false;
16323
16324   return true;
16325 }
16326
16327 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16328 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16329                                         TargetLowering::DAGCombinerInfo &DCI,
16330                                         const X86Subtarget* Subtarget) {
16331   SDLoc dl(N);
16332   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16333   SDValue V1 = SVOp->getOperand(0);
16334   SDValue V2 = SVOp->getOperand(1);
16335   EVT VT = SVOp->getValueType(0);
16336   unsigned NumElems = VT.getVectorNumElements();
16337
16338   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16339       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16340     //
16341     //                   0,0,0,...
16342     //                      |
16343     //    V      UNDEF    BUILD_VECTOR    UNDEF
16344     //     \      /           \           /
16345     //  CONCAT_VECTOR         CONCAT_VECTOR
16346     //         \                  /
16347     //          \                /
16348     //          RESULT: V + zero extended
16349     //
16350     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16351         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16352         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16353       return SDValue();
16354
16355     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16356       return SDValue();
16357
16358     // To match the shuffle mask, the first half of the mask should
16359     // be exactly the first vector, and all the rest a splat with the
16360     // first element of the second one.
16361     for (unsigned i = 0; i != NumElems/2; ++i)
16362       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16363           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16364         return SDValue();
16365
16366     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16367     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16368       if (Ld->hasNUsesOfValue(1, 0)) {
16369         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16370         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16371         SDValue ResNode =
16372           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16373                                   array_lengthof(Ops),
16374                                   Ld->getMemoryVT(),
16375                                   Ld->getPointerInfo(),
16376                                   Ld->getAlignment(),
16377                                   false/*isVolatile*/, true/*ReadMem*/,
16378                                   false/*WriteMem*/);
16379
16380         // Make sure the newly-created LOAD is in the same position as Ld in
16381         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16382         // and update uses of Ld's output chain to use the TokenFactor.
16383         if (Ld->hasAnyUseOfValue(1)) {
16384           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16385                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16386           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16387           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16388                                  SDValue(ResNode.getNode(), 1));
16389         }
16390
16391         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16392       }
16393     }
16394
16395     // Emit a zeroed vector and insert the desired subvector on its
16396     // first half.
16397     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16398     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16399     return DCI.CombineTo(N, InsV);
16400   }
16401
16402   //===--------------------------------------------------------------------===//
16403   // Combine some shuffles into subvector extracts and inserts:
16404   //
16405
16406   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16407   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16408     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16409     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16410     return DCI.CombineTo(N, InsV);
16411   }
16412
16413   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16414   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16415     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16416     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16417     return DCI.CombineTo(N, InsV);
16418   }
16419
16420   return SDValue();
16421 }
16422
16423 /// PerformShuffleCombine - Performs several different shuffle combines.
16424 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16425                                      TargetLowering::DAGCombinerInfo &DCI,
16426                                      const X86Subtarget *Subtarget) {
16427   SDLoc dl(N);
16428   EVT VT = N->getValueType(0);
16429
16430   // Don't create instructions with illegal types after legalize types has run.
16431   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16432   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16433     return SDValue();
16434
16435   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16436   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16437       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16438     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16439
16440   // Only handle 128 wide vector from here on.
16441   if (!VT.is128BitVector())
16442     return SDValue();
16443
16444   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16445   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16446   // consecutive, non-overlapping, and in the right order.
16447   SmallVector<SDValue, 16> Elts;
16448   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16449     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16450
16451   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
16452 }
16453
16454 /// PerformTruncateCombine - Converts truncate operation to
16455 /// a sequence of vector shuffle operations.
16456 /// It is possible when we truncate 256-bit vector to 128-bit vector
16457 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16458                                       TargetLowering::DAGCombinerInfo &DCI,
16459                                       const X86Subtarget *Subtarget)  {
16460   return SDValue();
16461 }
16462
16463 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16464 /// specific shuffle of a load can be folded into a single element load.
16465 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16466 /// shuffles have been customed lowered so we need to handle those here.
16467 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16468                                          TargetLowering::DAGCombinerInfo &DCI) {
16469   if (DCI.isBeforeLegalizeOps())
16470     return SDValue();
16471
16472   SDValue InVec = N->getOperand(0);
16473   SDValue EltNo = N->getOperand(1);
16474
16475   if (!isa<ConstantSDNode>(EltNo))
16476     return SDValue();
16477
16478   EVT VT = InVec.getValueType();
16479
16480   bool HasShuffleIntoBitcast = false;
16481   if (InVec.getOpcode() == ISD::BITCAST) {
16482     // Don't duplicate a load with other uses.
16483     if (!InVec.hasOneUse())
16484       return SDValue();
16485     EVT BCVT = InVec.getOperand(0).getValueType();
16486     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16487       return SDValue();
16488     InVec = InVec.getOperand(0);
16489     HasShuffleIntoBitcast = true;
16490   }
16491
16492   if (!isTargetShuffle(InVec.getOpcode()))
16493     return SDValue();
16494
16495   // Don't duplicate a load with other uses.
16496   if (!InVec.hasOneUse())
16497     return SDValue();
16498
16499   SmallVector<int, 16> ShuffleMask;
16500   bool UnaryShuffle;
16501   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16502                             UnaryShuffle))
16503     return SDValue();
16504
16505   // Select the input vector, guarding against out of range extract vector.
16506   unsigned NumElems = VT.getVectorNumElements();
16507   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16508   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16509   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16510                                          : InVec.getOperand(1);
16511
16512   // If inputs to shuffle are the same for both ops, then allow 2 uses
16513   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16514
16515   if (LdNode.getOpcode() == ISD::BITCAST) {
16516     // Don't duplicate a load with other uses.
16517     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16518       return SDValue();
16519
16520     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16521     LdNode = LdNode.getOperand(0);
16522   }
16523
16524   if (!ISD::isNormalLoad(LdNode.getNode()))
16525     return SDValue();
16526
16527   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16528
16529   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16530     return SDValue();
16531
16532   if (HasShuffleIntoBitcast) {
16533     // If there's a bitcast before the shuffle, check if the load type and
16534     // alignment is valid.
16535     unsigned Align = LN0->getAlignment();
16536     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16537     unsigned NewAlign = TLI.getDataLayout()->
16538       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16539
16540     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16541       return SDValue();
16542   }
16543
16544   // All checks match so transform back to vector_shuffle so that DAG combiner
16545   // can finish the job
16546   SDLoc dl(N);
16547
16548   // Create shuffle node taking into account the case that its a unary shuffle
16549   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16550   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16551                                  InVec.getOperand(0), Shuffle,
16552                                  &ShuffleMask[0]);
16553   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16554   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16555                      EltNo);
16556 }
16557
16558 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16559 /// generation and convert it from being a bunch of shuffles and extracts
16560 /// to a simple store and scalar loads to extract the elements.
16561 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16562                                          TargetLowering::DAGCombinerInfo &DCI) {
16563   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16564   if (NewOp.getNode())
16565     return NewOp;
16566
16567   SDValue InputVector = N->getOperand(0);
16568
16569   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16570   // from mmx to v2i32 has a single usage.
16571   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16572       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16573       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16574     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16575                        N->getValueType(0),
16576                        InputVector.getNode()->getOperand(0));
16577
16578   // Only operate on vectors of 4 elements, where the alternative shuffling
16579   // gets to be more expensive.
16580   if (InputVector.getValueType() != MVT::v4i32)
16581     return SDValue();
16582
16583   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16584   // single use which is a sign-extend or zero-extend, and all elements are
16585   // used.
16586   SmallVector<SDNode *, 4> Uses;
16587   unsigned ExtractedElements = 0;
16588   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16589        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16590     if (UI.getUse().getResNo() != InputVector.getResNo())
16591       return SDValue();
16592
16593     SDNode *Extract = *UI;
16594     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16595       return SDValue();
16596
16597     if (Extract->getValueType(0) != MVT::i32)
16598       return SDValue();
16599     if (!Extract->hasOneUse())
16600       return SDValue();
16601     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16602         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16603       return SDValue();
16604     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16605       return SDValue();
16606
16607     // Record which element was extracted.
16608     ExtractedElements |=
16609       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16610
16611     Uses.push_back(Extract);
16612   }
16613
16614   // If not all the elements were used, this may not be worthwhile.
16615   if (ExtractedElements != 15)
16616     return SDValue();
16617
16618   // Ok, we've now decided to do the transformation.
16619   SDLoc dl(InputVector);
16620
16621   // Store the value to a temporary stack slot.
16622   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16623   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16624                             MachinePointerInfo(), false, false, 0);
16625
16626   // Replace each use (extract) with a load of the appropriate element.
16627   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16628        UE = Uses.end(); UI != UE; ++UI) {
16629     SDNode *Extract = *UI;
16630
16631     // cOMpute the element's address.
16632     SDValue Idx = Extract->getOperand(1);
16633     unsigned EltSize =
16634         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16635     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16636     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16637     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16638
16639     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16640                                      StackPtr, OffsetVal);
16641
16642     // Load the scalar.
16643     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16644                                      ScalarAddr, MachinePointerInfo(),
16645                                      false, false, false, 0);
16646
16647     // Replace the exact with the load.
16648     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16649   }
16650
16651   // The replacement was made in place; don't return anything.
16652   return SDValue();
16653 }
16654
16655 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16656 static std::pair<unsigned, bool>
16657 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16658                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16659   if (!VT.isVector())
16660     return std::make_pair(0, false);
16661
16662   bool NeedSplit = false;
16663   switch (VT.getSimpleVT().SimpleTy) {
16664   default: return std::make_pair(0, false);
16665   case MVT::v32i8:
16666   case MVT::v16i16:
16667   case MVT::v8i32:
16668     if (!Subtarget->hasAVX2())
16669       NeedSplit = true;
16670     if (!Subtarget->hasAVX())
16671       return std::make_pair(0, false);
16672     break;
16673   case MVT::v16i8:
16674   case MVT::v8i16:
16675   case MVT::v4i32:
16676     if (!Subtarget->hasSSE2())
16677       return std::make_pair(0, false);
16678   }
16679
16680   // SSE2 has only a small subset of the operations.
16681   bool hasUnsigned = Subtarget->hasSSE41() ||
16682                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16683   bool hasSigned = Subtarget->hasSSE41() ||
16684                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16685
16686   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16687
16688   unsigned Opc = 0;
16689   // Check for x CC y ? x : y.
16690   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16691       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16692     switch (CC) {
16693     default: break;
16694     case ISD::SETULT:
16695     case ISD::SETULE:
16696       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16697     case ISD::SETUGT:
16698     case ISD::SETUGE:
16699       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16700     case ISD::SETLT:
16701     case ISD::SETLE:
16702       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16703     case ISD::SETGT:
16704     case ISD::SETGE:
16705       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16706     }
16707   // Check for x CC y ? y : x -- a min/max with reversed arms.
16708   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16709              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16710     switch (CC) {
16711     default: break;
16712     case ISD::SETULT:
16713     case ISD::SETULE:
16714       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16715     case ISD::SETUGT:
16716     case ISD::SETUGE:
16717       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16718     case ISD::SETLT:
16719     case ISD::SETLE:
16720       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16721     case ISD::SETGT:
16722     case ISD::SETGE:
16723       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16724     }
16725   }
16726
16727   return std::make_pair(Opc, NeedSplit);
16728 }
16729
16730 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16731 /// nodes.
16732 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16733                                     TargetLowering::DAGCombinerInfo &DCI,
16734                                     const X86Subtarget *Subtarget) {
16735   SDLoc DL(N);
16736   SDValue Cond = N->getOperand(0);
16737   // Get the LHS/RHS of the select.
16738   SDValue LHS = N->getOperand(1);
16739   SDValue RHS = N->getOperand(2);
16740   EVT VT = LHS.getValueType();
16741   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16742
16743   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16744   // instructions match the semantics of the common C idiom x<y?x:y but not
16745   // x<=y?x:y, because of how they handle negative zero (which can be
16746   // ignored in unsafe-math mode).
16747   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16748       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16749       (Subtarget->hasSSE2() ||
16750        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16751     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16752
16753     unsigned Opcode = 0;
16754     // Check for x CC y ? x : y.
16755     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16756         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16757       switch (CC) {
16758       default: break;
16759       case ISD::SETULT:
16760         // Converting this to a min would handle NaNs incorrectly, and swapping
16761         // the operands would cause it to handle comparisons between positive
16762         // and negative zero incorrectly.
16763         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16764           if (!DAG.getTarget().Options.UnsafeFPMath &&
16765               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16766             break;
16767           std::swap(LHS, RHS);
16768         }
16769         Opcode = X86ISD::FMIN;
16770         break;
16771       case ISD::SETOLE:
16772         // Converting this to a min would handle comparisons between positive
16773         // and negative zero incorrectly.
16774         if (!DAG.getTarget().Options.UnsafeFPMath &&
16775             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16776           break;
16777         Opcode = X86ISD::FMIN;
16778         break;
16779       case ISD::SETULE:
16780         // Converting this to a min would handle both negative zeros and NaNs
16781         // incorrectly, but we can swap the operands to fix both.
16782         std::swap(LHS, RHS);
16783       case ISD::SETOLT:
16784       case ISD::SETLT:
16785       case ISD::SETLE:
16786         Opcode = X86ISD::FMIN;
16787         break;
16788
16789       case ISD::SETOGE:
16790         // Converting this to a max would handle comparisons between positive
16791         // and negative zero incorrectly.
16792         if (!DAG.getTarget().Options.UnsafeFPMath &&
16793             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16794           break;
16795         Opcode = X86ISD::FMAX;
16796         break;
16797       case ISD::SETUGT:
16798         // Converting this to a max would handle NaNs incorrectly, and swapping
16799         // the operands would cause it to handle comparisons between positive
16800         // and negative zero incorrectly.
16801         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16802           if (!DAG.getTarget().Options.UnsafeFPMath &&
16803               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16804             break;
16805           std::swap(LHS, RHS);
16806         }
16807         Opcode = X86ISD::FMAX;
16808         break;
16809       case ISD::SETUGE:
16810         // Converting this to a max would handle both negative zeros and NaNs
16811         // incorrectly, but we can swap the operands to fix both.
16812         std::swap(LHS, RHS);
16813       case ISD::SETOGT:
16814       case ISD::SETGT:
16815       case ISD::SETGE:
16816         Opcode = X86ISD::FMAX;
16817         break;
16818       }
16819     // Check for x CC y ? y : x -- a min/max with reversed arms.
16820     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16821                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16822       switch (CC) {
16823       default: break;
16824       case ISD::SETOGE:
16825         // Converting this to a min would handle comparisons between positive
16826         // and negative zero incorrectly, and swapping the operands would
16827         // cause it to handle NaNs incorrectly.
16828         if (!DAG.getTarget().Options.UnsafeFPMath &&
16829             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16830           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16831             break;
16832           std::swap(LHS, RHS);
16833         }
16834         Opcode = X86ISD::FMIN;
16835         break;
16836       case ISD::SETUGT:
16837         // Converting this to a min would handle NaNs incorrectly.
16838         if (!DAG.getTarget().Options.UnsafeFPMath &&
16839             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16840           break;
16841         Opcode = X86ISD::FMIN;
16842         break;
16843       case ISD::SETUGE:
16844         // Converting this to a min would handle both negative zeros and NaNs
16845         // incorrectly, but we can swap the operands to fix both.
16846         std::swap(LHS, RHS);
16847       case ISD::SETOGT:
16848       case ISD::SETGT:
16849       case ISD::SETGE:
16850         Opcode = X86ISD::FMIN;
16851         break;
16852
16853       case ISD::SETULT:
16854         // Converting this to a max would handle NaNs incorrectly.
16855         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16856           break;
16857         Opcode = X86ISD::FMAX;
16858         break;
16859       case ISD::SETOLE:
16860         // Converting this to a max would handle comparisons between positive
16861         // and negative zero incorrectly, and swapping the operands would
16862         // cause it to handle NaNs incorrectly.
16863         if (!DAG.getTarget().Options.UnsafeFPMath &&
16864             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16865           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16866             break;
16867           std::swap(LHS, RHS);
16868         }
16869         Opcode = X86ISD::FMAX;
16870         break;
16871       case ISD::SETULE:
16872         // Converting this to a max would handle both negative zeros and NaNs
16873         // incorrectly, but we can swap the operands to fix both.
16874         std::swap(LHS, RHS);
16875       case ISD::SETOLT:
16876       case ISD::SETLT:
16877       case ISD::SETLE:
16878         Opcode = X86ISD::FMAX;
16879         break;
16880       }
16881     }
16882
16883     if (Opcode)
16884       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16885   }
16886
16887   EVT CondVT = Cond.getValueType();
16888   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
16889       CondVT.getVectorElementType() == MVT::i1) {
16890     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16891     // lowering on AVX-512. In this case we convert it to
16892     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16893     // The same situation for all 128 and 256-bit vectors of i8 and i16
16894     EVT OpVT = LHS.getValueType();
16895     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16896         (OpVT.getVectorElementType() == MVT::i8 ||
16897          OpVT.getVectorElementType() == MVT::i16)) {
16898       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16899       DCI.AddToWorklist(Cond.getNode());
16900       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16901     }
16902   }
16903   // If this is a select between two integer constants, try to do some
16904   // optimizations.
16905   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16906     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16907       // Don't do this for crazy integer types.
16908       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16909         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16910         // so that TrueC (the true value) is larger than FalseC.
16911         bool NeedsCondInvert = false;
16912
16913         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16914             // Efficiently invertible.
16915             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16916              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16917               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16918           NeedsCondInvert = true;
16919           std::swap(TrueC, FalseC);
16920         }
16921
16922         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16923         if (FalseC->getAPIntValue() == 0 &&
16924             TrueC->getAPIntValue().isPowerOf2()) {
16925           if (NeedsCondInvert) // Invert the condition if needed.
16926             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16927                                DAG.getConstant(1, Cond.getValueType()));
16928
16929           // Zero extend the condition if needed.
16930           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16931
16932           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16933           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16934                              DAG.getConstant(ShAmt, MVT::i8));
16935         }
16936
16937         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16938         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16939           if (NeedsCondInvert) // Invert the condition if needed.
16940             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16941                                DAG.getConstant(1, Cond.getValueType()));
16942
16943           // Zero extend the condition if needed.
16944           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16945                              FalseC->getValueType(0), Cond);
16946           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16947                              SDValue(FalseC, 0));
16948         }
16949
16950         // Optimize cases that will turn into an LEA instruction.  This requires
16951         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16952         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16953           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16954           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16955
16956           bool isFastMultiplier = false;
16957           if (Diff < 10) {
16958             switch ((unsigned char)Diff) {
16959               default: break;
16960               case 1:  // result = add base, cond
16961               case 2:  // result = lea base(    , cond*2)
16962               case 3:  // result = lea base(cond, cond*2)
16963               case 4:  // result = lea base(    , cond*4)
16964               case 5:  // result = lea base(cond, cond*4)
16965               case 8:  // result = lea base(    , cond*8)
16966               case 9:  // result = lea base(cond, cond*8)
16967                 isFastMultiplier = true;
16968                 break;
16969             }
16970           }
16971
16972           if (isFastMultiplier) {
16973             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16974             if (NeedsCondInvert) // Invert the condition if needed.
16975               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16976                                  DAG.getConstant(1, Cond.getValueType()));
16977
16978             // Zero extend the condition if needed.
16979             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16980                                Cond);
16981             // Scale the condition by the difference.
16982             if (Diff != 1)
16983               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16984                                  DAG.getConstant(Diff, Cond.getValueType()));
16985
16986             // Add the base if non-zero.
16987             if (FalseC->getAPIntValue() != 0)
16988               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16989                                  SDValue(FalseC, 0));
16990             return Cond;
16991           }
16992         }
16993       }
16994   }
16995
16996   // Canonicalize max and min:
16997   // (x > y) ? x : y -> (x >= y) ? x : y
16998   // (x < y) ? x : y -> (x <= y) ? x : y
16999   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
17000   // the need for an extra compare
17001   // against zero. e.g.
17002   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
17003   // subl   %esi, %edi
17004   // testl  %edi, %edi
17005   // movl   $0, %eax
17006   // cmovgl %edi, %eax
17007   // =>
17008   // xorl   %eax, %eax
17009   // subl   %esi, $edi
17010   // cmovsl %eax, %edi
17011   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
17012       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17013       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17014     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17015     switch (CC) {
17016     default: break;
17017     case ISD::SETLT:
17018     case ISD::SETGT: {
17019       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
17020       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
17021                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
17022       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
17023     }
17024     }
17025   }
17026
17027   // Early exit check
17028   if (!TLI.isTypeLegal(VT))
17029     return SDValue();
17030
17031   // Match VSELECTs into subs with unsigned saturation.
17032   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17033       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
17034       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
17035        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
17036     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17037
17038     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
17039     // left side invert the predicate to simplify logic below.
17040     SDValue Other;
17041     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
17042       Other = RHS;
17043       CC = ISD::getSetCCInverse(CC, true);
17044     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
17045       Other = LHS;
17046     }
17047
17048     if (Other.getNode() && Other->getNumOperands() == 2 &&
17049         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
17050       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
17051       SDValue CondRHS = Cond->getOperand(1);
17052
17053       // Look for a general sub with unsigned saturation first.
17054       // x >= y ? x-y : 0 --> subus x, y
17055       // x >  y ? x-y : 0 --> subus x, y
17056       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
17057           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
17058         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17059
17060       // If the RHS is a constant we have to reverse the const canonicalization.
17061       // x > C-1 ? x+-C : 0 --> subus x, C
17062       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
17063           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
17064         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17065         if (CondRHS.getConstantOperandVal(0) == -A-1)
17066           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
17067                              DAG.getConstant(-A, VT));
17068       }
17069
17070       // Another special case: If C was a sign bit, the sub has been
17071       // canonicalized into a xor.
17072       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
17073       //        it's safe to decanonicalize the xor?
17074       // x s< 0 ? x^C : 0 --> subus x, C
17075       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
17076           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
17077           isSplatVector(OpRHS.getNode())) {
17078         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17079         if (A.isSignBit())
17080           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17081       }
17082     }
17083   }
17084
17085   // Try to match a min/max vector operation.
17086   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
17087     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
17088     unsigned Opc = ret.first;
17089     bool NeedSplit = ret.second;
17090
17091     if (Opc && NeedSplit) {
17092       unsigned NumElems = VT.getVectorNumElements();
17093       // Extract the LHS vectors
17094       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
17095       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
17096
17097       // Extract the RHS vectors
17098       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
17099       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
17100
17101       // Create min/max for each subvector
17102       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
17103       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
17104
17105       // Merge the result
17106       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
17107     } else if (Opc)
17108       return DAG.getNode(Opc, DL, VT, LHS, RHS);
17109   }
17110
17111   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
17112   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17113       // Check if SETCC has already been promoted
17114       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
17115       // Check that condition value type matches vselect operand type
17116       CondVT == VT) { 
17117
17118     assert(Cond.getValueType().isVector() &&
17119            "vector select expects a vector selector!");
17120
17121     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
17122     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
17123
17124     if (!TValIsAllOnes && !FValIsAllZeros) {
17125       // Try invert the condition if true value is not all 1s and false value
17126       // is not all 0s.
17127       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
17128       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
17129
17130       if (TValIsAllZeros || FValIsAllOnes) {
17131         SDValue CC = Cond.getOperand(2);
17132         ISD::CondCode NewCC =
17133           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
17134                                Cond.getOperand(0).getValueType().isInteger());
17135         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
17136         std::swap(LHS, RHS);
17137         TValIsAllOnes = FValIsAllOnes;
17138         FValIsAllZeros = TValIsAllZeros;
17139       }
17140     }
17141
17142     if (TValIsAllOnes || FValIsAllZeros) {
17143       SDValue Ret;
17144
17145       if (TValIsAllOnes && FValIsAllZeros)
17146         Ret = Cond;
17147       else if (TValIsAllOnes)
17148         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
17149                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
17150       else if (FValIsAllZeros)
17151         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
17152                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
17153
17154       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
17155     }
17156   }
17157
17158   // If we know that this node is legal then we know that it is going to be
17159   // matched by one of the SSE/AVX BLEND instructions. These instructions only
17160   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
17161   // to simplify previous instructions.
17162   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
17163       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
17164     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
17165
17166     // Don't optimize vector selects that map to mask-registers.
17167     if (BitWidth == 1)
17168       return SDValue();
17169
17170     // Check all uses of that condition operand to check whether it will be
17171     // consumed by non-BLEND instructions, which may depend on all bits are set
17172     // properly.
17173     for (SDNode::use_iterator I = Cond->use_begin(),
17174                               E = Cond->use_end(); I != E; ++I)
17175       if (I->getOpcode() != ISD::VSELECT)
17176         // TODO: Add other opcodes eventually lowered into BLEND.
17177         return SDValue();
17178
17179     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
17180     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
17181
17182     APInt KnownZero, KnownOne;
17183     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
17184                                           DCI.isBeforeLegalizeOps());
17185     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
17186         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
17187       DCI.CommitTargetLoweringOpt(TLO);
17188   }
17189
17190   return SDValue();
17191 }
17192
17193 // Check whether a boolean test is testing a boolean value generated by
17194 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
17195 // code.
17196 //
17197 // Simplify the following patterns:
17198 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
17199 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
17200 // to (Op EFLAGS Cond)
17201 //
17202 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
17203 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
17204 // to (Op EFLAGS !Cond)
17205 //
17206 // where Op could be BRCOND or CMOV.
17207 //
17208 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
17209   // Quit if not CMP and SUB with its value result used.
17210   if (Cmp.getOpcode() != X86ISD::CMP &&
17211       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
17212       return SDValue();
17213
17214   // Quit if not used as a boolean value.
17215   if (CC != X86::COND_E && CC != X86::COND_NE)
17216     return SDValue();
17217
17218   // Check CMP operands. One of them should be 0 or 1 and the other should be
17219   // an SetCC or extended from it.
17220   SDValue Op1 = Cmp.getOperand(0);
17221   SDValue Op2 = Cmp.getOperand(1);
17222
17223   SDValue SetCC;
17224   const ConstantSDNode* C = 0;
17225   bool needOppositeCond = (CC == X86::COND_E);
17226   bool checkAgainstTrue = false; // Is it a comparison against 1?
17227
17228   if ((C = dyn_cast<ConstantSDNode>(Op1)))
17229     SetCC = Op2;
17230   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17231     SetCC = Op1;
17232   else // Quit if all operands are not constants.
17233     return SDValue();
17234
17235   if (C->getZExtValue() == 1) {
17236     needOppositeCond = !needOppositeCond;
17237     checkAgainstTrue = true;
17238   } else if (C->getZExtValue() != 0)
17239     // Quit if the constant is neither 0 or 1.
17240     return SDValue();
17241
17242   bool truncatedToBoolWithAnd = false;
17243   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17244   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17245          SetCC.getOpcode() == ISD::TRUNCATE ||
17246          SetCC.getOpcode() == ISD::AND) {
17247     if (SetCC.getOpcode() == ISD::AND) {
17248       int OpIdx = -1;
17249       ConstantSDNode *CS;
17250       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17251           CS->getZExtValue() == 1)
17252         OpIdx = 1;
17253       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17254           CS->getZExtValue() == 1)
17255         OpIdx = 0;
17256       if (OpIdx == -1)
17257         break;
17258       SetCC = SetCC.getOperand(OpIdx);
17259       truncatedToBoolWithAnd = true;
17260     } else
17261       SetCC = SetCC.getOperand(0);
17262   }
17263
17264   switch (SetCC.getOpcode()) {
17265   case X86ISD::SETCC_CARRY:
17266     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17267     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17268     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17269     // truncated to i1 using 'and'.
17270     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17271       break;
17272     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17273            "Invalid use of SETCC_CARRY!");
17274     // FALL THROUGH
17275   case X86ISD::SETCC:
17276     // Set the condition code or opposite one if necessary.
17277     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17278     if (needOppositeCond)
17279       CC = X86::GetOppositeBranchCondition(CC);
17280     return SetCC.getOperand(1);
17281   case X86ISD::CMOV: {
17282     // Check whether false/true value has canonical one, i.e. 0 or 1.
17283     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17284     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17285     // Quit if true value is not a constant.
17286     if (!TVal)
17287       return SDValue();
17288     // Quit if false value is not a constant.
17289     if (!FVal) {
17290       SDValue Op = SetCC.getOperand(0);
17291       // Skip 'zext' or 'trunc' node.
17292       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17293           Op.getOpcode() == ISD::TRUNCATE)
17294         Op = Op.getOperand(0);
17295       // A special case for rdrand/rdseed, where 0 is set if false cond is
17296       // found.
17297       if ((Op.getOpcode() != X86ISD::RDRAND &&
17298            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17299         return SDValue();
17300     }
17301     // Quit if false value is not the constant 0 or 1.
17302     bool FValIsFalse = true;
17303     if (FVal && FVal->getZExtValue() != 0) {
17304       if (FVal->getZExtValue() != 1)
17305         return SDValue();
17306       // If FVal is 1, opposite cond is needed.
17307       needOppositeCond = !needOppositeCond;
17308       FValIsFalse = false;
17309     }
17310     // Quit if TVal is not the constant opposite of FVal.
17311     if (FValIsFalse && TVal->getZExtValue() != 1)
17312       return SDValue();
17313     if (!FValIsFalse && TVal->getZExtValue() != 0)
17314       return SDValue();
17315     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17316     if (needOppositeCond)
17317       CC = X86::GetOppositeBranchCondition(CC);
17318     return SetCC.getOperand(3);
17319   }
17320   }
17321
17322   return SDValue();
17323 }
17324
17325 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17326 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17327                                   TargetLowering::DAGCombinerInfo &DCI,
17328                                   const X86Subtarget *Subtarget) {
17329   SDLoc DL(N);
17330
17331   // If the flag operand isn't dead, don't touch this CMOV.
17332   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17333     return SDValue();
17334
17335   SDValue FalseOp = N->getOperand(0);
17336   SDValue TrueOp = N->getOperand(1);
17337   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17338   SDValue Cond = N->getOperand(3);
17339
17340   if (CC == X86::COND_E || CC == X86::COND_NE) {
17341     switch (Cond.getOpcode()) {
17342     default: break;
17343     case X86ISD::BSR:
17344     case X86ISD::BSF:
17345       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17346       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17347         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17348     }
17349   }
17350
17351   SDValue Flags;
17352
17353   Flags = checkBoolTestSetCCCombine(Cond, CC);
17354   if (Flags.getNode() &&
17355       // Extra check as FCMOV only supports a subset of X86 cond.
17356       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17357     SDValue Ops[] = { FalseOp, TrueOp,
17358                       DAG.getConstant(CC, MVT::i8), Flags };
17359     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17360                        Ops, array_lengthof(Ops));
17361   }
17362
17363   // If this is a select between two integer constants, try to do some
17364   // optimizations.  Note that the operands are ordered the opposite of SELECT
17365   // operands.
17366   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17367     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17368       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17369       // larger than FalseC (the false value).
17370       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17371         CC = X86::GetOppositeBranchCondition(CC);
17372         std::swap(TrueC, FalseC);
17373         std::swap(TrueOp, FalseOp);
17374       }
17375
17376       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17377       // This is efficient for any integer data type (including i8/i16) and
17378       // shift amount.
17379       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17380         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17381                            DAG.getConstant(CC, MVT::i8), Cond);
17382
17383         // Zero extend the condition if needed.
17384         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17385
17386         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17387         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17388                            DAG.getConstant(ShAmt, MVT::i8));
17389         if (N->getNumValues() == 2)  // Dead flag value?
17390           return DCI.CombineTo(N, Cond, SDValue());
17391         return Cond;
17392       }
17393
17394       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17395       // for any integer data type, including i8/i16.
17396       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17397         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17398                            DAG.getConstant(CC, MVT::i8), Cond);
17399
17400         // Zero extend the condition if needed.
17401         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17402                            FalseC->getValueType(0), Cond);
17403         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17404                            SDValue(FalseC, 0));
17405
17406         if (N->getNumValues() == 2)  // Dead flag value?
17407           return DCI.CombineTo(N, Cond, SDValue());
17408         return Cond;
17409       }
17410
17411       // Optimize cases that will turn into an LEA instruction.  This requires
17412       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17413       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17414         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17415         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17416
17417         bool isFastMultiplier = false;
17418         if (Diff < 10) {
17419           switch ((unsigned char)Diff) {
17420           default: break;
17421           case 1:  // result = add base, cond
17422           case 2:  // result = lea base(    , cond*2)
17423           case 3:  // result = lea base(cond, cond*2)
17424           case 4:  // result = lea base(    , cond*4)
17425           case 5:  // result = lea base(cond, cond*4)
17426           case 8:  // result = lea base(    , cond*8)
17427           case 9:  // result = lea base(cond, cond*8)
17428             isFastMultiplier = true;
17429             break;
17430           }
17431         }
17432
17433         if (isFastMultiplier) {
17434           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17435           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17436                              DAG.getConstant(CC, MVT::i8), Cond);
17437           // Zero extend the condition if needed.
17438           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17439                              Cond);
17440           // Scale the condition by the difference.
17441           if (Diff != 1)
17442             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17443                                DAG.getConstant(Diff, Cond.getValueType()));
17444
17445           // Add the base if non-zero.
17446           if (FalseC->getAPIntValue() != 0)
17447             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17448                                SDValue(FalseC, 0));
17449           if (N->getNumValues() == 2)  // Dead flag value?
17450             return DCI.CombineTo(N, Cond, SDValue());
17451           return Cond;
17452         }
17453       }
17454     }
17455   }
17456
17457   // Handle these cases:
17458   //   (select (x != c), e, c) -> select (x != c), e, x),
17459   //   (select (x == c), c, e) -> select (x == c), x, e)
17460   // where the c is an integer constant, and the "select" is the combination
17461   // of CMOV and CMP.
17462   //
17463   // The rationale for this change is that the conditional-move from a constant
17464   // needs two instructions, however, conditional-move from a register needs
17465   // only one instruction.
17466   //
17467   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17468   //  some instruction-combining opportunities. This opt needs to be
17469   //  postponed as late as possible.
17470   //
17471   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17472     // the DCI.xxxx conditions are provided to postpone the optimization as
17473     // late as possible.
17474
17475     ConstantSDNode *CmpAgainst = 0;
17476     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17477         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17478         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17479
17480       if (CC == X86::COND_NE &&
17481           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17482         CC = X86::GetOppositeBranchCondition(CC);
17483         std::swap(TrueOp, FalseOp);
17484       }
17485
17486       if (CC == X86::COND_E &&
17487           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17488         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17489                           DAG.getConstant(CC, MVT::i8), Cond };
17490         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17491                            array_lengthof(Ops));
17492       }
17493     }
17494   }
17495
17496   return SDValue();
17497 }
17498
17499 /// PerformMulCombine - Optimize a single multiply with constant into two
17500 /// in order to implement it with two cheaper instructions, e.g.
17501 /// LEA + SHL, LEA + LEA.
17502 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17503                                  TargetLowering::DAGCombinerInfo &DCI) {
17504   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17505     return SDValue();
17506
17507   EVT VT = N->getValueType(0);
17508   if (VT != MVT::i64)
17509     return SDValue();
17510
17511   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17512   if (!C)
17513     return SDValue();
17514   uint64_t MulAmt = C->getZExtValue();
17515   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17516     return SDValue();
17517
17518   uint64_t MulAmt1 = 0;
17519   uint64_t MulAmt2 = 0;
17520   if ((MulAmt % 9) == 0) {
17521     MulAmt1 = 9;
17522     MulAmt2 = MulAmt / 9;
17523   } else if ((MulAmt % 5) == 0) {
17524     MulAmt1 = 5;
17525     MulAmt2 = MulAmt / 5;
17526   } else if ((MulAmt % 3) == 0) {
17527     MulAmt1 = 3;
17528     MulAmt2 = MulAmt / 3;
17529   }
17530   if (MulAmt2 &&
17531       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17532     SDLoc DL(N);
17533
17534     if (isPowerOf2_64(MulAmt2) &&
17535         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17536       // If second multiplifer is pow2, issue it first. We want the multiply by
17537       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17538       // is an add.
17539       std::swap(MulAmt1, MulAmt2);
17540
17541     SDValue NewMul;
17542     if (isPowerOf2_64(MulAmt1))
17543       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17544                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17545     else
17546       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17547                            DAG.getConstant(MulAmt1, VT));
17548
17549     if (isPowerOf2_64(MulAmt2))
17550       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17551                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17552     else
17553       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17554                            DAG.getConstant(MulAmt2, VT));
17555
17556     // Do not add new nodes to DAG combiner worklist.
17557     DCI.CombineTo(N, NewMul, false);
17558   }
17559   return SDValue();
17560 }
17561
17562 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17563   SDValue N0 = N->getOperand(0);
17564   SDValue N1 = N->getOperand(1);
17565   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17566   EVT VT = N0.getValueType();
17567
17568   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17569   // since the result of setcc_c is all zero's or all ones.
17570   if (VT.isInteger() && !VT.isVector() &&
17571       N1C && N0.getOpcode() == ISD::AND &&
17572       N0.getOperand(1).getOpcode() == ISD::Constant) {
17573     SDValue N00 = N0.getOperand(0);
17574     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17575         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17576           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17577          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17578       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17579       APInt ShAmt = N1C->getAPIntValue();
17580       Mask = Mask.shl(ShAmt);
17581       if (Mask != 0)
17582         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17583                            N00, DAG.getConstant(Mask, VT));
17584     }
17585   }
17586
17587   // Hardware support for vector shifts is sparse which makes us scalarize the
17588   // vector operations in many cases. Also, on sandybridge ADD is faster than
17589   // shl.
17590   // (shl V, 1) -> add V,V
17591   if (isSplatVector(N1.getNode())) {
17592     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17593     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17594     // We shift all of the values by one. In many cases we do not have
17595     // hardware support for this operation. This is better expressed as an ADD
17596     // of two values.
17597     if (N1C && (1 == N1C->getZExtValue())) {
17598       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17599     }
17600   }
17601
17602   return SDValue();
17603 }
17604
17605 /// \brief Returns a vector of 0s if the node in input is a vector logical
17606 /// shift by a constant amount which is known to be bigger than or equal
17607 /// to the vector element size in bits.
17608 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17609                                       const X86Subtarget *Subtarget) {
17610   EVT VT = N->getValueType(0);
17611
17612   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17613       (!Subtarget->hasInt256() ||
17614        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17615     return SDValue();
17616
17617   SDValue Amt = N->getOperand(1);
17618   SDLoc DL(N);
17619   if (isSplatVector(Amt.getNode())) {
17620     SDValue SclrAmt = Amt->getOperand(0);
17621     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17622       APInt ShiftAmt = C->getAPIntValue();
17623       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17624
17625       // SSE2/AVX2 logical shifts always return a vector of 0s
17626       // if the shift amount is bigger than or equal to
17627       // the element size. The constant shift amount will be
17628       // encoded as a 8-bit immediate.
17629       if (ShiftAmt.trunc(8).uge(MaxAmount))
17630         return getZeroVector(VT, Subtarget, DAG, DL);
17631     }
17632   }
17633
17634   return SDValue();
17635 }
17636
17637 /// PerformShiftCombine - Combine shifts.
17638 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17639                                    TargetLowering::DAGCombinerInfo &DCI,
17640                                    const X86Subtarget *Subtarget) {
17641   if (N->getOpcode() == ISD::SHL) {
17642     SDValue V = PerformSHLCombine(N, DAG);
17643     if (V.getNode()) return V;
17644   }
17645
17646   if (N->getOpcode() != ISD::SRA) {
17647     // Try to fold this logical shift into a zero vector.
17648     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17649     if (V.getNode()) return V;
17650   }
17651
17652   return SDValue();
17653 }
17654
17655 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17656 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17657 // and friends.  Likewise for OR -> CMPNEQSS.
17658 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17659                             TargetLowering::DAGCombinerInfo &DCI,
17660                             const X86Subtarget *Subtarget) {
17661   unsigned opcode;
17662
17663   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17664   // we're requiring SSE2 for both.
17665   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17666     SDValue N0 = N->getOperand(0);
17667     SDValue N1 = N->getOperand(1);
17668     SDValue CMP0 = N0->getOperand(1);
17669     SDValue CMP1 = N1->getOperand(1);
17670     SDLoc DL(N);
17671
17672     // The SETCCs should both refer to the same CMP.
17673     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17674       return SDValue();
17675
17676     SDValue CMP00 = CMP0->getOperand(0);
17677     SDValue CMP01 = CMP0->getOperand(1);
17678     EVT     VT    = CMP00.getValueType();
17679
17680     if (VT == MVT::f32 || VT == MVT::f64) {
17681       bool ExpectingFlags = false;
17682       // Check for any users that want flags:
17683       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17684            !ExpectingFlags && UI != UE; ++UI)
17685         switch (UI->getOpcode()) {
17686         default:
17687         case ISD::BR_CC:
17688         case ISD::BRCOND:
17689         case ISD::SELECT:
17690           ExpectingFlags = true;
17691           break;
17692         case ISD::CopyToReg:
17693         case ISD::SIGN_EXTEND:
17694         case ISD::ZERO_EXTEND:
17695         case ISD::ANY_EXTEND:
17696           break;
17697         }
17698
17699       if (!ExpectingFlags) {
17700         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17701         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17702
17703         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17704           X86::CondCode tmp = cc0;
17705           cc0 = cc1;
17706           cc1 = tmp;
17707         }
17708
17709         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17710             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17711           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17712           // FIXME: need symbolic constants for these magic numbers.
17713           // See X86ATTInstPrinter.cpp:printSSECC().
17714           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17715           if (Subtarget->hasAVX512()) {
17716             // SETCC type in AVX-512 is MVT::i1
17717             assert(N->getValueType(0) == MVT::i1 && "Unexpected AND node type");
17718             return DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00, CMP01,
17719                                DAG.getConstant(x86cc, MVT::i8));
17720           }
17721           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL, CMP00.getValueType(), CMP00, CMP01,
17722                                               DAG.getConstant(x86cc, MVT::i8));
17723           MVT IntVT = (is64BitFP ? MVT::i64 : MVT::i32); 
17724           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT,
17725                                               OnesOrZeroesF);
17726           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
17727                                       DAG.getConstant(1, IntVT));
17728           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17729           return OneBitOfTruth;
17730         }
17731       }
17732     }
17733   }
17734   return SDValue();
17735 }
17736
17737 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17738 /// so it can be folded inside ANDNP.
17739 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17740   EVT VT = N->getValueType(0);
17741
17742   // Match direct AllOnes for 128 and 256-bit vectors
17743   if (ISD::isBuildVectorAllOnes(N))
17744     return true;
17745
17746   // Look through a bit convert.
17747   if (N->getOpcode() == ISD::BITCAST)
17748     N = N->getOperand(0).getNode();
17749
17750   // Sometimes the operand may come from a insert_subvector building a 256-bit
17751   // allones vector
17752   if (VT.is256BitVector() &&
17753       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17754     SDValue V1 = N->getOperand(0);
17755     SDValue V2 = N->getOperand(1);
17756
17757     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17758         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17759         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17760         ISD::isBuildVectorAllOnes(V2.getNode()))
17761       return true;
17762   }
17763
17764   return false;
17765 }
17766
17767 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17768 // register. In most cases we actually compare or select YMM-sized registers
17769 // and mixing the two types creates horrible code. This method optimizes
17770 // some of the transition sequences.
17771 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17772                                  TargetLowering::DAGCombinerInfo &DCI,
17773                                  const X86Subtarget *Subtarget) {
17774   EVT VT = N->getValueType(0);
17775   if (!VT.is256BitVector())
17776     return SDValue();
17777
17778   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17779           N->getOpcode() == ISD::ZERO_EXTEND ||
17780           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17781
17782   SDValue Narrow = N->getOperand(0);
17783   EVT NarrowVT = Narrow->getValueType(0);
17784   if (!NarrowVT.is128BitVector())
17785     return SDValue();
17786
17787   if (Narrow->getOpcode() != ISD::XOR &&
17788       Narrow->getOpcode() != ISD::AND &&
17789       Narrow->getOpcode() != ISD::OR)
17790     return SDValue();
17791
17792   SDValue N0  = Narrow->getOperand(0);
17793   SDValue N1  = Narrow->getOperand(1);
17794   SDLoc DL(Narrow);
17795
17796   // The Left side has to be a trunc.
17797   if (N0.getOpcode() != ISD::TRUNCATE)
17798     return SDValue();
17799
17800   // The type of the truncated inputs.
17801   EVT WideVT = N0->getOperand(0)->getValueType(0);
17802   if (WideVT != VT)
17803     return SDValue();
17804
17805   // The right side has to be a 'trunc' or a constant vector.
17806   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17807   bool RHSConst = (isSplatVector(N1.getNode()) &&
17808                    isa<ConstantSDNode>(N1->getOperand(0)));
17809   if (!RHSTrunc && !RHSConst)
17810     return SDValue();
17811
17812   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17813
17814   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17815     return SDValue();
17816
17817   // Set N0 and N1 to hold the inputs to the new wide operation.
17818   N0 = N0->getOperand(0);
17819   if (RHSConst) {
17820     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17821                      N1->getOperand(0));
17822     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17823     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17824   } else if (RHSTrunc) {
17825     N1 = N1->getOperand(0);
17826   }
17827
17828   // Generate the wide operation.
17829   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17830   unsigned Opcode = N->getOpcode();
17831   switch (Opcode) {
17832   case ISD::ANY_EXTEND:
17833     return Op;
17834   case ISD::ZERO_EXTEND: {
17835     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17836     APInt Mask = APInt::getAllOnesValue(InBits);
17837     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17838     return DAG.getNode(ISD::AND, DL, VT,
17839                        Op, DAG.getConstant(Mask, VT));
17840   }
17841   case ISD::SIGN_EXTEND:
17842     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17843                        Op, DAG.getValueType(NarrowVT));
17844   default:
17845     llvm_unreachable("Unexpected opcode");
17846   }
17847 }
17848
17849 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17850                                  TargetLowering::DAGCombinerInfo &DCI,
17851                                  const X86Subtarget *Subtarget) {
17852   EVT VT = N->getValueType(0);
17853   if (DCI.isBeforeLegalizeOps())
17854     return SDValue();
17855
17856   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17857   if (R.getNode())
17858     return R;
17859
17860   // Create BLSI, BLSR, and BZHI instructions
17861   // BLSI is X & (-X)
17862   // BLSR is X & (X-1)
17863   // BZHI is X & ((1 << Y) - 1)
17864   // BEXTR is ((X >> imm) & (2**size-1))
17865   if (VT == MVT::i32 || VT == MVT::i64) {
17866     SDValue N0 = N->getOperand(0);
17867     SDValue N1 = N->getOperand(1);
17868     SDLoc DL(N);
17869
17870     if (Subtarget->hasBMI()) {
17871       // Check LHS for neg
17872       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17873           isZero(N0.getOperand(0)))
17874         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17875
17876       // Check RHS for neg
17877       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17878           isZero(N1.getOperand(0)))
17879         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17880
17881       // Check LHS for X-1
17882       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17883           isAllOnes(N0.getOperand(1)))
17884         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17885
17886       // Check RHS for X-1
17887       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17888           isAllOnes(N1.getOperand(1)))
17889         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17890     }
17891
17892     if (Subtarget->hasBMI2()) {
17893       // Check for (and (add (shl 1, Y), -1), X)
17894       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17895         SDValue N00 = N0.getOperand(0);
17896         if (N00.getOpcode() == ISD::SHL) {
17897           SDValue N001 = N00.getOperand(1);
17898           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17899           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17900           if (C && C->getZExtValue() == 1)
17901             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17902         }
17903       }
17904
17905       // Check for (and X, (add (shl 1, Y), -1))
17906       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17907         SDValue N10 = N1.getOperand(0);
17908         if (N10.getOpcode() == ISD::SHL) {
17909           SDValue N101 = N10.getOperand(1);
17910           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17911           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17912           if (C && C->getZExtValue() == 1)
17913             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17914         }
17915       }
17916     }
17917
17918     // Check for BEXTR.
17919     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17920         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17921       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17922       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17923       if (MaskNode && ShiftNode) {
17924         uint64_t Mask = MaskNode->getZExtValue();
17925         uint64_t Shift = ShiftNode->getZExtValue();
17926         if (isMask_64(Mask)) {
17927           uint64_t MaskSize = CountPopulation_64(Mask);
17928           if (Shift + MaskSize <= VT.getSizeInBits())
17929             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17930                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17931         }
17932       }
17933     } // BEXTR
17934
17935     return SDValue();
17936   }
17937
17938   // Want to form ANDNP nodes:
17939   // 1) In the hopes of then easily combining them with OR and AND nodes
17940   //    to form PBLEND/PSIGN.
17941   // 2) To match ANDN packed intrinsics
17942   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17943     return SDValue();
17944
17945   SDValue N0 = N->getOperand(0);
17946   SDValue N1 = N->getOperand(1);
17947   SDLoc DL(N);
17948
17949   // Check LHS for vnot
17950   if (N0.getOpcode() == ISD::XOR &&
17951       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17952       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17953     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17954
17955   // Check RHS for vnot
17956   if (N1.getOpcode() == ISD::XOR &&
17957       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17958       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17959     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17960
17961   return SDValue();
17962 }
17963
17964 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17965                                 TargetLowering::DAGCombinerInfo &DCI,
17966                                 const X86Subtarget *Subtarget) {
17967   EVT VT = N->getValueType(0);
17968   if (DCI.isBeforeLegalizeOps())
17969     return SDValue();
17970
17971   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17972   if (R.getNode())
17973     return R;
17974
17975   SDValue N0 = N->getOperand(0);
17976   SDValue N1 = N->getOperand(1);
17977
17978   // look for psign/blend
17979   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17980     if (!Subtarget->hasSSSE3() ||
17981         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17982       return SDValue();
17983
17984     // Canonicalize pandn to RHS
17985     if (N0.getOpcode() == X86ISD::ANDNP)
17986       std::swap(N0, N1);
17987     // or (and (m, y), (pandn m, x))
17988     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17989       SDValue Mask = N1.getOperand(0);
17990       SDValue X    = N1.getOperand(1);
17991       SDValue Y;
17992       if (N0.getOperand(0) == Mask)
17993         Y = N0.getOperand(1);
17994       if (N0.getOperand(1) == Mask)
17995         Y = N0.getOperand(0);
17996
17997       // Check to see if the mask appeared in both the AND and ANDNP and
17998       if (!Y.getNode())
17999         return SDValue();
18000
18001       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
18002       // Look through mask bitcast.
18003       if (Mask.getOpcode() == ISD::BITCAST)
18004         Mask = Mask.getOperand(0);
18005       if (X.getOpcode() == ISD::BITCAST)
18006         X = X.getOperand(0);
18007       if (Y.getOpcode() == ISD::BITCAST)
18008         Y = Y.getOperand(0);
18009
18010       EVT MaskVT = Mask.getValueType();
18011
18012       // Validate that the Mask operand is a vector sra node.
18013       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
18014       // there is no psrai.b
18015       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
18016       unsigned SraAmt = ~0;
18017       if (Mask.getOpcode() == ISD::SRA) {
18018         SDValue Amt = Mask.getOperand(1);
18019         if (isSplatVector(Amt.getNode())) {
18020           SDValue SclrAmt = Amt->getOperand(0);
18021           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
18022             SraAmt = C->getZExtValue();
18023         }
18024       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
18025         SDValue SraC = Mask.getOperand(1);
18026         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
18027       }
18028       if ((SraAmt + 1) != EltBits)
18029         return SDValue();
18030
18031       SDLoc DL(N);
18032
18033       // Now we know we at least have a plendvb with the mask val.  See if
18034       // we can form a psignb/w/d.
18035       // psign = x.type == y.type == mask.type && y = sub(0, x);
18036       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
18037           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
18038           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
18039         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
18040                "Unsupported VT for PSIGN");
18041         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
18042         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18043       }
18044       // PBLENDVB only available on SSE 4.1
18045       if (!Subtarget->hasSSE41())
18046         return SDValue();
18047
18048       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
18049
18050       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
18051       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
18052       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
18053       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
18054       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18055     }
18056   }
18057
18058   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
18059     return SDValue();
18060
18061   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
18062   MachineFunction &MF = DAG.getMachineFunction();
18063   bool OptForSize = MF.getFunction()->getAttributes().
18064     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
18065
18066   // SHLD/SHRD instructions have lower register pressure, but on some
18067   // platforms they have higher latency than the equivalent
18068   // series of shifts/or that would otherwise be generated.
18069   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
18070   // have higher latencies and we are not optimizing for size.
18071   if (!OptForSize && Subtarget->isSHLDSlow())
18072     return SDValue();
18073
18074   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
18075     std::swap(N0, N1);
18076   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
18077     return SDValue();
18078   if (!N0.hasOneUse() || !N1.hasOneUse())
18079     return SDValue();
18080
18081   SDValue ShAmt0 = N0.getOperand(1);
18082   if (ShAmt0.getValueType() != MVT::i8)
18083     return SDValue();
18084   SDValue ShAmt1 = N1.getOperand(1);
18085   if (ShAmt1.getValueType() != MVT::i8)
18086     return SDValue();
18087   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
18088     ShAmt0 = ShAmt0.getOperand(0);
18089   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
18090     ShAmt1 = ShAmt1.getOperand(0);
18091
18092   SDLoc DL(N);
18093   unsigned Opc = X86ISD::SHLD;
18094   SDValue Op0 = N0.getOperand(0);
18095   SDValue Op1 = N1.getOperand(0);
18096   if (ShAmt0.getOpcode() == ISD::SUB) {
18097     Opc = X86ISD::SHRD;
18098     std::swap(Op0, Op1);
18099     std::swap(ShAmt0, ShAmt1);
18100   }
18101
18102   unsigned Bits = VT.getSizeInBits();
18103   if (ShAmt1.getOpcode() == ISD::SUB) {
18104     SDValue Sum = ShAmt1.getOperand(0);
18105     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
18106       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
18107       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
18108         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
18109       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
18110         return DAG.getNode(Opc, DL, VT,
18111                            Op0, Op1,
18112                            DAG.getNode(ISD::TRUNCATE, DL,
18113                                        MVT::i8, ShAmt0));
18114     }
18115   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
18116     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
18117     if (ShAmt0C &&
18118         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
18119       return DAG.getNode(Opc, DL, VT,
18120                          N0.getOperand(0), N1.getOperand(0),
18121                          DAG.getNode(ISD::TRUNCATE, DL,
18122                                        MVT::i8, ShAmt0));
18123   }
18124
18125   return SDValue();
18126 }
18127
18128 // Generate NEG and CMOV for integer abs.
18129 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
18130   EVT VT = N->getValueType(0);
18131
18132   // Since X86 does not have CMOV for 8-bit integer, we don't convert
18133   // 8-bit integer abs to NEG and CMOV.
18134   if (VT.isInteger() && VT.getSizeInBits() == 8)
18135     return SDValue();
18136
18137   SDValue N0 = N->getOperand(0);
18138   SDValue N1 = N->getOperand(1);
18139   SDLoc DL(N);
18140
18141   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
18142   // and change it to SUB and CMOV.
18143   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
18144       N0.getOpcode() == ISD::ADD &&
18145       N0.getOperand(1) == N1 &&
18146       N1.getOpcode() == ISD::SRA &&
18147       N1.getOperand(0) == N0.getOperand(0))
18148     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
18149       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
18150         // Generate SUB & CMOV.
18151         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
18152                                   DAG.getConstant(0, VT), N0.getOperand(0));
18153
18154         SDValue Ops[] = { N0.getOperand(0), Neg,
18155                           DAG.getConstant(X86::COND_GE, MVT::i8),
18156                           SDValue(Neg.getNode(), 1) };
18157         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
18158                            Ops, array_lengthof(Ops));
18159       }
18160   return SDValue();
18161 }
18162
18163 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
18164 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
18165                                  TargetLowering::DAGCombinerInfo &DCI,
18166                                  const X86Subtarget *Subtarget) {
18167   EVT VT = N->getValueType(0);
18168   if (DCI.isBeforeLegalizeOps())
18169     return SDValue();
18170
18171   if (Subtarget->hasCMov()) {
18172     SDValue RV = performIntegerAbsCombine(N, DAG);
18173     if (RV.getNode())
18174       return RV;
18175   }
18176
18177   // Try forming BMI if it is available.
18178   if (!Subtarget->hasBMI())
18179     return SDValue();
18180
18181   if (VT != MVT::i32 && VT != MVT::i64)
18182     return SDValue();
18183
18184   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
18185
18186   // Create BLSMSK instructions by finding X ^ (X-1)
18187   SDValue N0 = N->getOperand(0);
18188   SDValue N1 = N->getOperand(1);
18189   SDLoc DL(N);
18190
18191   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
18192       isAllOnes(N0.getOperand(1)))
18193     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
18194
18195   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
18196       isAllOnes(N1.getOperand(1)))
18197     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
18198
18199   return SDValue();
18200 }
18201
18202 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
18203 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
18204                                   TargetLowering::DAGCombinerInfo &DCI,
18205                                   const X86Subtarget *Subtarget) {
18206   LoadSDNode *Ld = cast<LoadSDNode>(N);
18207   EVT RegVT = Ld->getValueType(0);
18208   EVT MemVT = Ld->getMemoryVT();
18209   SDLoc dl(Ld);
18210   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18211   unsigned RegSz = RegVT.getSizeInBits();
18212
18213   // On Sandybridge unaligned 256bit loads are inefficient.
18214   ISD::LoadExtType Ext = Ld->getExtensionType();
18215   unsigned Alignment = Ld->getAlignment();
18216   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
18217   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
18218       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
18219     unsigned NumElems = RegVT.getVectorNumElements();
18220     if (NumElems < 2)
18221       return SDValue();
18222
18223     SDValue Ptr = Ld->getBasePtr();
18224     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
18225
18226     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18227                                   NumElems/2);
18228     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18229                                 Ld->getPointerInfo(), Ld->isVolatile(),
18230                                 Ld->isNonTemporal(), Ld->isInvariant(),
18231                                 Alignment);
18232     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18233     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18234                                 Ld->getPointerInfo(), Ld->isVolatile(),
18235                                 Ld->isNonTemporal(), Ld->isInvariant(),
18236                                 std::min(16U, Alignment));
18237     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18238                              Load1.getValue(1),
18239                              Load2.getValue(1));
18240
18241     SDValue NewVec = DAG.getUNDEF(RegVT);
18242     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
18243     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
18244     return DCI.CombineTo(N, NewVec, TF, true);
18245   }
18246
18247   // If this is a vector EXT Load then attempt to optimize it using a
18248   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18249   // expansion is still better than scalar code.
18250   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18251   // emit a shuffle and a arithmetic shift.
18252   // TODO: It is possible to support ZExt by zeroing the undef values
18253   // during the shuffle phase or after the shuffle.
18254   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18255       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
18256     assert(MemVT != RegVT && "Cannot extend to the same type");
18257     assert(MemVT.isVector() && "Must load a vector from memory");
18258
18259     unsigned NumElems = RegVT.getVectorNumElements();
18260     unsigned MemSz = MemVT.getSizeInBits();
18261     assert(RegSz > MemSz && "Register size must be greater than the mem size");
18262
18263     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18264       return SDValue();
18265
18266     // All sizes must be a power of two.
18267     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18268       return SDValue();
18269
18270     // Attempt to load the original value using scalar loads.
18271     // Find the largest scalar type that divides the total loaded size.
18272     MVT SclrLoadTy = MVT::i8;
18273     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18274          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18275       MVT Tp = (MVT::SimpleValueType)tp;
18276       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18277         SclrLoadTy = Tp;
18278       }
18279     }
18280
18281     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18282     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18283         (64 <= MemSz))
18284       SclrLoadTy = MVT::f64;
18285
18286     // Calculate the number of scalar loads that we need to perform
18287     // in order to load our vector from memory.
18288     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18289     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18290       return SDValue();
18291
18292     unsigned loadRegZize = RegSz;
18293     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18294       loadRegZize /= 2;
18295
18296     // Represent our vector as a sequence of elements which are the
18297     // largest scalar that we can load.
18298     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18299       loadRegZize/SclrLoadTy.getSizeInBits());
18300
18301     // Represent the data using the same element type that is stored in
18302     // memory. In practice, we ''widen'' MemVT.
18303     EVT WideVecVT =
18304           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18305                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18306
18307     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18308       "Invalid vector type");
18309
18310     // We can't shuffle using an illegal type.
18311     if (!TLI.isTypeLegal(WideVecVT))
18312       return SDValue();
18313
18314     SmallVector<SDValue, 8> Chains;
18315     SDValue Ptr = Ld->getBasePtr();
18316     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18317                                         TLI.getPointerTy());
18318     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18319
18320     for (unsigned i = 0; i < NumLoads; ++i) {
18321       // Perform a single load.
18322       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18323                                        Ptr, Ld->getPointerInfo(),
18324                                        Ld->isVolatile(), Ld->isNonTemporal(),
18325                                        Ld->isInvariant(), Ld->getAlignment());
18326       Chains.push_back(ScalarLoad.getValue(1));
18327       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18328       // another round of DAGCombining.
18329       if (i == 0)
18330         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18331       else
18332         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18333                           ScalarLoad, DAG.getIntPtrConstant(i));
18334
18335       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18336     }
18337
18338     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18339                                Chains.size());
18340
18341     // Bitcast the loaded value to a vector of the original element type, in
18342     // the size of the target vector type.
18343     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18344     unsigned SizeRatio = RegSz/MemSz;
18345
18346     if (Ext == ISD::SEXTLOAD) {
18347       // If we have SSE4.1 we can directly emit a VSEXT node.
18348       if (Subtarget->hasSSE41()) {
18349         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18350         return DCI.CombineTo(N, Sext, TF, true);
18351       }
18352
18353       // Otherwise we'll shuffle the small elements in the high bits of the
18354       // larger type and perform an arithmetic shift. If the shift is not legal
18355       // it's better to scalarize.
18356       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18357         return SDValue();
18358
18359       // Redistribute the loaded elements into the different locations.
18360       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18361       for (unsigned i = 0; i != NumElems; ++i)
18362         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18363
18364       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18365                                            DAG.getUNDEF(WideVecVT),
18366                                            &ShuffleVec[0]);
18367
18368       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18369
18370       // Build the arithmetic shift.
18371       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18372                      MemVT.getVectorElementType().getSizeInBits();
18373       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18374                           DAG.getConstant(Amt, RegVT));
18375
18376       return DCI.CombineTo(N, Shuff, TF, true);
18377     }
18378
18379     // Redistribute the loaded elements into the different locations.
18380     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18381     for (unsigned i = 0; i != NumElems; ++i)
18382       ShuffleVec[i*SizeRatio] = i;
18383
18384     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18385                                          DAG.getUNDEF(WideVecVT),
18386                                          &ShuffleVec[0]);
18387
18388     // Bitcast to the requested type.
18389     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18390     // Replace the original load with the new sequence
18391     // and return the new chain.
18392     return DCI.CombineTo(N, Shuff, TF, true);
18393   }
18394
18395   return SDValue();
18396 }
18397
18398 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18399 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18400                                    const X86Subtarget *Subtarget) {
18401   StoreSDNode *St = cast<StoreSDNode>(N);
18402   EVT VT = St->getValue().getValueType();
18403   EVT StVT = St->getMemoryVT();
18404   SDLoc dl(St);
18405   SDValue StoredVal = St->getOperand(1);
18406   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18407
18408   // If we are saving a concatenation of two XMM registers, perform two stores.
18409   // On Sandy Bridge, 256-bit memory operations are executed by two
18410   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18411   // memory  operation.
18412   unsigned Alignment = St->getAlignment();
18413   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18414   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18415       StVT == VT && !IsAligned) {
18416     unsigned NumElems = VT.getVectorNumElements();
18417     if (NumElems < 2)
18418       return SDValue();
18419
18420     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18421     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18422
18423     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18424     SDValue Ptr0 = St->getBasePtr();
18425     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18426
18427     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18428                                 St->getPointerInfo(), St->isVolatile(),
18429                                 St->isNonTemporal(), Alignment);
18430     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18431                                 St->getPointerInfo(), St->isVolatile(),
18432                                 St->isNonTemporal(),
18433                                 std::min(16U, Alignment));
18434     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18435   }
18436
18437   // Optimize trunc store (of multiple scalars) to shuffle and store.
18438   // First, pack all of the elements in one place. Next, store to memory
18439   // in fewer chunks.
18440   if (St->isTruncatingStore() && VT.isVector()) {
18441     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18442     unsigned NumElems = VT.getVectorNumElements();
18443     assert(StVT != VT && "Cannot truncate to the same type");
18444     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18445     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18446
18447     // From, To sizes and ElemCount must be pow of two
18448     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18449     // We are going to use the original vector elt for storing.
18450     // Accumulated smaller vector elements must be a multiple of the store size.
18451     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18452
18453     unsigned SizeRatio  = FromSz / ToSz;
18454
18455     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18456
18457     // Create a type on which we perform the shuffle
18458     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18459             StVT.getScalarType(), NumElems*SizeRatio);
18460
18461     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18462
18463     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18464     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18465     for (unsigned i = 0; i != NumElems; ++i)
18466       ShuffleVec[i] = i * SizeRatio;
18467
18468     // Can't shuffle using an illegal type.
18469     if (!TLI.isTypeLegal(WideVecVT))
18470       return SDValue();
18471
18472     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18473                                          DAG.getUNDEF(WideVecVT),
18474                                          &ShuffleVec[0]);
18475     // At this point all of the data is stored at the bottom of the
18476     // register. We now need to save it to mem.
18477
18478     // Find the largest store unit
18479     MVT StoreType = MVT::i8;
18480     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18481          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18482       MVT Tp = (MVT::SimpleValueType)tp;
18483       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18484         StoreType = Tp;
18485     }
18486
18487     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18488     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18489         (64 <= NumElems * ToSz))
18490       StoreType = MVT::f64;
18491
18492     // Bitcast the original vector into a vector of store-size units
18493     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18494             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18495     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18496     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18497     SmallVector<SDValue, 8> Chains;
18498     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18499                                         TLI.getPointerTy());
18500     SDValue Ptr = St->getBasePtr();
18501
18502     // Perform one or more big stores into memory.
18503     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18504       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18505                                    StoreType, ShuffWide,
18506                                    DAG.getIntPtrConstant(i));
18507       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18508                                 St->getPointerInfo(), St->isVolatile(),
18509                                 St->isNonTemporal(), St->getAlignment());
18510       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18511       Chains.push_back(Ch);
18512     }
18513
18514     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18515                                Chains.size());
18516   }
18517
18518   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18519   // the FP state in cases where an emms may be missing.
18520   // A preferable solution to the general problem is to figure out the right
18521   // places to insert EMMS.  This qualifies as a quick hack.
18522
18523   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18524   if (VT.getSizeInBits() != 64)
18525     return SDValue();
18526
18527   const Function *F = DAG.getMachineFunction().getFunction();
18528   bool NoImplicitFloatOps = F->getAttributes().
18529     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18530   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18531                      && Subtarget->hasSSE2();
18532   if ((VT.isVector() ||
18533        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18534       isa<LoadSDNode>(St->getValue()) &&
18535       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18536       St->getChain().hasOneUse() && !St->isVolatile()) {
18537     SDNode* LdVal = St->getValue().getNode();
18538     LoadSDNode *Ld = 0;
18539     int TokenFactorIndex = -1;
18540     SmallVector<SDValue, 8> Ops;
18541     SDNode* ChainVal = St->getChain().getNode();
18542     // Must be a store of a load.  We currently handle two cases:  the load
18543     // is a direct child, and it's under an intervening TokenFactor.  It is
18544     // possible to dig deeper under nested TokenFactors.
18545     if (ChainVal == LdVal)
18546       Ld = cast<LoadSDNode>(St->getChain());
18547     else if (St->getValue().hasOneUse() &&
18548              ChainVal->getOpcode() == ISD::TokenFactor) {
18549       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18550         if (ChainVal->getOperand(i).getNode() == LdVal) {
18551           TokenFactorIndex = i;
18552           Ld = cast<LoadSDNode>(St->getValue());
18553         } else
18554           Ops.push_back(ChainVal->getOperand(i));
18555       }
18556     }
18557
18558     if (!Ld || !ISD::isNormalLoad(Ld))
18559       return SDValue();
18560
18561     // If this is not the MMX case, i.e. we are just turning i64 load/store
18562     // into f64 load/store, avoid the transformation if there are multiple
18563     // uses of the loaded value.
18564     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18565       return SDValue();
18566
18567     SDLoc LdDL(Ld);
18568     SDLoc StDL(N);
18569     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18570     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18571     // pair instead.
18572     if (Subtarget->is64Bit() || F64IsLegal) {
18573       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18574       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18575                                   Ld->getPointerInfo(), Ld->isVolatile(),
18576                                   Ld->isNonTemporal(), Ld->isInvariant(),
18577                                   Ld->getAlignment());
18578       SDValue NewChain = NewLd.getValue(1);
18579       if (TokenFactorIndex != -1) {
18580         Ops.push_back(NewChain);
18581         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18582                                Ops.size());
18583       }
18584       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18585                           St->getPointerInfo(),
18586                           St->isVolatile(), St->isNonTemporal(),
18587                           St->getAlignment());
18588     }
18589
18590     // Otherwise, lower to two pairs of 32-bit loads / stores.
18591     SDValue LoAddr = Ld->getBasePtr();
18592     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18593                                  DAG.getConstant(4, MVT::i32));
18594
18595     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18596                                Ld->getPointerInfo(),
18597                                Ld->isVolatile(), Ld->isNonTemporal(),
18598                                Ld->isInvariant(), Ld->getAlignment());
18599     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18600                                Ld->getPointerInfo().getWithOffset(4),
18601                                Ld->isVolatile(), Ld->isNonTemporal(),
18602                                Ld->isInvariant(),
18603                                MinAlign(Ld->getAlignment(), 4));
18604
18605     SDValue NewChain = LoLd.getValue(1);
18606     if (TokenFactorIndex != -1) {
18607       Ops.push_back(LoLd);
18608       Ops.push_back(HiLd);
18609       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18610                              Ops.size());
18611     }
18612
18613     LoAddr = St->getBasePtr();
18614     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18615                          DAG.getConstant(4, MVT::i32));
18616
18617     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18618                                 St->getPointerInfo(),
18619                                 St->isVolatile(), St->isNonTemporal(),
18620                                 St->getAlignment());
18621     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18622                                 St->getPointerInfo().getWithOffset(4),
18623                                 St->isVolatile(),
18624                                 St->isNonTemporal(),
18625                                 MinAlign(St->getAlignment(), 4));
18626     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18627   }
18628   return SDValue();
18629 }
18630
18631 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18632 /// and return the operands for the horizontal operation in LHS and RHS.  A
18633 /// horizontal operation performs the binary operation on successive elements
18634 /// of its first operand, then on successive elements of its second operand,
18635 /// returning the resulting values in a vector.  For example, if
18636 ///   A = < float a0, float a1, float a2, float a3 >
18637 /// and
18638 ///   B = < float b0, float b1, float b2, float b3 >
18639 /// then the result of doing a horizontal operation on A and B is
18640 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18641 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18642 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18643 /// set to A, RHS to B, and the routine returns 'true'.
18644 /// Note that the binary operation should have the property that if one of the
18645 /// operands is UNDEF then the result is UNDEF.
18646 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18647   // Look for the following pattern: if
18648   //   A = < float a0, float a1, float a2, float a3 >
18649   //   B = < float b0, float b1, float b2, float b3 >
18650   // and
18651   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18652   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18653   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18654   // which is A horizontal-op B.
18655
18656   // At least one of the operands should be a vector shuffle.
18657   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18658       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18659     return false;
18660
18661   MVT VT = LHS.getSimpleValueType();
18662
18663   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18664          "Unsupported vector type for horizontal add/sub");
18665
18666   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18667   // operate independently on 128-bit lanes.
18668   unsigned NumElts = VT.getVectorNumElements();
18669   unsigned NumLanes = VT.getSizeInBits()/128;
18670   unsigned NumLaneElts = NumElts / NumLanes;
18671   assert((NumLaneElts % 2 == 0) &&
18672          "Vector type should have an even number of elements in each lane");
18673   unsigned HalfLaneElts = NumLaneElts/2;
18674
18675   // View LHS in the form
18676   //   LHS = VECTOR_SHUFFLE A, B, LMask
18677   // If LHS is not a shuffle then pretend it is the shuffle
18678   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18679   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18680   // type VT.
18681   SDValue A, B;
18682   SmallVector<int, 16> LMask(NumElts);
18683   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18684     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18685       A = LHS.getOperand(0);
18686     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18687       B = LHS.getOperand(1);
18688     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18689     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18690   } else {
18691     if (LHS.getOpcode() != ISD::UNDEF)
18692       A = LHS;
18693     for (unsigned i = 0; i != NumElts; ++i)
18694       LMask[i] = i;
18695   }
18696
18697   // Likewise, view RHS in the form
18698   //   RHS = VECTOR_SHUFFLE C, D, RMask
18699   SDValue C, D;
18700   SmallVector<int, 16> RMask(NumElts);
18701   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18702     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18703       C = RHS.getOperand(0);
18704     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18705       D = RHS.getOperand(1);
18706     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18707     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18708   } else {
18709     if (RHS.getOpcode() != ISD::UNDEF)
18710       C = RHS;
18711     for (unsigned i = 0; i != NumElts; ++i)
18712       RMask[i] = i;
18713   }
18714
18715   // Check that the shuffles are both shuffling the same vectors.
18716   if (!(A == C && B == D) && !(A == D && B == C))
18717     return false;
18718
18719   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18720   if (!A.getNode() && !B.getNode())
18721     return false;
18722
18723   // If A and B occur in reverse order in RHS, then "swap" them (which means
18724   // rewriting the mask).
18725   if (A != C)
18726     CommuteVectorShuffleMask(RMask, NumElts);
18727
18728   // At this point LHS and RHS are equivalent to
18729   //   LHS = VECTOR_SHUFFLE A, B, LMask
18730   //   RHS = VECTOR_SHUFFLE A, B, RMask
18731   // Check that the masks correspond to performing a horizontal operation.
18732   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18733     for (unsigned i = 0; i != NumLaneElts; ++i) {
18734       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18735
18736       // Ignore any UNDEF components.
18737       if (LIdx < 0 || RIdx < 0 ||
18738           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18739           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18740         continue;
18741
18742       // Check that successive elements are being operated on.  If not, this is
18743       // not a horizontal operation.
18744       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18745       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18746       if (!(LIdx == Index && RIdx == Index + 1) &&
18747           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18748         return false;
18749     }
18750   }
18751
18752   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18753   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18754   return true;
18755 }
18756
18757 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18758 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18759                                   const X86Subtarget *Subtarget) {
18760   EVT VT = N->getValueType(0);
18761   SDValue LHS = N->getOperand(0);
18762   SDValue RHS = N->getOperand(1);
18763
18764   // Try to synthesize horizontal adds from adds of shuffles.
18765   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18766        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18767       isHorizontalBinOp(LHS, RHS, true))
18768     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18769   return SDValue();
18770 }
18771
18772 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18773 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18774                                   const X86Subtarget *Subtarget) {
18775   EVT VT = N->getValueType(0);
18776   SDValue LHS = N->getOperand(0);
18777   SDValue RHS = N->getOperand(1);
18778
18779   // Try to synthesize horizontal subs from subs of shuffles.
18780   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18781        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18782       isHorizontalBinOp(LHS, RHS, false))
18783     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18784   return SDValue();
18785 }
18786
18787 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18788 /// X86ISD::FXOR nodes.
18789 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18790   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18791   // F[X]OR(0.0, x) -> x
18792   // F[X]OR(x, 0.0) -> x
18793   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18794     if (C->getValueAPF().isPosZero())
18795       return N->getOperand(1);
18796   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18797     if (C->getValueAPF().isPosZero())
18798       return N->getOperand(0);
18799   return SDValue();
18800 }
18801
18802 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18803 /// X86ISD::FMAX nodes.
18804 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18805   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18806
18807   // Only perform optimizations if UnsafeMath is used.
18808   if (!DAG.getTarget().Options.UnsafeFPMath)
18809     return SDValue();
18810
18811   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18812   // into FMINC and FMAXC, which are Commutative operations.
18813   unsigned NewOp = 0;
18814   switch (N->getOpcode()) {
18815     default: llvm_unreachable("unknown opcode");
18816     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18817     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18818   }
18819
18820   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18821                      N->getOperand(0), N->getOperand(1));
18822 }
18823
18824 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18825 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18826   // FAND(0.0, x) -> 0.0
18827   // FAND(x, 0.0) -> 0.0
18828   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18829     if (C->getValueAPF().isPosZero())
18830       return N->getOperand(0);
18831   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18832     if (C->getValueAPF().isPosZero())
18833       return N->getOperand(1);
18834   return SDValue();
18835 }
18836
18837 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18838 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18839   // FANDN(x, 0.0) -> 0.0
18840   // FANDN(0.0, x) -> x
18841   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18842     if (C->getValueAPF().isPosZero())
18843       return N->getOperand(1);
18844   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18845     if (C->getValueAPF().isPosZero())
18846       return N->getOperand(1);
18847   return SDValue();
18848 }
18849
18850 static SDValue PerformBTCombine(SDNode *N,
18851                                 SelectionDAG &DAG,
18852                                 TargetLowering::DAGCombinerInfo &DCI) {
18853   // BT ignores high bits in the bit index operand.
18854   SDValue Op1 = N->getOperand(1);
18855   if (Op1.hasOneUse()) {
18856     unsigned BitWidth = Op1.getValueSizeInBits();
18857     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18858     APInt KnownZero, KnownOne;
18859     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18860                                           !DCI.isBeforeLegalizeOps());
18861     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18862     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18863         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18864       DCI.CommitTargetLoweringOpt(TLO);
18865   }
18866   return SDValue();
18867 }
18868
18869 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18870   SDValue Op = N->getOperand(0);
18871   if (Op.getOpcode() == ISD::BITCAST)
18872     Op = Op.getOperand(0);
18873   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18874   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18875       VT.getVectorElementType().getSizeInBits() ==
18876       OpVT.getVectorElementType().getSizeInBits()) {
18877     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18878   }
18879   return SDValue();
18880 }
18881
18882 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18883                                                const X86Subtarget *Subtarget) {
18884   EVT VT = N->getValueType(0);
18885   if (!VT.isVector())
18886     return SDValue();
18887
18888   SDValue N0 = N->getOperand(0);
18889   SDValue N1 = N->getOperand(1);
18890   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18891   SDLoc dl(N);
18892
18893   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18894   // both SSE and AVX2 since there is no sign-extended shift right
18895   // operation on a vector with 64-bit elements.
18896   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18897   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18898   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18899       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18900     SDValue N00 = N0.getOperand(0);
18901
18902     // EXTLOAD has a better solution on AVX2,
18903     // it may be replaced with X86ISD::VSEXT node.
18904     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18905       if (!ISD::isNormalLoad(N00.getNode()))
18906         return SDValue();
18907
18908     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18909         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18910                                   N00, N1);
18911       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18912     }
18913   }
18914   return SDValue();
18915 }
18916
18917 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18918                                   TargetLowering::DAGCombinerInfo &DCI,
18919                                   const X86Subtarget *Subtarget) {
18920   if (!DCI.isBeforeLegalizeOps())
18921     return SDValue();
18922
18923   if (!Subtarget->hasFp256())
18924     return SDValue();
18925
18926   EVT VT = N->getValueType(0);
18927   if (VT.isVector() && VT.getSizeInBits() == 256) {
18928     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18929     if (R.getNode())
18930       return R;
18931   }
18932
18933   return SDValue();
18934 }
18935
18936 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18937                                  const X86Subtarget* Subtarget) {
18938   SDLoc dl(N);
18939   EVT VT = N->getValueType(0);
18940
18941   // Let legalize expand this if it isn't a legal type yet.
18942   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18943     return SDValue();
18944
18945   EVT ScalarVT = VT.getScalarType();
18946   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18947       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18948     return SDValue();
18949
18950   SDValue A = N->getOperand(0);
18951   SDValue B = N->getOperand(1);
18952   SDValue C = N->getOperand(2);
18953
18954   bool NegA = (A.getOpcode() == ISD::FNEG);
18955   bool NegB = (B.getOpcode() == ISD::FNEG);
18956   bool NegC = (C.getOpcode() == ISD::FNEG);
18957
18958   // Negative multiplication when NegA xor NegB
18959   bool NegMul = (NegA != NegB);
18960   if (NegA)
18961     A = A.getOperand(0);
18962   if (NegB)
18963     B = B.getOperand(0);
18964   if (NegC)
18965     C = C.getOperand(0);
18966
18967   unsigned Opcode;
18968   if (!NegMul)
18969     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18970   else
18971     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18972
18973   return DAG.getNode(Opcode, dl, VT, A, B, C);
18974 }
18975
18976 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18977                                   TargetLowering::DAGCombinerInfo &DCI,
18978                                   const X86Subtarget *Subtarget) {
18979   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18980   //           (and (i32 x86isd::setcc_carry), 1)
18981   // This eliminates the zext. This transformation is necessary because
18982   // ISD::SETCC is always legalized to i8.
18983   SDLoc dl(N);
18984   SDValue N0 = N->getOperand(0);
18985   EVT VT = N->getValueType(0);
18986
18987   if (N0.getOpcode() == ISD::AND &&
18988       N0.hasOneUse() &&
18989       N0.getOperand(0).hasOneUse()) {
18990     SDValue N00 = N0.getOperand(0);
18991     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18992       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18993       if (!C || C->getZExtValue() != 1)
18994         return SDValue();
18995       return DAG.getNode(ISD::AND, dl, VT,
18996                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18997                                      N00.getOperand(0), N00.getOperand(1)),
18998                          DAG.getConstant(1, VT));
18999     }
19000   }
19001
19002   if (N0.getOpcode() == ISD::TRUNCATE &&
19003       N0.hasOneUse() &&
19004       N0.getOperand(0).hasOneUse()) {
19005     SDValue N00 = N0.getOperand(0);
19006     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19007       return DAG.getNode(ISD::AND, dl, VT,
19008                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19009                                      N00.getOperand(0), N00.getOperand(1)),
19010                          DAG.getConstant(1, VT));
19011     }
19012   }
19013   if (VT.is256BitVector()) {
19014     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19015     if (R.getNode())
19016       return R;
19017   }
19018
19019   return SDValue();
19020 }
19021
19022 // Optimize x == -y --> x+y == 0
19023 //          x != -y --> x+y != 0
19024 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
19025   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
19026   SDValue LHS = N->getOperand(0);
19027   SDValue RHS = N->getOperand(1);
19028
19029   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
19030     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
19031       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
19032         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19033                                    LHS.getValueType(), RHS, LHS.getOperand(1));
19034         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19035                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19036       }
19037   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
19038     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
19039       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
19040         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19041                                    RHS.getValueType(), LHS, RHS.getOperand(1));
19042         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19043                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19044       }
19045   return SDValue();
19046 }
19047
19048 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
19049 // as "sbb reg,reg", since it can be extended without zext and produces
19050 // an all-ones bit which is more useful than 0/1 in some cases.
19051 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
19052                                MVT VT) {
19053   if (VT == MVT::i8)
19054     return DAG.getNode(ISD::AND, DL, VT,
19055                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19056                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
19057                        DAG.getConstant(1, VT));
19058   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
19059   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
19060                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19061                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
19062 }
19063
19064 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
19065 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
19066                                    TargetLowering::DAGCombinerInfo &DCI,
19067                                    const X86Subtarget *Subtarget) {
19068   SDLoc DL(N);
19069   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
19070   SDValue EFLAGS = N->getOperand(1);
19071
19072   if (CC == X86::COND_A) {
19073     // Try to convert COND_A into COND_B in an attempt to facilitate
19074     // materializing "setb reg".
19075     //
19076     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
19077     // cannot take an immediate as its first operand.
19078     //
19079     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
19080         EFLAGS.getValueType().isInteger() &&
19081         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
19082       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
19083                                    EFLAGS.getNode()->getVTList(),
19084                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
19085       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
19086       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
19087     }
19088   }
19089
19090   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
19091   // a zext and produces an all-ones bit which is more useful than 0/1 in some
19092   // cases.
19093   if (CC == X86::COND_B)
19094     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
19095
19096   SDValue Flags;
19097
19098   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19099   if (Flags.getNode()) {
19100     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19101     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
19102   }
19103
19104   return SDValue();
19105 }
19106
19107 // Optimize branch condition evaluation.
19108 //
19109 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
19110                                     TargetLowering::DAGCombinerInfo &DCI,
19111                                     const X86Subtarget *Subtarget) {
19112   SDLoc DL(N);
19113   SDValue Chain = N->getOperand(0);
19114   SDValue Dest = N->getOperand(1);
19115   SDValue EFLAGS = N->getOperand(3);
19116   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
19117
19118   SDValue Flags;
19119
19120   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19121   if (Flags.getNode()) {
19122     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19123     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
19124                        Flags);
19125   }
19126
19127   return SDValue();
19128 }
19129
19130 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
19131                                         const X86TargetLowering *XTLI) {
19132   SDValue Op0 = N->getOperand(0);
19133   EVT InVT = Op0->getValueType(0);
19134
19135   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
19136   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
19137     SDLoc dl(N);
19138     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
19139     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
19140     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
19141   }
19142
19143   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
19144   // a 32-bit target where SSE doesn't support i64->FP operations.
19145   if (Op0.getOpcode() == ISD::LOAD) {
19146     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
19147     EVT VT = Ld->getValueType(0);
19148     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
19149         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
19150         !XTLI->getSubtarget()->is64Bit() &&
19151         VT == MVT::i64) {
19152       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
19153                                           Ld->getChain(), Op0, DAG);
19154       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
19155       return FILDChain;
19156     }
19157   }
19158   return SDValue();
19159 }
19160
19161 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
19162 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
19163                                  X86TargetLowering::DAGCombinerInfo &DCI) {
19164   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
19165   // the result is either zero or one (depending on the input carry bit).
19166   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
19167   if (X86::isZeroNode(N->getOperand(0)) &&
19168       X86::isZeroNode(N->getOperand(1)) &&
19169       // We don't have a good way to replace an EFLAGS use, so only do this when
19170       // dead right now.
19171       SDValue(N, 1).use_empty()) {
19172     SDLoc DL(N);
19173     EVT VT = N->getValueType(0);
19174     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
19175     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
19176                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
19177                                            DAG.getConstant(X86::COND_B,MVT::i8),
19178                                            N->getOperand(2)),
19179                                DAG.getConstant(1, VT));
19180     return DCI.CombineTo(N, Res1, CarryOut);
19181   }
19182
19183   return SDValue();
19184 }
19185
19186 // fold (add Y, (sete  X, 0)) -> adc  0, Y
19187 //      (add Y, (setne X, 0)) -> sbb -1, Y
19188 //      (sub (sete  X, 0), Y) -> sbb  0, Y
19189 //      (sub (setne X, 0), Y) -> adc -1, Y
19190 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
19191   SDLoc DL(N);
19192
19193   // Look through ZExts.
19194   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
19195   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
19196     return SDValue();
19197
19198   SDValue SetCC = Ext.getOperand(0);
19199   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
19200     return SDValue();
19201
19202   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
19203   if (CC != X86::COND_E && CC != X86::COND_NE)
19204     return SDValue();
19205
19206   SDValue Cmp = SetCC.getOperand(1);
19207   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
19208       !X86::isZeroNode(Cmp.getOperand(1)) ||
19209       !Cmp.getOperand(0).getValueType().isInteger())
19210     return SDValue();
19211
19212   SDValue CmpOp0 = Cmp.getOperand(0);
19213   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
19214                                DAG.getConstant(1, CmpOp0.getValueType()));
19215
19216   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
19217   if (CC == X86::COND_NE)
19218     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
19219                        DL, OtherVal.getValueType(), OtherVal,
19220                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
19221   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
19222                      DL, OtherVal.getValueType(), OtherVal,
19223                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
19224 }
19225
19226 /// PerformADDCombine - Do target-specific dag combines on integer adds.
19227 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
19228                                  const X86Subtarget *Subtarget) {
19229   EVT VT = N->getValueType(0);
19230   SDValue Op0 = N->getOperand(0);
19231   SDValue Op1 = N->getOperand(1);
19232
19233   // Try to synthesize horizontal adds from adds of shuffles.
19234   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19235        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19236       isHorizontalBinOp(Op0, Op1, true))
19237     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
19238
19239   return OptimizeConditionalInDecrement(N, DAG);
19240 }
19241
19242 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
19243                                  const X86Subtarget *Subtarget) {
19244   SDValue Op0 = N->getOperand(0);
19245   SDValue Op1 = N->getOperand(1);
19246
19247   // X86 can't encode an immediate LHS of a sub. See if we can push the
19248   // negation into a preceding instruction.
19249   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
19250     // If the RHS of the sub is a XOR with one use and a constant, invert the
19251     // immediate. Then add one to the LHS of the sub so we can turn
19252     // X-Y -> X+~Y+1, saving one register.
19253     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
19254         isa<ConstantSDNode>(Op1.getOperand(1))) {
19255       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
19256       EVT VT = Op0.getValueType();
19257       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
19258                                    Op1.getOperand(0),
19259                                    DAG.getConstant(~XorC, VT));
19260       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
19261                          DAG.getConstant(C->getAPIntValue()+1, VT));
19262     }
19263   }
19264
19265   // Try to synthesize horizontal adds from adds of shuffles.
19266   EVT VT = N->getValueType(0);
19267   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19268        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19269       isHorizontalBinOp(Op0, Op1, true))
19270     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
19271
19272   return OptimizeConditionalInDecrement(N, DAG);
19273 }
19274
19275 /// performVZEXTCombine - Performs build vector combines
19276 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19277                                         TargetLowering::DAGCombinerInfo &DCI,
19278                                         const X86Subtarget *Subtarget) {
19279   // (vzext (bitcast (vzext (x)) -> (vzext x)
19280   SDValue In = N->getOperand(0);
19281   while (In.getOpcode() == ISD::BITCAST)
19282     In = In.getOperand(0);
19283
19284   if (In.getOpcode() != X86ISD::VZEXT)
19285     return SDValue();
19286
19287   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
19288                      In.getOperand(0));
19289 }
19290
19291 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19292                                              DAGCombinerInfo &DCI) const {
19293   SelectionDAG &DAG = DCI.DAG;
19294   switch (N->getOpcode()) {
19295   default: break;
19296   case ISD::EXTRACT_VECTOR_ELT:
19297     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19298   case ISD::VSELECT:
19299   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19300   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19301   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19302   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19303   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19304   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19305   case ISD::SHL:
19306   case ISD::SRA:
19307   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19308   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19309   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19310   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19311   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19312   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19313   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19314   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19315   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19316   case X86ISD::FXOR:
19317   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19318   case X86ISD::FMIN:
19319   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19320   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19321   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19322   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19323   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19324   case ISD::ANY_EXTEND:
19325   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19326   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19327   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19328   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19329   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19330   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19331   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19332   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19333   case X86ISD::SHUFP:       // Handle all target specific shuffles
19334   case X86ISD::PALIGNR:
19335   case X86ISD::UNPCKH:
19336   case X86ISD::UNPCKL:
19337   case X86ISD::MOVHLPS:
19338   case X86ISD::MOVLHPS:
19339   case X86ISD::PSHUFD:
19340   case X86ISD::PSHUFHW:
19341   case X86ISD::PSHUFLW:
19342   case X86ISD::MOVSS:
19343   case X86ISD::MOVSD:
19344   case X86ISD::VPERMILP:
19345   case X86ISD::VPERM2X128:
19346   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19347   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19348   }
19349
19350   return SDValue();
19351 }
19352
19353 /// isTypeDesirableForOp - Return true if the target has native support for
19354 /// the specified value type and it is 'desirable' to use the type for the
19355 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19356 /// instruction encodings are longer and some i16 instructions are slow.
19357 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19358   if (!isTypeLegal(VT))
19359     return false;
19360   if (VT != MVT::i16)
19361     return true;
19362
19363   switch (Opc) {
19364   default:
19365     return true;
19366   case ISD::LOAD:
19367   case ISD::SIGN_EXTEND:
19368   case ISD::ZERO_EXTEND:
19369   case ISD::ANY_EXTEND:
19370   case ISD::SHL:
19371   case ISD::SRL:
19372   case ISD::SUB:
19373   case ISD::ADD:
19374   case ISD::MUL:
19375   case ISD::AND:
19376   case ISD::OR:
19377   case ISD::XOR:
19378     return false;
19379   }
19380 }
19381
19382 /// IsDesirableToPromoteOp - This method query the target whether it is
19383 /// beneficial for dag combiner to promote the specified node. If true, it
19384 /// should return the desired promotion type by reference.
19385 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19386   EVT VT = Op.getValueType();
19387   if (VT != MVT::i16)
19388     return false;
19389
19390   bool Promote = false;
19391   bool Commute = false;
19392   switch (Op.getOpcode()) {
19393   default: break;
19394   case ISD::LOAD: {
19395     LoadSDNode *LD = cast<LoadSDNode>(Op);
19396     // If the non-extending load has a single use and it's not live out, then it
19397     // might be folded.
19398     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19399                                                      Op.hasOneUse()*/) {
19400       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19401              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19402         // The only case where we'd want to promote LOAD (rather then it being
19403         // promoted as an operand is when it's only use is liveout.
19404         if (UI->getOpcode() != ISD::CopyToReg)
19405           return false;
19406       }
19407     }
19408     Promote = true;
19409     break;
19410   }
19411   case ISD::SIGN_EXTEND:
19412   case ISD::ZERO_EXTEND:
19413   case ISD::ANY_EXTEND:
19414     Promote = true;
19415     break;
19416   case ISD::SHL:
19417   case ISD::SRL: {
19418     SDValue N0 = Op.getOperand(0);
19419     // Look out for (store (shl (load), x)).
19420     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19421       return false;
19422     Promote = true;
19423     break;
19424   }
19425   case ISD::ADD:
19426   case ISD::MUL:
19427   case ISD::AND:
19428   case ISD::OR:
19429   case ISD::XOR:
19430     Commute = true;
19431     // fallthrough
19432   case ISD::SUB: {
19433     SDValue N0 = Op.getOperand(0);
19434     SDValue N1 = Op.getOperand(1);
19435     if (!Commute && MayFoldLoad(N1))
19436       return false;
19437     // Avoid disabling potential load folding opportunities.
19438     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19439       return false;
19440     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19441       return false;
19442     Promote = true;
19443   }
19444   }
19445
19446   PVT = MVT::i32;
19447   return Promote;
19448 }
19449
19450 //===----------------------------------------------------------------------===//
19451 //                           X86 Inline Assembly Support
19452 //===----------------------------------------------------------------------===//
19453
19454 namespace {
19455   // Helper to match a string separated by whitespace.
19456   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19457     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19458
19459     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19460       StringRef piece(*args[i]);
19461       if (!s.startswith(piece)) // Check if the piece matches.
19462         return false;
19463
19464       s = s.substr(piece.size());
19465       StringRef::size_type pos = s.find_first_not_of(" \t");
19466       if (pos == 0) // We matched a prefix.
19467         return false;
19468
19469       s = s.substr(pos);
19470     }
19471
19472     return s.empty();
19473   }
19474   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19475 }
19476
19477 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19478
19479   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19480     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19481         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19482         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19483
19484       if (AsmPieces.size() == 3)
19485         return true;
19486       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19487         return true;
19488     }
19489   }
19490   return false;
19491 }
19492
19493 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19494   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19495
19496   std::string AsmStr = IA->getAsmString();
19497
19498   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19499   if (!Ty || Ty->getBitWidth() % 16 != 0)
19500     return false;
19501
19502   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19503   SmallVector<StringRef, 4> AsmPieces;
19504   SplitString(AsmStr, AsmPieces, ";\n");
19505
19506   switch (AsmPieces.size()) {
19507   default: return false;
19508   case 1:
19509     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19510     // we will turn this bswap into something that will be lowered to logical
19511     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19512     // lower so don't worry about this.
19513     // bswap $0
19514     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19515         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19516         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19517         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19518         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19519         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19520       // No need to check constraints, nothing other than the equivalent of
19521       // "=r,0" would be valid here.
19522       return IntrinsicLowering::LowerToByteSwap(CI);
19523     }
19524
19525     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19526     if (CI->getType()->isIntegerTy(16) &&
19527         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19528         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19529          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19530       AsmPieces.clear();
19531       const std::string &ConstraintsStr = IA->getConstraintString();
19532       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19533       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19534       if (clobbersFlagRegisters(AsmPieces))
19535         return IntrinsicLowering::LowerToByteSwap(CI);
19536     }
19537     break;
19538   case 3:
19539     if (CI->getType()->isIntegerTy(32) &&
19540         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19541         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19542         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19543         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19544       AsmPieces.clear();
19545       const std::string &ConstraintsStr = IA->getConstraintString();
19546       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19547       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19548       if (clobbersFlagRegisters(AsmPieces))
19549         return IntrinsicLowering::LowerToByteSwap(CI);
19550     }
19551
19552     if (CI->getType()->isIntegerTy(64)) {
19553       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19554       if (Constraints.size() >= 2 &&
19555           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19556           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19557         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19558         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19559             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19560             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19561           return IntrinsicLowering::LowerToByteSwap(CI);
19562       }
19563     }
19564     break;
19565   }
19566   return false;
19567 }
19568
19569 /// getConstraintType - Given a constraint letter, return the type of
19570 /// constraint it is for this target.
19571 X86TargetLowering::ConstraintType
19572 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19573   if (Constraint.size() == 1) {
19574     switch (Constraint[0]) {
19575     case 'R':
19576     case 'q':
19577     case 'Q':
19578     case 'f':
19579     case 't':
19580     case 'u':
19581     case 'y':
19582     case 'x':
19583     case 'Y':
19584     case 'l':
19585       return C_RegisterClass;
19586     case 'a':
19587     case 'b':
19588     case 'c':
19589     case 'd':
19590     case 'S':
19591     case 'D':
19592     case 'A':
19593       return C_Register;
19594     case 'I':
19595     case 'J':
19596     case 'K':
19597     case 'L':
19598     case 'M':
19599     case 'N':
19600     case 'G':
19601     case 'C':
19602     case 'e':
19603     case 'Z':
19604       return C_Other;
19605     default:
19606       break;
19607     }
19608   }
19609   return TargetLowering::getConstraintType(Constraint);
19610 }
19611
19612 /// Examine constraint type and operand type and determine a weight value.
19613 /// This object must already have been set up with the operand type
19614 /// and the current alternative constraint selected.
19615 TargetLowering::ConstraintWeight
19616   X86TargetLowering::getSingleConstraintMatchWeight(
19617     AsmOperandInfo &info, const char *constraint) const {
19618   ConstraintWeight weight = CW_Invalid;
19619   Value *CallOperandVal = info.CallOperandVal;
19620     // If we don't have a value, we can't do a match,
19621     // but allow it at the lowest weight.
19622   if (CallOperandVal == NULL)
19623     return CW_Default;
19624   Type *type = CallOperandVal->getType();
19625   // Look at the constraint type.
19626   switch (*constraint) {
19627   default:
19628     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19629   case 'R':
19630   case 'q':
19631   case 'Q':
19632   case 'a':
19633   case 'b':
19634   case 'c':
19635   case 'd':
19636   case 'S':
19637   case 'D':
19638   case 'A':
19639     if (CallOperandVal->getType()->isIntegerTy())
19640       weight = CW_SpecificReg;
19641     break;
19642   case 'f':
19643   case 't':
19644   case 'u':
19645     if (type->isFloatingPointTy())
19646       weight = CW_SpecificReg;
19647     break;
19648   case 'y':
19649     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19650       weight = CW_SpecificReg;
19651     break;
19652   case 'x':
19653   case 'Y':
19654     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19655         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19656       weight = CW_Register;
19657     break;
19658   case 'I':
19659     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19660       if (C->getZExtValue() <= 31)
19661         weight = CW_Constant;
19662     }
19663     break;
19664   case 'J':
19665     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19666       if (C->getZExtValue() <= 63)
19667         weight = CW_Constant;
19668     }
19669     break;
19670   case 'K':
19671     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19672       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19673         weight = CW_Constant;
19674     }
19675     break;
19676   case 'L':
19677     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19678       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19679         weight = CW_Constant;
19680     }
19681     break;
19682   case 'M':
19683     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19684       if (C->getZExtValue() <= 3)
19685         weight = CW_Constant;
19686     }
19687     break;
19688   case 'N':
19689     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19690       if (C->getZExtValue() <= 0xff)
19691         weight = CW_Constant;
19692     }
19693     break;
19694   case 'G':
19695   case 'C':
19696     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19697       weight = CW_Constant;
19698     }
19699     break;
19700   case 'e':
19701     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19702       if ((C->getSExtValue() >= -0x80000000LL) &&
19703           (C->getSExtValue() <= 0x7fffffffLL))
19704         weight = CW_Constant;
19705     }
19706     break;
19707   case 'Z':
19708     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19709       if (C->getZExtValue() <= 0xffffffff)
19710         weight = CW_Constant;
19711     }
19712     break;
19713   }
19714   return weight;
19715 }
19716
19717 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19718 /// with another that has more specific requirements based on the type of the
19719 /// corresponding operand.
19720 const char *X86TargetLowering::
19721 LowerXConstraint(EVT ConstraintVT) const {
19722   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19723   // 'f' like normal targets.
19724   if (ConstraintVT.isFloatingPoint()) {
19725     if (Subtarget->hasSSE2())
19726       return "Y";
19727     if (Subtarget->hasSSE1())
19728       return "x";
19729   }
19730
19731   return TargetLowering::LowerXConstraint(ConstraintVT);
19732 }
19733
19734 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19735 /// vector.  If it is invalid, don't add anything to Ops.
19736 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19737                                                      std::string &Constraint,
19738                                                      std::vector<SDValue>&Ops,
19739                                                      SelectionDAG &DAG) const {
19740   SDValue Result(0, 0);
19741
19742   // Only support length 1 constraints for now.
19743   if (Constraint.length() > 1) return;
19744
19745   char ConstraintLetter = Constraint[0];
19746   switch (ConstraintLetter) {
19747   default: break;
19748   case 'I':
19749     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19750       if (C->getZExtValue() <= 31) {
19751         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19752         break;
19753       }
19754     }
19755     return;
19756   case 'J':
19757     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19758       if (C->getZExtValue() <= 63) {
19759         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19760         break;
19761       }
19762     }
19763     return;
19764   case 'K':
19765     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19766       if (isInt<8>(C->getSExtValue())) {
19767         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19768         break;
19769       }
19770     }
19771     return;
19772   case 'N':
19773     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19774       if (C->getZExtValue() <= 255) {
19775         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19776         break;
19777       }
19778     }
19779     return;
19780   case 'e': {
19781     // 32-bit signed value
19782     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19783       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19784                                            C->getSExtValue())) {
19785         // Widen to 64 bits here to get it sign extended.
19786         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19787         break;
19788       }
19789     // FIXME gcc accepts some relocatable values here too, but only in certain
19790     // memory models; it's complicated.
19791     }
19792     return;
19793   }
19794   case 'Z': {
19795     // 32-bit unsigned value
19796     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19797       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19798                                            C->getZExtValue())) {
19799         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19800         break;
19801       }
19802     }
19803     // FIXME gcc accepts some relocatable values here too, but only in certain
19804     // memory models; it's complicated.
19805     return;
19806   }
19807   case 'i': {
19808     // Literal immediates are always ok.
19809     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19810       // Widen to 64 bits here to get it sign extended.
19811       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19812       break;
19813     }
19814
19815     // In any sort of PIC mode addresses need to be computed at runtime by
19816     // adding in a register or some sort of table lookup.  These can't
19817     // be used as immediates.
19818     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19819       return;
19820
19821     // If we are in non-pic codegen mode, we allow the address of a global (with
19822     // an optional displacement) to be used with 'i'.
19823     GlobalAddressSDNode *GA = 0;
19824     int64_t Offset = 0;
19825
19826     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19827     while (1) {
19828       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19829         Offset += GA->getOffset();
19830         break;
19831       } else if (Op.getOpcode() == ISD::ADD) {
19832         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19833           Offset += C->getZExtValue();
19834           Op = Op.getOperand(0);
19835           continue;
19836         }
19837       } else if (Op.getOpcode() == ISD::SUB) {
19838         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19839           Offset += -C->getZExtValue();
19840           Op = Op.getOperand(0);
19841           continue;
19842         }
19843       }
19844
19845       // Otherwise, this isn't something we can handle, reject it.
19846       return;
19847     }
19848
19849     const GlobalValue *GV = GA->getGlobal();
19850     // If we require an extra load to get this address, as in PIC mode, we
19851     // can't accept it.
19852     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19853                                                         getTargetMachine())))
19854       return;
19855
19856     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19857                                         GA->getValueType(0), Offset);
19858     break;
19859   }
19860   }
19861
19862   if (Result.getNode()) {
19863     Ops.push_back(Result);
19864     return;
19865   }
19866   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19867 }
19868
19869 std::pair<unsigned, const TargetRegisterClass*>
19870 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19871                                                 MVT VT) const {
19872   // First, see if this is a constraint that directly corresponds to an LLVM
19873   // register class.
19874   if (Constraint.size() == 1) {
19875     // GCC Constraint Letters
19876     switch (Constraint[0]) {
19877     default: break;
19878       // TODO: Slight differences here in allocation order and leaving
19879       // RIP in the class. Do they matter any more here than they do
19880       // in the normal allocation?
19881     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19882       if (Subtarget->is64Bit()) {
19883         if (VT == MVT::i32 || VT == MVT::f32)
19884           return std::make_pair(0U, &X86::GR32RegClass);
19885         if (VT == MVT::i16)
19886           return std::make_pair(0U, &X86::GR16RegClass);
19887         if (VT == MVT::i8 || VT == MVT::i1)
19888           return std::make_pair(0U, &X86::GR8RegClass);
19889         if (VT == MVT::i64 || VT == MVT::f64)
19890           return std::make_pair(0U, &X86::GR64RegClass);
19891         break;
19892       }
19893       // 32-bit fallthrough
19894     case 'Q':   // Q_REGS
19895       if (VT == MVT::i32 || VT == MVT::f32)
19896         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19897       if (VT == MVT::i16)
19898         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19899       if (VT == MVT::i8 || VT == MVT::i1)
19900         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19901       if (VT == MVT::i64)
19902         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19903       break;
19904     case 'r':   // GENERAL_REGS
19905     case 'l':   // INDEX_REGS
19906       if (VT == MVT::i8 || VT == MVT::i1)
19907         return std::make_pair(0U, &X86::GR8RegClass);
19908       if (VT == MVT::i16)
19909         return std::make_pair(0U, &X86::GR16RegClass);
19910       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19911         return std::make_pair(0U, &X86::GR32RegClass);
19912       return std::make_pair(0U, &X86::GR64RegClass);
19913     case 'R':   // LEGACY_REGS
19914       if (VT == MVT::i8 || VT == MVT::i1)
19915         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19916       if (VT == MVT::i16)
19917         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19918       if (VT == MVT::i32 || !Subtarget->is64Bit())
19919         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19920       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19921     case 'f':  // FP Stack registers.
19922       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19923       // value to the correct fpstack register class.
19924       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19925         return std::make_pair(0U, &X86::RFP32RegClass);
19926       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19927         return std::make_pair(0U, &X86::RFP64RegClass);
19928       return std::make_pair(0U, &X86::RFP80RegClass);
19929     case 'y':   // MMX_REGS if MMX allowed.
19930       if (!Subtarget->hasMMX()) break;
19931       return std::make_pair(0U, &X86::VR64RegClass);
19932     case 'Y':   // SSE_REGS if SSE2 allowed
19933       if (!Subtarget->hasSSE2()) break;
19934       // FALL THROUGH.
19935     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19936       if (!Subtarget->hasSSE1()) break;
19937
19938       switch (VT.SimpleTy) {
19939       default: break;
19940       // Scalar SSE types.
19941       case MVT::f32:
19942       case MVT::i32:
19943         return std::make_pair(0U, &X86::FR32RegClass);
19944       case MVT::f64:
19945       case MVT::i64:
19946         return std::make_pair(0U, &X86::FR64RegClass);
19947       // Vector types.
19948       case MVT::v16i8:
19949       case MVT::v8i16:
19950       case MVT::v4i32:
19951       case MVT::v2i64:
19952       case MVT::v4f32:
19953       case MVT::v2f64:
19954         return std::make_pair(0U, &X86::VR128RegClass);
19955       // AVX types.
19956       case MVT::v32i8:
19957       case MVT::v16i16:
19958       case MVT::v8i32:
19959       case MVT::v4i64:
19960       case MVT::v8f32:
19961       case MVT::v4f64:
19962         return std::make_pair(0U, &X86::VR256RegClass);
19963       case MVT::v8f64:
19964       case MVT::v16f32:
19965       case MVT::v16i32:
19966       case MVT::v8i64:
19967         return std::make_pair(0U, &X86::VR512RegClass);
19968       }
19969       break;
19970     }
19971   }
19972
19973   // Use the default implementation in TargetLowering to convert the register
19974   // constraint into a member of a register class.
19975   std::pair<unsigned, const TargetRegisterClass*> Res;
19976   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19977
19978   // Not found as a standard register?
19979   if (Res.second == 0) {
19980     // Map st(0) -> st(7) -> ST0
19981     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19982         tolower(Constraint[1]) == 's' &&
19983         tolower(Constraint[2]) == 't' &&
19984         Constraint[3] == '(' &&
19985         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19986         Constraint[5] == ')' &&
19987         Constraint[6] == '}') {
19988
19989       Res.first = X86::ST0+Constraint[4]-'0';
19990       Res.second = &X86::RFP80RegClass;
19991       return Res;
19992     }
19993
19994     // GCC allows "st(0)" to be called just plain "st".
19995     if (StringRef("{st}").equals_lower(Constraint)) {
19996       Res.first = X86::ST0;
19997       Res.second = &X86::RFP80RegClass;
19998       return Res;
19999     }
20000
20001     // flags -> EFLAGS
20002     if (StringRef("{flags}").equals_lower(Constraint)) {
20003       Res.first = X86::EFLAGS;
20004       Res.second = &X86::CCRRegClass;
20005       return Res;
20006     }
20007
20008     // 'A' means EAX + EDX.
20009     if (Constraint == "A") {
20010       Res.first = X86::EAX;
20011       Res.second = &X86::GR32_ADRegClass;
20012       return Res;
20013     }
20014     return Res;
20015   }
20016
20017   // Otherwise, check to see if this is a register class of the wrong value
20018   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
20019   // turn into {ax},{dx}.
20020   if (Res.second->hasType(VT))
20021     return Res;   // Correct type already, nothing to do.
20022
20023   // All of the single-register GCC register classes map their values onto
20024   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
20025   // really want an 8-bit or 32-bit register, map to the appropriate register
20026   // class and return the appropriate register.
20027   if (Res.second == &X86::GR16RegClass) {
20028     if (VT == MVT::i8 || VT == MVT::i1) {
20029       unsigned DestReg = 0;
20030       switch (Res.first) {
20031       default: break;
20032       case X86::AX: DestReg = X86::AL; break;
20033       case X86::DX: DestReg = X86::DL; break;
20034       case X86::CX: DestReg = X86::CL; break;
20035       case X86::BX: DestReg = X86::BL; break;
20036       }
20037       if (DestReg) {
20038         Res.first = DestReg;
20039         Res.second = &X86::GR8RegClass;
20040       }
20041     } else if (VT == MVT::i32 || VT == MVT::f32) {
20042       unsigned DestReg = 0;
20043       switch (Res.first) {
20044       default: break;
20045       case X86::AX: DestReg = X86::EAX; break;
20046       case X86::DX: DestReg = X86::EDX; break;
20047       case X86::CX: DestReg = X86::ECX; break;
20048       case X86::BX: DestReg = X86::EBX; break;
20049       case X86::SI: DestReg = X86::ESI; break;
20050       case X86::DI: DestReg = X86::EDI; break;
20051       case X86::BP: DestReg = X86::EBP; break;
20052       case X86::SP: DestReg = X86::ESP; break;
20053       }
20054       if (DestReg) {
20055         Res.first = DestReg;
20056         Res.second = &X86::GR32RegClass;
20057       }
20058     } else if (VT == MVT::i64 || VT == MVT::f64) {
20059       unsigned DestReg = 0;
20060       switch (Res.first) {
20061       default: break;
20062       case X86::AX: DestReg = X86::RAX; break;
20063       case X86::DX: DestReg = X86::RDX; break;
20064       case X86::CX: DestReg = X86::RCX; break;
20065       case X86::BX: DestReg = X86::RBX; break;
20066       case X86::SI: DestReg = X86::RSI; break;
20067       case X86::DI: DestReg = X86::RDI; break;
20068       case X86::BP: DestReg = X86::RBP; break;
20069       case X86::SP: DestReg = X86::RSP; break;
20070       }
20071       if (DestReg) {
20072         Res.first = DestReg;
20073         Res.second = &X86::GR64RegClass;
20074       }
20075     }
20076   } else if (Res.second == &X86::FR32RegClass ||
20077              Res.second == &X86::FR64RegClass ||
20078              Res.second == &X86::VR128RegClass ||
20079              Res.second == &X86::VR256RegClass ||
20080              Res.second == &X86::FR32XRegClass ||
20081              Res.second == &X86::FR64XRegClass ||
20082              Res.second == &X86::VR128XRegClass ||
20083              Res.second == &X86::VR256XRegClass ||
20084              Res.second == &X86::VR512RegClass) {
20085     // Handle references to XMM physical registers that got mapped into the
20086     // wrong class.  This can happen with constraints like {xmm0} where the
20087     // target independent register mapper will just pick the first match it can
20088     // find, ignoring the required type.
20089
20090     if (VT == MVT::f32 || VT == MVT::i32)
20091       Res.second = &X86::FR32RegClass;
20092     else if (VT == MVT::f64 || VT == MVT::i64)
20093       Res.second = &X86::FR64RegClass;
20094     else if (X86::VR128RegClass.hasType(VT))
20095       Res.second = &X86::VR128RegClass;
20096     else if (X86::VR256RegClass.hasType(VT))
20097       Res.second = &X86::VR256RegClass;
20098     else if (X86::VR512RegClass.hasType(VT))
20099       Res.second = &X86::VR512RegClass;
20100   }
20101
20102   return Res;
20103 }