5dca225593f1e88db0a91683ed2b44ddc3b54007
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86ISelLowering.h"
17 #include "Utils/X86ShuffleDecode.h"
18 #include "X86.h"
19 #include "X86CallingConv.h"
20 #include "X86InstrBuilder.h"
21 #include "X86TargetMachine.h"
22 #include "X86TargetObjectFile.h"
23 #include "llvm/ADT/SmallSet.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/ADT/VariadicFunction.h"
27 #include "llvm/CodeGen/IntrinsicLowering.h"
28 #include "llvm/CodeGen/MachineFrameInfo.h"
29 #include "llvm/CodeGen/MachineFunction.h"
30 #include "llvm/CodeGen/MachineInstrBuilder.h"
31 #include "llvm/CodeGen/MachineJumpTableInfo.h"
32 #include "llvm/CodeGen/MachineModuleInfo.h"
33 #include "llvm/CodeGen/MachineRegisterInfo.h"
34 #include "llvm/IR/CallingConv.h"
35 #include "llvm/IR/Constants.h"
36 #include "llvm/IR/DerivedTypes.h"
37 #include "llvm/IR/Function.h"
38 #include "llvm/IR/GlobalAlias.h"
39 #include "llvm/IR/GlobalVariable.h"
40 #include "llvm/IR/Instructions.h"
41 #include "llvm/IR/Intrinsics.h"
42 #include "llvm/MC/MCAsmInfo.h"
43 #include "llvm/MC/MCContext.h"
44 #include "llvm/MC/MCExpr.h"
45 #include "llvm/MC/MCSymbol.h"
46 #include "llvm/Support/CallSite.h"
47 #include "llvm/Support/Debug.h"
48 #include "llvm/Support/ErrorHandling.h"
49 #include "llvm/Support/MathExtras.h"
50 #include "llvm/Target/TargetOptions.h"
51 #include <bitset>
52 #include <cctype>
53 using namespace llvm;
54
55 STATISTIC(NumTailCalls, "Number of tail calls");
56
57 // Forward declarations.
58 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
59                        SDValue V2);
60
61 static SDValue ExtractSubVector(SDValue Vec, unsigned IdxVal,
62                                 SelectionDAG &DAG, SDLoc dl,
63                                 unsigned vectorWidth) {
64   assert((vectorWidth == 128 || vectorWidth == 256) &&
65          "Unsupported vector width");
66   EVT VT = Vec.getValueType();
67   EVT ElVT = VT.getVectorElementType();
68   unsigned Factor = VT.getSizeInBits()/vectorWidth;
69   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
70                                   VT.getVectorNumElements()/Factor);
71
72   // Extract from UNDEF is UNDEF.
73   if (Vec.getOpcode() == ISD::UNDEF)
74     return DAG.getUNDEF(ResultVT);
75
76   // Extract the relevant vectorWidth bits.  Generate an EXTRACT_SUBVECTOR
77   unsigned ElemsPerChunk = vectorWidth / ElVT.getSizeInBits();
78
79   // This is the index of the first element of the vectorWidth-bit chunk
80   // we want.
81   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / vectorWidth)
82                                * ElemsPerChunk);
83
84   // If the input is a buildvector just emit a smaller one.
85   if (Vec.getOpcode() == ISD::BUILD_VECTOR)
86     return DAG.getNode(ISD::BUILD_VECTOR, dl, ResultVT,
87                        Vec->op_begin()+NormalizedIdxVal, ElemsPerChunk);
88
89   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
90   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
91                                VecIdx);
92
93   return Result;
94
95 }
96 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
97 /// sets things up to match to an AVX VEXTRACTF128 / VEXTRACTI128
98 /// or AVX-512 VEXTRACTF32x4 / VEXTRACTI32x4
99 /// instructions or a simple subregister reference. Idx is an index in the
100 /// 128 bits we want.  It need not be aligned to a 128-bit bounday.  That makes
101 /// lowering EXTRACT_VECTOR_ELT operations easier.
102 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
103                                    SelectionDAG &DAG, SDLoc dl) {
104   assert((Vec.getValueType().is256BitVector() ||
105           Vec.getValueType().is512BitVector()) && "Unexpected vector size!");
106   return ExtractSubVector(Vec, IdxVal, DAG, dl, 128);
107 }
108
109 /// Generate a DAG to grab 256-bits from a 512-bit vector.
110 static SDValue Extract256BitVector(SDValue Vec, unsigned IdxVal,
111                                    SelectionDAG &DAG, SDLoc dl) {
112   assert(Vec.getValueType().is512BitVector() && "Unexpected vector size!");
113   return ExtractSubVector(Vec, IdxVal, DAG, dl, 256);
114 }
115
116 static SDValue InsertSubVector(SDValue Result, SDValue Vec,
117                                unsigned IdxVal, SelectionDAG &DAG,
118                                SDLoc dl, unsigned vectorWidth) {
119   assert((vectorWidth == 128 || vectorWidth == 256) &&
120          "Unsupported vector width");
121   // Inserting UNDEF is Result
122   if (Vec.getOpcode() == ISD::UNDEF)
123     return Result;
124   EVT VT = Vec.getValueType();
125   EVT ElVT = VT.getVectorElementType();
126   EVT ResultVT = Result.getValueType();
127
128   // Insert the relevant vectorWidth bits.
129   unsigned ElemsPerChunk = vectorWidth/ElVT.getSizeInBits();
130
131   // This is the index of the first element of the vectorWidth-bit chunk
132   // we want.
133   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/vectorWidth)
134                                * ElemsPerChunk);
135
136   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
137   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
138                      VecIdx);
139 }
140 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
141 /// sets things up to match to an AVX VINSERTF128/VINSERTI128 or
142 /// AVX-512 VINSERTF32x4/VINSERTI32x4 instructions or a
143 /// simple superregister reference.  Idx is an index in the 128 bits
144 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
145 /// lowering INSERT_VECTOR_ELT operations easier.
146 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
147                                   unsigned IdxVal, SelectionDAG &DAG,
148                                   SDLoc dl) {
149   assert(Vec.getValueType().is128BitVector() && "Unexpected vector size!");
150   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 128);
151 }
152
153 static SDValue Insert256BitVector(SDValue Result, SDValue Vec,
154                                   unsigned IdxVal, SelectionDAG &DAG,
155                                   SDLoc dl) {
156   assert(Vec.getValueType().is256BitVector() && "Unexpected vector size!");
157   return InsertSubVector(Result, Vec, IdxVal, DAG, dl, 256);
158 }
159
160 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
161 /// instructions. This is used because creating CONCAT_VECTOR nodes of
162 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
163 /// large BUILD_VECTORS.
164 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
165                                    unsigned NumElems, SelectionDAG &DAG,
166                                    SDLoc dl) {
167   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
168   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
169 }
170
171 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT,
172                                    unsigned NumElems, SelectionDAG &DAG,
173                                    SDLoc dl) {
174   SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
175   return Insert256BitVector(V, V2, NumElems/2, DAG, dl);
176 }
177
178 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
179   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
180   bool is64Bit = Subtarget->is64Bit();
181
182   if (Subtarget->isTargetMacho()) {
183     if (is64Bit)
184       return new X86_64MachoTargetObjectFile();
185     return new TargetLoweringObjectFileMachO();
186   }
187
188   if (Subtarget->isTargetLinux())
189     return new X86LinuxTargetObjectFile();
190   if (Subtarget->isTargetELF())
191     return new TargetLoweringObjectFileELF();
192   if (Subtarget->isTargetWindows())
193     return new X86WindowsTargetObjectFile();
194   if (Subtarget->isTargetCOFF())
195     return new TargetLoweringObjectFileCOFF();
196   llvm_unreachable("unknown subtarget type");
197 }
198
199 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
200   : TargetLowering(TM, createTLOF(TM)) {
201   Subtarget = &TM.getSubtarget<X86Subtarget>();
202   X86ScalarSSEf64 = Subtarget->hasSSE2();
203   X86ScalarSSEf32 = Subtarget->hasSSE1();
204   TD = getDataLayout();
205
206   resetOperationActions();
207 }
208
209 void X86TargetLowering::resetOperationActions() {
210   const TargetMachine &TM = getTargetMachine();
211   static bool FirstTimeThrough = true;
212
213   // If none of the target options have changed, then we don't need to reset the
214   // operation actions.
215   if (!FirstTimeThrough && TO == TM.Options) return;
216
217   if (!FirstTimeThrough) {
218     // Reinitialize the actions.
219     initActions();
220     FirstTimeThrough = false;
221   }
222
223   TO = TM.Options;
224
225   // Set up the TargetLowering object.
226   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
227
228   // X86 is weird, it always uses i8 for shift amounts and setcc results.
229   setBooleanContents(ZeroOrOneBooleanContent);
230   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
231   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
232
233   // For 64-bit since we have so many registers use the ILP scheduler, for
234   // 32-bit code use the register pressure specific scheduling.
235   // For Atom, always use ILP scheduling.
236   if (Subtarget->isAtom())
237     setSchedulingPreference(Sched::ILP);
238   else if (Subtarget->is64Bit())
239     setSchedulingPreference(Sched::ILP);
240   else
241     setSchedulingPreference(Sched::RegPressure);
242   const X86RegisterInfo *RegInfo =
243     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
244   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
245
246   // Bypass expensive divides on Atom when compiling with O2
247   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default) {
248     addBypassSlowDiv(32, 8);
249     if (Subtarget->is64Bit())
250       addBypassSlowDiv(64, 16);
251   }
252
253   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
254     // Setup Windows compiler runtime calls.
255     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
256     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
257     setLibcallName(RTLIB::SREM_I64, "_allrem");
258     setLibcallName(RTLIB::UREM_I64, "_aullrem");
259     setLibcallName(RTLIB::MUL_I64, "_allmul");
260     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
261     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
262     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
263     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
264     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
265
266     // The _ftol2 runtime function has an unusual calling conv, which
267     // is modeled by a special pseudo-instruction.
268     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
269     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
270     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
271     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
272   }
273
274   if (Subtarget->isTargetDarwin()) {
275     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
276     setUseUnderscoreSetJmp(false);
277     setUseUnderscoreLongJmp(false);
278   } else if (Subtarget->isTargetMingw()) {
279     // MS runtime is weird: it exports _setjmp, but longjmp!
280     setUseUnderscoreSetJmp(true);
281     setUseUnderscoreLongJmp(false);
282   } else {
283     setUseUnderscoreSetJmp(true);
284     setUseUnderscoreLongJmp(true);
285   }
286
287   // Set up the register classes.
288   addRegisterClass(MVT::i8, &X86::GR8RegClass);
289   addRegisterClass(MVT::i16, &X86::GR16RegClass);
290   addRegisterClass(MVT::i32, &X86::GR32RegClass);
291   if (Subtarget->is64Bit())
292     addRegisterClass(MVT::i64, &X86::GR64RegClass);
293
294   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
295
296   // We don't accept any truncstore of integer registers.
297   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
298   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
299   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
300   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
301   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
302   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
303
304   // SETOEQ and SETUNE require checking two conditions.
305   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
306   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
307   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
308   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
309   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
310   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
311
312   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
313   // operation.
314   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
315   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
316   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
317
318   if (Subtarget->is64Bit()) {
319     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
320     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
321   } else if (!TM.Options.UseSoftFloat) {
322     // We have an algorithm for SSE2->double, and we turn this into a
323     // 64-bit FILD followed by conditional FADD for other targets.
324     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
325     // We have an algorithm for SSE2, and we turn this into a 64-bit
326     // FILD for other targets.
327     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
328   }
329
330   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
331   // this operation.
332   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
333   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
334
335   if (!TM.Options.UseSoftFloat) {
336     // SSE has no i16 to fp conversion, only i32
337     if (X86ScalarSSEf32) {
338       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
339       // f32 and f64 cases are Legal, f80 case is not
340       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
341     } else {
342       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
343       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
344     }
345   } else {
346     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
347     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
348   }
349
350   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
351   // are Legal, f80 is custom lowered.
352   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
353   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
354
355   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
356   // this operation.
357   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
358   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
359
360   if (X86ScalarSSEf32) {
361     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
362     // f32 and f64 cases are Legal, f80 case is not
363     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
364   } else {
365     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
366     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
367   }
368
369   // Handle FP_TO_UINT by promoting the destination to a larger signed
370   // conversion.
371   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
372   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
373   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
374
375   if (Subtarget->is64Bit()) {
376     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
377     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
378   } else if (!TM.Options.UseSoftFloat) {
379     // Since AVX is a superset of SSE3, only check for SSE here.
380     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
381       // Expand FP_TO_UINT into a select.
382       // FIXME: We would like to use a Custom expander here eventually to do
383       // the optimal thing for SSE vs. the default expansion in the legalizer.
384       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
385     else
386       // With SSE3 we can use fisttpll to convert to a signed i64; without
387       // SSE, we're stuck with a fistpll.
388       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
389   }
390
391   if (isTargetFTOL()) {
392     // Use the _ftol2 runtime function, which has a pseudo-instruction
393     // to handle its weird calling convention.
394     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
395   }
396
397   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
398   if (!X86ScalarSSEf64) {
399     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
400     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
401     if (Subtarget->is64Bit()) {
402       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
403       // Without SSE, i64->f64 goes through memory.
404       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
405     }
406   }
407
408   // Scalar integer divide and remainder are lowered to use operations that
409   // produce two results, to match the available instructions. This exposes
410   // the two-result form to trivial CSE, which is able to combine x/y and x%y
411   // into a single instruction.
412   //
413   // Scalar integer multiply-high is also lowered to use two-result
414   // operations, to match the available instructions. However, plain multiply
415   // (low) operations are left as Legal, as there are single-result
416   // instructions for this in x86. Using the two-result multiply instructions
417   // when both high and low results are needed must be arranged by dagcombine.
418   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
419     MVT VT = IntVTs[i];
420     setOperationAction(ISD::MULHS, VT, Expand);
421     setOperationAction(ISD::MULHU, VT, Expand);
422     setOperationAction(ISD::SDIV, VT, Expand);
423     setOperationAction(ISD::UDIV, VT, Expand);
424     setOperationAction(ISD::SREM, VT, Expand);
425     setOperationAction(ISD::UREM, VT, Expand);
426
427     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
428     setOperationAction(ISD::ADDC, VT, Custom);
429     setOperationAction(ISD::ADDE, VT, Custom);
430     setOperationAction(ISD::SUBC, VT, Custom);
431     setOperationAction(ISD::SUBE, VT, Custom);
432   }
433
434   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
435   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
436   setOperationAction(ISD::BR_CC            , MVT::f32,   Expand);
437   setOperationAction(ISD::BR_CC            , MVT::f64,   Expand);
438   setOperationAction(ISD::BR_CC            , MVT::f80,   Expand);
439   setOperationAction(ISD::BR_CC            , MVT::i8,    Expand);
440   setOperationAction(ISD::BR_CC            , MVT::i16,   Expand);
441   setOperationAction(ISD::BR_CC            , MVT::i32,   Expand);
442   setOperationAction(ISD::BR_CC            , MVT::i64,   Expand);
443   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
444   if (Subtarget->is64Bit())
445     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
446   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
447   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
448   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
449   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
450   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
451   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
452   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
453   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
454
455   // Promote the i8 variants and force them on up to i32 which has a shorter
456   // encoding.
457   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
458   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
459   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
460   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
461   if (Subtarget->hasBMI()) {
462     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
463     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
464     if (Subtarget->is64Bit())
465       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
466   } else {
467     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
468     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
469     if (Subtarget->is64Bit())
470       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
471   }
472
473   if (Subtarget->hasLZCNT()) {
474     // When promoting the i8 variants, force them to i32 for a shorter
475     // encoding.
476     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
477     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
478     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
479     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
480     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
481     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
482     if (Subtarget->is64Bit())
483       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
484   } else {
485     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
486     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
487     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
488     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
489     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
490     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
491     if (Subtarget->is64Bit()) {
492       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
493       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
494     }
495   }
496
497   if (Subtarget->hasPOPCNT()) {
498     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
499   } else {
500     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
501     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
502     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
503     if (Subtarget->is64Bit())
504       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
505   }
506
507   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
508   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
509
510   // These should be promoted to a larger select which is supported.
511   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
512   // X86 wants to expand cmov itself.
513   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
514   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
515   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
516   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
517   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
518   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
519   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
520   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
521   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
522   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
523   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
524   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
525   if (Subtarget->is64Bit()) {
526     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
527     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
528   }
529   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
530   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intended to support
531   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
532   // support continuation, user-level threading, and etc.. As a result, no
533   // other SjLj exception interfaces are implemented and please don't build
534   // your own exception handling based on them.
535   // LLVM/Clang supports zero-cost DWARF exception handling.
536   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
537   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
538
539   // Darwin ABI issue.
540   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
541   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
542   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
543   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
544   if (Subtarget->is64Bit())
545     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
546   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
547   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
548   if (Subtarget->is64Bit()) {
549     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
550     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
551     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
552     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
553     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
554   }
555   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
556   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
557   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
558   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
559   if (Subtarget->is64Bit()) {
560     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
561     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
562     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
563   }
564
565   if (Subtarget->hasSSE1())
566     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
567
568   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
569
570   // Expand certain atomics
571   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
572     MVT VT = IntVTs[i];
573     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
574     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
575     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
576   }
577
578   if (!Subtarget->is64Bit()) {
579     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
580     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
581     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
582     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
583     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
584     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
585     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
586     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
587     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
588     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
589     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
590     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
591   }
592
593   if (Subtarget->hasCmpxchg16b()) {
594     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
595   }
596
597   // FIXME - use subtarget debug flags
598   if (!Subtarget->isTargetDarwin() &&
599       !Subtarget->isTargetELF() &&
600       !Subtarget->isTargetCygMing()) {
601     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
602   }
603
604   if (Subtarget->is64Bit()) {
605     setExceptionPointerRegister(X86::RAX);
606     setExceptionSelectorRegister(X86::RDX);
607   } else {
608     setExceptionPointerRegister(X86::EAX);
609     setExceptionSelectorRegister(X86::EDX);
610   }
611   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
612   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
613
614   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
615   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
616
617   setOperationAction(ISD::TRAP, MVT::Other, Legal);
618   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
619
620   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
621   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
622   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
623   if (Subtarget->is64Bit() && !Subtarget->isTargetWin64()) {
624     // TargetInfo::X86_64ABIBuiltinVaList
625     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
626     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
627   } else {
628     // TargetInfo::CharPtrBuiltinVaList
629     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
630     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
631   }
632
633   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
634   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
635
636   if (Subtarget->isOSWindows() && !Subtarget->isTargetMacho())
637     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
638                        MVT::i64 : MVT::i32, Custom);
639   else if (TM.Options.EnableSegmentedStacks)
640     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
641                        MVT::i64 : MVT::i32, Custom);
642   else
643     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
644                        MVT::i64 : MVT::i32, Expand);
645
646   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
647     // f32 and f64 use SSE.
648     // Set up the FP register classes.
649     addRegisterClass(MVT::f32, &X86::FR32RegClass);
650     addRegisterClass(MVT::f64, &X86::FR64RegClass);
651
652     // Use ANDPD to simulate FABS.
653     setOperationAction(ISD::FABS , MVT::f64, Custom);
654     setOperationAction(ISD::FABS , MVT::f32, Custom);
655
656     // Use XORP to simulate FNEG.
657     setOperationAction(ISD::FNEG , MVT::f64, Custom);
658     setOperationAction(ISD::FNEG , MVT::f32, Custom);
659
660     // Use ANDPD and ORPD to simulate FCOPYSIGN.
661     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
662     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
663
664     // Lower this to FGETSIGNx86 plus an AND.
665     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
666     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
667
668     // We don't support sin/cos/fmod
669     setOperationAction(ISD::FSIN   , MVT::f64, Expand);
670     setOperationAction(ISD::FCOS   , MVT::f64, Expand);
671     setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
672     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
673     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
674     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
675
676     // Expand FP immediates into loads from the stack, except for the special
677     // cases we handle.
678     addLegalFPImmediate(APFloat(+0.0)); // xorpd
679     addLegalFPImmediate(APFloat(+0.0f)); // xorps
680   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
681     // Use SSE for f32, x87 for f64.
682     // Set up the FP register classes.
683     addRegisterClass(MVT::f32, &X86::FR32RegClass);
684     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
685
686     // Use ANDPS to simulate FABS.
687     setOperationAction(ISD::FABS , MVT::f32, Custom);
688
689     // Use XORP to simulate FNEG.
690     setOperationAction(ISD::FNEG , MVT::f32, Custom);
691
692     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
693
694     // Use ANDPS and ORPS to simulate FCOPYSIGN.
695     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
696     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
697
698     // We don't support sin/cos/fmod
699     setOperationAction(ISD::FSIN   , MVT::f32, Expand);
700     setOperationAction(ISD::FCOS   , MVT::f32, Expand);
701     setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
702
703     // Special cases we handle for FP constants.
704     addLegalFPImmediate(APFloat(+0.0f)); // xorps
705     addLegalFPImmediate(APFloat(+0.0)); // FLD0
706     addLegalFPImmediate(APFloat(+1.0)); // FLD1
707     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
708     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
709
710     if (!TM.Options.UnsafeFPMath) {
711       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
712       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
713       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
714     }
715   } else if (!TM.Options.UseSoftFloat) {
716     // f32 and f64 in x87.
717     // Set up the FP register classes.
718     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
719     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
720
721     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
722     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
723     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
724     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
725
726     if (!TM.Options.UnsafeFPMath) {
727       setOperationAction(ISD::FSIN   , MVT::f64, Expand);
728       setOperationAction(ISD::FSIN   , MVT::f32, Expand);
729       setOperationAction(ISD::FCOS   , MVT::f64, Expand);
730       setOperationAction(ISD::FCOS   , MVT::f32, Expand);
731       setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
732       setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
733     }
734     addLegalFPImmediate(APFloat(+0.0)); // FLD0
735     addLegalFPImmediate(APFloat(+1.0)); // FLD1
736     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
737     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
738     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
739     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
740     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
741     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
742   }
743
744   // We don't support FMA.
745   setOperationAction(ISD::FMA, MVT::f64, Expand);
746   setOperationAction(ISD::FMA, MVT::f32, Expand);
747
748   // Long double always uses X87.
749   if (!TM.Options.UseSoftFloat) {
750     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
751     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
752     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
753     {
754       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
755       addLegalFPImmediate(TmpFlt);  // FLD0
756       TmpFlt.changeSign();
757       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
758
759       bool ignored;
760       APFloat TmpFlt2(+1.0);
761       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
762                       &ignored);
763       addLegalFPImmediate(TmpFlt2);  // FLD1
764       TmpFlt2.changeSign();
765       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
766     }
767
768     if (!TM.Options.UnsafeFPMath) {
769       setOperationAction(ISD::FSIN   , MVT::f80, Expand);
770       setOperationAction(ISD::FCOS   , MVT::f80, Expand);
771       setOperationAction(ISD::FSINCOS, MVT::f80, Expand);
772     }
773
774     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
775     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
776     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
777     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
778     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
779     setOperationAction(ISD::FMA, MVT::f80, Expand);
780   }
781
782   // Always use a library call for pow.
783   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
784   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
785   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
786
787   setOperationAction(ISD::FLOG, MVT::f80, Expand);
788   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
789   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
790   setOperationAction(ISD::FEXP, MVT::f80, Expand);
791   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
792
793   // First set operation action for all vector types to either promote
794   // (for widening) or expand (for scalarization). Then we will selectively
795   // turn on ones that can be effectively codegen'd.
796   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
797            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
798     MVT VT = (MVT::SimpleValueType)i;
799     setOperationAction(ISD::ADD , VT, Expand);
800     setOperationAction(ISD::SUB , VT, Expand);
801     setOperationAction(ISD::FADD, VT, Expand);
802     setOperationAction(ISD::FNEG, VT, Expand);
803     setOperationAction(ISD::FSUB, VT, Expand);
804     setOperationAction(ISD::MUL , VT, Expand);
805     setOperationAction(ISD::FMUL, VT, Expand);
806     setOperationAction(ISD::SDIV, VT, Expand);
807     setOperationAction(ISD::UDIV, VT, Expand);
808     setOperationAction(ISD::FDIV, VT, Expand);
809     setOperationAction(ISD::SREM, VT, Expand);
810     setOperationAction(ISD::UREM, VT, Expand);
811     setOperationAction(ISD::LOAD, VT, Expand);
812     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
813     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
814     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
815     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
816     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
817     setOperationAction(ISD::FABS, VT, Expand);
818     setOperationAction(ISD::FSIN, VT, Expand);
819     setOperationAction(ISD::FSINCOS, VT, Expand);
820     setOperationAction(ISD::FCOS, VT, Expand);
821     setOperationAction(ISD::FSINCOS, VT, Expand);
822     setOperationAction(ISD::FREM, VT, Expand);
823     setOperationAction(ISD::FMA,  VT, Expand);
824     setOperationAction(ISD::FPOWI, VT, Expand);
825     setOperationAction(ISD::FSQRT, VT, Expand);
826     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
827     setOperationAction(ISD::FFLOOR, VT, Expand);
828     setOperationAction(ISD::FCEIL, VT, Expand);
829     setOperationAction(ISD::FTRUNC, VT, Expand);
830     setOperationAction(ISD::FRINT, VT, Expand);
831     setOperationAction(ISD::FNEARBYINT, VT, Expand);
832     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
833     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
834     setOperationAction(ISD::SDIVREM, VT, Expand);
835     setOperationAction(ISD::UDIVREM, VT, Expand);
836     setOperationAction(ISD::FPOW, VT, Expand);
837     setOperationAction(ISD::CTPOP, VT, Expand);
838     setOperationAction(ISD::CTTZ, VT, Expand);
839     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
840     setOperationAction(ISD::CTLZ, VT, Expand);
841     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
842     setOperationAction(ISD::SHL, VT, Expand);
843     setOperationAction(ISD::SRA, VT, Expand);
844     setOperationAction(ISD::SRL, VT, Expand);
845     setOperationAction(ISD::ROTL, VT, Expand);
846     setOperationAction(ISD::ROTR, VT, Expand);
847     setOperationAction(ISD::BSWAP, VT, Expand);
848     setOperationAction(ISD::SETCC, VT, Expand);
849     setOperationAction(ISD::FLOG, VT, Expand);
850     setOperationAction(ISD::FLOG2, VT, Expand);
851     setOperationAction(ISD::FLOG10, VT, Expand);
852     setOperationAction(ISD::FEXP, VT, Expand);
853     setOperationAction(ISD::FEXP2, VT, Expand);
854     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
855     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
856     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
857     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
858     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
859     setOperationAction(ISD::TRUNCATE, VT, Expand);
860     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
861     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
862     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
863     setOperationAction(ISD::VSELECT, VT, Expand);
864     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
865              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
866       setTruncStoreAction(VT,
867                           (MVT::SimpleValueType)InnerVT, Expand);
868     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
869     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
870     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
871   }
872
873   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
874   // with -msoft-float, disable use of MMX as well.
875   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
876     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
877     // No operations on x86mmx supported, everything uses intrinsics.
878   }
879
880   // MMX-sized vectors (other than x86mmx) are expected to be expanded
881   // into smaller operations.
882   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
883   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
884   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
885   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
886   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
887   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
888   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
889   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
890   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
891   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
892   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
893   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
894   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
895   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
896   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
897   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
898   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
899   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
900   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
901   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
902   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
903   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
904   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
905   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
906   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
907   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
908   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
909   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
910   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
911
912   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
913     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
914
915     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
916     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
917     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
918     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
919     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
920     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
921     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
922     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
923     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
924     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
925     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
926     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
927   }
928
929   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
930     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
931
932     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
933     // registers cannot be used even for integer operations.
934     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
935     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
936     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
937     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
938
939     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
940     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
941     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
942     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
943     setOperationAction(ISD::MUL,                MVT::v4i32, Custom);
944     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
945     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
946     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
947     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
948     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
949     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
950     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
951     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
952     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
953     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
954     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
955     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
956     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
957
958     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
959     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
960     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
961     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
962
963     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
964     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
965     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
966     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
967     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
968
969     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
970     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
971       MVT VT = (MVT::SimpleValueType)i;
972       // Do not attempt to custom lower non-power-of-2 vectors
973       if (!isPowerOf2_32(VT.getVectorNumElements()))
974         continue;
975       // Do not attempt to custom lower non-128-bit vectors
976       if (!VT.is128BitVector())
977         continue;
978       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
979       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
980       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
981     }
982
983     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
984     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
985     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
986     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
987     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
988     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
989
990     if (Subtarget->is64Bit()) {
991       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
992       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
993     }
994
995     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
996     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
997       MVT VT = (MVT::SimpleValueType)i;
998
999       // Do not attempt to promote non-128-bit vectors
1000       if (!VT.is128BitVector())
1001         continue;
1002
1003       setOperationAction(ISD::AND,    VT, Promote);
1004       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
1005       setOperationAction(ISD::OR,     VT, Promote);
1006       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
1007       setOperationAction(ISD::XOR,    VT, Promote);
1008       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
1009       setOperationAction(ISD::LOAD,   VT, Promote);
1010       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
1011       setOperationAction(ISD::SELECT, VT, Promote);
1012       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
1013     }
1014
1015     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1016
1017     // Custom lower v2i64 and v2f64 selects.
1018     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
1019     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
1020     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
1021     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
1022
1023     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
1024     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
1025
1026     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
1027     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
1028     // As there is no 64-bit GPR available, we need build a special custom
1029     // sequence to convert from v2i32 to v2f32.
1030     if (!Subtarget->is64Bit())
1031       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
1032
1033     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
1034     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
1035
1036     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
1037   }
1038
1039   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE41()) {
1040     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
1041     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
1042     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
1043     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
1044     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
1045     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
1046     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
1047     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
1048     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
1049     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
1050
1051     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
1052     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
1053     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
1054     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
1055     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
1056     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
1057     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
1058     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
1059     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
1060     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
1061
1062     // FIXME: Do we need to handle scalar-to-vector here?
1063     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
1064
1065     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
1066     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
1067     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
1068     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
1069     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
1070
1071     // i8 and i16 vectors are custom , because the source register and source
1072     // source memory operand types are not the same width.  f32 vectors are
1073     // custom since the immediate controlling the insert encodes additional
1074     // information.
1075     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1076     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1077     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1078     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1079
1080     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1081     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1082     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1083     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1084
1085     // FIXME: these should be Legal but thats only for the case where
1086     // the index is constant.  For now custom expand to deal with that.
1087     if (Subtarget->is64Bit()) {
1088       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1089       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1090     }
1091   }
1092
1093   if (Subtarget->hasSSE2()) {
1094     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1095     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1096
1097     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1098     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1099
1100     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1101     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1102
1103     // In the customized shift lowering, the legal cases in AVX2 will be
1104     // recognized.
1105     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
1106     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
1107
1108     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
1109     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
1110
1111     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
1112
1113     setOperationAction(ISD::SDIV,              MVT::v8i16, Custom);
1114     setOperationAction(ISD::SDIV,              MVT::v4i32, Custom);
1115   }
1116
1117   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1118     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1119     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1120     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1121     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1122     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1123     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1124
1125     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1126     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1127     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1128
1129     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1130     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1131     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1132     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1133     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1134     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1135     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1136     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1137     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1138     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1139     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1140     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1141
1142     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1143     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1144     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1145     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1146     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1147     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1148     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1149     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1150     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1151     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1152     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1153     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1154
1155     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1156
1157     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1158     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i16, Promote);
1159     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1160     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1161
1162     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1163     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1164
1165     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1166
1167     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1168     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1169
1170     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1171     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1172
1173     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1174     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1175
1176     setOperationAction(ISD::SDIV,              MVT::v16i16, Custom);
1177
1178     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1179     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1180     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1181     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1182
1183     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1184     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1185     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1186
1187     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1188     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1189     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1190     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1191
1192     setOperationAction(ISD::SIGN_EXTEND,       MVT::v4i64, Custom);
1193     setOperationAction(ISD::SIGN_EXTEND,       MVT::v8i32, Custom);
1194     setOperationAction(ISD::SIGN_EXTEND,       MVT::v16i16, Custom);
1195     setOperationAction(ISD::ZERO_EXTEND,       MVT::v4i64, Custom);
1196     setOperationAction(ISD::ZERO_EXTEND,       MVT::v8i32, Custom);
1197     setOperationAction(ISD::ZERO_EXTEND,       MVT::v16i16, Custom);
1198     setOperationAction(ISD::ANY_EXTEND,        MVT::v4i64, Custom);
1199     setOperationAction(ISD::ANY_EXTEND,        MVT::v8i32, Custom);
1200     setOperationAction(ISD::ANY_EXTEND,        MVT::v16i16, Custom);
1201     setOperationAction(ISD::TRUNCATE,          MVT::v16i8, Custom);
1202     setOperationAction(ISD::TRUNCATE,          MVT::v8i16, Custom);
1203     setOperationAction(ISD::TRUNCATE,          MVT::v4i32, Custom);
1204
1205     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1206       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1207       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1208       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1209       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1210       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1211       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1212     }
1213
1214     if (Subtarget->hasInt256()) {
1215       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1216       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1217       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1218       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1219
1220       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1221       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1222       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1223       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1224
1225       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1226       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1227       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1228       // Don't lower v32i8 because there is no 128-bit byte mul
1229
1230       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1231
1232       setOperationAction(ISD::SDIV,            MVT::v8i32, Custom);
1233     } else {
1234       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1235       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1236       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1237       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1238
1239       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1240       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1241       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1242       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1243
1244       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1245       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1246       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1247       // Don't lower v32i8 because there is no 128-bit byte mul
1248     }
1249
1250     // In the customized shift lowering, the legal cases in AVX2 will be
1251     // recognized.
1252     setOperationAction(ISD::SRL,               MVT::v4i64, Custom);
1253     setOperationAction(ISD::SRL,               MVT::v8i32, Custom);
1254
1255     setOperationAction(ISD::SHL,               MVT::v4i64, Custom);
1256     setOperationAction(ISD::SHL,               MVT::v8i32, Custom);
1257
1258     setOperationAction(ISD::SRA,               MVT::v8i32, Custom);
1259
1260     // Custom lower several nodes for 256-bit types.
1261     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1262              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1263       MVT VT = (MVT::SimpleValueType)i;
1264
1265       // Extract subvector is special because the value type
1266       // (result) is 128-bit but the source is 256-bit wide.
1267       if (VT.is128BitVector())
1268         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1269
1270       // Do not attempt to custom lower other non-256-bit vectors
1271       if (!VT.is256BitVector())
1272         continue;
1273
1274       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1275       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1276       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1277       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1278       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1279       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1280       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1281     }
1282
1283     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1284     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1285       MVT VT = (MVT::SimpleValueType)i;
1286
1287       // Do not attempt to promote non-256-bit vectors
1288       if (!VT.is256BitVector())
1289         continue;
1290
1291       setOperationAction(ISD::AND,    VT, Promote);
1292       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1293       setOperationAction(ISD::OR,     VT, Promote);
1294       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1295       setOperationAction(ISD::XOR,    VT, Promote);
1296       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1297       setOperationAction(ISD::LOAD,   VT, Promote);
1298       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1299       setOperationAction(ISD::SELECT, VT, Promote);
1300       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1301     }
1302   }
1303
1304   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX512()) {
1305     addRegisterClass(MVT::v16i32, &X86::VR512RegClass);
1306     addRegisterClass(MVT::v16f32, &X86::VR512RegClass);
1307     addRegisterClass(MVT::v8i64,  &X86::VR512RegClass);
1308     addRegisterClass(MVT::v8f64,  &X86::VR512RegClass);
1309
1310     addRegisterClass(MVT::i1,     &X86::VK1RegClass);
1311     addRegisterClass(MVT::v8i1,   &X86::VK8RegClass);
1312     addRegisterClass(MVT::v16i1,  &X86::VK16RegClass);
1313
1314     setOperationAction(ISD::BR_CC,              MVT::i1,    Expand);
1315     setOperationAction(ISD::SETCC,              MVT::i1,    Custom);
1316     setOperationAction(ISD::XOR,                MVT::i1,    Legal);
1317     setOperationAction(ISD::OR,                 MVT::i1,    Legal);
1318     setOperationAction(ISD::AND,                MVT::i1,    Legal);
1319     setLoadExtAction(ISD::EXTLOAD,              MVT::v8f32, Legal);
1320     setOperationAction(ISD::LOAD,               MVT::v16f32, Legal);
1321     setOperationAction(ISD::LOAD,               MVT::v8f64, Legal);
1322     setOperationAction(ISD::LOAD,               MVT::v8i64, Legal);
1323     setOperationAction(ISD::LOAD,               MVT::v16i32, Legal);
1324     setOperationAction(ISD::LOAD,               MVT::v16i1, Legal);
1325
1326     setOperationAction(ISD::FADD,               MVT::v16f32, Legal);
1327     setOperationAction(ISD::FSUB,               MVT::v16f32, Legal);
1328     setOperationAction(ISD::FMUL,               MVT::v16f32, Legal);
1329     setOperationAction(ISD::FDIV,               MVT::v16f32, Legal);
1330     setOperationAction(ISD::FSQRT,              MVT::v16f32, Legal);
1331     setOperationAction(ISD::FNEG,               MVT::v16f32, Custom);
1332
1333     setOperationAction(ISD::FADD,               MVT::v8f64, Legal);
1334     setOperationAction(ISD::FSUB,               MVT::v8f64, Legal);
1335     setOperationAction(ISD::FMUL,               MVT::v8f64, Legal);
1336     setOperationAction(ISD::FDIV,               MVT::v8f64, Legal);
1337     setOperationAction(ISD::FSQRT,              MVT::v8f64, Legal);
1338     setOperationAction(ISD::FNEG,               MVT::v8f64, Custom);
1339     setOperationAction(ISD::FMA,                MVT::v8f64, Legal);
1340     setOperationAction(ISD::FMA,                MVT::v16f32, Legal);
1341     setOperationAction(ISD::SDIV,               MVT::v16i32, Custom);
1342
1343     setOperationAction(ISD::FP_TO_SINT,         MVT::i32, Legal);
1344     setOperationAction(ISD::FP_TO_UINT,         MVT::i32, Legal);
1345     setOperationAction(ISD::SINT_TO_FP,         MVT::i32, Legal);
1346     setOperationAction(ISD::UINT_TO_FP,         MVT::i32, Legal);
1347     if (Subtarget->is64Bit()) {
1348       setOperationAction(ISD::FP_TO_UINT,       MVT::i64, Legal);
1349       setOperationAction(ISD::FP_TO_SINT,       MVT::i64, Legal);
1350       setOperationAction(ISD::SINT_TO_FP,       MVT::i64, Legal);
1351       setOperationAction(ISD::UINT_TO_FP,       MVT::i64, Legal);
1352     }
1353     setOperationAction(ISD::FP_TO_SINT,         MVT::v16i32, Legal);
1354     setOperationAction(ISD::FP_TO_UINT,         MVT::v16i32, Legal);
1355     setOperationAction(ISD::FP_TO_UINT,         MVT::v8i32, Legal);
1356     setOperationAction(ISD::SINT_TO_FP,         MVT::v16i32, Legal);
1357     setOperationAction(ISD::UINT_TO_FP,         MVT::v16i32, Legal);
1358     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i32, Legal);
1359     setOperationAction(ISD::FP_ROUND,           MVT::v8f32, Legal);
1360     setOperationAction(ISD::FP_EXTEND,          MVT::v8f32, Legal);
1361
1362     setOperationAction(ISD::TRUNCATE,           MVT::i1, Custom);
1363     setOperationAction(ISD::TRUNCATE,           MVT::v16i8, Custom);
1364     setOperationAction(ISD::TRUNCATE,           MVT::v8i32, Custom);
1365     setOperationAction(ISD::TRUNCATE,           MVT::v8i1, Custom);
1366     setOperationAction(ISD::TRUNCATE,           MVT::v16i1, Custom);
1367     setOperationAction(ISD::TRUNCATE,           MVT::v16i16, Custom);
1368     setOperationAction(ISD::ZERO_EXTEND,        MVT::v16i32, Custom);
1369     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i64, Custom);
1370     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i32, Custom);
1371     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i64, Custom);
1372     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i8, Custom);
1373     setOperationAction(ISD::SIGN_EXTEND,        MVT::v8i16, Custom);
1374     setOperationAction(ISD::SIGN_EXTEND,        MVT::v16i16, Custom);
1375
1376     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f64,  Custom);
1377     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i64,  Custom);
1378     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16f32,  Custom);
1379     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i32,  Custom);
1380     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i1,    Custom);
1381     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i1, Legal);
1382
1383     setOperationAction(ISD::SETCC,              MVT::v16i1, Custom);
1384     setOperationAction(ISD::SETCC,              MVT::v8i1, Custom);
1385
1386     setOperationAction(ISD::MUL,              MVT::v8i64, Custom);
1387
1388     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i1,  Custom);
1389     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i1, Custom);
1390     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i1, Custom);
1391     setOperationAction(ISD::BUILD_VECTOR,       MVT::v16i1, Custom);
1392     setOperationAction(ISD::SELECT,             MVT::v8f64, Custom);
1393     setOperationAction(ISD::SELECT,             MVT::v8i64, Custom);
1394     setOperationAction(ISD::SELECT,             MVT::v16f32, Custom);
1395
1396     setOperationAction(ISD::ADD,                MVT::v8i64, Legal);
1397     setOperationAction(ISD::ADD,                MVT::v16i32, Legal);
1398
1399     setOperationAction(ISD::SUB,                MVT::v8i64, Legal);
1400     setOperationAction(ISD::SUB,                MVT::v16i32, Legal);
1401
1402     setOperationAction(ISD::MUL,                MVT::v16i32, Legal);
1403
1404     setOperationAction(ISD::SRL,                MVT::v8i64, Custom);
1405     setOperationAction(ISD::SRL,                MVT::v16i32, Custom);
1406
1407     setOperationAction(ISD::SHL,                MVT::v8i64, Custom);
1408     setOperationAction(ISD::SHL,                MVT::v16i32, Custom);
1409
1410     setOperationAction(ISD::SRA,                MVT::v8i64, Custom);
1411     setOperationAction(ISD::SRA,                MVT::v16i32, Custom);
1412
1413     setOperationAction(ISD::AND,                MVT::v8i64, Legal);
1414     setOperationAction(ISD::OR,                 MVT::v8i64, Legal);
1415     setOperationAction(ISD::XOR,                MVT::v8i64, Legal);
1416     setOperationAction(ISD::AND,                MVT::v16i32, Legal);
1417     setOperationAction(ISD::OR,                 MVT::v16i32, Legal);
1418     setOperationAction(ISD::XOR,                MVT::v16i32, Legal);
1419
1420     // Custom lower several nodes.
1421     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1422              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1423       MVT VT = (MVT::SimpleValueType)i;
1424
1425       unsigned EltSize = VT.getVectorElementType().getSizeInBits();
1426       // Extract subvector is special because the value type
1427       // (result) is 256/128-bit but the source is 512-bit wide.
1428       if (VT.is128BitVector() || VT.is256BitVector())
1429         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1430
1431       if (VT.getVectorElementType() == MVT::i1)
1432         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Legal);
1433
1434       // Do not attempt to custom lower other non-512-bit vectors
1435       if (!VT.is512BitVector())
1436         continue;
1437
1438       if ( EltSize >= 32) {
1439         setOperationAction(ISD::VECTOR_SHUFFLE,      VT, Custom);
1440         setOperationAction(ISD::INSERT_VECTOR_ELT,   VT, Custom);
1441         setOperationAction(ISD::BUILD_VECTOR,        VT, Custom);
1442         setOperationAction(ISD::VSELECT,             VT, Legal);
1443         setOperationAction(ISD::EXTRACT_VECTOR_ELT,  VT, Custom);
1444         setOperationAction(ISD::SCALAR_TO_VECTOR,    VT, Custom);
1445         setOperationAction(ISD::INSERT_SUBVECTOR,    VT, Custom);
1446       }
1447     }
1448     for (int i = MVT::v32i8; i != MVT::v8i64; ++i) {
1449       MVT VT = (MVT::SimpleValueType)i;
1450
1451       // Do not attempt to promote non-256-bit vectors
1452       if (!VT.is512BitVector())
1453         continue;
1454
1455       setOperationAction(ISD::SELECT, VT, Promote);
1456       AddPromotedToType (ISD::SELECT, VT, MVT::v8i64);
1457     }
1458   }// has  AVX-512
1459
1460   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1461   // of this type with custom code.
1462   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1463            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1464     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1465                        Custom);
1466   }
1467
1468   // We want to custom lower some of our intrinsics.
1469   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1470   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1471   setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
1472
1473   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1474   // handle type legalization for these operations here.
1475   //
1476   // FIXME: We really should do custom legalization for addition and
1477   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1478   // than generic legalization for 64-bit multiplication-with-overflow, though.
1479   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1480     // Add/Sub/Mul with overflow operations are custom lowered.
1481     MVT VT = IntVTs[i];
1482     setOperationAction(ISD::SADDO, VT, Custom);
1483     setOperationAction(ISD::UADDO, VT, Custom);
1484     setOperationAction(ISD::SSUBO, VT, Custom);
1485     setOperationAction(ISD::USUBO, VT, Custom);
1486     setOperationAction(ISD::SMULO, VT, Custom);
1487     setOperationAction(ISD::UMULO, VT, Custom);
1488   }
1489
1490   // There are no 8-bit 3-address imul/mul instructions
1491   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1492   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1493
1494   if (!Subtarget->is64Bit()) {
1495     // These libcalls are not available in 32-bit.
1496     setLibcallName(RTLIB::SHL_I128, 0);
1497     setLibcallName(RTLIB::SRL_I128, 0);
1498     setLibcallName(RTLIB::SRA_I128, 0);
1499   }
1500
1501   // Combine sin / cos into one node or libcall if possible.
1502   if (Subtarget->hasSinCos()) {
1503     setLibcallName(RTLIB::SINCOS_F32, "sincosf");
1504     setLibcallName(RTLIB::SINCOS_F64, "sincos");
1505     if (Subtarget->isTargetDarwin()) {
1506       // For MacOSX, we don't want to the normal expansion of a libcall to
1507       // sincos. We want to issue a libcall to __sincos_stret to avoid memory
1508       // traffic.
1509       setOperationAction(ISD::FSINCOS, MVT::f64, Custom);
1510       setOperationAction(ISD::FSINCOS, MVT::f32, Custom);
1511     }
1512   }
1513
1514   // We have target-specific dag combine patterns for the following nodes:
1515   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1516   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1517   setTargetDAGCombine(ISD::VSELECT);
1518   setTargetDAGCombine(ISD::SELECT);
1519   setTargetDAGCombine(ISD::SHL);
1520   setTargetDAGCombine(ISD::SRA);
1521   setTargetDAGCombine(ISD::SRL);
1522   setTargetDAGCombine(ISD::OR);
1523   setTargetDAGCombine(ISD::AND);
1524   setTargetDAGCombine(ISD::ADD);
1525   setTargetDAGCombine(ISD::FADD);
1526   setTargetDAGCombine(ISD::FSUB);
1527   setTargetDAGCombine(ISD::FMA);
1528   setTargetDAGCombine(ISD::SUB);
1529   setTargetDAGCombine(ISD::LOAD);
1530   setTargetDAGCombine(ISD::STORE);
1531   setTargetDAGCombine(ISD::ZERO_EXTEND);
1532   setTargetDAGCombine(ISD::ANY_EXTEND);
1533   setTargetDAGCombine(ISD::SIGN_EXTEND);
1534   setTargetDAGCombine(ISD::SIGN_EXTEND_INREG);
1535   setTargetDAGCombine(ISD::TRUNCATE);
1536   setTargetDAGCombine(ISD::SINT_TO_FP);
1537   setTargetDAGCombine(ISD::SETCC);
1538   if (Subtarget->is64Bit())
1539     setTargetDAGCombine(ISD::MUL);
1540   setTargetDAGCombine(ISD::XOR);
1541
1542   computeRegisterProperties();
1543
1544   // On Darwin, -Os means optimize for size without hurting performance,
1545   // do not reduce the limit.
1546   MaxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1547   MaxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1548   MaxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1549   MaxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1550   MaxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1551   MaxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1552   setPrefLoopAlignment(4); // 2^4 bytes.
1553
1554   // Predictable cmov don't hurt on atom because it's in-order.
1555   PredictableSelectIsExpensive = !Subtarget->isAtom();
1556
1557   setPrefFunctionAlignment(4); // 2^4 bytes.
1558 }
1559
1560 EVT X86TargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1561   if (!VT.isVector())
1562     return Subtarget->hasAVX512() ? MVT::i1: MVT::i8;
1563
1564   if (Subtarget->hasAVX512())
1565     switch(VT.getVectorNumElements()) {
1566     case  8: return MVT::v8i1;
1567     case 16: return MVT::v16i1;
1568   }
1569
1570   return VT.changeVectorElementTypeToInteger();
1571 }
1572
1573 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1574 /// the desired ByVal argument alignment.
1575 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1576   if (MaxAlign == 16)
1577     return;
1578   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1579     if (VTy->getBitWidth() == 128)
1580       MaxAlign = 16;
1581   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1582     unsigned EltAlign = 0;
1583     getMaxByValAlign(ATy->getElementType(), EltAlign);
1584     if (EltAlign > MaxAlign)
1585       MaxAlign = EltAlign;
1586   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1587     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1588       unsigned EltAlign = 0;
1589       getMaxByValAlign(STy->getElementType(i), EltAlign);
1590       if (EltAlign > MaxAlign)
1591         MaxAlign = EltAlign;
1592       if (MaxAlign == 16)
1593         break;
1594     }
1595   }
1596 }
1597
1598 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1599 /// function arguments in the caller parameter area. For X86, aggregates
1600 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1601 /// are at 4-byte boundaries.
1602 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1603   if (Subtarget->is64Bit()) {
1604     // Max of 8 and alignment of type.
1605     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1606     if (TyAlign > 8)
1607       return TyAlign;
1608     return 8;
1609   }
1610
1611   unsigned Align = 4;
1612   if (Subtarget->hasSSE1())
1613     getMaxByValAlign(Ty, Align);
1614   return Align;
1615 }
1616
1617 /// getOptimalMemOpType - Returns the target specific optimal type for load
1618 /// and store operations as a result of memset, memcpy, and memmove
1619 /// lowering. If DstAlign is zero that means it's safe to destination
1620 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1621 /// means there isn't a need to check it against alignment requirement,
1622 /// probably because the source does not need to be loaded. If 'IsMemset' is
1623 /// true, that means it's expanding a memset. If 'ZeroMemset' is true, that
1624 /// means it's a memset of zero. 'MemcpyStrSrc' indicates whether the memcpy
1625 /// source is constant so it does not need to be loaded.
1626 /// It returns EVT::Other if the type should be determined using generic
1627 /// target-independent logic.
1628 EVT
1629 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1630                                        unsigned DstAlign, unsigned SrcAlign,
1631                                        bool IsMemset, bool ZeroMemset,
1632                                        bool MemcpyStrSrc,
1633                                        MachineFunction &MF) const {
1634   const Function *F = MF.getFunction();
1635   if ((!IsMemset || ZeroMemset) &&
1636       !F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
1637                                        Attribute::NoImplicitFloat)) {
1638     if (Size >= 16 &&
1639         (Subtarget->isUnalignedMemAccessFast() ||
1640          ((DstAlign == 0 || DstAlign >= 16) &&
1641           (SrcAlign == 0 || SrcAlign >= 16)))) {
1642       if (Size >= 32) {
1643         if (Subtarget->hasInt256())
1644           return MVT::v8i32;
1645         if (Subtarget->hasFp256())
1646           return MVT::v8f32;
1647       }
1648       if (Subtarget->hasSSE2())
1649         return MVT::v4i32;
1650       if (Subtarget->hasSSE1())
1651         return MVT::v4f32;
1652     } else if (!MemcpyStrSrc && Size >= 8 &&
1653                !Subtarget->is64Bit() &&
1654                Subtarget->hasSSE2()) {
1655       // Do not use f64 to lower memcpy if source is string constant. It's
1656       // better to use i32 to avoid the loads.
1657       return MVT::f64;
1658     }
1659   }
1660   if (Subtarget->is64Bit() && Size >= 8)
1661     return MVT::i64;
1662   return MVT::i32;
1663 }
1664
1665 bool X86TargetLowering::isSafeMemOpType(MVT VT) const {
1666   if (VT == MVT::f32)
1667     return X86ScalarSSEf32;
1668   else if (VT == MVT::f64)
1669     return X86ScalarSSEf64;
1670   return true;
1671 }
1672
1673 bool
1674 X86TargetLowering::allowsUnalignedMemoryAccesses(EVT VT,
1675                                                  unsigned,
1676                                                  bool *Fast) const {
1677   if (Fast)
1678     *Fast = Subtarget->isUnalignedMemAccessFast();
1679   return true;
1680 }
1681
1682 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1683 /// current function.  The returned value is a member of the
1684 /// MachineJumpTableInfo::JTEntryKind enum.
1685 unsigned X86TargetLowering::getJumpTableEncoding() const {
1686   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1687   // symbol.
1688   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1689       Subtarget->isPICStyleGOT())
1690     return MachineJumpTableInfo::EK_Custom32;
1691
1692   // Otherwise, use the normal jump table encoding heuristics.
1693   return TargetLowering::getJumpTableEncoding();
1694 }
1695
1696 const MCExpr *
1697 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1698                                              const MachineBasicBlock *MBB,
1699                                              unsigned uid,MCContext &Ctx) const{
1700   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1701          Subtarget->isPICStyleGOT());
1702   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1703   // entries.
1704   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1705                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1706 }
1707
1708 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1709 /// jumptable.
1710 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1711                                                     SelectionDAG &DAG) const {
1712   if (!Subtarget->is64Bit())
1713     // This doesn't have SDLoc associated with it, but is not really the
1714     // same as a Register.
1715     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1716   return Table;
1717 }
1718
1719 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1720 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1721 /// MCExpr.
1722 const MCExpr *X86TargetLowering::
1723 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1724                              MCContext &Ctx) const {
1725   // X86-64 uses RIP relative addressing based on the jump table label.
1726   if (Subtarget->isPICStyleRIPRel())
1727     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1728
1729   // Otherwise, the reference is relative to the PIC base.
1730   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1731 }
1732
1733 // FIXME: Why this routine is here? Move to RegInfo!
1734 std::pair<const TargetRegisterClass*, uint8_t>
1735 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1736   const TargetRegisterClass *RRC = 0;
1737   uint8_t Cost = 1;
1738   switch (VT.SimpleTy) {
1739   default:
1740     return TargetLowering::findRepresentativeClass(VT);
1741   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1742     RRC = Subtarget->is64Bit() ?
1743       (const TargetRegisterClass*)&X86::GR64RegClass :
1744       (const TargetRegisterClass*)&X86::GR32RegClass;
1745     break;
1746   case MVT::x86mmx:
1747     RRC = &X86::VR64RegClass;
1748     break;
1749   case MVT::f32: case MVT::f64:
1750   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1751   case MVT::v4f32: case MVT::v2f64:
1752   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1753   case MVT::v4f64:
1754     RRC = &X86::VR128RegClass;
1755     break;
1756   }
1757   return std::make_pair(RRC, Cost);
1758 }
1759
1760 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1761                                                unsigned &Offset) const {
1762   if (!Subtarget->isTargetLinux())
1763     return false;
1764
1765   if (Subtarget->is64Bit()) {
1766     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1767     Offset = 0x28;
1768     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1769       AddressSpace = 256;
1770     else
1771       AddressSpace = 257;
1772   } else {
1773     // %gs:0x14 on i386
1774     Offset = 0x14;
1775     AddressSpace = 256;
1776   }
1777   return true;
1778 }
1779
1780 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1781                                             unsigned DestAS) const {
1782   assert(SrcAS != DestAS && "Expected different address spaces!");
1783
1784   return SrcAS < 256 && DestAS < 256;
1785 }
1786
1787 //===----------------------------------------------------------------------===//
1788 //               Return Value Calling Convention Implementation
1789 //===----------------------------------------------------------------------===//
1790
1791 #include "X86GenCallingConv.inc"
1792
1793 bool
1794 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1795                                   MachineFunction &MF, bool isVarArg,
1796                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1797                         LLVMContext &Context) const {
1798   SmallVector<CCValAssign, 16> RVLocs;
1799   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1800                  RVLocs, Context);
1801   return CCInfo.CheckReturn(Outs, RetCC_X86);
1802 }
1803
1804 const uint16_t *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1805   static const uint16_t ScratchRegs[] = { X86::R11, 0 };
1806   return ScratchRegs;
1807 }
1808
1809 SDValue
1810 X86TargetLowering::LowerReturn(SDValue Chain,
1811                                CallingConv::ID CallConv, bool isVarArg,
1812                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1813                                const SmallVectorImpl<SDValue> &OutVals,
1814                                SDLoc dl, SelectionDAG &DAG) const {
1815   MachineFunction &MF = DAG.getMachineFunction();
1816   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1817
1818   SmallVector<CCValAssign, 16> RVLocs;
1819   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1820                  RVLocs, *DAG.getContext());
1821   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1822
1823   SDValue Flag;
1824   SmallVector<SDValue, 6> RetOps;
1825   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1826   // Operand #1 = Bytes To Pop
1827   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1828                    MVT::i16));
1829
1830   // Copy the result values into the output registers.
1831   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1832     CCValAssign &VA = RVLocs[i];
1833     assert(VA.isRegLoc() && "Can only return in registers!");
1834     SDValue ValToCopy = OutVals[i];
1835     EVT ValVT = ValToCopy.getValueType();
1836
1837     // Promote values to the appropriate types
1838     if (VA.getLocInfo() == CCValAssign::SExt)
1839       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1840     else if (VA.getLocInfo() == CCValAssign::ZExt)
1841       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1842     else if (VA.getLocInfo() == CCValAssign::AExt)
1843       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1844     else if (VA.getLocInfo() == CCValAssign::BCvt)
1845       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1846
1847     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1848            "Unexpected FP-extend for return value.");  
1849
1850     // If this is x86-64, and we disabled SSE, we can't return FP values,
1851     // or SSE or MMX vectors.
1852     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1853          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1854           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1855       report_fatal_error("SSE register return with SSE disabled");
1856     }
1857     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1858     // llvm-gcc has never done it right and no one has noticed, so this
1859     // should be OK for now.
1860     if (ValVT == MVT::f64 &&
1861         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1862       report_fatal_error("SSE2 register return with SSE2 disabled");
1863
1864     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1865     // the RET instruction and handled by the FP Stackifier.
1866     if (VA.getLocReg() == X86::ST0 ||
1867         VA.getLocReg() == X86::ST1) {
1868       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1869       // change the value to the FP stack register class.
1870       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1871         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1872       RetOps.push_back(ValToCopy);
1873       // Don't emit a copytoreg.
1874       continue;
1875     }
1876
1877     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1878     // which is returned in RAX / RDX.
1879     if (Subtarget->is64Bit()) {
1880       if (ValVT == MVT::x86mmx) {
1881         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1882           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1883           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1884                                   ValToCopy);
1885           // If we don't have SSE2 available, convert to v4f32 so the generated
1886           // register is legal.
1887           if (!Subtarget->hasSSE2())
1888             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1889         }
1890       }
1891     }
1892
1893     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1894     Flag = Chain.getValue(1);
1895     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1896   }
1897
1898   // The x86-64 ABIs require that for returning structs by value we copy
1899   // the sret argument into %rax/%eax (depending on ABI) for the return.
1900   // Win32 requires us to put the sret argument to %eax as well.
1901   // We saved the argument into a virtual register in the entry block,
1902   // so now we copy the value out and into %rax/%eax.
1903   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1904       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1905     MachineFunction &MF = DAG.getMachineFunction();
1906     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1907     unsigned Reg = FuncInfo->getSRetReturnReg();
1908     assert(Reg &&
1909            "SRetReturnReg should have been set in LowerFormalArguments().");
1910     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1911
1912     unsigned RetValReg
1913         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1914           X86::RAX : X86::EAX;
1915     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1916     Flag = Chain.getValue(1);
1917
1918     // RAX/EAX now acts like a return value.
1919     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1920   }
1921
1922   RetOps[0] = Chain;  // Update chain.
1923
1924   // Add the flag if we have it.
1925   if (Flag.getNode())
1926     RetOps.push_back(Flag);
1927
1928   return DAG.getNode(X86ISD::RET_FLAG, dl,
1929                      MVT::Other, &RetOps[0], RetOps.size());
1930 }
1931
1932 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1933   if (N->getNumValues() != 1)
1934     return false;
1935   if (!N->hasNUsesOfValue(1, 0))
1936     return false;
1937
1938   SDValue TCChain = Chain;
1939   SDNode *Copy = *N->use_begin();
1940   if (Copy->getOpcode() == ISD::CopyToReg) {
1941     // If the copy has a glue operand, we conservatively assume it isn't safe to
1942     // perform a tail call.
1943     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1944       return false;
1945     TCChain = Copy->getOperand(0);
1946   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1947     return false;
1948
1949   bool HasRet = false;
1950   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1951        UI != UE; ++UI) {
1952     if (UI->getOpcode() != X86ISD::RET_FLAG)
1953       return false;
1954     HasRet = true;
1955   }
1956
1957   if (!HasRet)
1958     return false;
1959
1960   Chain = TCChain;
1961   return true;
1962 }
1963
1964 MVT
1965 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1966                                             ISD::NodeType ExtendKind) const {
1967   MVT ReturnMVT;
1968   // TODO: Is this also valid on 32-bit?
1969   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1970     ReturnMVT = MVT::i8;
1971   else
1972     ReturnMVT = MVT::i32;
1973
1974   MVT MinVT = getRegisterType(ReturnMVT);
1975   return VT.bitsLT(MinVT) ? MinVT : VT;
1976 }
1977
1978 /// LowerCallResult - Lower the result values of a call into the
1979 /// appropriate copies out of appropriate physical registers.
1980 ///
1981 SDValue
1982 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1983                                    CallingConv::ID CallConv, bool isVarArg,
1984                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1985                                    SDLoc dl, SelectionDAG &DAG,
1986                                    SmallVectorImpl<SDValue> &InVals) const {
1987
1988   // Assign locations to each value returned by this call.
1989   SmallVector<CCValAssign, 16> RVLocs;
1990   bool Is64Bit = Subtarget->is64Bit();
1991   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1992                  getTargetMachine(), RVLocs, *DAG.getContext());
1993   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1994
1995   // Copy all of the result registers out of their specified physreg.
1996   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1997     CCValAssign &VA = RVLocs[i];
1998     EVT CopyVT = VA.getValVT();
1999
2000     // If this is x86-64, and we disabled SSE, we can't return FP values
2001     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2002         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2003       report_fatal_error("SSE register return with SSE disabled");
2004     }
2005
2006     SDValue Val;
2007
2008     // If this is a call to a function that returns an fp value on the floating
2009     // point stack, we must guarantee the value is popped from the stack, so
2010     // a CopyFromReg is not good enough - the copy instruction may be eliminated
2011     // if the return value is not used. We use the FpPOP_RETVAL instruction
2012     // instead.
2013     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2014       // If we prefer to use the value in xmm registers, copy it out as f80 and
2015       // use a truncate to move it from fp stack reg to xmm reg.
2016       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
2017       SDValue Ops[] = { Chain, InFlag };
2018       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
2019                                          MVT::Other, MVT::Glue, Ops), 1);
2020       Val = Chain.getValue(0);
2021
2022       // Round the f80 to the right size, which also moves it to the appropriate
2023       // xmm register.
2024       if (CopyVT != VA.getValVT())
2025         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2026                           // This truncation won't change the value.
2027                           DAG.getIntPtrConstant(1));
2028     } else {
2029       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2030                                  CopyVT, InFlag).getValue(1);
2031       Val = Chain.getValue(0);
2032     }
2033     InFlag = Chain.getValue(2);
2034     InVals.push_back(Val);
2035   }
2036
2037   return Chain;
2038 }
2039
2040 //===----------------------------------------------------------------------===//
2041 //                C & StdCall & Fast Calling Convention implementation
2042 //===----------------------------------------------------------------------===//
2043 //  StdCall calling convention seems to be standard for many Windows' API
2044 //  routines and around. It differs from C calling convention just a little:
2045 //  callee should clean up the stack, not caller. Symbols should be also
2046 //  decorated in some fancy way :) It doesn't support any vector arguments.
2047 //  For info on fast calling convention see Fast Calling Convention (tail call)
2048 //  implementation LowerX86_32FastCCCallTo.
2049
2050 /// CallIsStructReturn - Determines whether a call uses struct return
2051 /// semantics.
2052 enum StructReturnType {
2053   NotStructReturn,
2054   RegStructReturn,
2055   StackStructReturn
2056 };
2057 static StructReturnType
2058 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2059   if (Outs.empty())
2060     return NotStructReturn;
2061
2062   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2063   if (!Flags.isSRet())
2064     return NotStructReturn;
2065   if (Flags.isInReg())
2066     return RegStructReturn;
2067   return StackStructReturn;
2068 }
2069
2070 /// ArgsAreStructReturn - Determines whether a function uses struct
2071 /// return semantics.
2072 static StructReturnType
2073 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2074   if (Ins.empty())
2075     return NotStructReturn;
2076
2077   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2078   if (!Flags.isSRet())
2079     return NotStructReturn;
2080   if (Flags.isInReg())
2081     return RegStructReturn;
2082   return StackStructReturn;
2083 }
2084
2085 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2086 /// by "Src" to address "Dst" with size and alignment information specified by
2087 /// the specific parameter attribute. The copy will be passed as a byval
2088 /// function parameter.
2089 static SDValue
2090 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2091                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2092                           SDLoc dl) {
2093   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2094
2095   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2096                        /*isVolatile*/false, /*AlwaysInline=*/true,
2097                        MachinePointerInfo(), MachinePointerInfo());
2098 }
2099
2100 /// IsTailCallConvention - Return true if the calling convention is one that
2101 /// supports tail call optimization.
2102 static bool IsTailCallConvention(CallingConv::ID CC) {
2103   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2104           CC == CallingConv::HiPE);
2105 }
2106
2107 /// \brief Return true if the calling convention is a C calling convention.
2108 static bool IsCCallConvention(CallingConv::ID CC) {
2109   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2110           CC == CallingConv::X86_64_SysV);
2111 }
2112
2113 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2114   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2115     return false;
2116
2117   CallSite CS(CI);
2118   CallingConv::ID CalleeCC = CS.getCallingConv();
2119   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2120     return false;
2121
2122   return true;
2123 }
2124
2125 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2126 /// a tailcall target by changing its ABI.
2127 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2128                                    bool GuaranteedTailCallOpt) {
2129   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2130 }
2131
2132 SDValue
2133 X86TargetLowering::LowerMemArgument(SDValue Chain,
2134                                     CallingConv::ID CallConv,
2135                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2136                                     SDLoc dl, SelectionDAG &DAG,
2137                                     const CCValAssign &VA,
2138                                     MachineFrameInfo *MFI,
2139                                     unsigned i) const {
2140   // Create the nodes corresponding to a load from this parameter slot.
2141   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2142   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2143                               getTargetMachine().Options.GuaranteedTailCallOpt);
2144   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2145   EVT ValVT;
2146
2147   // If value is passed by pointer we have address passed instead of the value
2148   // itself.
2149   if (VA.getLocInfo() == CCValAssign::Indirect)
2150     ValVT = VA.getLocVT();
2151   else
2152     ValVT = VA.getValVT();
2153
2154   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2155   // changed with more analysis.
2156   // In case of tail call optimization mark all arguments mutable. Since they
2157   // could be overwritten by lowering of arguments in case of a tail call.
2158   if (Flags.isByVal()) {
2159     unsigned Bytes = Flags.getByValSize();
2160     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2161     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2162     return DAG.getFrameIndex(FI, getPointerTy());
2163   } else {
2164     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2165                                     VA.getLocMemOffset(), isImmutable);
2166     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2167     return DAG.getLoad(ValVT, dl, Chain, FIN,
2168                        MachinePointerInfo::getFixedStack(FI),
2169                        false, false, false, 0);
2170   }
2171 }
2172
2173 SDValue
2174 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2175                                         CallingConv::ID CallConv,
2176                                         bool isVarArg,
2177                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2178                                         SDLoc dl,
2179                                         SelectionDAG &DAG,
2180                                         SmallVectorImpl<SDValue> &InVals)
2181                                           const {
2182   MachineFunction &MF = DAG.getMachineFunction();
2183   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2184
2185   const Function* Fn = MF.getFunction();
2186   if (Fn->hasExternalLinkage() &&
2187       Subtarget->isTargetCygMing() &&
2188       Fn->getName() == "main")
2189     FuncInfo->setForceFramePointer(true);
2190
2191   MachineFrameInfo *MFI = MF.getFrameInfo();
2192   bool Is64Bit = Subtarget->is64Bit();
2193   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2194
2195   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2196          "Var args not supported with calling convention fastcc, ghc or hipe");
2197
2198   // Assign locations to all of the incoming arguments.
2199   SmallVector<CCValAssign, 16> ArgLocs;
2200   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2201                  ArgLocs, *DAG.getContext());
2202
2203   // Allocate shadow area for Win64
2204   if (IsWin64)
2205     CCInfo.AllocateStack(32, 8);
2206
2207   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2208
2209   unsigned LastVal = ~0U;
2210   SDValue ArgValue;
2211   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2212     CCValAssign &VA = ArgLocs[i];
2213     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2214     // places.
2215     assert(VA.getValNo() != LastVal &&
2216            "Don't support value assigned to multiple locs yet");
2217     (void)LastVal;
2218     LastVal = VA.getValNo();
2219
2220     if (VA.isRegLoc()) {
2221       EVT RegVT = VA.getLocVT();
2222       const TargetRegisterClass *RC;
2223       if (RegVT == MVT::i32)
2224         RC = &X86::GR32RegClass;
2225       else if (Is64Bit && RegVT == MVT::i64)
2226         RC = &X86::GR64RegClass;
2227       else if (RegVT == MVT::f32)
2228         RC = &X86::FR32RegClass;
2229       else if (RegVT == MVT::f64)
2230         RC = &X86::FR64RegClass;
2231       else if (RegVT.is512BitVector())
2232         RC = &X86::VR512RegClass;
2233       else if (RegVT.is256BitVector())
2234         RC = &X86::VR256RegClass;
2235       else if (RegVT.is128BitVector())
2236         RC = &X86::VR128RegClass;
2237       else if (RegVT == MVT::x86mmx)
2238         RC = &X86::VR64RegClass;
2239       else if (RegVT == MVT::i1)
2240         RC = &X86::VK1RegClass;
2241       else if (RegVT == MVT::v8i1)
2242         RC = &X86::VK8RegClass;
2243       else if (RegVT == MVT::v16i1)
2244         RC = &X86::VK16RegClass;
2245       else
2246         llvm_unreachable("Unknown argument type!");
2247
2248       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2249       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2250
2251       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2252       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2253       // right size.
2254       if (VA.getLocInfo() == CCValAssign::SExt)
2255         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2256                                DAG.getValueType(VA.getValVT()));
2257       else if (VA.getLocInfo() == CCValAssign::ZExt)
2258         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2259                                DAG.getValueType(VA.getValVT()));
2260       else if (VA.getLocInfo() == CCValAssign::BCvt)
2261         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2262
2263       if (VA.isExtInLoc()) {
2264         // Handle MMX values passed in XMM regs.
2265         if (RegVT.isVector())
2266           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2267         else
2268           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2269       }
2270     } else {
2271       assert(VA.isMemLoc());
2272       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2273     }
2274
2275     // If value is passed via pointer - do a load.
2276     if (VA.getLocInfo() == CCValAssign::Indirect)
2277       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2278                              MachinePointerInfo(), false, false, false, 0);
2279
2280     InVals.push_back(ArgValue);
2281   }
2282
2283   // The x86-64 ABIs require that for returning structs by value we copy
2284   // the sret argument into %rax/%eax (depending on ABI) for the return.
2285   // Win32 requires us to put the sret argument to %eax as well.
2286   // Save the argument into a virtual register so that we can access it
2287   // from the return points.
2288   if (MF.getFunction()->hasStructRetAttr() &&
2289       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2290     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2291     unsigned Reg = FuncInfo->getSRetReturnReg();
2292     if (!Reg) {
2293       MVT PtrTy = getPointerTy();
2294       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2295       FuncInfo->setSRetReturnReg(Reg);
2296     }
2297     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2298     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2299   }
2300
2301   unsigned StackSize = CCInfo.getNextStackOffset();
2302   // Align stack specially for tail calls.
2303   if (FuncIsMadeTailCallSafe(CallConv,
2304                              MF.getTarget().Options.GuaranteedTailCallOpt))
2305     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2306
2307   // If the function takes variable number of arguments, make a frame index for
2308   // the start of the first vararg value... for expansion of llvm.va_start.
2309   if (isVarArg) {
2310     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2311                     CallConv != CallingConv::X86_ThisCall)) {
2312       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2313     }
2314     if (Is64Bit) {
2315       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2316
2317       // FIXME: We should really autogenerate these arrays
2318       static const uint16_t GPR64ArgRegsWin64[] = {
2319         X86::RCX, X86::RDX, X86::R8,  X86::R9
2320       };
2321       static const uint16_t GPR64ArgRegs64Bit[] = {
2322         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2323       };
2324       static const uint16_t XMMArgRegs64Bit[] = {
2325         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2326         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2327       };
2328       const uint16_t *GPR64ArgRegs;
2329       unsigned NumXMMRegs = 0;
2330
2331       if (IsWin64) {
2332         // The XMM registers which might contain var arg parameters are shadowed
2333         // in their paired GPR.  So we only need to save the GPR to their home
2334         // slots.
2335         TotalNumIntRegs = 4;
2336         GPR64ArgRegs = GPR64ArgRegsWin64;
2337       } else {
2338         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2339         GPR64ArgRegs = GPR64ArgRegs64Bit;
2340
2341         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2342                                                 TotalNumXMMRegs);
2343       }
2344       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2345                                                        TotalNumIntRegs);
2346
2347       bool NoImplicitFloatOps = Fn->getAttributes().
2348         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2349       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2350              "SSE register cannot be used when SSE is disabled!");
2351       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2352                NoImplicitFloatOps) &&
2353              "SSE register cannot be used when SSE is disabled!");
2354       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2355           !Subtarget->hasSSE1())
2356         // Kernel mode asks for SSE to be disabled, so don't push them
2357         // on the stack.
2358         TotalNumXMMRegs = 0;
2359
2360       if (IsWin64) {
2361         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2362         // Get to the caller-allocated home save location.  Add 8 to account
2363         // for the return address.
2364         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2365         FuncInfo->setRegSaveFrameIndex(
2366           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2367         // Fixup to set vararg frame on shadow area (4 x i64).
2368         if (NumIntRegs < 4)
2369           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2370       } else {
2371         // For X86-64, if there are vararg parameters that are passed via
2372         // registers, then we must store them to their spots on the stack so
2373         // they may be loaded by deferencing the result of va_next.
2374         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2375         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2376         FuncInfo->setRegSaveFrameIndex(
2377           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2378                                false));
2379       }
2380
2381       // Store the integer parameter registers.
2382       SmallVector<SDValue, 8> MemOps;
2383       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2384                                         getPointerTy());
2385       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2386       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2387         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2388                                   DAG.getIntPtrConstant(Offset));
2389         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2390                                      &X86::GR64RegClass);
2391         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2392         SDValue Store =
2393           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2394                        MachinePointerInfo::getFixedStack(
2395                          FuncInfo->getRegSaveFrameIndex(), Offset),
2396                        false, false, 0);
2397         MemOps.push_back(Store);
2398         Offset += 8;
2399       }
2400
2401       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2402         // Now store the XMM (fp + vector) parameter registers.
2403         SmallVector<SDValue, 11> SaveXMMOps;
2404         SaveXMMOps.push_back(Chain);
2405
2406         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2407         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2408         SaveXMMOps.push_back(ALVal);
2409
2410         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2411                                FuncInfo->getRegSaveFrameIndex()));
2412         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2413                                FuncInfo->getVarArgsFPOffset()));
2414
2415         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2416           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2417                                        &X86::VR128RegClass);
2418           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2419           SaveXMMOps.push_back(Val);
2420         }
2421         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2422                                      MVT::Other,
2423                                      &SaveXMMOps[0], SaveXMMOps.size()));
2424       }
2425
2426       if (!MemOps.empty())
2427         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2428                             &MemOps[0], MemOps.size());
2429     }
2430   }
2431
2432   // Some CCs need callee pop.
2433   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2434                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2435     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2436   } else {
2437     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2438     // If this is an sret function, the return should pop the hidden pointer.
2439     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2440         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2441         argsAreStructReturn(Ins) == StackStructReturn)
2442       FuncInfo->setBytesToPopOnReturn(4);
2443   }
2444
2445   if (!Is64Bit) {
2446     // RegSaveFrameIndex is X86-64 only.
2447     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2448     if (CallConv == CallingConv::X86_FastCall ||
2449         CallConv == CallingConv::X86_ThisCall)
2450       // fastcc functions can't have varargs.
2451       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2452   }
2453
2454   FuncInfo->setArgumentStackSize(StackSize);
2455
2456   return Chain;
2457 }
2458
2459 SDValue
2460 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2461                                     SDValue StackPtr, SDValue Arg,
2462                                     SDLoc dl, SelectionDAG &DAG,
2463                                     const CCValAssign &VA,
2464                                     ISD::ArgFlagsTy Flags) const {
2465   unsigned LocMemOffset = VA.getLocMemOffset();
2466   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2467   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2468   if (Flags.isByVal())
2469     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2470
2471   return DAG.getStore(Chain, dl, Arg, PtrOff,
2472                       MachinePointerInfo::getStack(LocMemOffset),
2473                       false, false, 0);
2474 }
2475
2476 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2477 /// optimization is performed and it is required.
2478 SDValue
2479 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2480                                            SDValue &OutRetAddr, SDValue Chain,
2481                                            bool IsTailCall, bool Is64Bit,
2482                                            int FPDiff, SDLoc dl) const {
2483   // Adjust the Return address stack slot.
2484   EVT VT = getPointerTy();
2485   OutRetAddr = getReturnAddressFrameIndex(DAG);
2486
2487   // Load the "old" Return address.
2488   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2489                            false, false, false, 0);
2490   return SDValue(OutRetAddr.getNode(), 1);
2491 }
2492
2493 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2494 /// optimization is performed and it is required (FPDiff!=0).
2495 static SDValue
2496 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2497                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2498                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2499   // Store the return address to the appropriate stack slot.
2500   if (!FPDiff) return Chain;
2501   // Calculate the new stack slot for the return address.
2502   int NewReturnAddrFI =
2503     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2504                                          false);
2505   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2506   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2507                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2508                        false, false, 0);
2509   return Chain;
2510 }
2511
2512 SDValue
2513 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2514                              SmallVectorImpl<SDValue> &InVals) const {
2515   SelectionDAG &DAG                     = CLI.DAG;
2516   SDLoc &dl                             = CLI.DL;
2517   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2518   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2519   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2520   SDValue Chain                         = CLI.Chain;
2521   SDValue Callee                        = CLI.Callee;
2522   CallingConv::ID CallConv              = CLI.CallConv;
2523   bool &isTailCall                      = CLI.IsTailCall;
2524   bool isVarArg                         = CLI.IsVarArg;
2525
2526   MachineFunction &MF = DAG.getMachineFunction();
2527   bool Is64Bit        = Subtarget->is64Bit();
2528   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2529   StructReturnType SR = callIsStructReturn(Outs);
2530   bool IsSibcall      = false;
2531
2532   if (MF.getTarget().Options.DisableTailCalls)
2533     isTailCall = false;
2534
2535   if (isTailCall) {
2536     // Check if it's really possible to do a tail call.
2537     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2538                     isVarArg, SR != NotStructReturn,
2539                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2540                     Outs, OutVals, Ins, DAG);
2541
2542     // Sibcalls are automatically detected tailcalls which do not require
2543     // ABI changes.
2544     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2545       IsSibcall = true;
2546
2547     if (isTailCall)
2548       ++NumTailCalls;
2549   }
2550
2551   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2552          "Var args not supported with calling convention fastcc, ghc or hipe");
2553
2554   // Analyze operands of the call, assigning locations to each operand.
2555   SmallVector<CCValAssign, 16> ArgLocs;
2556   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2557                  ArgLocs, *DAG.getContext());
2558
2559   // Allocate shadow area for Win64
2560   if (IsWin64)
2561     CCInfo.AllocateStack(32, 8);
2562
2563   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2564
2565   // Get a count of how many bytes are to be pushed on the stack.
2566   unsigned NumBytes = CCInfo.getNextStackOffset();
2567   if (IsSibcall)
2568     // This is a sibcall. The memory operands are available in caller's
2569     // own caller's stack.
2570     NumBytes = 0;
2571   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2572            IsTailCallConvention(CallConv))
2573     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2574
2575   int FPDiff = 0;
2576   if (isTailCall && !IsSibcall) {
2577     // Lower arguments at fp - stackoffset + fpdiff.
2578     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2579     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2580
2581     FPDiff = NumBytesCallerPushed - NumBytes;
2582
2583     // Set the delta of movement of the returnaddr stackslot.
2584     // But only set if delta is greater than previous delta.
2585     if (FPDiff < X86Info->getTCReturnAddrDelta())
2586       X86Info->setTCReturnAddrDelta(FPDiff);
2587   }
2588
2589   unsigned NumBytesToPush = NumBytes;
2590   unsigned NumBytesToPop = NumBytes;
2591
2592   // If we have an inalloca argument, all stack space has already been allocated
2593   // for us and be right at the top of the stack.  We don't support multiple
2594   // arguments passed in memory when using inalloca.
2595   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
2596     NumBytesToPush = 0;
2597     assert(ArgLocs.back().getLocMemOffset() == 0 &&
2598            "an inalloca argument must be the only memory argument");
2599   }
2600
2601   if (!IsSibcall)
2602     Chain = DAG.getCALLSEQ_START(
2603         Chain, DAG.getIntPtrConstant(NumBytesToPush, true), dl);
2604
2605   SDValue RetAddrFrIdx;
2606   // Load return address for tail calls.
2607   if (isTailCall && FPDiff)
2608     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2609                                     Is64Bit, FPDiff, dl);
2610
2611   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2612   SmallVector<SDValue, 8> MemOpChains;
2613   SDValue StackPtr;
2614
2615   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2616   // of tail call optimization arguments are handle later.
2617   const X86RegisterInfo *RegInfo =
2618     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2619   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2620     // Skip inalloca arguments, they have already been written.
2621     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2622     if (Flags.isInAlloca())
2623       continue;
2624
2625     CCValAssign &VA = ArgLocs[i];
2626     EVT RegVT = VA.getLocVT();
2627     SDValue Arg = OutVals[i];
2628     bool isByVal = Flags.isByVal();
2629
2630     // Promote the value if needed.
2631     switch (VA.getLocInfo()) {
2632     default: llvm_unreachable("Unknown loc info!");
2633     case CCValAssign::Full: break;
2634     case CCValAssign::SExt:
2635       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2636       break;
2637     case CCValAssign::ZExt:
2638       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2639       break;
2640     case CCValAssign::AExt:
2641       if (RegVT.is128BitVector()) {
2642         // Special case: passing MMX values in XMM registers.
2643         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2644         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2645         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2646       } else
2647         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2648       break;
2649     case CCValAssign::BCvt:
2650       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2651       break;
2652     case CCValAssign::Indirect: {
2653       // Store the argument.
2654       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2655       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2656       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2657                            MachinePointerInfo::getFixedStack(FI),
2658                            false, false, 0);
2659       Arg = SpillSlot;
2660       break;
2661     }
2662     }
2663
2664     if (VA.isRegLoc()) {
2665       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2666       if (isVarArg && IsWin64) {
2667         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2668         // shadow reg if callee is a varargs function.
2669         unsigned ShadowReg = 0;
2670         switch (VA.getLocReg()) {
2671         case X86::XMM0: ShadowReg = X86::RCX; break;
2672         case X86::XMM1: ShadowReg = X86::RDX; break;
2673         case X86::XMM2: ShadowReg = X86::R8; break;
2674         case X86::XMM3: ShadowReg = X86::R9; break;
2675         }
2676         if (ShadowReg)
2677           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2678       }
2679     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2680       assert(VA.isMemLoc());
2681       if (StackPtr.getNode() == 0)
2682         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2683                                       getPointerTy());
2684       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2685                                              dl, DAG, VA, Flags));
2686     }
2687   }
2688
2689   if (!MemOpChains.empty())
2690     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2691                         &MemOpChains[0], MemOpChains.size());
2692
2693   if (Subtarget->isPICStyleGOT()) {
2694     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2695     // GOT pointer.
2696     if (!isTailCall) {
2697       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2698                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2699     } else {
2700       // If we are tail calling and generating PIC/GOT style code load the
2701       // address of the callee into ECX. The value in ecx is used as target of
2702       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2703       // for tail calls on PIC/GOT architectures. Normally we would just put the
2704       // address of GOT into ebx and then call target@PLT. But for tail calls
2705       // ebx would be restored (since ebx is callee saved) before jumping to the
2706       // target@PLT.
2707
2708       // Note: The actual moving to ECX is done further down.
2709       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2710       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2711           !G->getGlobal()->hasProtectedVisibility())
2712         Callee = LowerGlobalAddress(Callee, DAG);
2713       else if (isa<ExternalSymbolSDNode>(Callee))
2714         Callee = LowerExternalSymbol(Callee, DAG);
2715     }
2716   }
2717
2718   if (Is64Bit && isVarArg && !IsWin64) {
2719     // From AMD64 ABI document:
2720     // For calls that may call functions that use varargs or stdargs
2721     // (prototype-less calls or calls to functions containing ellipsis (...) in
2722     // the declaration) %al is used as hidden argument to specify the number
2723     // of SSE registers used. The contents of %al do not need to match exactly
2724     // the number of registers, but must be an ubound on the number of SSE
2725     // registers used and is in the range 0 - 8 inclusive.
2726
2727     // Count the number of XMM registers allocated.
2728     static const uint16_t XMMArgRegs[] = {
2729       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2730       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2731     };
2732     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2733     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2734            && "SSE registers cannot be used when SSE is disabled");
2735
2736     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2737                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2738   }
2739
2740   // For tail calls lower the arguments to the 'real' stack slot.
2741   if (isTailCall) {
2742     // Force all the incoming stack arguments to be loaded from the stack
2743     // before any new outgoing arguments are stored to the stack, because the
2744     // outgoing stack slots may alias the incoming argument stack slots, and
2745     // the alias isn't otherwise explicit. This is slightly more conservative
2746     // than necessary, because it means that each store effectively depends
2747     // on every argument instead of just those arguments it would clobber.
2748     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2749
2750     SmallVector<SDValue, 8> MemOpChains2;
2751     SDValue FIN;
2752     int FI = 0;
2753     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2754       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2755         CCValAssign &VA = ArgLocs[i];
2756         if (VA.isRegLoc())
2757           continue;
2758         assert(VA.isMemLoc());
2759         SDValue Arg = OutVals[i];
2760         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2761         // Create frame index.
2762         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2763         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2764         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2765         FIN = DAG.getFrameIndex(FI, getPointerTy());
2766
2767         if (Flags.isByVal()) {
2768           // Copy relative to framepointer.
2769           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2770           if (StackPtr.getNode() == 0)
2771             StackPtr = DAG.getCopyFromReg(Chain, dl,
2772                                           RegInfo->getStackRegister(),
2773                                           getPointerTy());
2774           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2775
2776           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2777                                                            ArgChain,
2778                                                            Flags, DAG, dl));
2779         } else {
2780           // Store relative to framepointer.
2781           MemOpChains2.push_back(
2782             DAG.getStore(ArgChain, dl, Arg, FIN,
2783                          MachinePointerInfo::getFixedStack(FI),
2784                          false, false, 0));
2785         }
2786       }
2787     }
2788
2789     if (!MemOpChains2.empty())
2790       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2791                           &MemOpChains2[0], MemOpChains2.size());
2792
2793     // Store the return address to the appropriate stack slot.
2794     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2795                                      getPointerTy(), RegInfo->getSlotSize(),
2796                                      FPDiff, dl);
2797   }
2798
2799   // Build a sequence of copy-to-reg nodes chained together with token chain
2800   // and flag operands which copy the outgoing args into registers.
2801   SDValue InFlag;
2802   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2803     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2804                              RegsToPass[i].second, InFlag);
2805     InFlag = Chain.getValue(1);
2806   }
2807
2808   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2809     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2810     // In the 64-bit large code model, we have to make all calls
2811     // through a register, since the call instruction's 32-bit
2812     // pc-relative offset may not be large enough to hold the whole
2813     // address.
2814   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2815     // If the callee is a GlobalAddress node (quite common, every direct call
2816     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2817     // it.
2818
2819     // We should use extra load for direct calls to dllimported functions in
2820     // non-JIT mode.
2821     const GlobalValue *GV = G->getGlobal();
2822     if (!GV->hasDLLImportStorageClass()) {
2823       unsigned char OpFlags = 0;
2824       bool ExtraLoad = false;
2825       unsigned WrapperKind = ISD::DELETED_NODE;
2826
2827       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2828       // external symbols most go through the PLT in PIC mode.  If the symbol
2829       // has hidden or protected visibility, or if it is static or local, then
2830       // we don't need to use the PLT - we can directly call it.
2831       if (Subtarget->isTargetELF() &&
2832           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2833           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2834         OpFlags = X86II::MO_PLT;
2835       } else if (Subtarget->isPICStyleStubAny() &&
2836                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2837                  (!Subtarget->getTargetTriple().isMacOSX() ||
2838                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2839         // PC-relative references to external symbols should go through $stub,
2840         // unless we're building with the leopard linker or later, which
2841         // automatically synthesizes these stubs.
2842         OpFlags = X86II::MO_DARWIN_STUB;
2843       } else if (Subtarget->isPICStyleRIPRel() &&
2844                  isa<Function>(GV) &&
2845                  cast<Function>(GV)->getAttributes().
2846                    hasAttribute(AttributeSet::FunctionIndex,
2847                                 Attribute::NonLazyBind)) {
2848         // If the function is marked as non-lazy, generate an indirect call
2849         // which loads from the GOT directly. This avoids runtime overhead
2850         // at the cost of eager binding (and one extra byte of encoding).
2851         OpFlags = X86II::MO_GOTPCREL;
2852         WrapperKind = X86ISD::WrapperRIP;
2853         ExtraLoad = true;
2854       }
2855
2856       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2857                                           G->getOffset(), OpFlags);
2858
2859       // Add a wrapper if needed.
2860       if (WrapperKind != ISD::DELETED_NODE)
2861         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2862       // Add extra indirection if needed.
2863       if (ExtraLoad)
2864         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2865                              MachinePointerInfo::getGOT(),
2866                              false, false, false, 0);
2867     }
2868   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2869     unsigned char OpFlags = 0;
2870
2871     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2872     // external symbols should go through the PLT.
2873     if (Subtarget->isTargetELF() &&
2874         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2875       OpFlags = X86II::MO_PLT;
2876     } else if (Subtarget->isPICStyleStubAny() &&
2877                (!Subtarget->getTargetTriple().isMacOSX() ||
2878                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2879       // PC-relative references to external symbols should go through $stub,
2880       // unless we're building with the leopard linker or later, which
2881       // automatically synthesizes these stubs.
2882       OpFlags = X86II::MO_DARWIN_STUB;
2883     }
2884
2885     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2886                                          OpFlags);
2887   }
2888
2889   // Returns a chain & a flag for retval copy to use.
2890   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2891   SmallVector<SDValue, 8> Ops;
2892
2893   if (!IsSibcall && isTailCall) {
2894     Chain = DAG.getCALLSEQ_END(Chain,
2895                                DAG.getIntPtrConstant(NumBytesToPop, true),
2896                                DAG.getIntPtrConstant(0, true), InFlag, dl);
2897     InFlag = Chain.getValue(1);
2898   }
2899
2900   Ops.push_back(Chain);
2901   Ops.push_back(Callee);
2902
2903   if (isTailCall)
2904     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2905
2906   // Add argument registers to the end of the list so that they are known live
2907   // into the call.
2908   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2909     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2910                                   RegsToPass[i].second.getValueType()));
2911
2912   // Add a register mask operand representing the call-preserved registers.
2913   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2914   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2915   assert(Mask && "Missing call preserved mask for calling convention");
2916   Ops.push_back(DAG.getRegisterMask(Mask));
2917
2918   if (InFlag.getNode())
2919     Ops.push_back(InFlag);
2920
2921   if (isTailCall) {
2922     // We used to do:
2923     //// If this is the first return lowered for this function, add the regs
2924     //// to the liveout set for the function.
2925     // This isn't right, although it's probably harmless on x86; liveouts
2926     // should be computed from returns not tail calls.  Consider a void
2927     // function making a tail call to a function returning int.
2928     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2929   }
2930
2931   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2932   InFlag = Chain.getValue(1);
2933
2934   // Create the CALLSEQ_END node.
2935   unsigned NumBytesForCalleeToPop;
2936   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2937                        getTargetMachine().Options.GuaranteedTailCallOpt))
2938     NumBytesForCalleeToPop = NumBytes;    // Callee pops everything
2939   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2940            !Subtarget->getTargetTriple().isOSMSVCRT() &&
2941            SR == StackStructReturn)
2942     // If this is a call to a struct-return function, the callee
2943     // pops the hidden struct pointer, so we have to push it back.
2944     // This is common for Darwin/X86, Linux & Mingw32 targets.
2945     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2946     NumBytesForCalleeToPop = 4;
2947   else
2948     NumBytesForCalleeToPop = 0;  // Callee pops nothing.
2949
2950   // Returns a flag for retval copy to use.
2951   if (!IsSibcall) {
2952     Chain = DAG.getCALLSEQ_END(Chain,
2953                                DAG.getIntPtrConstant(NumBytesToPop, true),
2954                                DAG.getIntPtrConstant(NumBytesForCalleeToPop,
2955                                                      true),
2956                                InFlag, dl);
2957     InFlag = Chain.getValue(1);
2958   }
2959
2960   // Handle result values, copying them out of physregs into vregs that we
2961   // return.
2962   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2963                          Ins, dl, DAG, InVals);
2964 }
2965
2966 //===----------------------------------------------------------------------===//
2967 //                Fast Calling Convention (tail call) implementation
2968 //===----------------------------------------------------------------------===//
2969
2970 //  Like std call, callee cleans arguments, convention except that ECX is
2971 //  reserved for storing the tail called function address. Only 2 registers are
2972 //  free for argument passing (inreg). Tail call optimization is performed
2973 //  provided:
2974 //                * tailcallopt is enabled
2975 //                * caller/callee are fastcc
2976 //  On X86_64 architecture with GOT-style position independent code only local
2977 //  (within module) calls are supported at the moment.
2978 //  To keep the stack aligned according to platform abi the function
2979 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2980 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2981 //  If a tail called function callee has more arguments than the caller the
2982 //  caller needs to make sure that there is room to move the RETADDR to. This is
2983 //  achieved by reserving an area the size of the argument delta right after the
2984 //  original REtADDR, but before the saved framepointer or the spilled registers
2985 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2986 //  stack layout:
2987 //    arg1
2988 //    arg2
2989 //    RETADDR
2990 //    [ new RETADDR
2991 //      move area ]
2992 //    (possible EBP)
2993 //    ESI
2994 //    EDI
2995 //    local1 ..
2996
2997 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2998 /// for a 16 byte align requirement.
2999 unsigned
3000 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
3001                                                SelectionDAG& DAG) const {
3002   MachineFunction &MF = DAG.getMachineFunction();
3003   const TargetMachine &TM = MF.getTarget();
3004   const X86RegisterInfo *RegInfo =
3005     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
3006   const TargetFrameLowering &TFI = *TM.getFrameLowering();
3007   unsigned StackAlignment = TFI.getStackAlignment();
3008   uint64_t AlignMask = StackAlignment - 1;
3009   int64_t Offset = StackSize;
3010   unsigned SlotSize = RegInfo->getSlotSize();
3011   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
3012     // Number smaller than 12 so just add the difference.
3013     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
3014   } else {
3015     // Mask out lower bits, add stackalignment once plus the 12 bytes.
3016     Offset = ((~AlignMask) & Offset) + StackAlignment +
3017       (StackAlignment-SlotSize);
3018   }
3019   return Offset;
3020 }
3021
3022 /// MatchingStackOffset - Return true if the given stack call argument is
3023 /// already available in the same position (relatively) of the caller's
3024 /// incoming argument stack.
3025 static
3026 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3027                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3028                          const X86InstrInfo *TII) {
3029   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3030   int FI = INT_MAX;
3031   if (Arg.getOpcode() == ISD::CopyFromReg) {
3032     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3033     if (!TargetRegisterInfo::isVirtualRegister(VR))
3034       return false;
3035     MachineInstr *Def = MRI->getVRegDef(VR);
3036     if (!Def)
3037       return false;
3038     if (!Flags.isByVal()) {
3039       if (!TII->isLoadFromStackSlot(Def, FI))
3040         return false;
3041     } else {
3042       unsigned Opcode = Def->getOpcode();
3043       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3044           Def->getOperand(1).isFI()) {
3045         FI = Def->getOperand(1).getIndex();
3046         Bytes = Flags.getByValSize();
3047       } else
3048         return false;
3049     }
3050   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3051     if (Flags.isByVal())
3052       // ByVal argument is passed in as a pointer but it's now being
3053       // dereferenced. e.g.
3054       // define @foo(%struct.X* %A) {
3055       //   tail call @bar(%struct.X* byval %A)
3056       // }
3057       return false;
3058     SDValue Ptr = Ld->getBasePtr();
3059     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3060     if (!FINode)
3061       return false;
3062     FI = FINode->getIndex();
3063   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3064     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3065     FI = FINode->getIndex();
3066     Bytes = Flags.getByValSize();
3067   } else
3068     return false;
3069
3070   assert(FI != INT_MAX);
3071   if (!MFI->isFixedObjectIndex(FI))
3072     return false;
3073   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3074 }
3075
3076 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3077 /// for tail call optimization. Targets which want to do tail call
3078 /// optimization should implement this function.
3079 bool
3080 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3081                                                      CallingConv::ID CalleeCC,
3082                                                      bool isVarArg,
3083                                                      bool isCalleeStructRet,
3084                                                      bool isCallerStructRet,
3085                                                      Type *RetTy,
3086                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3087                                     const SmallVectorImpl<SDValue> &OutVals,
3088                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3089                                                      SelectionDAG &DAG) const {
3090   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3091     return false;
3092
3093   // If -tailcallopt is specified, make fastcc functions tail-callable.
3094   const MachineFunction &MF = DAG.getMachineFunction();
3095   const Function *CallerF = MF.getFunction();
3096
3097   // If the function return type is x86_fp80 and the callee return type is not,
3098   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3099   // perform a tailcall optimization here.
3100   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3101     return false;
3102
3103   CallingConv::ID CallerCC = CallerF->getCallingConv();
3104   bool CCMatch = CallerCC == CalleeCC;
3105   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3106   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3107
3108   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3109     if (IsTailCallConvention(CalleeCC) && CCMatch)
3110       return true;
3111     return false;
3112   }
3113
3114   // Look for obvious safe cases to perform tail call optimization that do not
3115   // require ABI changes. This is what gcc calls sibcall.
3116
3117   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3118   // emit a special epilogue.
3119   const X86RegisterInfo *RegInfo =
3120     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3121   if (RegInfo->needsStackRealignment(MF))
3122     return false;
3123
3124   // Also avoid sibcall optimization if either caller or callee uses struct
3125   // return semantics.
3126   if (isCalleeStructRet || isCallerStructRet)
3127     return false;
3128
3129   // An stdcall/thiscall caller is expected to clean up its arguments; the
3130   // callee isn't going to do that.
3131   // FIXME: this is more restrictive than needed. We could produce a tailcall
3132   // when the stack adjustment matches. For example, with a thiscall that takes
3133   // only one argument.
3134   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3135                    CallerCC == CallingConv::X86_ThisCall))
3136     return false;
3137
3138   // Do not sibcall optimize vararg calls unless all arguments are passed via
3139   // registers.
3140   if (isVarArg && !Outs.empty()) {
3141
3142     // Optimizing for varargs on Win64 is unlikely to be safe without
3143     // additional testing.
3144     if (IsCalleeWin64 || IsCallerWin64)
3145       return false;
3146
3147     SmallVector<CCValAssign, 16> ArgLocs;
3148     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3149                    getTargetMachine(), ArgLocs, *DAG.getContext());
3150
3151     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3152     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3153       if (!ArgLocs[i].isRegLoc())
3154         return false;
3155   }
3156
3157   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3158   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3159   // this into a sibcall.
3160   bool Unused = false;
3161   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3162     if (!Ins[i].Used) {
3163       Unused = true;
3164       break;
3165     }
3166   }
3167   if (Unused) {
3168     SmallVector<CCValAssign, 16> RVLocs;
3169     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3170                    getTargetMachine(), RVLocs, *DAG.getContext());
3171     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3172     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3173       CCValAssign &VA = RVLocs[i];
3174       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3175         return false;
3176     }
3177   }
3178
3179   // If the calling conventions do not match, then we'd better make sure the
3180   // results are returned in the same way as what the caller expects.
3181   if (!CCMatch) {
3182     SmallVector<CCValAssign, 16> RVLocs1;
3183     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3184                     getTargetMachine(), RVLocs1, *DAG.getContext());
3185     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3186
3187     SmallVector<CCValAssign, 16> RVLocs2;
3188     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3189                     getTargetMachine(), RVLocs2, *DAG.getContext());
3190     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3191
3192     if (RVLocs1.size() != RVLocs2.size())
3193       return false;
3194     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3195       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3196         return false;
3197       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3198         return false;
3199       if (RVLocs1[i].isRegLoc()) {
3200         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3201           return false;
3202       } else {
3203         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3204           return false;
3205       }
3206     }
3207   }
3208
3209   // If the callee takes no arguments then go on to check the results of the
3210   // call.
3211   if (!Outs.empty()) {
3212     // Check if stack adjustment is needed. For now, do not do this if any
3213     // argument is passed on the stack.
3214     SmallVector<CCValAssign, 16> ArgLocs;
3215     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3216                    getTargetMachine(), ArgLocs, *DAG.getContext());
3217
3218     // Allocate shadow area for Win64
3219     if (IsCalleeWin64)
3220       CCInfo.AllocateStack(32, 8);
3221
3222     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3223     if (CCInfo.getNextStackOffset()) {
3224       MachineFunction &MF = DAG.getMachineFunction();
3225       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3226         return false;
3227
3228       // Check if the arguments are already laid out in the right way as
3229       // the caller's fixed stack objects.
3230       MachineFrameInfo *MFI = MF.getFrameInfo();
3231       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3232       const X86InstrInfo *TII =
3233         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3234       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3235         CCValAssign &VA = ArgLocs[i];
3236         SDValue Arg = OutVals[i];
3237         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3238         if (VA.getLocInfo() == CCValAssign::Indirect)
3239           return false;
3240         if (!VA.isRegLoc()) {
3241           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3242                                    MFI, MRI, TII))
3243             return false;
3244         }
3245       }
3246     }
3247
3248     // If the tailcall address may be in a register, then make sure it's
3249     // possible to register allocate for it. In 32-bit, the call address can
3250     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3251     // callee-saved registers are restored. These happen to be the same
3252     // registers used to pass 'inreg' arguments so watch out for those.
3253     if (!Subtarget->is64Bit() &&
3254         ((!isa<GlobalAddressSDNode>(Callee) &&
3255           !isa<ExternalSymbolSDNode>(Callee)) ||
3256          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3257       unsigned NumInRegs = 0;
3258       // In PIC we need an extra register to formulate the address computation
3259       // for the callee.
3260       unsigned MaxInRegs =
3261           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3262
3263       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3264         CCValAssign &VA = ArgLocs[i];
3265         if (!VA.isRegLoc())
3266           continue;
3267         unsigned Reg = VA.getLocReg();
3268         switch (Reg) {
3269         default: break;
3270         case X86::EAX: case X86::EDX: case X86::ECX:
3271           if (++NumInRegs == MaxInRegs)
3272             return false;
3273           break;
3274         }
3275       }
3276     }
3277   }
3278
3279   return true;
3280 }
3281
3282 FastISel *
3283 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3284                                   const TargetLibraryInfo *libInfo) const {
3285   return X86::createFastISel(funcInfo, libInfo);
3286 }
3287
3288 //===----------------------------------------------------------------------===//
3289 //                           Other Lowering Hooks
3290 //===----------------------------------------------------------------------===//
3291
3292 static bool MayFoldLoad(SDValue Op) {
3293   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3294 }
3295
3296 static bool MayFoldIntoStore(SDValue Op) {
3297   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3298 }
3299
3300 static bool isTargetShuffle(unsigned Opcode) {
3301   switch(Opcode) {
3302   default: return false;
3303   case X86ISD::PSHUFD:
3304   case X86ISD::PSHUFHW:
3305   case X86ISD::PSHUFLW:
3306   case X86ISD::SHUFP:
3307   case X86ISD::PALIGNR:
3308   case X86ISD::MOVLHPS:
3309   case X86ISD::MOVLHPD:
3310   case X86ISD::MOVHLPS:
3311   case X86ISD::MOVLPS:
3312   case X86ISD::MOVLPD:
3313   case X86ISD::MOVSHDUP:
3314   case X86ISD::MOVSLDUP:
3315   case X86ISD::MOVDDUP:
3316   case X86ISD::MOVSS:
3317   case X86ISD::MOVSD:
3318   case X86ISD::UNPCKL:
3319   case X86ISD::UNPCKH:
3320   case X86ISD::VPERMILP:
3321   case X86ISD::VPERM2X128:
3322   case X86ISD::VPERMI:
3323     return true;
3324   }
3325 }
3326
3327 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3328                                     SDValue V1, SelectionDAG &DAG) {
3329   switch(Opc) {
3330   default: llvm_unreachable("Unknown x86 shuffle node");
3331   case X86ISD::MOVSHDUP:
3332   case X86ISD::MOVSLDUP:
3333   case X86ISD::MOVDDUP:
3334     return DAG.getNode(Opc, dl, VT, V1);
3335   }
3336 }
3337
3338 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3339                                     SDValue V1, unsigned TargetMask,
3340                                     SelectionDAG &DAG) {
3341   switch(Opc) {
3342   default: llvm_unreachable("Unknown x86 shuffle node");
3343   case X86ISD::PSHUFD:
3344   case X86ISD::PSHUFHW:
3345   case X86ISD::PSHUFLW:
3346   case X86ISD::VPERMILP:
3347   case X86ISD::VPERMI:
3348     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3349   }
3350 }
3351
3352 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3353                                     SDValue V1, SDValue V2, unsigned TargetMask,
3354                                     SelectionDAG &DAG) {
3355   switch(Opc) {
3356   default: llvm_unreachable("Unknown x86 shuffle node");
3357   case X86ISD::PALIGNR:
3358   case X86ISD::SHUFP:
3359   case X86ISD::VPERM2X128:
3360     return DAG.getNode(Opc, dl, VT, V1, V2,
3361                        DAG.getConstant(TargetMask, MVT::i8));
3362   }
3363 }
3364
3365 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3366                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3367   switch(Opc) {
3368   default: llvm_unreachable("Unknown x86 shuffle node");
3369   case X86ISD::MOVLHPS:
3370   case X86ISD::MOVLHPD:
3371   case X86ISD::MOVHLPS:
3372   case X86ISD::MOVLPS:
3373   case X86ISD::MOVLPD:
3374   case X86ISD::MOVSS:
3375   case X86ISD::MOVSD:
3376   case X86ISD::UNPCKL:
3377   case X86ISD::UNPCKH:
3378     return DAG.getNode(Opc, dl, VT, V1, V2);
3379   }
3380 }
3381
3382 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3383   MachineFunction &MF = DAG.getMachineFunction();
3384   const X86RegisterInfo *RegInfo =
3385     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3386   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3387   int ReturnAddrIndex = FuncInfo->getRAIndex();
3388
3389   if (ReturnAddrIndex == 0) {
3390     // Set up a frame object for the return address.
3391     unsigned SlotSize = RegInfo->getSlotSize();
3392     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3393                                                            -(int64_t)SlotSize,
3394                                                            false);
3395     FuncInfo->setRAIndex(ReturnAddrIndex);
3396   }
3397
3398   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3399 }
3400
3401 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3402                                        bool hasSymbolicDisplacement) {
3403   // Offset should fit into 32 bit immediate field.
3404   if (!isInt<32>(Offset))
3405     return false;
3406
3407   // If we don't have a symbolic displacement - we don't have any extra
3408   // restrictions.
3409   if (!hasSymbolicDisplacement)
3410     return true;
3411
3412   // FIXME: Some tweaks might be needed for medium code model.
3413   if (M != CodeModel::Small && M != CodeModel::Kernel)
3414     return false;
3415
3416   // For small code model we assume that latest object is 16MB before end of 31
3417   // bits boundary. We may also accept pretty large negative constants knowing
3418   // that all objects are in the positive half of address space.
3419   if (M == CodeModel::Small && Offset < 16*1024*1024)
3420     return true;
3421
3422   // For kernel code model we know that all object resist in the negative half
3423   // of 32bits address space. We may not accept negative offsets, since they may
3424   // be just off and we may accept pretty large positive ones.
3425   if (M == CodeModel::Kernel && Offset > 0)
3426     return true;
3427
3428   return false;
3429 }
3430
3431 /// isCalleePop - Determines whether the callee is required to pop its
3432 /// own arguments. Callee pop is necessary to support tail calls.
3433 bool X86::isCalleePop(CallingConv::ID CallingConv,
3434                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3435   if (IsVarArg)
3436     return false;
3437
3438   switch (CallingConv) {
3439   default:
3440     return false;
3441   case CallingConv::X86_StdCall:
3442     return !is64Bit;
3443   case CallingConv::X86_FastCall:
3444     return !is64Bit;
3445   case CallingConv::X86_ThisCall:
3446     return !is64Bit;
3447   case CallingConv::Fast:
3448     return TailCallOpt;
3449   case CallingConv::GHC:
3450     return TailCallOpt;
3451   case CallingConv::HiPE:
3452     return TailCallOpt;
3453   }
3454 }
3455
3456 /// \brief Return true if the condition is an unsigned comparison operation.
3457 static bool isX86CCUnsigned(unsigned X86CC) {
3458   switch (X86CC) {
3459   default: llvm_unreachable("Invalid integer condition!");
3460   case X86::COND_E:     return true;
3461   case X86::COND_G:     return false;
3462   case X86::COND_GE:    return false;
3463   case X86::COND_L:     return false;
3464   case X86::COND_LE:    return false;
3465   case X86::COND_NE:    return true;
3466   case X86::COND_B:     return true;
3467   case X86::COND_A:     return true;
3468   case X86::COND_BE:    return true;
3469   case X86::COND_AE:    return true;
3470   }
3471   llvm_unreachable("covered switch fell through?!");
3472 }
3473
3474 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3475 /// specific condition code, returning the condition code and the LHS/RHS of the
3476 /// comparison to make.
3477 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3478                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3479   if (!isFP) {
3480     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3481       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3482         // X > -1   -> X == 0, jump !sign.
3483         RHS = DAG.getConstant(0, RHS.getValueType());
3484         return X86::COND_NS;
3485       }
3486       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3487         // X < 0   -> X == 0, jump on sign.
3488         return X86::COND_S;
3489       }
3490       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3491         // X < 1   -> X <= 0
3492         RHS = DAG.getConstant(0, RHS.getValueType());
3493         return X86::COND_LE;
3494       }
3495     }
3496
3497     switch (SetCCOpcode) {
3498     default: llvm_unreachable("Invalid integer condition!");
3499     case ISD::SETEQ:  return X86::COND_E;
3500     case ISD::SETGT:  return X86::COND_G;
3501     case ISD::SETGE:  return X86::COND_GE;
3502     case ISD::SETLT:  return X86::COND_L;
3503     case ISD::SETLE:  return X86::COND_LE;
3504     case ISD::SETNE:  return X86::COND_NE;
3505     case ISD::SETULT: return X86::COND_B;
3506     case ISD::SETUGT: return X86::COND_A;
3507     case ISD::SETULE: return X86::COND_BE;
3508     case ISD::SETUGE: return X86::COND_AE;
3509     }
3510   }
3511
3512   // First determine if it is required or is profitable to flip the operands.
3513
3514   // If LHS is a foldable load, but RHS is not, flip the condition.
3515   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3516       !ISD::isNON_EXTLoad(RHS.getNode())) {
3517     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3518     std::swap(LHS, RHS);
3519   }
3520
3521   switch (SetCCOpcode) {
3522   default: break;
3523   case ISD::SETOLT:
3524   case ISD::SETOLE:
3525   case ISD::SETUGT:
3526   case ISD::SETUGE:
3527     std::swap(LHS, RHS);
3528     break;
3529   }
3530
3531   // On a floating point condition, the flags are set as follows:
3532   // ZF  PF  CF   op
3533   //  0 | 0 | 0 | X > Y
3534   //  0 | 0 | 1 | X < Y
3535   //  1 | 0 | 0 | X == Y
3536   //  1 | 1 | 1 | unordered
3537   switch (SetCCOpcode) {
3538   default: llvm_unreachable("Condcode should be pre-legalized away");
3539   case ISD::SETUEQ:
3540   case ISD::SETEQ:   return X86::COND_E;
3541   case ISD::SETOLT:              // flipped
3542   case ISD::SETOGT:
3543   case ISD::SETGT:   return X86::COND_A;
3544   case ISD::SETOLE:              // flipped
3545   case ISD::SETOGE:
3546   case ISD::SETGE:   return X86::COND_AE;
3547   case ISD::SETUGT:              // flipped
3548   case ISD::SETULT:
3549   case ISD::SETLT:   return X86::COND_B;
3550   case ISD::SETUGE:              // flipped
3551   case ISD::SETULE:
3552   case ISD::SETLE:   return X86::COND_BE;
3553   case ISD::SETONE:
3554   case ISD::SETNE:   return X86::COND_NE;
3555   case ISD::SETUO:   return X86::COND_P;
3556   case ISD::SETO:    return X86::COND_NP;
3557   case ISD::SETOEQ:
3558   case ISD::SETUNE:  return X86::COND_INVALID;
3559   }
3560 }
3561
3562 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3563 /// code. Current x86 isa includes the following FP cmov instructions:
3564 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3565 static bool hasFPCMov(unsigned X86CC) {
3566   switch (X86CC) {
3567   default:
3568     return false;
3569   case X86::COND_B:
3570   case X86::COND_BE:
3571   case X86::COND_E:
3572   case X86::COND_P:
3573   case X86::COND_A:
3574   case X86::COND_AE:
3575   case X86::COND_NE:
3576   case X86::COND_NP:
3577     return true;
3578   }
3579 }
3580
3581 /// isFPImmLegal - Returns true if the target can instruction select the
3582 /// specified FP immediate natively. If false, the legalizer will
3583 /// materialize the FP immediate as a load from a constant pool.
3584 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3585   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3586     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3587       return true;
3588   }
3589   return false;
3590 }
3591
3592 /// \brief Returns true if it is beneficial to convert a load of a constant
3593 /// to just the constant itself.
3594 bool X86TargetLowering::shouldConvertConstantLoadToIntImm(const APInt &Imm,
3595                                                           Type *Ty) const {
3596   assert(Ty->isIntegerTy());
3597
3598   unsigned BitSize = Ty->getPrimitiveSizeInBits();
3599   if (BitSize == 0 || BitSize > 64)
3600     return false;
3601   return true;
3602 }
3603
3604 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3605 /// the specified range (L, H].
3606 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3607   return (Val < 0) || (Val >= Low && Val < Hi);
3608 }
3609
3610 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3611 /// specified value.
3612 static bool isUndefOrEqual(int Val, int CmpVal) {
3613   return (Val < 0 || Val == CmpVal);
3614 }
3615
3616 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3617 /// from position Pos and ending in Pos+Size, falls within the specified
3618 /// sequential range (L, L+Pos]. or is undef.
3619 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3620                                        unsigned Pos, unsigned Size, int Low) {
3621   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3622     if (!isUndefOrEqual(Mask[i], Low))
3623       return false;
3624   return true;
3625 }
3626
3627 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3628 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3629 /// the second operand.
3630 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3631   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3632     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3633   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3634     return (Mask[0] < 2 && Mask[1] < 2);
3635   return false;
3636 }
3637
3638 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3639 /// is suitable for input to PSHUFHW.
3640 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3641   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3642     return false;
3643
3644   // Lower quadword copied in order or undef.
3645   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3646     return false;
3647
3648   // Upper quadword shuffled.
3649   for (unsigned i = 4; i != 8; ++i)
3650     if (!isUndefOrInRange(Mask[i], 4, 8))
3651       return false;
3652
3653   if (VT == MVT::v16i16) {
3654     // Lower quadword copied in order or undef.
3655     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3656       return false;
3657
3658     // Upper quadword shuffled.
3659     for (unsigned i = 12; i != 16; ++i)
3660       if (!isUndefOrInRange(Mask[i], 12, 16))
3661         return false;
3662   }
3663
3664   return true;
3665 }
3666
3667 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3668 /// is suitable for input to PSHUFLW.
3669 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3670   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3671     return false;
3672
3673   // Upper quadword copied in order.
3674   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3675     return false;
3676
3677   // Lower quadword shuffled.
3678   for (unsigned i = 0; i != 4; ++i)
3679     if (!isUndefOrInRange(Mask[i], 0, 4))
3680       return false;
3681
3682   if (VT == MVT::v16i16) {
3683     // Upper quadword copied in order.
3684     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3685       return false;
3686
3687     // Lower quadword shuffled.
3688     for (unsigned i = 8; i != 12; ++i)
3689       if (!isUndefOrInRange(Mask[i], 8, 12))
3690         return false;
3691   }
3692
3693   return true;
3694 }
3695
3696 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3697 /// is suitable for input to PALIGNR.
3698 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3699                           const X86Subtarget *Subtarget) {
3700   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3701       (VT.is256BitVector() && !Subtarget->hasInt256()))
3702     return false;
3703
3704   unsigned NumElts = VT.getVectorNumElements();
3705   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3706   unsigned NumLaneElts = NumElts/NumLanes;
3707
3708   // Do not handle 64-bit element shuffles with palignr.
3709   if (NumLaneElts == 2)
3710     return false;
3711
3712   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3713     unsigned i;
3714     for (i = 0; i != NumLaneElts; ++i) {
3715       if (Mask[i+l] >= 0)
3716         break;
3717     }
3718
3719     // Lane is all undef, go to next lane
3720     if (i == NumLaneElts)
3721       continue;
3722
3723     int Start = Mask[i+l];
3724
3725     // Make sure its in this lane in one of the sources
3726     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3727         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3728       return false;
3729
3730     // If not lane 0, then we must match lane 0
3731     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3732       return false;
3733
3734     // Correct second source to be contiguous with first source
3735     if (Start >= (int)NumElts)
3736       Start -= NumElts - NumLaneElts;
3737
3738     // Make sure we're shifting in the right direction.
3739     if (Start <= (int)(i+l))
3740       return false;
3741
3742     Start -= i;
3743
3744     // Check the rest of the elements to see if they are consecutive.
3745     for (++i; i != NumLaneElts; ++i) {
3746       int Idx = Mask[i+l];
3747
3748       // Make sure its in this lane
3749       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3750           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3751         return false;
3752
3753       // If not lane 0, then we must match lane 0
3754       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3755         return false;
3756
3757       if (Idx >= (int)NumElts)
3758         Idx -= NumElts - NumLaneElts;
3759
3760       if (!isUndefOrEqual(Idx, Start+i))
3761         return false;
3762
3763     }
3764   }
3765
3766   return true;
3767 }
3768
3769 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3770 /// the two vector operands have swapped position.
3771 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3772                                      unsigned NumElems) {
3773   for (unsigned i = 0; i != NumElems; ++i) {
3774     int idx = Mask[i];
3775     if (idx < 0)
3776       continue;
3777     else if (idx < (int)NumElems)
3778       Mask[i] = idx + NumElems;
3779     else
3780       Mask[i] = idx - NumElems;
3781   }
3782 }
3783
3784 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3785 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3786 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3787 /// reverse of what x86 shuffles want.
3788 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3789
3790   unsigned NumElems = VT.getVectorNumElements();
3791   unsigned NumLanes = VT.getSizeInBits()/128;
3792   unsigned NumLaneElems = NumElems/NumLanes;
3793
3794   if (NumLaneElems != 2 && NumLaneElems != 4)
3795     return false;
3796
3797   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3798   bool symetricMaskRequired =
3799     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3800
3801   // VSHUFPSY divides the resulting vector into 4 chunks.
3802   // The sources are also splitted into 4 chunks, and each destination
3803   // chunk must come from a different source chunk.
3804   //
3805   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3806   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3807   //
3808   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3809   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3810   //
3811   // VSHUFPDY divides the resulting vector into 4 chunks.
3812   // The sources are also splitted into 4 chunks, and each destination
3813   // chunk must come from a different source chunk.
3814   //
3815   //  SRC1 =>      X3       X2       X1       X0
3816   //  SRC2 =>      Y3       Y2       Y1       Y0
3817   //
3818   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3819   //
3820   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3821   unsigned HalfLaneElems = NumLaneElems/2;
3822   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3823     for (unsigned i = 0; i != NumLaneElems; ++i) {
3824       int Idx = Mask[i+l];
3825       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3826       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3827         return false;
3828       // For VSHUFPSY, the mask of the second half must be the same as the
3829       // first but with the appropriate offsets. This works in the same way as
3830       // VPERMILPS works with masks.
3831       if (!symetricMaskRequired || Idx < 0)
3832         continue;
3833       if (MaskVal[i] < 0) {
3834         MaskVal[i] = Idx - l;
3835         continue;
3836       }
3837       if ((signed)(Idx - l) != MaskVal[i])
3838         return false;
3839     }
3840   }
3841
3842   return true;
3843 }
3844
3845 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3846 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3847 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3848   if (!VT.is128BitVector())
3849     return false;
3850
3851   unsigned NumElems = VT.getVectorNumElements();
3852
3853   if (NumElems != 4)
3854     return false;
3855
3856   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3857   return isUndefOrEqual(Mask[0], 6) &&
3858          isUndefOrEqual(Mask[1], 7) &&
3859          isUndefOrEqual(Mask[2], 2) &&
3860          isUndefOrEqual(Mask[3], 3);
3861 }
3862
3863 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3864 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3865 /// <2, 3, 2, 3>
3866 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3867   if (!VT.is128BitVector())
3868     return false;
3869
3870   unsigned NumElems = VT.getVectorNumElements();
3871
3872   if (NumElems != 4)
3873     return false;
3874
3875   return isUndefOrEqual(Mask[0], 2) &&
3876          isUndefOrEqual(Mask[1], 3) &&
3877          isUndefOrEqual(Mask[2], 2) &&
3878          isUndefOrEqual(Mask[3], 3);
3879 }
3880
3881 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3882 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3883 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3884   if (!VT.is128BitVector())
3885     return false;
3886
3887   unsigned NumElems = VT.getVectorNumElements();
3888
3889   if (NumElems != 2 && NumElems != 4)
3890     return false;
3891
3892   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3893     if (!isUndefOrEqual(Mask[i], i + NumElems))
3894       return false;
3895
3896   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3897     if (!isUndefOrEqual(Mask[i], i))
3898       return false;
3899
3900   return true;
3901 }
3902
3903 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3904 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3905 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3906   if (!VT.is128BitVector())
3907     return false;
3908
3909   unsigned NumElems = VT.getVectorNumElements();
3910
3911   if (NumElems != 2 && NumElems != 4)
3912     return false;
3913
3914   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3915     if (!isUndefOrEqual(Mask[i], i))
3916       return false;
3917
3918   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3919     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3920       return false;
3921
3922   return true;
3923 }
3924
3925 //
3926 // Some special combinations that can be optimized.
3927 //
3928 static
3929 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3930                                SelectionDAG &DAG) {
3931   MVT VT = SVOp->getSimpleValueType(0);
3932   SDLoc dl(SVOp);
3933
3934   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3935     return SDValue();
3936
3937   ArrayRef<int> Mask = SVOp->getMask();
3938
3939   // These are the special masks that may be optimized.
3940   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3941   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3942   bool MatchEvenMask = true;
3943   bool MatchOddMask  = true;
3944   for (int i=0; i<8; ++i) {
3945     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3946       MatchEvenMask = false;
3947     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3948       MatchOddMask = false;
3949   }
3950
3951   if (!MatchEvenMask && !MatchOddMask)
3952     return SDValue();
3953
3954   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3955
3956   SDValue Op0 = SVOp->getOperand(0);
3957   SDValue Op1 = SVOp->getOperand(1);
3958
3959   if (MatchEvenMask) {
3960     // Shift the second operand right to 32 bits.
3961     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3962     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3963   } else {
3964     // Shift the first operand left to 32 bits.
3965     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3966     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3967   }
3968   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3969   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3970 }
3971
3972 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3973 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3974 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3975                          bool HasInt256, bool V2IsSplat = false) {
3976
3977   assert(VT.getSizeInBits() >= 128 &&
3978          "Unsupported vector type for unpckl");
3979
3980   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3981   unsigned NumLanes;
3982   unsigned NumOf256BitLanes;
3983   unsigned NumElts = VT.getVectorNumElements();
3984   if (VT.is256BitVector()) {
3985     if (NumElts != 4 && NumElts != 8 &&
3986         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3987     return false;
3988     NumLanes = 2;
3989     NumOf256BitLanes = 1;
3990   } else if (VT.is512BitVector()) {
3991     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3992            "Unsupported vector type for unpckh");
3993     NumLanes = 2;
3994     NumOf256BitLanes = 2;
3995   } else {
3996     NumLanes = 1;
3997     NumOf256BitLanes = 1;
3998   }
3999
4000   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4001   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4002
4003   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4004     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4005       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4006         int BitI  = Mask[l256*NumEltsInStride+l+i];
4007         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4008         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4009           return false;
4010         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4011           return false;
4012         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4013           return false;
4014       }
4015     }
4016   }
4017   return true;
4018 }
4019
4020 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
4021 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
4022 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
4023                          bool HasInt256, bool V2IsSplat = false) {
4024   assert(VT.getSizeInBits() >= 128 &&
4025          "Unsupported vector type for unpckh");
4026
4027   // AVX defines UNPCK* to operate independently on 128-bit lanes.
4028   unsigned NumLanes;
4029   unsigned NumOf256BitLanes;
4030   unsigned NumElts = VT.getVectorNumElements();
4031   if (VT.is256BitVector()) {
4032     if (NumElts != 4 && NumElts != 8 &&
4033         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4034     return false;
4035     NumLanes = 2;
4036     NumOf256BitLanes = 1;
4037   } else if (VT.is512BitVector()) {
4038     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4039            "Unsupported vector type for unpckh");
4040     NumLanes = 2;
4041     NumOf256BitLanes = 2;
4042   } else {
4043     NumLanes = 1;
4044     NumOf256BitLanes = 1;
4045   }
4046
4047   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4048   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4049
4050   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4051     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4052       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4053         int BitI  = Mask[l256*NumEltsInStride+l+i];
4054         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4055         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4056           return false;
4057         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4058           return false;
4059         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4060           return false;
4061       }
4062     }
4063   }
4064   return true;
4065 }
4066
4067 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4068 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4069 /// <0, 0, 1, 1>
4070 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4071   unsigned NumElts = VT.getVectorNumElements();
4072   bool Is256BitVec = VT.is256BitVector();
4073
4074   if (VT.is512BitVector())
4075     return false;
4076   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4077          "Unsupported vector type for unpckh");
4078
4079   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4080       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4081     return false;
4082
4083   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4084   // FIXME: Need a better way to get rid of this, there's no latency difference
4085   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4086   // the former later. We should also remove the "_undef" special mask.
4087   if (NumElts == 4 && Is256BitVec)
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; i != NumLaneElts; i += 2, ++j) {
4097       int BitI  = Mask[l+i];
4098       int BitI1 = Mask[l+i+1];
4099
4100       if (!isUndefOrEqual(BitI, j))
4101         return false;
4102       if (!isUndefOrEqual(BitI1, j))
4103         return false;
4104     }
4105   }
4106
4107   return true;
4108 }
4109
4110 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4111 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4112 /// <2, 2, 3, 3>
4113 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4114   unsigned NumElts = VT.getVectorNumElements();
4115
4116   if (VT.is512BitVector())
4117     return false;
4118
4119   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4120          "Unsupported vector type for unpckh");
4121
4122   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4123       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4124     return false;
4125
4126   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4127   // independently on 128-bit lanes.
4128   unsigned NumLanes = VT.getSizeInBits()/128;
4129   unsigned NumLaneElts = NumElts/NumLanes;
4130
4131   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4132     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4133       int BitI  = Mask[l+i];
4134       int BitI1 = Mask[l+i+1];
4135       if (!isUndefOrEqual(BitI, j))
4136         return false;
4137       if (!isUndefOrEqual(BitI1, j))
4138         return false;
4139     }
4140   }
4141   return true;
4142 }
4143
4144 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4145 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4146 /// MOVSD, and MOVD, i.e. setting the lowest element.
4147 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4148   if (VT.getVectorElementType().getSizeInBits() < 32)
4149     return false;
4150   if (!VT.is128BitVector())
4151     return false;
4152
4153   unsigned NumElts = VT.getVectorNumElements();
4154
4155   if (!isUndefOrEqual(Mask[0], NumElts))
4156     return false;
4157
4158   for (unsigned i = 1; i != NumElts; ++i)
4159     if (!isUndefOrEqual(Mask[i], i))
4160       return false;
4161
4162   return true;
4163 }
4164
4165 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4166 /// as permutations between 128-bit chunks or halves. As an example: this
4167 /// shuffle bellow:
4168 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4169 /// The first half comes from the second half of V1 and the second half from the
4170 /// the second half of V2.
4171 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4172   if (!HasFp256 || !VT.is256BitVector())
4173     return false;
4174
4175   // The shuffle result is divided into half A and half B. In total the two
4176   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4177   // B must come from C, D, E or F.
4178   unsigned HalfSize = VT.getVectorNumElements()/2;
4179   bool MatchA = false, MatchB = false;
4180
4181   // Check if A comes from one of C, D, E, F.
4182   for (unsigned Half = 0; Half != 4; ++Half) {
4183     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4184       MatchA = true;
4185       break;
4186     }
4187   }
4188
4189   // Check if B comes from one of C, D, E, F.
4190   for (unsigned Half = 0; Half != 4; ++Half) {
4191     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4192       MatchB = true;
4193       break;
4194     }
4195   }
4196
4197   return MatchA && MatchB;
4198 }
4199
4200 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4201 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4202 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4203   MVT VT = SVOp->getSimpleValueType(0);
4204
4205   unsigned HalfSize = VT.getVectorNumElements()/2;
4206
4207   unsigned FstHalf = 0, SndHalf = 0;
4208   for (unsigned i = 0; i < HalfSize; ++i) {
4209     if (SVOp->getMaskElt(i) > 0) {
4210       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4211       break;
4212     }
4213   }
4214   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4215     if (SVOp->getMaskElt(i) > 0) {
4216       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4217       break;
4218     }
4219   }
4220
4221   return (FstHalf | (SndHalf << 4));
4222 }
4223
4224 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4225 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4226   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4227   if (EltSize < 32)
4228     return false;
4229
4230   unsigned NumElts = VT.getVectorNumElements();
4231   Imm8 = 0;
4232   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4233     for (unsigned i = 0; i != NumElts; ++i) {
4234       if (Mask[i] < 0)
4235         continue;
4236       Imm8 |= Mask[i] << (i*2);
4237     }
4238     return true;
4239   }
4240
4241   unsigned LaneSize = 4;
4242   SmallVector<int, 4> MaskVal(LaneSize, -1);
4243
4244   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4245     for (unsigned i = 0; i != LaneSize; ++i) {
4246       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4247         return false;
4248       if (Mask[i+l] < 0)
4249         continue;
4250       if (MaskVal[i] < 0) {
4251         MaskVal[i] = Mask[i+l] - l;
4252         Imm8 |= MaskVal[i] << (i*2);
4253         continue;
4254       }
4255       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4256         return false;
4257     }
4258   }
4259   return true;
4260 }
4261
4262 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4263 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4264 /// Note that VPERMIL mask matching is different depending whether theunderlying
4265 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4266 /// to the same elements of the low, but to the higher half of the source.
4267 /// In VPERMILPD the two lanes could be shuffled independently of each other
4268 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4269 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4270   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4271   if (VT.getSizeInBits() < 256 || EltSize < 32)
4272     return false;
4273   bool symetricMaskRequired = (EltSize == 32);
4274   unsigned NumElts = VT.getVectorNumElements();
4275
4276   unsigned NumLanes = VT.getSizeInBits()/128;
4277   unsigned LaneSize = NumElts/NumLanes;
4278   // 2 or 4 elements in one lane
4279
4280   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4281   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4282     for (unsigned i = 0; i != LaneSize; ++i) {
4283       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4284         return false;
4285       if (symetricMaskRequired) {
4286         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4287           ExpectedMaskVal[i] = Mask[i+l] - l;
4288           continue;
4289         }
4290         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4291           return false;
4292       }
4293     }
4294   }
4295   return true;
4296 }
4297
4298 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4299 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4300 /// element of vector 2 and the other elements to come from vector 1 in order.
4301 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4302                                bool V2IsSplat = false, bool V2IsUndef = false) {
4303   if (!VT.is128BitVector())
4304     return false;
4305
4306   unsigned NumOps = VT.getVectorNumElements();
4307   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4308     return false;
4309
4310   if (!isUndefOrEqual(Mask[0], 0))
4311     return false;
4312
4313   for (unsigned i = 1; i != NumOps; ++i)
4314     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4315           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4316           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4317       return false;
4318
4319   return true;
4320 }
4321
4322 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4323 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4324 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4325 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4326                            const X86Subtarget *Subtarget) {
4327   if (!Subtarget->hasSSE3())
4328     return false;
4329
4330   unsigned NumElems = VT.getVectorNumElements();
4331
4332   if ((VT.is128BitVector() && NumElems != 4) ||
4333       (VT.is256BitVector() && NumElems != 8) ||
4334       (VT.is512BitVector() && NumElems != 16))
4335     return false;
4336
4337   // "i+1" is the value the indexed mask element must have
4338   for (unsigned i = 0; i != NumElems; i += 2)
4339     if (!isUndefOrEqual(Mask[i], i+1) ||
4340         !isUndefOrEqual(Mask[i+1], i+1))
4341       return false;
4342
4343   return true;
4344 }
4345
4346 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4347 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4348 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4349 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4350                            const X86Subtarget *Subtarget) {
4351   if (!Subtarget->hasSSE3())
4352     return false;
4353
4354   unsigned NumElems = VT.getVectorNumElements();
4355
4356   if ((VT.is128BitVector() && NumElems != 4) ||
4357       (VT.is256BitVector() && NumElems != 8) ||
4358       (VT.is512BitVector() && NumElems != 16))
4359     return false;
4360
4361   // "i" is the value the indexed mask element must have
4362   for (unsigned i = 0; i != NumElems; i += 2)
4363     if (!isUndefOrEqual(Mask[i], i) ||
4364         !isUndefOrEqual(Mask[i+1], i))
4365       return false;
4366
4367   return true;
4368 }
4369
4370 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4371 /// specifies a shuffle of elements that is suitable for input to 256-bit
4372 /// version of MOVDDUP.
4373 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4374   if (!HasFp256 || !VT.is256BitVector())
4375     return false;
4376
4377   unsigned NumElts = VT.getVectorNumElements();
4378   if (NumElts != 4)
4379     return false;
4380
4381   for (unsigned i = 0; i != NumElts/2; ++i)
4382     if (!isUndefOrEqual(Mask[i], 0))
4383       return false;
4384   for (unsigned i = NumElts/2; i != NumElts; ++i)
4385     if (!isUndefOrEqual(Mask[i], NumElts/2))
4386       return false;
4387   return true;
4388 }
4389
4390 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4391 /// specifies a shuffle of elements that is suitable for input to 128-bit
4392 /// version of MOVDDUP.
4393 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4394   if (!VT.is128BitVector())
4395     return false;
4396
4397   unsigned e = VT.getVectorNumElements() / 2;
4398   for (unsigned i = 0; i != e; ++i)
4399     if (!isUndefOrEqual(Mask[i], i))
4400       return false;
4401   for (unsigned i = 0; i != e; ++i)
4402     if (!isUndefOrEqual(Mask[e+i], i))
4403       return false;
4404   return true;
4405 }
4406
4407 /// isVEXTRACTIndex - Return true if the specified
4408 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4409 /// suitable for instruction that extract 128 or 256 bit vectors
4410 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4411   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4412   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4413     return false;
4414
4415   // The index should be aligned on a vecWidth-bit boundary.
4416   uint64_t Index =
4417     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4418
4419   MVT VT = N->getSimpleValueType(0);
4420   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4421   bool Result = (Index * ElSize) % vecWidth == 0;
4422
4423   return Result;
4424 }
4425
4426 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4427 /// operand specifies a subvector insert that is suitable for input to
4428 /// insertion of 128 or 256-bit subvectors
4429 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4430   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4431   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4432     return false;
4433   // The index should be aligned on a vecWidth-bit boundary.
4434   uint64_t Index =
4435     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4436
4437   MVT VT = N->getSimpleValueType(0);
4438   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4439   bool Result = (Index * ElSize) % vecWidth == 0;
4440
4441   return Result;
4442 }
4443
4444 bool X86::isVINSERT128Index(SDNode *N) {
4445   return isVINSERTIndex(N, 128);
4446 }
4447
4448 bool X86::isVINSERT256Index(SDNode *N) {
4449   return isVINSERTIndex(N, 256);
4450 }
4451
4452 bool X86::isVEXTRACT128Index(SDNode *N) {
4453   return isVEXTRACTIndex(N, 128);
4454 }
4455
4456 bool X86::isVEXTRACT256Index(SDNode *N) {
4457   return isVEXTRACTIndex(N, 256);
4458 }
4459
4460 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4461 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4462 /// Handles 128-bit and 256-bit.
4463 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4464   MVT VT = N->getSimpleValueType(0);
4465
4466   assert((VT.getSizeInBits() >= 128) &&
4467          "Unsupported vector type for PSHUF/SHUFP");
4468
4469   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4470   // independently on 128-bit lanes.
4471   unsigned NumElts = VT.getVectorNumElements();
4472   unsigned NumLanes = VT.getSizeInBits()/128;
4473   unsigned NumLaneElts = NumElts/NumLanes;
4474
4475   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4476          "Only supports 2, 4 or 8 elements per lane");
4477
4478   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4479   unsigned Mask = 0;
4480   for (unsigned i = 0; i != NumElts; ++i) {
4481     int Elt = N->getMaskElt(i);
4482     if (Elt < 0) continue;
4483     Elt &= NumLaneElts - 1;
4484     unsigned ShAmt = (i << Shift) % 8;
4485     Mask |= Elt << ShAmt;
4486   }
4487
4488   return Mask;
4489 }
4490
4491 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4492 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4493 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4494   MVT VT = N->getSimpleValueType(0);
4495
4496   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4497          "Unsupported vector type for PSHUFHW");
4498
4499   unsigned NumElts = VT.getVectorNumElements();
4500
4501   unsigned Mask = 0;
4502   for (unsigned l = 0; l != NumElts; l += 8) {
4503     // 8 nodes per lane, but we only care about the last 4.
4504     for (unsigned i = 0; i < 4; ++i) {
4505       int Elt = N->getMaskElt(l+i+4);
4506       if (Elt < 0) continue;
4507       Elt &= 0x3; // only 2-bits.
4508       Mask |= Elt << (i * 2);
4509     }
4510   }
4511
4512   return Mask;
4513 }
4514
4515 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4516 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4517 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4518   MVT VT = N->getSimpleValueType(0);
4519
4520   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4521          "Unsupported vector type for PSHUFHW");
4522
4523   unsigned NumElts = VT.getVectorNumElements();
4524
4525   unsigned Mask = 0;
4526   for (unsigned l = 0; l != NumElts; l += 8) {
4527     // 8 nodes per lane, but we only care about the first 4.
4528     for (unsigned i = 0; i < 4; ++i) {
4529       int Elt = N->getMaskElt(l+i);
4530       if (Elt < 0) continue;
4531       Elt &= 0x3; // only 2-bits
4532       Mask |= Elt << (i * 2);
4533     }
4534   }
4535
4536   return Mask;
4537 }
4538
4539 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4540 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4541 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4542   MVT VT = SVOp->getSimpleValueType(0);
4543   unsigned EltSize = VT.is512BitVector() ? 1 :
4544     VT.getVectorElementType().getSizeInBits() >> 3;
4545
4546   unsigned NumElts = VT.getVectorNumElements();
4547   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4548   unsigned NumLaneElts = NumElts/NumLanes;
4549
4550   int Val = 0;
4551   unsigned i;
4552   for (i = 0; i != NumElts; ++i) {
4553     Val = SVOp->getMaskElt(i);
4554     if (Val >= 0)
4555       break;
4556   }
4557   if (Val >= (int)NumElts)
4558     Val -= NumElts - NumLaneElts;
4559
4560   assert(Val - i > 0 && "PALIGNR imm should be positive");
4561   return (Val - i) * EltSize;
4562 }
4563
4564 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4565   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4566   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4567     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4568
4569   uint64_t Index =
4570     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4571
4572   MVT VecVT = N->getOperand(0).getSimpleValueType();
4573   MVT ElVT = VecVT.getVectorElementType();
4574
4575   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4576   return Index / NumElemsPerChunk;
4577 }
4578
4579 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4580   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4581   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4582     llvm_unreachable("Illegal insert subvector for VINSERT");
4583
4584   uint64_t Index =
4585     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4586
4587   MVT VecVT = N->getSimpleValueType(0);
4588   MVT ElVT = VecVT.getVectorElementType();
4589
4590   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4591   return Index / NumElemsPerChunk;
4592 }
4593
4594 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4595 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4596 /// and VINSERTI128 instructions.
4597 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4598   return getExtractVEXTRACTImmediate(N, 128);
4599 }
4600
4601 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4602 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4603 /// and VINSERTI64x4 instructions.
4604 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4605   return getExtractVEXTRACTImmediate(N, 256);
4606 }
4607
4608 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4609 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4610 /// and VINSERTI128 instructions.
4611 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4612   return getInsertVINSERTImmediate(N, 128);
4613 }
4614
4615 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4616 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4617 /// and VINSERTI64x4 instructions.
4618 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4619   return getInsertVINSERTImmediate(N, 256);
4620 }
4621
4622 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4623 /// constant +0.0.
4624 bool X86::isZeroNode(SDValue Elt) {
4625   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4626     return CN->isNullValue();
4627   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4628     return CFP->getValueAPF().isPosZero();
4629   return false;
4630 }
4631
4632 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4633 /// their permute mask.
4634 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4635                                     SelectionDAG &DAG) {
4636   MVT VT = SVOp->getSimpleValueType(0);
4637   unsigned NumElems = VT.getVectorNumElements();
4638   SmallVector<int, 8> MaskVec;
4639
4640   for (unsigned i = 0; i != NumElems; ++i) {
4641     int Idx = SVOp->getMaskElt(i);
4642     if (Idx >= 0) {
4643       if (Idx < (int)NumElems)
4644         Idx += NumElems;
4645       else
4646         Idx -= NumElems;
4647     }
4648     MaskVec.push_back(Idx);
4649   }
4650   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4651                               SVOp->getOperand(0), &MaskVec[0]);
4652 }
4653
4654 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4655 /// match movhlps. The lower half elements should come from upper half of
4656 /// V1 (and in order), and the upper half elements should come from the upper
4657 /// half of V2 (and in order).
4658 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4659   if (!VT.is128BitVector())
4660     return false;
4661   if (VT.getVectorNumElements() != 4)
4662     return false;
4663   for (unsigned i = 0, e = 2; i != e; ++i)
4664     if (!isUndefOrEqual(Mask[i], i+2))
4665       return false;
4666   for (unsigned i = 2; i != 4; ++i)
4667     if (!isUndefOrEqual(Mask[i], i+4))
4668       return false;
4669   return true;
4670 }
4671
4672 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4673 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4674 /// required.
4675 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4676   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4677     return false;
4678   N = N->getOperand(0).getNode();
4679   if (!ISD::isNON_EXTLoad(N))
4680     return false;
4681   if (LD)
4682     *LD = cast<LoadSDNode>(N);
4683   return true;
4684 }
4685
4686 // Test whether the given value is a vector value which will be legalized
4687 // into a load.
4688 static bool WillBeConstantPoolLoad(SDNode *N) {
4689   if (N->getOpcode() != ISD::BUILD_VECTOR)
4690     return false;
4691
4692   // Check for any non-constant elements.
4693   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4694     switch (N->getOperand(i).getNode()->getOpcode()) {
4695     case ISD::UNDEF:
4696     case ISD::ConstantFP:
4697     case ISD::Constant:
4698       break;
4699     default:
4700       return false;
4701     }
4702
4703   // Vectors of all-zeros and all-ones are materialized with special
4704   // instructions rather than being loaded.
4705   return !ISD::isBuildVectorAllZeros(N) &&
4706          !ISD::isBuildVectorAllOnes(N);
4707 }
4708
4709 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4710 /// match movlp{s|d}. The lower half elements should come from lower half of
4711 /// V1 (and in order), and the upper half elements should come from the upper
4712 /// half of V2 (and in order). And since V1 will become the source of the
4713 /// MOVLP, it must be either a vector load or a scalar load to vector.
4714 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4715                                ArrayRef<int> Mask, MVT VT) {
4716   if (!VT.is128BitVector())
4717     return false;
4718
4719   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4720     return false;
4721   // Is V2 is a vector load, don't do this transformation. We will try to use
4722   // load folding shufps op.
4723   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4724     return false;
4725
4726   unsigned NumElems = VT.getVectorNumElements();
4727
4728   if (NumElems != 2 && NumElems != 4)
4729     return false;
4730   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4731     if (!isUndefOrEqual(Mask[i], i))
4732       return false;
4733   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4734     if (!isUndefOrEqual(Mask[i], i+NumElems))
4735       return false;
4736   return true;
4737 }
4738
4739 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4740 /// all the same.
4741 static bool isSplatVector(SDNode *N) {
4742   if (N->getOpcode() != ISD::BUILD_VECTOR)
4743     return false;
4744
4745   SDValue SplatValue = N->getOperand(0);
4746   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4747     if (N->getOperand(i) != SplatValue)
4748       return false;
4749   return true;
4750 }
4751
4752 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4753 /// to an zero vector.
4754 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4755 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4756   SDValue V1 = N->getOperand(0);
4757   SDValue V2 = N->getOperand(1);
4758   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4759   for (unsigned i = 0; i != NumElems; ++i) {
4760     int Idx = N->getMaskElt(i);
4761     if (Idx >= (int)NumElems) {
4762       unsigned Opc = V2.getOpcode();
4763       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4764         continue;
4765       if (Opc != ISD::BUILD_VECTOR ||
4766           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4767         return false;
4768     } else if (Idx >= 0) {
4769       unsigned Opc = V1.getOpcode();
4770       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4771         continue;
4772       if (Opc != ISD::BUILD_VECTOR ||
4773           !X86::isZeroNode(V1.getOperand(Idx)))
4774         return false;
4775     }
4776   }
4777   return true;
4778 }
4779
4780 /// getZeroVector - Returns a vector of specified type with all zero elements.
4781 ///
4782 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4783                              SelectionDAG &DAG, SDLoc dl) {
4784   assert(VT.isVector() && "Expected a vector type");
4785
4786   // Always build SSE zero vectors as <4 x i32> bitcasted
4787   // to their dest type. This ensures they get CSE'd.
4788   SDValue Vec;
4789   if (VT.is128BitVector()) {  // SSE
4790     if (Subtarget->hasSSE2()) {  // SSE2
4791       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4792       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4793     } else { // SSE1
4794       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4795       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4796     }
4797   } else if (VT.is256BitVector()) { // AVX
4798     if (Subtarget->hasInt256()) { // AVX2
4799       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4800       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4801       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4802                         array_lengthof(Ops));
4803     } else {
4804       // 256-bit logic and arithmetic instructions in AVX are all
4805       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4806       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4807       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4808       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4809                         array_lengthof(Ops));
4810     }
4811   } else if (VT.is512BitVector()) { // AVX-512
4812       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4813       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4814                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4815       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4816   } else if (VT.getScalarType() == MVT::i1) {
4817     assert(VT.getVectorNumElements() <= 16 && "Unexpected vector type");
4818     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
4819     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4820                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4821     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
4822                        Ops, VT.getVectorNumElements());
4823   } else
4824     llvm_unreachable("Unexpected vector type");
4825
4826   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4827 }
4828
4829 /// getOnesVector - Returns a vector of specified type with all bits set.
4830 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4831 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4832 /// Then bitcast to their original type, ensuring they get CSE'd.
4833 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4834                              SDLoc dl) {
4835   assert(VT.isVector() && "Expected a vector type");
4836
4837   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4838   SDValue Vec;
4839   if (VT.is256BitVector()) {
4840     if (HasInt256) { // AVX2
4841       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4842       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4843                         array_lengthof(Ops));
4844     } else { // AVX
4845       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4846       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4847     }
4848   } else if (VT.is128BitVector()) {
4849     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4850   } else
4851     llvm_unreachable("Unexpected vector type");
4852
4853   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4854 }
4855
4856 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4857 /// that point to V2 points to its first element.
4858 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4859   for (unsigned i = 0; i != NumElems; ++i) {
4860     if (Mask[i] > (int)NumElems) {
4861       Mask[i] = NumElems;
4862     }
4863   }
4864 }
4865
4866 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4867 /// operation of specified width.
4868 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4869                        SDValue V2) {
4870   unsigned NumElems = VT.getVectorNumElements();
4871   SmallVector<int, 8> Mask;
4872   Mask.push_back(NumElems);
4873   for (unsigned i = 1; i != NumElems; ++i)
4874     Mask.push_back(i);
4875   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4876 }
4877
4878 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4879 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4880                           SDValue V2) {
4881   unsigned NumElems = VT.getVectorNumElements();
4882   SmallVector<int, 8> Mask;
4883   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4884     Mask.push_back(i);
4885     Mask.push_back(i + NumElems);
4886   }
4887   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4888 }
4889
4890 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4891 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4892                           SDValue V2) {
4893   unsigned NumElems = VT.getVectorNumElements();
4894   SmallVector<int, 8> Mask;
4895   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4896     Mask.push_back(i + Half);
4897     Mask.push_back(i + NumElems + Half);
4898   }
4899   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4900 }
4901
4902 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4903 // a generic shuffle instruction because the target has no such instructions.
4904 // Generate shuffles which repeat i16 and i8 several times until they can be
4905 // represented by v4f32 and then be manipulated by target suported shuffles.
4906 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4907   MVT VT = V.getSimpleValueType();
4908   int NumElems = VT.getVectorNumElements();
4909   SDLoc dl(V);
4910
4911   while (NumElems > 4) {
4912     if (EltNo < NumElems/2) {
4913       V = getUnpackl(DAG, dl, VT, V, V);
4914     } else {
4915       V = getUnpackh(DAG, dl, VT, V, V);
4916       EltNo -= NumElems/2;
4917     }
4918     NumElems >>= 1;
4919   }
4920   return V;
4921 }
4922
4923 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4924 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4925   MVT VT = V.getSimpleValueType();
4926   SDLoc dl(V);
4927
4928   if (VT.is128BitVector()) {
4929     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4930     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4931     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4932                              &SplatMask[0]);
4933   } else if (VT.is256BitVector()) {
4934     // To use VPERMILPS to splat scalars, the second half of indicies must
4935     // refer to the higher part, which is a duplication of the lower one,
4936     // because VPERMILPS can only handle in-lane permutations.
4937     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4938                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4939
4940     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4941     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4942                              &SplatMask[0]);
4943   } else
4944     llvm_unreachable("Vector size not supported");
4945
4946   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4947 }
4948
4949 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4950 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4951   MVT SrcVT = SV->getSimpleValueType(0);
4952   SDValue V1 = SV->getOperand(0);
4953   SDLoc dl(SV);
4954
4955   int EltNo = SV->getSplatIndex();
4956   int NumElems = SrcVT.getVectorNumElements();
4957   bool Is256BitVec = SrcVT.is256BitVector();
4958
4959   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4960          "Unknown how to promote splat for type");
4961
4962   // Extract the 128-bit part containing the splat element and update
4963   // the splat element index when it refers to the higher register.
4964   if (Is256BitVec) {
4965     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4966     if (EltNo >= NumElems/2)
4967       EltNo -= NumElems/2;
4968   }
4969
4970   // All i16 and i8 vector types can't be used directly by a generic shuffle
4971   // instruction because the target has no such instruction. Generate shuffles
4972   // which repeat i16 and i8 several times until they fit in i32, and then can
4973   // be manipulated by target suported shuffles.
4974   MVT EltVT = SrcVT.getVectorElementType();
4975   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4976     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4977
4978   // Recreate the 256-bit vector and place the same 128-bit vector
4979   // into the low and high part. This is necessary because we want
4980   // to use VPERM* to shuffle the vectors
4981   if (Is256BitVec) {
4982     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4983   }
4984
4985   return getLegalSplat(DAG, V1, EltNo);
4986 }
4987
4988 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4989 /// vector of zero or undef vector.  This produces a shuffle where the low
4990 /// element of V2 is swizzled into the zero/undef vector, landing at element
4991 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4992 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4993                                            bool IsZero,
4994                                            const X86Subtarget *Subtarget,
4995                                            SelectionDAG &DAG) {
4996   MVT VT = V2.getSimpleValueType();
4997   SDValue V1 = IsZero
4998     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4999   unsigned NumElems = VT.getVectorNumElements();
5000   SmallVector<int, 16> MaskVec;
5001   for (unsigned i = 0; i != NumElems; ++i)
5002     // If this is the insertion idx, put the low elt of V2 here.
5003     MaskVec.push_back(i == Idx ? NumElems : i);
5004   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
5005 }
5006
5007 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
5008 /// target specific opcode. Returns true if the Mask could be calculated.
5009 /// Sets IsUnary to true if only uses one source.
5010 static bool getTargetShuffleMask(SDNode *N, MVT VT,
5011                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
5012   unsigned NumElems = VT.getVectorNumElements();
5013   SDValue ImmN;
5014
5015   IsUnary = false;
5016   switch(N->getOpcode()) {
5017   case X86ISD::SHUFP:
5018     ImmN = N->getOperand(N->getNumOperands()-1);
5019     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5020     break;
5021   case X86ISD::UNPCKH:
5022     DecodeUNPCKHMask(VT, Mask);
5023     break;
5024   case X86ISD::UNPCKL:
5025     DecodeUNPCKLMask(VT, Mask);
5026     break;
5027   case X86ISD::MOVHLPS:
5028     DecodeMOVHLPSMask(NumElems, Mask);
5029     break;
5030   case X86ISD::MOVLHPS:
5031     DecodeMOVLHPSMask(NumElems, Mask);
5032     break;
5033   case X86ISD::PALIGNR:
5034     ImmN = N->getOperand(N->getNumOperands()-1);
5035     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5036     break;
5037   case X86ISD::PSHUFD:
5038   case X86ISD::VPERMILP:
5039     ImmN = N->getOperand(N->getNumOperands()-1);
5040     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5041     IsUnary = true;
5042     break;
5043   case X86ISD::PSHUFHW:
5044     ImmN = N->getOperand(N->getNumOperands()-1);
5045     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5046     IsUnary = true;
5047     break;
5048   case X86ISD::PSHUFLW:
5049     ImmN = N->getOperand(N->getNumOperands()-1);
5050     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5051     IsUnary = true;
5052     break;
5053   case X86ISD::VPERMI:
5054     ImmN = N->getOperand(N->getNumOperands()-1);
5055     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5056     IsUnary = true;
5057     break;
5058   case X86ISD::MOVSS:
5059   case X86ISD::MOVSD: {
5060     // The index 0 always comes from the first element of the second source,
5061     // this is why MOVSS and MOVSD are used in the first place. The other
5062     // elements come from the other positions of the first source vector
5063     Mask.push_back(NumElems);
5064     for (unsigned i = 1; i != NumElems; ++i) {
5065       Mask.push_back(i);
5066     }
5067     break;
5068   }
5069   case X86ISD::VPERM2X128:
5070     ImmN = N->getOperand(N->getNumOperands()-1);
5071     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5072     if (Mask.empty()) return false;
5073     break;
5074   case X86ISD::MOVDDUP:
5075   case X86ISD::MOVLHPD:
5076   case X86ISD::MOVLPD:
5077   case X86ISD::MOVLPS:
5078   case X86ISD::MOVSHDUP:
5079   case X86ISD::MOVSLDUP:
5080     // Not yet implemented
5081     return false;
5082   default: llvm_unreachable("unknown target shuffle node");
5083   }
5084
5085   return true;
5086 }
5087
5088 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5089 /// element of the result of the vector shuffle.
5090 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5091                                    unsigned Depth) {
5092   if (Depth == 6)
5093     return SDValue();  // Limit search depth.
5094
5095   SDValue V = SDValue(N, 0);
5096   EVT VT = V.getValueType();
5097   unsigned Opcode = V.getOpcode();
5098
5099   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5100   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5101     int Elt = SV->getMaskElt(Index);
5102
5103     if (Elt < 0)
5104       return DAG.getUNDEF(VT.getVectorElementType());
5105
5106     unsigned NumElems = VT.getVectorNumElements();
5107     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5108                                          : SV->getOperand(1);
5109     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5110   }
5111
5112   // Recurse into target specific vector shuffles to find scalars.
5113   if (isTargetShuffle(Opcode)) {
5114     MVT ShufVT = V.getSimpleValueType();
5115     unsigned NumElems = ShufVT.getVectorNumElements();
5116     SmallVector<int, 16> ShuffleMask;
5117     bool IsUnary;
5118
5119     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5120       return SDValue();
5121
5122     int Elt = ShuffleMask[Index];
5123     if (Elt < 0)
5124       return DAG.getUNDEF(ShufVT.getVectorElementType());
5125
5126     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5127                                          : N->getOperand(1);
5128     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5129                                Depth+1);
5130   }
5131
5132   // Actual nodes that may contain scalar elements
5133   if (Opcode == ISD::BITCAST) {
5134     V = V.getOperand(0);
5135     EVT SrcVT = V.getValueType();
5136     unsigned NumElems = VT.getVectorNumElements();
5137
5138     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5139       return SDValue();
5140   }
5141
5142   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5143     return (Index == 0) ? V.getOperand(0)
5144                         : DAG.getUNDEF(VT.getVectorElementType());
5145
5146   if (V.getOpcode() == ISD::BUILD_VECTOR)
5147     return V.getOperand(Index);
5148
5149   return SDValue();
5150 }
5151
5152 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5153 /// shuffle operation which come from a consecutively from a zero. The
5154 /// search can start in two different directions, from left or right.
5155 /// We count undefs as zeros until PreferredNum is reached.
5156 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5157                                          unsigned NumElems, bool ZerosFromLeft,
5158                                          SelectionDAG &DAG,
5159                                          unsigned PreferredNum = -1U) {
5160   unsigned NumZeros = 0;
5161   for (unsigned i = 0; i != NumElems; ++i) {
5162     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5163     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5164     if (!Elt.getNode())
5165       break;
5166
5167     if (X86::isZeroNode(Elt))
5168       ++NumZeros;
5169     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5170       NumZeros = std::min(NumZeros + 1, PreferredNum);
5171     else
5172       break;
5173   }
5174
5175   return NumZeros;
5176 }
5177
5178 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5179 /// correspond consecutively to elements from one of the vector operands,
5180 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5181 static
5182 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5183                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5184                               unsigned NumElems, unsigned &OpNum) {
5185   bool SeenV1 = false;
5186   bool SeenV2 = false;
5187
5188   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5189     int Idx = SVOp->getMaskElt(i);
5190     // Ignore undef indicies
5191     if (Idx < 0)
5192       continue;
5193
5194     if (Idx < (int)NumElems)
5195       SeenV1 = true;
5196     else
5197       SeenV2 = true;
5198
5199     // Only accept consecutive elements from the same vector
5200     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5201       return false;
5202   }
5203
5204   OpNum = SeenV1 ? 0 : 1;
5205   return true;
5206 }
5207
5208 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5209 /// logical left shift of a vector.
5210 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5211                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5212   unsigned NumElems =
5213     SVOp->getSimpleValueType(0).getVectorNumElements();
5214   unsigned NumZeros = getNumOfConsecutiveZeros(
5215       SVOp, NumElems, false /* check zeros from right */, DAG,
5216       SVOp->getMaskElt(0));
5217   unsigned OpSrc;
5218
5219   if (!NumZeros)
5220     return false;
5221
5222   // Considering the elements in the mask that are not consecutive zeros,
5223   // check if they consecutively come from only one of the source vectors.
5224   //
5225   //               V1 = {X, A, B, C}     0
5226   //                         \  \  \    /
5227   //   vector_shuffle V1, V2 <1, 2, 3, X>
5228   //
5229   if (!isShuffleMaskConsecutive(SVOp,
5230             0,                   // Mask Start Index
5231             NumElems-NumZeros,   // Mask End Index(exclusive)
5232             NumZeros,            // Where to start looking in the src vector
5233             NumElems,            // Number of elements in vector
5234             OpSrc))              // Which source operand ?
5235     return false;
5236
5237   isLeft = false;
5238   ShAmt = NumZeros;
5239   ShVal = SVOp->getOperand(OpSrc);
5240   return true;
5241 }
5242
5243 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5244 /// logical left shift of a vector.
5245 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5246                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5247   unsigned NumElems =
5248     SVOp->getSimpleValueType(0).getVectorNumElements();
5249   unsigned NumZeros = getNumOfConsecutiveZeros(
5250       SVOp, NumElems, true /* check zeros from left */, DAG,
5251       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5252   unsigned OpSrc;
5253
5254   if (!NumZeros)
5255     return false;
5256
5257   // Considering the elements in the mask that are not consecutive zeros,
5258   // check if they consecutively come from only one of the source vectors.
5259   //
5260   //                           0    { A, B, X, X } = V2
5261   //                          / \    /  /
5262   //   vector_shuffle V1, V2 <X, X, 4, 5>
5263   //
5264   if (!isShuffleMaskConsecutive(SVOp,
5265             NumZeros,     // Mask Start Index
5266             NumElems,     // Mask End Index(exclusive)
5267             0,            // Where to start looking in the src vector
5268             NumElems,     // Number of elements in vector
5269             OpSrc))       // Which source operand ?
5270     return false;
5271
5272   isLeft = true;
5273   ShAmt = NumZeros;
5274   ShVal = SVOp->getOperand(OpSrc);
5275   return true;
5276 }
5277
5278 /// isVectorShift - Returns true if the shuffle can be implemented as a
5279 /// logical left or right shift of a vector.
5280 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5281                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5282   // Although the logic below support any bitwidth size, there are no
5283   // shift instructions which handle more than 128-bit vectors.
5284   if (!SVOp->getSimpleValueType(0).is128BitVector())
5285     return false;
5286
5287   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5288       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5289     return true;
5290
5291   return false;
5292 }
5293
5294 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5295 ///
5296 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5297                                        unsigned NumNonZero, unsigned NumZero,
5298                                        SelectionDAG &DAG,
5299                                        const X86Subtarget* Subtarget,
5300                                        const TargetLowering &TLI) {
5301   if (NumNonZero > 8)
5302     return SDValue();
5303
5304   SDLoc dl(Op);
5305   SDValue V(0, 0);
5306   bool First = true;
5307   for (unsigned i = 0; i < 16; ++i) {
5308     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5309     if (ThisIsNonZero && First) {
5310       if (NumZero)
5311         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5312       else
5313         V = DAG.getUNDEF(MVT::v8i16);
5314       First = false;
5315     }
5316
5317     if ((i & 1) != 0) {
5318       SDValue ThisElt(0, 0), LastElt(0, 0);
5319       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5320       if (LastIsNonZero) {
5321         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5322                               MVT::i16, Op.getOperand(i-1));
5323       }
5324       if (ThisIsNonZero) {
5325         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5326         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5327                               ThisElt, DAG.getConstant(8, MVT::i8));
5328         if (LastIsNonZero)
5329           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5330       } else
5331         ThisElt = LastElt;
5332
5333       if (ThisElt.getNode())
5334         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5335                         DAG.getIntPtrConstant(i/2));
5336     }
5337   }
5338
5339   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5340 }
5341
5342 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5343 ///
5344 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5345                                      unsigned NumNonZero, unsigned NumZero,
5346                                      SelectionDAG &DAG,
5347                                      const X86Subtarget* Subtarget,
5348                                      const TargetLowering &TLI) {
5349   if (NumNonZero > 4)
5350     return SDValue();
5351
5352   SDLoc dl(Op);
5353   SDValue V(0, 0);
5354   bool First = true;
5355   for (unsigned i = 0; i < 8; ++i) {
5356     bool isNonZero = (NonZeros & (1 << i)) != 0;
5357     if (isNonZero) {
5358       if (First) {
5359         if (NumZero)
5360           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5361         else
5362           V = DAG.getUNDEF(MVT::v8i16);
5363         First = false;
5364       }
5365       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5366                       MVT::v8i16, V, Op.getOperand(i),
5367                       DAG.getIntPtrConstant(i));
5368     }
5369   }
5370
5371   return V;
5372 }
5373
5374 /// getVShift - Return a vector logical shift node.
5375 ///
5376 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5377                          unsigned NumBits, SelectionDAG &DAG,
5378                          const TargetLowering &TLI, SDLoc dl) {
5379   assert(VT.is128BitVector() && "Unknown type for VShift");
5380   EVT ShVT = MVT::v2i64;
5381   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5382   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5383   return DAG.getNode(ISD::BITCAST, dl, VT,
5384                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5385                              DAG.getConstant(NumBits,
5386                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5387 }
5388
5389 static SDValue
5390 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5391
5392   // Check if the scalar load can be widened into a vector load. And if
5393   // the address is "base + cst" see if the cst can be "absorbed" into
5394   // the shuffle mask.
5395   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5396     SDValue Ptr = LD->getBasePtr();
5397     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5398       return SDValue();
5399     EVT PVT = LD->getValueType(0);
5400     if (PVT != MVT::i32 && PVT != MVT::f32)
5401       return SDValue();
5402
5403     int FI = -1;
5404     int64_t Offset = 0;
5405     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5406       FI = FINode->getIndex();
5407       Offset = 0;
5408     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5409                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5410       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5411       Offset = Ptr.getConstantOperandVal(1);
5412       Ptr = Ptr.getOperand(0);
5413     } else {
5414       return SDValue();
5415     }
5416
5417     // FIXME: 256-bit vector instructions don't require a strict alignment,
5418     // improve this code to support it better.
5419     unsigned RequiredAlign = VT.getSizeInBits()/8;
5420     SDValue Chain = LD->getChain();
5421     // Make sure the stack object alignment is at least 16 or 32.
5422     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5423     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5424       if (MFI->isFixedObjectIndex(FI)) {
5425         // Can't change the alignment. FIXME: It's possible to compute
5426         // the exact stack offset and reference FI + adjust offset instead.
5427         // If someone *really* cares about this. That's the way to implement it.
5428         return SDValue();
5429       } else {
5430         MFI->setObjectAlignment(FI, RequiredAlign);
5431       }
5432     }
5433
5434     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5435     // Ptr + (Offset & ~15).
5436     if (Offset < 0)
5437       return SDValue();
5438     if ((Offset % RequiredAlign) & 3)
5439       return SDValue();
5440     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5441     if (StartOffset)
5442       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5443                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5444
5445     int EltNo = (Offset - StartOffset) >> 2;
5446     unsigned NumElems = VT.getVectorNumElements();
5447
5448     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5449     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5450                              LD->getPointerInfo().getWithOffset(StartOffset),
5451                              false, false, false, 0);
5452
5453     SmallVector<int, 8> Mask;
5454     for (unsigned i = 0; i != NumElems; ++i)
5455       Mask.push_back(EltNo);
5456
5457     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5458   }
5459
5460   return SDValue();
5461 }
5462
5463 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5464 /// vector of type 'VT', see if the elements can be replaced by a single large
5465 /// load which has the same value as a build_vector whose operands are 'elts'.
5466 ///
5467 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5468 ///
5469 /// FIXME: we'd also like to handle the case where the last elements are zero
5470 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5471 /// There's even a handy isZeroNode for that purpose.
5472 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5473                                         SDLoc &DL, SelectionDAG &DAG,
5474                                         bool isAfterLegalize) {
5475   EVT EltVT = VT.getVectorElementType();
5476   unsigned NumElems = Elts.size();
5477
5478   LoadSDNode *LDBase = NULL;
5479   unsigned LastLoadedElt = -1U;
5480
5481   // For each element in the initializer, see if we've found a load or an undef.
5482   // If we don't find an initial load element, or later load elements are
5483   // non-consecutive, bail out.
5484   for (unsigned i = 0; i < NumElems; ++i) {
5485     SDValue Elt = Elts[i];
5486
5487     if (!Elt.getNode() ||
5488         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5489       return SDValue();
5490     if (!LDBase) {
5491       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5492         return SDValue();
5493       LDBase = cast<LoadSDNode>(Elt.getNode());
5494       LastLoadedElt = i;
5495       continue;
5496     }
5497     if (Elt.getOpcode() == ISD::UNDEF)
5498       continue;
5499
5500     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5501     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5502       return SDValue();
5503     LastLoadedElt = i;
5504   }
5505
5506   // If we have found an entire vector of loads and undefs, then return a large
5507   // load of the entire vector width starting at the base pointer.  If we found
5508   // consecutive loads for the low half, generate a vzext_load node.
5509   if (LastLoadedElt == NumElems - 1) {
5510
5511     if (isAfterLegalize &&
5512         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5513       return SDValue();
5514
5515     SDValue NewLd = SDValue();
5516
5517     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5518       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5519                           LDBase->getPointerInfo(),
5520                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5521                           LDBase->isInvariant(), 0);
5522     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5523                         LDBase->getPointerInfo(),
5524                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5525                         LDBase->isInvariant(), LDBase->getAlignment());
5526
5527     if (LDBase->hasAnyUseOfValue(1)) {
5528       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5529                                      SDValue(LDBase, 1),
5530                                      SDValue(NewLd.getNode(), 1));
5531       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5532       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5533                              SDValue(NewLd.getNode(), 1));
5534     }
5535
5536     return NewLd;
5537   }
5538   if (NumElems == 4 && LastLoadedElt == 1 &&
5539       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5540     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5541     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5542     SDValue ResNode =
5543         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5544                                 array_lengthof(Ops), MVT::i64,
5545                                 LDBase->getPointerInfo(),
5546                                 LDBase->getAlignment(),
5547                                 false/*isVolatile*/, true/*ReadMem*/,
5548                                 false/*WriteMem*/);
5549
5550     // Make sure the newly-created LOAD is in the same position as LDBase in
5551     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5552     // update uses of LDBase's output chain to use the TokenFactor.
5553     if (LDBase->hasAnyUseOfValue(1)) {
5554       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5555                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5556       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5557       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5558                              SDValue(ResNode.getNode(), 1));
5559     }
5560
5561     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5562   }
5563   return SDValue();
5564 }
5565
5566 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5567 /// to generate a splat value for the following cases:
5568 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5569 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5570 /// a scalar load, or a constant.
5571 /// The VBROADCAST node is returned when a pattern is found,
5572 /// or SDValue() otherwise.
5573 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5574                                     SelectionDAG &DAG) {
5575   if (!Subtarget->hasFp256())
5576     return SDValue();
5577
5578   MVT VT = Op.getSimpleValueType();
5579   SDLoc dl(Op);
5580
5581   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5582          "Unsupported vector type for broadcast.");
5583
5584   SDValue Ld;
5585   bool ConstSplatVal;
5586
5587   switch (Op.getOpcode()) {
5588     default:
5589       // Unknown pattern found.
5590       return SDValue();
5591
5592     case ISD::BUILD_VECTOR: {
5593       // The BUILD_VECTOR node must be a splat.
5594       if (!isSplatVector(Op.getNode()))
5595         return SDValue();
5596
5597       Ld = Op.getOperand(0);
5598       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5599                      Ld.getOpcode() == ISD::ConstantFP);
5600
5601       // The suspected load node has several users. Make sure that all
5602       // of its users are from the BUILD_VECTOR node.
5603       // Constants may have multiple users.
5604       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5605         return SDValue();
5606       break;
5607     }
5608
5609     case ISD::VECTOR_SHUFFLE: {
5610       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5611
5612       // Shuffles must have a splat mask where the first element is
5613       // broadcasted.
5614       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5615         return SDValue();
5616
5617       SDValue Sc = Op.getOperand(0);
5618       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5619           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5620
5621         if (!Subtarget->hasInt256())
5622           return SDValue();
5623
5624         // Use the register form of the broadcast instruction available on AVX2.
5625         if (VT.getSizeInBits() >= 256)
5626           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5627         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5628       }
5629
5630       Ld = Sc.getOperand(0);
5631       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5632                        Ld.getOpcode() == ISD::ConstantFP);
5633
5634       // The scalar_to_vector node and the suspected
5635       // load node must have exactly one user.
5636       // Constants may have multiple users.
5637
5638       // AVX-512 has register version of the broadcast
5639       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5640         Ld.getValueType().getSizeInBits() >= 32;
5641       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5642           !hasRegVer))
5643         return SDValue();
5644       break;
5645     }
5646   }
5647
5648   bool IsGE256 = (VT.getSizeInBits() >= 256);
5649
5650   // Handle the broadcasting a single constant scalar from the constant pool
5651   // into a vector. On Sandybridge it is still better to load a constant vector
5652   // from the constant pool and not to broadcast it from a scalar.
5653   if (ConstSplatVal && Subtarget->hasInt256()) {
5654     EVT CVT = Ld.getValueType();
5655     assert(!CVT.isVector() && "Must not broadcast a vector type");
5656     unsigned ScalarSize = CVT.getSizeInBits();
5657
5658     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5659       const Constant *C = 0;
5660       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5661         C = CI->getConstantIntValue();
5662       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5663         C = CF->getConstantFPValue();
5664
5665       assert(C && "Invalid constant type");
5666
5667       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5668       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5669       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5670       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5671                        MachinePointerInfo::getConstantPool(),
5672                        false, false, false, Alignment);
5673
5674       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5675     }
5676   }
5677
5678   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5679   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5680
5681   // Handle AVX2 in-register broadcasts.
5682   if (!IsLoad && Subtarget->hasInt256() &&
5683       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5684     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5685
5686   // The scalar source must be a normal load.
5687   if (!IsLoad)
5688     return SDValue();
5689
5690   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5691     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5692
5693   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5694   // double since there is no vbroadcastsd xmm
5695   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5696     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5697       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5698   }
5699
5700   // Unsupported broadcast.
5701   return SDValue();
5702 }
5703
5704 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5705   MVT VT = Op.getSimpleValueType();
5706
5707   // Skip if insert_vec_elt is not supported.
5708   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5709   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5710     return SDValue();
5711
5712   SDLoc DL(Op);
5713   unsigned NumElems = Op.getNumOperands();
5714
5715   SDValue VecIn1;
5716   SDValue VecIn2;
5717   SmallVector<unsigned, 4> InsertIndices;
5718   SmallVector<int, 8> Mask(NumElems, -1);
5719
5720   for (unsigned i = 0; i != NumElems; ++i) {
5721     unsigned Opc = Op.getOperand(i).getOpcode();
5722
5723     if (Opc == ISD::UNDEF)
5724       continue;
5725
5726     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5727       // Quit if more than 1 elements need inserting.
5728       if (InsertIndices.size() > 1)
5729         return SDValue();
5730
5731       InsertIndices.push_back(i);
5732       continue;
5733     }
5734
5735     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5736     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5737
5738     // Quit if extracted from vector of different type.
5739     if (ExtractedFromVec.getValueType() != VT)
5740       return SDValue();
5741
5742     // Quit if non-constant index.
5743     if (!isa<ConstantSDNode>(ExtIdx))
5744       return SDValue();
5745
5746     if (VecIn1.getNode() == 0)
5747       VecIn1 = ExtractedFromVec;
5748     else if (VecIn1 != ExtractedFromVec) {
5749       if (VecIn2.getNode() == 0)
5750         VecIn2 = ExtractedFromVec;
5751       else if (VecIn2 != ExtractedFromVec)
5752         // Quit if more than 2 vectors to shuffle
5753         return SDValue();
5754     }
5755
5756     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5757
5758     if (ExtractedFromVec == VecIn1)
5759       Mask[i] = Idx;
5760     else if (ExtractedFromVec == VecIn2)
5761       Mask[i] = Idx + NumElems;
5762   }
5763
5764   if (VecIn1.getNode() == 0)
5765     return SDValue();
5766
5767   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5768   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5769   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5770     unsigned Idx = InsertIndices[i];
5771     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5772                      DAG.getIntPtrConstant(Idx));
5773   }
5774
5775   return NV;
5776 }
5777
5778 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5779 SDValue
5780 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5781
5782   MVT VT = Op.getSimpleValueType();
5783   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5784          "Unexpected type in LowerBUILD_VECTORvXi1!");
5785
5786   SDLoc dl(Op);
5787   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5788     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5789     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5790                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5791     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5792                        Ops, VT.getVectorNumElements());
5793   }
5794
5795   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5796     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5797     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5798                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5799     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5800                        Ops, VT.getVectorNumElements());
5801   }
5802
5803   bool AllContants = true;
5804   uint64_t Immediate = 0;
5805   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5806     SDValue In = Op.getOperand(idx);
5807     if (In.getOpcode() == ISD::UNDEF)
5808       continue;
5809     if (!isa<ConstantSDNode>(In)) {
5810       AllContants = false;
5811       break;
5812     }
5813     if (cast<ConstantSDNode>(In)->getZExtValue())
5814       Immediate |= (1ULL << idx);
5815   }
5816
5817   if (AllContants) {
5818     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5819       DAG.getConstant(Immediate, MVT::i16));
5820     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5821                        DAG.getIntPtrConstant(0));
5822   }
5823
5824   // Splat vector (with undefs)
5825   SDValue In = Op.getOperand(0);
5826   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5827     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5828       llvm_unreachable("Unsupported predicate operation");
5829   }
5830
5831   SDValue EFLAGS, X86CC;
5832   if (In.getOpcode() == ISD::SETCC) {
5833     SDValue Op0 = In.getOperand(0);
5834     SDValue Op1 = In.getOperand(1);
5835     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5836     bool isFP = Op1.getValueType().isFloatingPoint();
5837     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5838
5839     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5840
5841     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5842     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5843     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5844   } else if (In.getOpcode() == X86ISD::SETCC) {
5845     X86CC = In.getOperand(0);
5846     EFLAGS = In.getOperand(1);
5847   } else {
5848     // The algorithm:
5849     //   Bit1 = In & 0x1
5850     //   if (Bit1 != 0)
5851     //     ZF = 0
5852     //   else
5853     //     ZF = 1
5854     //   if (ZF == 0)
5855     //     res = allOnes ### CMOVNE -1, %res
5856     //   else
5857     //     res = allZero
5858     MVT InVT = In.getSimpleValueType();
5859     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5860     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5861     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5862   }
5863
5864   if (VT == MVT::v16i1) {
5865     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5866     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5867     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5868           Cst0, Cst1, X86CC, EFLAGS);
5869     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5870   }
5871
5872   if (VT == MVT::v8i1) {
5873     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5874     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5875     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5876           Cst0, Cst1, X86CC, EFLAGS);
5877     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5878     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5879   }
5880   llvm_unreachable("Unsupported predicate operation");
5881 }
5882
5883 SDValue
5884 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5885   SDLoc dl(Op);
5886
5887   MVT VT = Op.getSimpleValueType();
5888   MVT ExtVT = VT.getVectorElementType();
5889   unsigned NumElems = Op.getNumOperands();
5890
5891   // Generate vectors for predicate vectors.
5892   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5893     return LowerBUILD_VECTORvXi1(Op, DAG);
5894
5895   // Vectors containing all zeros can be matched by pxor and xorps later
5896   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5897     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5898     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5899     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5900       return Op;
5901
5902     return getZeroVector(VT, Subtarget, DAG, dl);
5903   }
5904
5905   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5906   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5907   // vpcmpeqd on 256-bit vectors.
5908   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5909     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5910       return Op;
5911
5912     if (!VT.is512BitVector())
5913       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5914   }
5915
5916   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5917   if (Broadcast.getNode())
5918     return Broadcast;
5919
5920   unsigned EVTBits = ExtVT.getSizeInBits();
5921
5922   unsigned NumZero  = 0;
5923   unsigned NumNonZero = 0;
5924   unsigned NonZeros = 0;
5925   bool IsAllConstants = true;
5926   SmallSet<SDValue, 8> Values;
5927   for (unsigned i = 0; i < NumElems; ++i) {
5928     SDValue Elt = Op.getOperand(i);
5929     if (Elt.getOpcode() == ISD::UNDEF)
5930       continue;
5931     Values.insert(Elt);
5932     if (Elt.getOpcode() != ISD::Constant &&
5933         Elt.getOpcode() != ISD::ConstantFP)
5934       IsAllConstants = false;
5935     if (X86::isZeroNode(Elt))
5936       NumZero++;
5937     else {
5938       NonZeros |= (1 << i);
5939       NumNonZero++;
5940     }
5941   }
5942
5943   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5944   if (NumNonZero == 0)
5945     return DAG.getUNDEF(VT);
5946
5947   // Special case for single non-zero, non-undef, element.
5948   if (NumNonZero == 1) {
5949     unsigned Idx = countTrailingZeros(NonZeros);
5950     SDValue Item = Op.getOperand(Idx);
5951
5952     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5953     // the value are obviously zero, truncate the value to i32 and do the
5954     // insertion that way.  Only do this if the value is non-constant or if the
5955     // value is a constant being inserted into element 0.  It is cheaper to do
5956     // a constant pool load than it is to do a movd + shuffle.
5957     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5958         (!IsAllConstants || Idx == 0)) {
5959       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5960         // Handle SSE only.
5961         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5962         EVT VecVT = MVT::v4i32;
5963         unsigned VecElts = 4;
5964
5965         // Truncate the value (which may itself be a constant) to i32, and
5966         // convert it to a vector with movd (S2V+shuffle to zero extend).
5967         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5968         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5969         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5970
5971         // Now we have our 32-bit value zero extended in the low element of
5972         // a vector.  If Idx != 0, swizzle it into place.
5973         if (Idx != 0) {
5974           SmallVector<int, 4> Mask;
5975           Mask.push_back(Idx);
5976           for (unsigned i = 1; i != VecElts; ++i)
5977             Mask.push_back(i);
5978           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5979                                       &Mask[0]);
5980         }
5981         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5982       }
5983     }
5984
5985     // If we have a constant or non-constant insertion into the low element of
5986     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5987     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5988     // depending on what the source datatype is.
5989     if (Idx == 0) {
5990       if (NumZero == 0)
5991         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5992
5993       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5994           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5995         if (VT.is256BitVector() || VT.is512BitVector()) {
5996           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5997           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5998                              Item, DAG.getIntPtrConstant(0));
5999         }
6000         assert(VT.is128BitVector() && "Expected an SSE value type!");
6001         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6002         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
6003         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6004       }
6005
6006       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
6007         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
6008         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
6009         if (VT.is256BitVector()) {
6010           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
6011           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
6012         } else {
6013           assert(VT.is128BitVector() && "Expected an SSE value type!");
6014           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
6015         }
6016         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
6017       }
6018     }
6019
6020     // Is it a vector logical left shift?
6021     if (NumElems == 2 && Idx == 1 &&
6022         X86::isZeroNode(Op.getOperand(0)) &&
6023         !X86::isZeroNode(Op.getOperand(1))) {
6024       unsigned NumBits = VT.getSizeInBits();
6025       return getVShift(true, VT,
6026                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6027                                    VT, Op.getOperand(1)),
6028                        NumBits/2, DAG, *this, dl);
6029     }
6030
6031     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
6032       return SDValue();
6033
6034     // Otherwise, if this is a vector with i32 or f32 elements, and the element
6035     // is a non-constant being inserted into an element other than the low one,
6036     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
6037     // movd/movss) to move this into the low element, then shuffle it into
6038     // place.
6039     if (EVTBits == 32) {
6040       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6041
6042       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6043       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6044       SmallVector<int, 8> MaskVec;
6045       for (unsigned i = 0; i != NumElems; ++i)
6046         MaskVec.push_back(i == Idx ? 0 : 1);
6047       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6048     }
6049   }
6050
6051   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6052   if (Values.size() == 1) {
6053     if (EVTBits == 32) {
6054       // Instead of a shuffle like this:
6055       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6056       // Check if it's possible to issue this instead.
6057       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6058       unsigned Idx = countTrailingZeros(NonZeros);
6059       SDValue Item = Op.getOperand(Idx);
6060       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6061         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6062     }
6063     return SDValue();
6064   }
6065
6066   // A vector full of immediates; various special cases are already
6067   // handled, so this is best done with a single constant-pool load.
6068   if (IsAllConstants)
6069     return SDValue();
6070
6071   // For AVX-length vectors, build the individual 128-bit pieces and use
6072   // shuffles to put them in place.
6073   if (VT.is256BitVector()) {
6074     SmallVector<SDValue, 32> V;
6075     for (unsigned i = 0; i != NumElems; ++i)
6076       V.push_back(Op.getOperand(i));
6077
6078     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6079
6080     // Build both the lower and upper subvector.
6081     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
6082     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
6083                                 NumElems/2);
6084
6085     // Recreate the wider vector with the lower and upper part.
6086     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6087   }
6088
6089   // Let legalizer expand 2-wide build_vectors.
6090   if (EVTBits == 64) {
6091     if (NumNonZero == 1) {
6092       // One half is zero or undef.
6093       unsigned Idx = countTrailingZeros(NonZeros);
6094       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6095                                  Op.getOperand(Idx));
6096       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6097     }
6098     return SDValue();
6099   }
6100
6101   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6102   if (EVTBits == 8 && NumElems == 16) {
6103     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6104                                         Subtarget, *this);
6105     if (V.getNode()) return V;
6106   }
6107
6108   if (EVTBits == 16 && NumElems == 8) {
6109     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6110                                       Subtarget, *this);
6111     if (V.getNode()) return V;
6112   }
6113
6114   // If element VT is == 32 bits, turn it into a number of shuffles.
6115   SmallVector<SDValue, 8> V(NumElems);
6116   if (NumElems == 4 && NumZero > 0) {
6117     for (unsigned i = 0; i < 4; ++i) {
6118       bool isZero = !(NonZeros & (1 << i));
6119       if (isZero)
6120         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6121       else
6122         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6123     }
6124
6125     for (unsigned i = 0; i < 2; ++i) {
6126       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6127         default: break;
6128         case 0:
6129           V[i] = V[i*2];  // Must be a zero vector.
6130           break;
6131         case 1:
6132           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6133           break;
6134         case 2:
6135           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6136           break;
6137         case 3:
6138           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6139           break;
6140       }
6141     }
6142
6143     bool Reverse1 = (NonZeros & 0x3) == 2;
6144     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6145     int MaskVec[] = {
6146       Reverse1 ? 1 : 0,
6147       Reverse1 ? 0 : 1,
6148       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6149       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6150     };
6151     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6152   }
6153
6154   if (Values.size() > 1 && VT.is128BitVector()) {
6155     // Check for a build vector of consecutive loads.
6156     for (unsigned i = 0; i < NumElems; ++i)
6157       V[i] = Op.getOperand(i);
6158
6159     // Check for elements which are consecutive loads.
6160     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6161     if (LD.getNode())
6162       return LD;
6163
6164     // Check for a build vector from mostly shuffle plus few inserting.
6165     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6166     if (Sh.getNode())
6167       return Sh;
6168
6169     // For SSE 4.1, use insertps to put the high elements into the low element.
6170     if (getSubtarget()->hasSSE41()) {
6171       SDValue Result;
6172       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6173         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6174       else
6175         Result = DAG.getUNDEF(VT);
6176
6177       for (unsigned i = 1; i < NumElems; ++i) {
6178         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6179         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6180                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6181       }
6182       return Result;
6183     }
6184
6185     // Otherwise, expand into a number of unpckl*, start by extending each of
6186     // our (non-undef) elements to the full vector width with the element in the
6187     // bottom slot of the vector (which generates no code for SSE).
6188     for (unsigned i = 0; i < NumElems; ++i) {
6189       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6190         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6191       else
6192         V[i] = DAG.getUNDEF(VT);
6193     }
6194
6195     // Next, we iteratively mix elements, e.g. for v4f32:
6196     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6197     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6198     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6199     unsigned EltStride = NumElems >> 1;
6200     while (EltStride != 0) {
6201       for (unsigned i = 0; i < EltStride; ++i) {
6202         // If V[i+EltStride] is undef and this is the first round of mixing,
6203         // then it is safe to just drop this shuffle: V[i] is already in the
6204         // right place, the one element (since it's the first round) being
6205         // inserted as undef can be dropped.  This isn't safe for successive
6206         // rounds because they will permute elements within both vectors.
6207         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6208             EltStride == NumElems/2)
6209           continue;
6210
6211         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6212       }
6213       EltStride >>= 1;
6214     }
6215     return V[0];
6216   }
6217   return SDValue();
6218 }
6219
6220 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6221 // to create 256-bit vectors from two other 128-bit ones.
6222 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6223   SDLoc dl(Op);
6224   MVT ResVT = Op.getSimpleValueType();
6225
6226   assert((ResVT.is256BitVector() ||
6227           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6228
6229   SDValue V1 = Op.getOperand(0);
6230   SDValue V2 = Op.getOperand(1);
6231   unsigned NumElems = ResVT.getVectorNumElements();
6232   if(ResVT.is256BitVector())
6233     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6234
6235   if (Op.getNumOperands() == 4) {
6236     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6237                                 ResVT.getVectorNumElements()/2);
6238     SDValue V3 = Op.getOperand(2);
6239     SDValue V4 = Op.getOperand(3);
6240     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6241       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6242   }
6243   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6244 }
6245
6246 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6247   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6248   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6249          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6250           Op.getNumOperands() == 4)));
6251
6252   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6253   // from two other 128-bit ones.
6254
6255   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6256   return LowerAVXCONCAT_VECTORS(Op, DAG);
6257 }
6258
6259 // Try to lower a shuffle node into a simple blend instruction.
6260 static SDValue
6261 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6262                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6263   SDValue V1 = SVOp->getOperand(0);
6264   SDValue V2 = SVOp->getOperand(1);
6265   SDLoc dl(SVOp);
6266   MVT VT = SVOp->getSimpleValueType(0);
6267   MVT EltVT = VT.getVectorElementType();
6268   unsigned NumElems = VT.getVectorNumElements();
6269
6270   // There is no blend with immediate in AVX-512.
6271   if (VT.is512BitVector())
6272     return SDValue();
6273
6274   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6275     return SDValue();
6276   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6277     return SDValue();
6278
6279   // Check the mask for BLEND and build the value.
6280   unsigned MaskValue = 0;
6281   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6282   unsigned NumLanes = (NumElems-1)/8 + 1;
6283   unsigned NumElemsInLane = NumElems / NumLanes;
6284
6285   // Blend for v16i16 should be symetric for the both lanes.
6286   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6287
6288     int SndLaneEltIdx = (NumLanes == 2) ?
6289       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6290     int EltIdx = SVOp->getMaskElt(i);
6291
6292     if ((EltIdx < 0 || EltIdx == (int)i) &&
6293         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6294       continue;
6295
6296     if (((unsigned)EltIdx == (i + NumElems)) &&
6297         (SndLaneEltIdx < 0 ||
6298          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6299       MaskValue |= (1<<i);
6300     else
6301       return SDValue();
6302   }
6303
6304   // Convert i32 vectors to floating point if it is not AVX2.
6305   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6306   MVT BlendVT = VT;
6307   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6308     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6309                                NumElems);
6310     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6311     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6312   }
6313
6314   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6315                             DAG.getConstant(MaskValue, MVT::i32));
6316   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6317 }
6318
6319 // v8i16 shuffles - Prefer shuffles in the following order:
6320 // 1. [all]   pshuflw, pshufhw, optional move
6321 // 2. [ssse3] 1 x pshufb
6322 // 3. [ssse3] 2 x pshufb + 1 x por
6323 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6324 static SDValue
6325 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6326                          SelectionDAG &DAG) {
6327   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6328   SDValue V1 = SVOp->getOperand(0);
6329   SDValue V2 = SVOp->getOperand(1);
6330   SDLoc dl(SVOp);
6331   SmallVector<int, 8> MaskVals;
6332
6333   // Determine if more than 1 of the words in each of the low and high quadwords
6334   // of the result come from the same quadword of one of the two inputs.  Undef
6335   // mask values count as coming from any quadword, for better codegen.
6336   unsigned LoQuad[] = { 0, 0, 0, 0 };
6337   unsigned HiQuad[] = { 0, 0, 0, 0 };
6338   std::bitset<4> InputQuads;
6339   for (unsigned i = 0; i < 8; ++i) {
6340     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6341     int EltIdx = SVOp->getMaskElt(i);
6342     MaskVals.push_back(EltIdx);
6343     if (EltIdx < 0) {
6344       ++Quad[0];
6345       ++Quad[1];
6346       ++Quad[2];
6347       ++Quad[3];
6348       continue;
6349     }
6350     ++Quad[EltIdx / 4];
6351     InputQuads.set(EltIdx / 4);
6352   }
6353
6354   int BestLoQuad = -1;
6355   unsigned MaxQuad = 1;
6356   for (unsigned i = 0; i < 4; ++i) {
6357     if (LoQuad[i] > MaxQuad) {
6358       BestLoQuad = i;
6359       MaxQuad = LoQuad[i];
6360     }
6361   }
6362
6363   int BestHiQuad = -1;
6364   MaxQuad = 1;
6365   for (unsigned i = 0; i < 4; ++i) {
6366     if (HiQuad[i] > MaxQuad) {
6367       BestHiQuad = i;
6368       MaxQuad = HiQuad[i];
6369     }
6370   }
6371
6372   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6373   // of the two input vectors, shuffle them into one input vector so only a
6374   // single pshufb instruction is necessary. If There are more than 2 input
6375   // quads, disable the next transformation since it does not help SSSE3.
6376   bool V1Used = InputQuads[0] || InputQuads[1];
6377   bool V2Used = InputQuads[2] || InputQuads[3];
6378   if (Subtarget->hasSSSE3()) {
6379     if (InputQuads.count() == 2 && V1Used && V2Used) {
6380       BestLoQuad = InputQuads[0] ? 0 : 1;
6381       BestHiQuad = InputQuads[2] ? 2 : 3;
6382     }
6383     if (InputQuads.count() > 2) {
6384       BestLoQuad = -1;
6385       BestHiQuad = -1;
6386     }
6387   }
6388
6389   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6390   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6391   // words from all 4 input quadwords.
6392   SDValue NewV;
6393   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6394     int MaskV[] = {
6395       BestLoQuad < 0 ? 0 : BestLoQuad,
6396       BestHiQuad < 0 ? 1 : BestHiQuad
6397     };
6398     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6399                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6400                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6401     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6402
6403     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6404     // source words for the shuffle, to aid later transformations.
6405     bool AllWordsInNewV = true;
6406     bool InOrder[2] = { true, true };
6407     for (unsigned i = 0; i != 8; ++i) {
6408       int idx = MaskVals[i];
6409       if (idx != (int)i)
6410         InOrder[i/4] = false;
6411       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6412         continue;
6413       AllWordsInNewV = false;
6414       break;
6415     }
6416
6417     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6418     if (AllWordsInNewV) {
6419       for (int i = 0; i != 8; ++i) {
6420         int idx = MaskVals[i];
6421         if (idx < 0)
6422           continue;
6423         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6424         if ((idx != i) && idx < 4)
6425           pshufhw = false;
6426         if ((idx != i) && idx > 3)
6427           pshuflw = false;
6428       }
6429       V1 = NewV;
6430       V2Used = false;
6431       BestLoQuad = 0;
6432       BestHiQuad = 1;
6433     }
6434
6435     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6436     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6437     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6438       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6439       unsigned TargetMask = 0;
6440       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6441                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6442       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6443       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6444                              getShufflePSHUFLWImmediate(SVOp);
6445       V1 = NewV.getOperand(0);
6446       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6447     }
6448   }
6449
6450   // Promote splats to a larger type which usually leads to more efficient code.
6451   // FIXME: Is this true if pshufb is available?
6452   if (SVOp->isSplat())
6453     return PromoteSplat(SVOp, DAG);
6454
6455   // If we have SSSE3, and all words of the result are from 1 input vector,
6456   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6457   // is present, fall back to case 4.
6458   if (Subtarget->hasSSSE3()) {
6459     SmallVector<SDValue,16> pshufbMask;
6460
6461     // If we have elements from both input vectors, set the high bit of the
6462     // shuffle mask element to zero out elements that come from V2 in the V1
6463     // mask, and elements that come from V1 in the V2 mask, so that the two
6464     // results can be OR'd together.
6465     bool TwoInputs = V1Used && V2Used;
6466     for (unsigned i = 0; i != 8; ++i) {
6467       int EltIdx = MaskVals[i] * 2;
6468       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6469       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6470       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6471       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6472     }
6473     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6474     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6475                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6476                                  MVT::v16i8, &pshufbMask[0], 16));
6477     if (!TwoInputs)
6478       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6479
6480     // Calculate the shuffle mask for the second input, shuffle it, and
6481     // OR it with the first shuffled input.
6482     pshufbMask.clear();
6483     for (unsigned i = 0; i != 8; ++i) {
6484       int EltIdx = MaskVals[i] * 2;
6485       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6486       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6487       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6488       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6489     }
6490     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6491     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6492                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6493                                  MVT::v16i8, &pshufbMask[0], 16));
6494     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6495     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6496   }
6497
6498   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6499   // and update MaskVals with new element order.
6500   std::bitset<8> InOrder;
6501   if (BestLoQuad >= 0) {
6502     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6503     for (int i = 0; i != 4; ++i) {
6504       int idx = MaskVals[i];
6505       if (idx < 0) {
6506         InOrder.set(i);
6507       } else if ((idx / 4) == BestLoQuad) {
6508         MaskV[i] = idx & 3;
6509         InOrder.set(i);
6510       }
6511     }
6512     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6513                                 &MaskV[0]);
6514
6515     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6516       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6517       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6518                                   NewV.getOperand(0),
6519                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6520     }
6521   }
6522
6523   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6524   // and update MaskVals with the new element order.
6525   if (BestHiQuad >= 0) {
6526     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6527     for (unsigned i = 4; i != 8; ++i) {
6528       int idx = MaskVals[i];
6529       if (idx < 0) {
6530         InOrder.set(i);
6531       } else if ((idx / 4) == BestHiQuad) {
6532         MaskV[i] = (idx & 3) + 4;
6533         InOrder.set(i);
6534       }
6535     }
6536     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6537                                 &MaskV[0]);
6538
6539     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6540       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6541       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6542                                   NewV.getOperand(0),
6543                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6544     }
6545   }
6546
6547   // In case BestHi & BestLo were both -1, which means each quadword has a word
6548   // from each of the four input quadwords, calculate the InOrder bitvector now
6549   // before falling through to the insert/extract cleanup.
6550   if (BestLoQuad == -1 && BestHiQuad == -1) {
6551     NewV = V1;
6552     for (int i = 0; i != 8; ++i)
6553       if (MaskVals[i] < 0 || MaskVals[i] == i)
6554         InOrder.set(i);
6555   }
6556
6557   // The other elements are put in the right place using pextrw and pinsrw.
6558   for (unsigned i = 0; i != 8; ++i) {
6559     if (InOrder[i])
6560       continue;
6561     int EltIdx = MaskVals[i];
6562     if (EltIdx < 0)
6563       continue;
6564     SDValue ExtOp = (EltIdx < 8) ?
6565       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6566                   DAG.getIntPtrConstant(EltIdx)) :
6567       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6568                   DAG.getIntPtrConstant(EltIdx - 8));
6569     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6570                        DAG.getIntPtrConstant(i));
6571   }
6572   return NewV;
6573 }
6574
6575 // v16i8 shuffles - Prefer shuffles in the following order:
6576 // 1. [ssse3] 1 x pshufb
6577 // 2. [ssse3] 2 x pshufb + 1 x por
6578 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6579 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6580                                         const X86Subtarget* Subtarget,
6581                                         SelectionDAG &DAG) {
6582   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6583   SDValue V1 = SVOp->getOperand(0);
6584   SDValue V2 = SVOp->getOperand(1);
6585   SDLoc dl(SVOp);
6586   ArrayRef<int> MaskVals = SVOp->getMask();
6587
6588   // Promote splats to a larger type which usually leads to more efficient code.
6589   // FIXME: Is this true if pshufb is available?
6590   if (SVOp->isSplat())
6591     return PromoteSplat(SVOp, DAG);
6592
6593   // If we have SSSE3, case 1 is generated when all result bytes come from
6594   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6595   // present, fall back to case 3.
6596
6597   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6598   if (Subtarget->hasSSSE3()) {
6599     SmallVector<SDValue,16> pshufbMask;
6600
6601     // If all result elements are from one input vector, then only translate
6602     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6603     //
6604     // Otherwise, we have elements from both input vectors, and must zero out
6605     // elements that come from V2 in the first mask, and V1 in the second mask
6606     // so that we can OR them together.
6607     for (unsigned i = 0; i != 16; ++i) {
6608       int EltIdx = MaskVals[i];
6609       if (EltIdx < 0 || EltIdx >= 16)
6610         EltIdx = 0x80;
6611       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6612     }
6613     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6614                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6615                                  MVT::v16i8, &pshufbMask[0], 16));
6616
6617     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6618     // the 2nd operand if it's undefined or zero.
6619     if (V2.getOpcode() == ISD::UNDEF ||
6620         ISD::isBuildVectorAllZeros(V2.getNode()))
6621       return V1;
6622
6623     // Calculate the shuffle mask for the second input, shuffle it, and
6624     // OR it with the first shuffled input.
6625     pshufbMask.clear();
6626     for (unsigned i = 0; i != 16; ++i) {
6627       int EltIdx = MaskVals[i];
6628       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6629       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6630     }
6631     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6632                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6633                                  MVT::v16i8, &pshufbMask[0], 16));
6634     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6635   }
6636
6637   // No SSSE3 - Calculate in place words and then fix all out of place words
6638   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6639   // the 16 different words that comprise the two doublequadword input vectors.
6640   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6641   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6642   SDValue NewV = V1;
6643   for (int i = 0; i != 8; ++i) {
6644     int Elt0 = MaskVals[i*2];
6645     int Elt1 = MaskVals[i*2+1];
6646
6647     // This word of the result is all undef, skip it.
6648     if (Elt0 < 0 && Elt1 < 0)
6649       continue;
6650
6651     // This word of the result is already in the correct place, skip it.
6652     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6653       continue;
6654
6655     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6656     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6657     SDValue InsElt;
6658
6659     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6660     // using a single extract together, load it and store it.
6661     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6662       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6663                            DAG.getIntPtrConstant(Elt1 / 2));
6664       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6665                         DAG.getIntPtrConstant(i));
6666       continue;
6667     }
6668
6669     // If Elt1 is defined, extract it from the appropriate source.  If the
6670     // source byte is not also odd, shift the extracted word left 8 bits
6671     // otherwise clear the bottom 8 bits if we need to do an or.
6672     if (Elt1 >= 0) {
6673       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6674                            DAG.getIntPtrConstant(Elt1 / 2));
6675       if ((Elt1 & 1) == 0)
6676         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6677                              DAG.getConstant(8,
6678                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6679       else if (Elt0 >= 0)
6680         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6681                              DAG.getConstant(0xFF00, MVT::i16));
6682     }
6683     // If Elt0 is defined, extract it from the appropriate source.  If the
6684     // source byte is not also even, shift the extracted word right 8 bits. If
6685     // Elt1 was also defined, OR the extracted values together before
6686     // inserting them in the result.
6687     if (Elt0 >= 0) {
6688       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6689                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6690       if ((Elt0 & 1) != 0)
6691         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6692                               DAG.getConstant(8,
6693                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6694       else if (Elt1 >= 0)
6695         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6696                              DAG.getConstant(0x00FF, MVT::i16));
6697       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6698                          : InsElt0;
6699     }
6700     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6701                        DAG.getIntPtrConstant(i));
6702   }
6703   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6704 }
6705
6706 // v32i8 shuffles - Translate to VPSHUFB if possible.
6707 static
6708 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6709                                  const X86Subtarget *Subtarget,
6710                                  SelectionDAG &DAG) {
6711   MVT VT = SVOp->getSimpleValueType(0);
6712   SDValue V1 = SVOp->getOperand(0);
6713   SDValue V2 = SVOp->getOperand(1);
6714   SDLoc dl(SVOp);
6715   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6716
6717   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6718   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6719   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6720
6721   // VPSHUFB may be generated if
6722   // (1) one of input vector is undefined or zeroinitializer.
6723   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6724   // And (2) the mask indexes don't cross the 128-bit lane.
6725   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6726       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6727     return SDValue();
6728
6729   if (V1IsAllZero && !V2IsAllZero) {
6730     CommuteVectorShuffleMask(MaskVals, 32);
6731     V1 = V2;
6732   }
6733   SmallVector<SDValue, 32> pshufbMask;
6734   for (unsigned i = 0; i != 32; i++) {
6735     int EltIdx = MaskVals[i];
6736     if (EltIdx < 0 || EltIdx >= 32)
6737       EltIdx = 0x80;
6738     else {
6739       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6740         // Cross lane is not allowed.
6741         return SDValue();
6742       EltIdx &= 0xf;
6743     }
6744     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6745   }
6746   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6747                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6748                                   MVT::v32i8, &pshufbMask[0], 32));
6749 }
6750
6751 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6752 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6753 /// done when every pair / quad of shuffle mask elements point to elements in
6754 /// the right sequence. e.g.
6755 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6756 static
6757 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6758                                  SelectionDAG &DAG) {
6759   MVT VT = SVOp->getSimpleValueType(0);
6760   SDLoc dl(SVOp);
6761   unsigned NumElems = VT.getVectorNumElements();
6762   MVT NewVT;
6763   unsigned Scale;
6764   switch (VT.SimpleTy) {
6765   default: llvm_unreachable("Unexpected!");
6766   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6767   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6768   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6769   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6770   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6771   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6772   }
6773
6774   SmallVector<int, 8> MaskVec;
6775   for (unsigned i = 0; i != NumElems; i += Scale) {
6776     int StartIdx = -1;
6777     for (unsigned j = 0; j != Scale; ++j) {
6778       int EltIdx = SVOp->getMaskElt(i+j);
6779       if (EltIdx < 0)
6780         continue;
6781       if (StartIdx < 0)
6782         StartIdx = (EltIdx / Scale);
6783       if (EltIdx != (int)(StartIdx*Scale + j))
6784         return SDValue();
6785     }
6786     MaskVec.push_back(StartIdx);
6787   }
6788
6789   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6790   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6791   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6792 }
6793
6794 /// getVZextMovL - Return a zero-extending vector move low node.
6795 ///
6796 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6797                             SDValue SrcOp, SelectionDAG &DAG,
6798                             const X86Subtarget *Subtarget, SDLoc dl) {
6799   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6800     LoadSDNode *LD = NULL;
6801     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6802       LD = dyn_cast<LoadSDNode>(SrcOp);
6803     if (!LD) {
6804       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6805       // instead.
6806       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6807       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6808           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6809           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6810           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6811         // PR2108
6812         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6813         return DAG.getNode(ISD::BITCAST, dl, VT,
6814                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6815                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6816                                                    OpVT,
6817                                                    SrcOp.getOperand(0)
6818                                                           .getOperand(0))));
6819       }
6820     }
6821   }
6822
6823   return DAG.getNode(ISD::BITCAST, dl, VT,
6824                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6825                                  DAG.getNode(ISD::BITCAST, dl,
6826                                              OpVT, SrcOp)));
6827 }
6828
6829 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6830 /// which could not be matched by any known target speficic shuffle
6831 static SDValue
6832 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6833
6834   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6835   if (NewOp.getNode())
6836     return NewOp;
6837
6838   MVT VT = SVOp->getSimpleValueType(0);
6839
6840   unsigned NumElems = VT.getVectorNumElements();
6841   unsigned NumLaneElems = NumElems / 2;
6842
6843   SDLoc dl(SVOp);
6844   MVT EltVT = VT.getVectorElementType();
6845   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6846   SDValue Output[2];
6847
6848   SmallVector<int, 16> Mask;
6849   for (unsigned l = 0; l < 2; ++l) {
6850     // Build a shuffle mask for the output, discovering on the fly which
6851     // input vectors to use as shuffle operands (recorded in InputUsed).
6852     // If building a suitable shuffle vector proves too hard, then bail
6853     // out with UseBuildVector set.
6854     bool UseBuildVector = false;
6855     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6856     unsigned LaneStart = l * NumLaneElems;
6857     for (unsigned i = 0; i != NumLaneElems; ++i) {
6858       // The mask element.  This indexes into the input.
6859       int Idx = SVOp->getMaskElt(i+LaneStart);
6860       if (Idx < 0) {
6861         // the mask element does not index into any input vector.
6862         Mask.push_back(-1);
6863         continue;
6864       }
6865
6866       // The input vector this mask element indexes into.
6867       int Input = Idx / NumLaneElems;
6868
6869       // Turn the index into an offset from the start of the input vector.
6870       Idx -= Input * NumLaneElems;
6871
6872       // Find or create a shuffle vector operand to hold this input.
6873       unsigned OpNo;
6874       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6875         if (InputUsed[OpNo] == Input)
6876           // This input vector is already an operand.
6877           break;
6878         if (InputUsed[OpNo] < 0) {
6879           // Create a new operand for this input vector.
6880           InputUsed[OpNo] = Input;
6881           break;
6882         }
6883       }
6884
6885       if (OpNo >= array_lengthof(InputUsed)) {
6886         // More than two input vectors used!  Give up on trying to create a
6887         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6888         UseBuildVector = true;
6889         break;
6890       }
6891
6892       // Add the mask index for the new shuffle vector.
6893       Mask.push_back(Idx + OpNo * NumLaneElems);
6894     }
6895
6896     if (UseBuildVector) {
6897       SmallVector<SDValue, 16> SVOps;
6898       for (unsigned i = 0; i != NumLaneElems; ++i) {
6899         // The mask element.  This indexes into the input.
6900         int Idx = SVOp->getMaskElt(i+LaneStart);
6901         if (Idx < 0) {
6902           SVOps.push_back(DAG.getUNDEF(EltVT));
6903           continue;
6904         }
6905
6906         // The input vector this mask element indexes into.
6907         int Input = Idx / NumElems;
6908
6909         // Turn the index into an offset from the start of the input vector.
6910         Idx -= Input * NumElems;
6911
6912         // Extract the vector element by hand.
6913         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6914                                     SVOp->getOperand(Input),
6915                                     DAG.getIntPtrConstant(Idx)));
6916       }
6917
6918       // Construct the output using a BUILD_VECTOR.
6919       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6920                               SVOps.size());
6921     } else if (InputUsed[0] < 0) {
6922       // No input vectors were used! The result is undefined.
6923       Output[l] = DAG.getUNDEF(NVT);
6924     } else {
6925       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6926                                         (InputUsed[0] % 2) * NumLaneElems,
6927                                         DAG, dl);
6928       // If only one input was used, use an undefined vector for the other.
6929       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6930         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6931                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6932       // At least one input vector was used. Create a new shuffle vector.
6933       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6934     }
6935
6936     Mask.clear();
6937   }
6938
6939   // Concatenate the result back
6940   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6941 }
6942
6943 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6944 /// 4 elements, and match them with several different shuffle types.
6945 static SDValue
6946 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6947   SDValue V1 = SVOp->getOperand(0);
6948   SDValue V2 = SVOp->getOperand(1);
6949   SDLoc dl(SVOp);
6950   MVT VT = SVOp->getSimpleValueType(0);
6951
6952   assert(VT.is128BitVector() && "Unsupported vector size");
6953
6954   std::pair<int, int> Locs[4];
6955   int Mask1[] = { -1, -1, -1, -1 };
6956   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6957
6958   unsigned NumHi = 0;
6959   unsigned NumLo = 0;
6960   for (unsigned i = 0; i != 4; ++i) {
6961     int Idx = PermMask[i];
6962     if (Idx < 0) {
6963       Locs[i] = std::make_pair(-1, -1);
6964     } else {
6965       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6966       if (Idx < 4) {
6967         Locs[i] = std::make_pair(0, NumLo);
6968         Mask1[NumLo] = Idx;
6969         NumLo++;
6970       } else {
6971         Locs[i] = std::make_pair(1, NumHi);
6972         if (2+NumHi < 4)
6973           Mask1[2+NumHi] = Idx;
6974         NumHi++;
6975       }
6976     }
6977   }
6978
6979   if (NumLo <= 2 && NumHi <= 2) {
6980     // If no more than two elements come from either vector. This can be
6981     // implemented with two shuffles. First shuffle gather the elements.
6982     // The second shuffle, which takes the first shuffle as both of its
6983     // vector operands, put the elements into the right order.
6984     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6985
6986     int Mask2[] = { -1, -1, -1, -1 };
6987
6988     for (unsigned i = 0; i != 4; ++i)
6989       if (Locs[i].first != -1) {
6990         unsigned Idx = (i < 2) ? 0 : 4;
6991         Idx += Locs[i].first * 2 + Locs[i].second;
6992         Mask2[i] = Idx;
6993       }
6994
6995     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6996   }
6997
6998   if (NumLo == 3 || NumHi == 3) {
6999     // Otherwise, we must have three elements from one vector, call it X, and
7000     // one element from the other, call it Y.  First, use a shufps to build an
7001     // intermediate vector with the one element from Y and the element from X
7002     // that will be in the same half in the final destination (the indexes don't
7003     // matter). Then, use a shufps to build the final vector, taking the half
7004     // containing the element from Y from the intermediate, and the other half
7005     // from X.
7006     if (NumHi == 3) {
7007       // Normalize it so the 3 elements come from V1.
7008       CommuteVectorShuffleMask(PermMask, 4);
7009       std::swap(V1, V2);
7010     }
7011
7012     // Find the element from V2.
7013     unsigned HiIndex;
7014     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
7015       int Val = PermMask[HiIndex];
7016       if (Val < 0)
7017         continue;
7018       if (Val >= 4)
7019         break;
7020     }
7021
7022     Mask1[0] = PermMask[HiIndex];
7023     Mask1[1] = -1;
7024     Mask1[2] = PermMask[HiIndex^1];
7025     Mask1[3] = -1;
7026     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7027
7028     if (HiIndex >= 2) {
7029       Mask1[0] = PermMask[0];
7030       Mask1[1] = PermMask[1];
7031       Mask1[2] = HiIndex & 1 ? 6 : 4;
7032       Mask1[3] = HiIndex & 1 ? 4 : 6;
7033       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
7034     }
7035
7036     Mask1[0] = HiIndex & 1 ? 2 : 0;
7037     Mask1[1] = HiIndex & 1 ? 0 : 2;
7038     Mask1[2] = PermMask[2];
7039     Mask1[3] = PermMask[3];
7040     if (Mask1[2] >= 0)
7041       Mask1[2] += 4;
7042     if (Mask1[3] >= 0)
7043       Mask1[3] += 4;
7044     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
7045   }
7046
7047   // Break it into (shuffle shuffle_hi, shuffle_lo).
7048   int LoMask[] = { -1, -1, -1, -1 };
7049   int HiMask[] = { -1, -1, -1, -1 };
7050
7051   int *MaskPtr = LoMask;
7052   unsigned MaskIdx = 0;
7053   unsigned LoIdx = 0;
7054   unsigned HiIdx = 2;
7055   for (unsigned i = 0; i != 4; ++i) {
7056     if (i == 2) {
7057       MaskPtr = HiMask;
7058       MaskIdx = 1;
7059       LoIdx = 0;
7060       HiIdx = 2;
7061     }
7062     int Idx = PermMask[i];
7063     if (Idx < 0) {
7064       Locs[i] = std::make_pair(-1, -1);
7065     } else if (Idx < 4) {
7066       Locs[i] = std::make_pair(MaskIdx, LoIdx);
7067       MaskPtr[LoIdx] = Idx;
7068       LoIdx++;
7069     } else {
7070       Locs[i] = std::make_pair(MaskIdx, HiIdx);
7071       MaskPtr[HiIdx] = Idx;
7072       HiIdx++;
7073     }
7074   }
7075
7076   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
7077   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
7078   int MaskOps[] = { -1, -1, -1, -1 };
7079   for (unsigned i = 0; i != 4; ++i)
7080     if (Locs[i].first != -1)
7081       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
7082   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
7083 }
7084
7085 static bool MayFoldVectorLoad(SDValue V) {
7086   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
7087     V = V.getOperand(0);
7088
7089   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
7090     V = V.getOperand(0);
7091   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
7092       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
7093     // BUILD_VECTOR (load), undef
7094     V = V.getOperand(0);
7095
7096   return MayFoldLoad(V);
7097 }
7098
7099 static
7100 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
7101   MVT VT = Op.getSimpleValueType();
7102
7103   // Canonizalize to v2f64.
7104   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7105   return DAG.getNode(ISD::BITCAST, dl, VT,
7106                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7107                                           V1, DAG));
7108 }
7109
7110 static
7111 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
7112                         bool HasSSE2) {
7113   SDValue V1 = Op.getOperand(0);
7114   SDValue V2 = Op.getOperand(1);
7115   MVT VT = Op.getSimpleValueType();
7116
7117   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7118
7119   if (HasSSE2 && VT == MVT::v2f64)
7120     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7121
7122   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7123   return DAG.getNode(ISD::BITCAST, dl, VT,
7124                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7125                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7126                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7127 }
7128
7129 static
7130 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7131   SDValue V1 = Op.getOperand(0);
7132   SDValue V2 = Op.getOperand(1);
7133   MVT VT = Op.getSimpleValueType();
7134
7135   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7136          "unsupported shuffle type");
7137
7138   if (V2.getOpcode() == ISD::UNDEF)
7139     V2 = V1;
7140
7141   // v4i32 or v4f32
7142   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7143 }
7144
7145 static
7146 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7147   SDValue V1 = Op.getOperand(0);
7148   SDValue V2 = Op.getOperand(1);
7149   MVT VT = Op.getSimpleValueType();
7150   unsigned NumElems = VT.getVectorNumElements();
7151
7152   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7153   // operand of these instructions is only memory, so check if there's a
7154   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7155   // same masks.
7156   bool CanFoldLoad = false;
7157
7158   // Trivial case, when V2 comes from a load.
7159   if (MayFoldVectorLoad(V2))
7160     CanFoldLoad = true;
7161
7162   // When V1 is a load, it can be folded later into a store in isel, example:
7163   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7164   //    turns into:
7165   //  (MOVLPSmr addr:$src1, VR128:$src2)
7166   // So, recognize this potential and also use MOVLPS or MOVLPD
7167   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7168     CanFoldLoad = true;
7169
7170   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7171   if (CanFoldLoad) {
7172     if (HasSSE2 && NumElems == 2)
7173       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7174
7175     if (NumElems == 4)
7176       // If we don't care about the second element, proceed to use movss.
7177       if (SVOp->getMaskElt(1) != -1)
7178         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7179   }
7180
7181   // movl and movlp will both match v2i64, but v2i64 is never matched by
7182   // movl earlier because we make it strict to avoid messing with the movlp load
7183   // folding logic (see the code above getMOVLP call). Match it here then,
7184   // this is horrible, but will stay like this until we move all shuffle
7185   // matching to x86 specific nodes. Note that for the 1st condition all
7186   // types are matched with movsd.
7187   if (HasSSE2) {
7188     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7189     // as to remove this logic from here, as much as possible
7190     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7191       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7192     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7193   }
7194
7195   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7196
7197   // Invert the operand order and use SHUFPS to match it.
7198   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7199                               getShuffleSHUFImmediate(SVOp), DAG);
7200 }
7201
7202 // Reduce a vector shuffle to zext.
7203 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7204                                     SelectionDAG &DAG) {
7205   // PMOVZX is only available from SSE41.
7206   if (!Subtarget->hasSSE41())
7207     return SDValue();
7208
7209   MVT VT = Op.getSimpleValueType();
7210
7211   // Only AVX2 support 256-bit vector integer extending.
7212   if (!Subtarget->hasInt256() && VT.is256BitVector())
7213     return SDValue();
7214
7215   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7216   SDLoc DL(Op);
7217   SDValue V1 = Op.getOperand(0);
7218   SDValue V2 = Op.getOperand(1);
7219   unsigned NumElems = VT.getVectorNumElements();
7220
7221   // Extending is an unary operation and the element type of the source vector
7222   // won't be equal to or larger than i64.
7223   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7224       VT.getVectorElementType() == MVT::i64)
7225     return SDValue();
7226
7227   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7228   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7229   while ((1U << Shift) < NumElems) {
7230     if (SVOp->getMaskElt(1U << Shift) == 1)
7231       break;
7232     Shift += 1;
7233     // The maximal ratio is 8, i.e. from i8 to i64.
7234     if (Shift > 3)
7235       return SDValue();
7236   }
7237
7238   // Check the shuffle mask.
7239   unsigned Mask = (1U << Shift) - 1;
7240   for (unsigned i = 0; i != NumElems; ++i) {
7241     int EltIdx = SVOp->getMaskElt(i);
7242     if ((i & Mask) != 0 && EltIdx != -1)
7243       return SDValue();
7244     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7245       return SDValue();
7246   }
7247
7248   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7249   MVT NeVT = MVT::getIntegerVT(NBits);
7250   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7251
7252   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7253     return SDValue();
7254
7255   // Simplify the operand as it's prepared to be fed into shuffle.
7256   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7257   if (V1.getOpcode() == ISD::BITCAST &&
7258       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7259       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7260       V1.getOperand(0).getOperand(0)
7261         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7262     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7263     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7264     ConstantSDNode *CIdx =
7265       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7266     // If it's foldable, i.e. normal load with single use, we will let code
7267     // selection to fold it. Otherwise, we will short the conversion sequence.
7268     if (CIdx && CIdx->getZExtValue() == 0 &&
7269         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7270       MVT FullVT = V.getSimpleValueType();
7271       MVT V1VT = V1.getSimpleValueType();
7272       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7273         // The "ext_vec_elt" node is wider than the result node.
7274         // In this case we should extract subvector from V.
7275         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7276         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7277         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7278                                         FullVT.getVectorNumElements()/Ratio);
7279         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7280                         DAG.getIntPtrConstant(0));
7281       }
7282       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7283     }
7284   }
7285
7286   return DAG.getNode(ISD::BITCAST, DL, VT,
7287                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7288 }
7289
7290 static SDValue
7291 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7292                        SelectionDAG &DAG) {
7293   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7294   MVT VT = Op.getSimpleValueType();
7295   SDLoc dl(Op);
7296   SDValue V1 = Op.getOperand(0);
7297   SDValue V2 = Op.getOperand(1);
7298
7299   if (isZeroShuffle(SVOp))
7300     return getZeroVector(VT, Subtarget, DAG, dl);
7301
7302   // Handle splat operations
7303   if (SVOp->isSplat()) {
7304     // Use vbroadcast whenever the splat comes from a foldable load
7305     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7306     if (Broadcast.getNode())
7307       return Broadcast;
7308   }
7309
7310   // Check integer expanding shuffles.
7311   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7312   if (NewOp.getNode())
7313     return NewOp;
7314
7315   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7316   // do it!
7317   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7318       VT == MVT::v16i16 || VT == MVT::v32i8) {
7319     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7320     if (NewOp.getNode())
7321       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7322   } else if ((VT == MVT::v4i32 ||
7323              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7324     // FIXME: Figure out a cleaner way to do this.
7325     // Try to make use of movq to zero out the top part.
7326     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7327       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7328       if (NewOp.getNode()) {
7329         MVT NewVT = NewOp.getSimpleValueType();
7330         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7331                                NewVT, true, false))
7332           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7333                               DAG, Subtarget, dl);
7334       }
7335     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7336       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7337       if (NewOp.getNode()) {
7338         MVT NewVT = NewOp.getSimpleValueType();
7339         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7340           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7341                               DAG, Subtarget, dl);
7342       }
7343     }
7344   }
7345   return SDValue();
7346 }
7347
7348 SDValue
7349 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7350   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7351   SDValue V1 = Op.getOperand(0);
7352   SDValue V2 = Op.getOperand(1);
7353   MVT VT = Op.getSimpleValueType();
7354   SDLoc dl(Op);
7355   unsigned NumElems = VT.getVectorNumElements();
7356   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7357   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7358   bool V1IsSplat = false;
7359   bool V2IsSplat = false;
7360   bool HasSSE2 = Subtarget->hasSSE2();
7361   bool HasFp256    = Subtarget->hasFp256();
7362   bool HasInt256   = Subtarget->hasInt256();
7363   MachineFunction &MF = DAG.getMachineFunction();
7364   bool OptForSize = MF.getFunction()->getAttributes().
7365     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7366
7367   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7368
7369   if (V1IsUndef && V2IsUndef)
7370     return DAG.getUNDEF(VT);
7371
7372   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7373
7374   // Vector shuffle lowering takes 3 steps:
7375   //
7376   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7377   //    narrowing and commutation of operands should be handled.
7378   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7379   //    shuffle nodes.
7380   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7381   //    so the shuffle can be broken into other shuffles and the legalizer can
7382   //    try the lowering again.
7383   //
7384   // The general idea is that no vector_shuffle operation should be left to
7385   // be matched during isel, all of them must be converted to a target specific
7386   // node here.
7387
7388   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7389   // narrowing and commutation of operands should be handled. The actual code
7390   // doesn't include all of those, work in progress...
7391   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7392   if (NewOp.getNode())
7393     return NewOp;
7394
7395   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7396
7397   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7398   // unpckh_undef). Only use pshufd if speed is more important than size.
7399   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7400     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7401   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7402     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7403
7404   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7405       V2IsUndef && MayFoldVectorLoad(V1))
7406     return getMOVDDup(Op, dl, V1, DAG);
7407
7408   if (isMOVHLPS_v_undef_Mask(M, VT))
7409     return getMOVHighToLow(Op, dl, DAG);
7410
7411   // Use to match splats
7412   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7413       (VT == MVT::v2f64 || VT == MVT::v2i64))
7414     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7415
7416   if (isPSHUFDMask(M, VT)) {
7417     // The actual implementation will match the mask in the if above and then
7418     // during isel it can match several different instructions, not only pshufd
7419     // as its name says, sad but true, emulate the behavior for now...
7420     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7421       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7422
7423     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7424
7425     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7426       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7427
7428     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7429       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7430                                   DAG);
7431
7432     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7433                                 TargetMask, DAG);
7434   }
7435
7436   if (isPALIGNRMask(M, VT, Subtarget))
7437     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7438                                 getShufflePALIGNRImmediate(SVOp),
7439                                 DAG);
7440
7441   // Check if this can be converted into a logical shift.
7442   bool isLeft = false;
7443   unsigned ShAmt = 0;
7444   SDValue ShVal;
7445   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7446   if (isShift && ShVal.hasOneUse()) {
7447     // If the shifted value has multiple uses, it may be cheaper to use
7448     // v_set0 + movlhps or movhlps, etc.
7449     MVT EltVT = VT.getVectorElementType();
7450     ShAmt *= EltVT.getSizeInBits();
7451     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7452   }
7453
7454   if (isMOVLMask(M, VT)) {
7455     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7456       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7457     if (!isMOVLPMask(M, VT)) {
7458       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7459         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7460
7461       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7462         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7463     }
7464   }
7465
7466   // FIXME: fold these into legal mask.
7467   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7468     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7469
7470   if (isMOVHLPSMask(M, VT))
7471     return getMOVHighToLow(Op, dl, DAG);
7472
7473   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7474     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7475
7476   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7477     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7478
7479   if (isMOVLPMask(M, VT))
7480     return getMOVLP(Op, dl, DAG, HasSSE2);
7481
7482   if (ShouldXformToMOVHLPS(M, VT) ||
7483       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7484     return CommuteVectorShuffle(SVOp, DAG);
7485
7486   if (isShift) {
7487     // No better options. Use a vshldq / vsrldq.
7488     MVT EltVT = VT.getVectorElementType();
7489     ShAmt *= EltVT.getSizeInBits();
7490     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7491   }
7492
7493   bool Commuted = false;
7494   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7495   // 1,1,1,1 -> v8i16 though.
7496   V1IsSplat = isSplatVector(V1.getNode());
7497   V2IsSplat = isSplatVector(V2.getNode());
7498
7499   // Canonicalize the splat or undef, if present, to be on the RHS.
7500   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7501     CommuteVectorShuffleMask(M, NumElems);
7502     std::swap(V1, V2);
7503     std::swap(V1IsSplat, V2IsSplat);
7504     Commuted = true;
7505   }
7506
7507   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7508     // Shuffling low element of v1 into undef, just return v1.
7509     if (V2IsUndef)
7510       return V1;
7511     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7512     // the instruction selector will not match, so get a canonical MOVL with
7513     // swapped operands to undo the commute.
7514     return getMOVL(DAG, dl, VT, V2, V1);
7515   }
7516
7517   if (isUNPCKLMask(M, VT, HasInt256))
7518     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7519
7520   if (isUNPCKHMask(M, VT, HasInt256))
7521     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7522
7523   if (V2IsSplat) {
7524     // Normalize mask so all entries that point to V2 points to its first
7525     // element then try to match unpck{h|l} again. If match, return a
7526     // new vector_shuffle with the corrected mask.p
7527     SmallVector<int, 8> NewMask(M.begin(), M.end());
7528     NormalizeMask(NewMask, NumElems);
7529     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7530       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7531     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7532       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7533   }
7534
7535   if (Commuted) {
7536     // Commute is back and try unpck* again.
7537     // FIXME: this seems wrong.
7538     CommuteVectorShuffleMask(M, NumElems);
7539     std::swap(V1, V2);
7540     std::swap(V1IsSplat, V2IsSplat);
7541     Commuted = false;
7542
7543     if (isUNPCKLMask(M, VT, HasInt256))
7544       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7545
7546     if (isUNPCKHMask(M, VT, HasInt256))
7547       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7548   }
7549
7550   // Normalize the node to match x86 shuffle ops if needed
7551   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7552     return CommuteVectorShuffle(SVOp, DAG);
7553
7554   // The checks below are all present in isShuffleMaskLegal, but they are
7555   // inlined here right now to enable us to directly emit target specific
7556   // nodes, and remove one by one until they don't return Op anymore.
7557
7558   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7559       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7560     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7561       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7562   }
7563
7564   if (isPSHUFHWMask(M, VT, HasInt256))
7565     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7566                                 getShufflePSHUFHWImmediate(SVOp),
7567                                 DAG);
7568
7569   if (isPSHUFLWMask(M, VT, HasInt256))
7570     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7571                                 getShufflePSHUFLWImmediate(SVOp),
7572                                 DAG);
7573
7574   if (isSHUFPMask(M, VT))
7575     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7576                                 getShuffleSHUFImmediate(SVOp), DAG);
7577
7578   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7579     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7580   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7581     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7582
7583   //===--------------------------------------------------------------------===//
7584   // Generate target specific nodes for 128 or 256-bit shuffles only
7585   // supported in the AVX instruction set.
7586   //
7587
7588   // Handle VMOVDDUPY permutations
7589   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7590     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7591
7592   // Handle VPERMILPS/D* permutations
7593   if (isVPERMILPMask(M, VT)) {
7594     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7595       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7596                                   getShuffleSHUFImmediate(SVOp), DAG);
7597     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7598                                 getShuffleSHUFImmediate(SVOp), DAG);
7599   }
7600
7601   // Handle VPERM2F128/VPERM2I128 permutations
7602   if (isVPERM2X128Mask(M, VT, HasFp256))
7603     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7604                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7605
7606   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7607   if (BlendOp.getNode())
7608     return BlendOp;
7609
7610   unsigned Imm8;
7611   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7612     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7613
7614   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7615       VT.is512BitVector()) {
7616     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7617     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7618     SmallVector<SDValue, 16> permclMask;
7619     for (unsigned i = 0; i != NumElems; ++i) {
7620       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7621     }
7622
7623     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7624                                 &permclMask[0], NumElems);
7625     if (V2IsUndef)
7626       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7627       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7628                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7629     return DAG.getNode(X86ISD::VPERMV3, dl, VT, V1,
7630                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V2);
7631   }
7632
7633   //===--------------------------------------------------------------------===//
7634   // Since no target specific shuffle was selected for this generic one,
7635   // lower it into other known shuffles. FIXME: this isn't true yet, but
7636   // this is the plan.
7637   //
7638
7639   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7640   if (VT == MVT::v8i16) {
7641     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7642     if (NewOp.getNode())
7643       return NewOp;
7644   }
7645
7646   if (VT == MVT::v16i8) {
7647     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7648     if (NewOp.getNode())
7649       return NewOp;
7650   }
7651
7652   if (VT == MVT::v32i8) {
7653     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7654     if (NewOp.getNode())
7655       return NewOp;
7656   }
7657
7658   // Handle all 128-bit wide vectors with 4 elements, and match them with
7659   // several different shuffle types.
7660   if (NumElems == 4 && VT.is128BitVector())
7661     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7662
7663   // Handle general 256-bit shuffles
7664   if (VT.is256BitVector())
7665     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7666
7667   return SDValue();
7668 }
7669
7670 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7671   MVT VT = Op.getSimpleValueType();
7672   SDLoc dl(Op);
7673
7674   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7675     return SDValue();
7676
7677   if (VT.getSizeInBits() == 8) {
7678     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7679                                   Op.getOperand(0), Op.getOperand(1));
7680     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7681                                   DAG.getValueType(VT));
7682     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7683   }
7684
7685   if (VT.getSizeInBits() == 16) {
7686     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7687     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7688     if (Idx == 0)
7689       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7690                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7691                                      DAG.getNode(ISD::BITCAST, dl,
7692                                                  MVT::v4i32,
7693                                                  Op.getOperand(0)),
7694                                      Op.getOperand(1)));
7695     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7696                                   Op.getOperand(0), Op.getOperand(1));
7697     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7698                                   DAG.getValueType(VT));
7699     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7700   }
7701
7702   if (VT == MVT::f32) {
7703     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7704     // the result back to FR32 register. It's only worth matching if the
7705     // result has a single use which is a store or a bitcast to i32.  And in
7706     // the case of a store, it's not worth it if the index is a constant 0,
7707     // because a MOVSSmr can be used instead, which is smaller and faster.
7708     if (!Op.hasOneUse())
7709       return SDValue();
7710     SDNode *User = *Op.getNode()->use_begin();
7711     if ((User->getOpcode() != ISD::STORE ||
7712          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7713           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7714         (User->getOpcode() != ISD::BITCAST ||
7715          User->getValueType(0) != MVT::i32))
7716       return SDValue();
7717     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7718                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7719                                               Op.getOperand(0)),
7720                                               Op.getOperand(1));
7721     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7722   }
7723
7724   if (VT == MVT::i32 || VT == MVT::i64) {
7725     // ExtractPS/pextrq works with constant index.
7726     if (isa<ConstantSDNode>(Op.getOperand(1)))
7727       return Op;
7728   }
7729   return SDValue();
7730 }
7731
7732 /// Extract one bit from mask vector, like v16i1 or v8i1.
7733 /// AVX-512 feature.
7734 static SDValue ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) {
7735   SDValue Vec = Op.getOperand(0);
7736   SDLoc dl(Vec);
7737   MVT VecVT = Vec.getSimpleValueType();
7738   SDValue Idx = Op.getOperand(1);
7739   MVT EltVT = Op.getSimpleValueType();
7740
7741   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
7742
7743   // variable index can't be handled in mask registers,
7744   // extend vector to VR512
7745   if (!isa<ConstantSDNode>(Idx)) {
7746     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
7747     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
7748     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
7749                               ExtVT.getVectorElementType(), Ext, Idx);
7750     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
7751   }
7752
7753   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7754   if (IdxVal) {
7755     unsigned MaxSift = VecVT.getSizeInBits() - 1;
7756     Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
7757                       DAG.getConstant(MaxSift - IdxVal, MVT::i8));
7758     Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
7759                       DAG.getConstant(MaxSift, MVT::i8));
7760   }
7761   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i1, Vec,
7762                        DAG.getIntPtrConstant(0));
7763 }
7764
7765 SDValue
7766 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7767                                            SelectionDAG &DAG) const {
7768   SDLoc dl(Op);
7769   SDValue Vec = Op.getOperand(0);
7770   MVT VecVT = Vec.getSimpleValueType();
7771   SDValue Idx = Op.getOperand(1);
7772
7773   if (Op.getSimpleValueType() == MVT::i1)
7774     return ExtractBitFromMaskVector(Op, DAG);
7775
7776   if (!isa<ConstantSDNode>(Idx)) {
7777     if (VecVT.is512BitVector() ||
7778         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7779          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7780
7781       MVT MaskEltVT =
7782         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7783       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7784                                     MaskEltVT.getSizeInBits());
7785
7786       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
7787       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7788                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7789                                 Idx, DAG.getConstant(0, getPointerTy()));
7790       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7791       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7792                         Perm, DAG.getConstant(0, getPointerTy()));
7793     }
7794     return SDValue();
7795   }
7796
7797   // If this is a 256-bit vector result, first extract the 128-bit vector and
7798   // then extract the element from the 128-bit vector.
7799   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7800
7801     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7802     // Get the 128-bit vector.
7803     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7804     MVT EltVT = VecVT.getVectorElementType();
7805
7806     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7807
7808     //if (IdxVal >= NumElems/2)
7809     //  IdxVal -= NumElems/2;
7810     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7811     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7812                        DAG.getConstant(IdxVal, MVT::i32));
7813   }
7814
7815   assert(VecVT.is128BitVector() && "Unexpected vector length");
7816
7817   if (Subtarget->hasSSE41()) {
7818     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7819     if (Res.getNode())
7820       return Res;
7821   }
7822
7823   MVT VT = Op.getSimpleValueType();
7824   // TODO: handle v16i8.
7825   if (VT.getSizeInBits() == 16) {
7826     SDValue Vec = Op.getOperand(0);
7827     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7828     if (Idx == 0)
7829       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7830                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7831                                      DAG.getNode(ISD::BITCAST, dl,
7832                                                  MVT::v4i32, Vec),
7833                                      Op.getOperand(1)));
7834     // Transform it so it match pextrw which produces a 32-bit result.
7835     MVT EltVT = MVT::i32;
7836     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7837                                   Op.getOperand(0), Op.getOperand(1));
7838     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7839                                   DAG.getValueType(VT));
7840     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7841   }
7842
7843   if (VT.getSizeInBits() == 32) {
7844     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7845     if (Idx == 0)
7846       return Op;
7847
7848     // SHUFPS the element to the lowest double word, then movss.
7849     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7850     MVT VVT = Op.getOperand(0).getSimpleValueType();
7851     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7852                                        DAG.getUNDEF(VVT), Mask);
7853     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7854                        DAG.getIntPtrConstant(0));
7855   }
7856
7857   if (VT.getSizeInBits() == 64) {
7858     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7859     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7860     //        to match extract_elt for f64.
7861     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7862     if (Idx == 0)
7863       return Op;
7864
7865     // UNPCKHPD the element to the lowest double word, then movsd.
7866     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7867     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7868     int Mask[2] = { 1, -1 };
7869     MVT VVT = Op.getOperand(0).getSimpleValueType();
7870     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7871                                        DAG.getUNDEF(VVT), Mask);
7872     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7873                        DAG.getIntPtrConstant(0));
7874   }
7875
7876   return SDValue();
7877 }
7878
7879 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7880   MVT VT = Op.getSimpleValueType();
7881   MVT EltVT = VT.getVectorElementType();
7882   SDLoc dl(Op);
7883
7884   SDValue N0 = Op.getOperand(0);
7885   SDValue N1 = Op.getOperand(1);
7886   SDValue N2 = Op.getOperand(2);
7887
7888   if (!VT.is128BitVector())
7889     return SDValue();
7890
7891   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7892       isa<ConstantSDNode>(N2)) {
7893     unsigned Opc;
7894     if (VT == MVT::v8i16)
7895       Opc = X86ISD::PINSRW;
7896     else if (VT == MVT::v16i8)
7897       Opc = X86ISD::PINSRB;
7898     else
7899       Opc = X86ISD::PINSRB;
7900
7901     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7902     // argument.
7903     if (N1.getValueType() != MVT::i32)
7904       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7905     if (N2.getValueType() != MVT::i32)
7906       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7907     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7908   }
7909
7910   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7911     // Bits [7:6] of the constant are the source select.  This will always be
7912     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7913     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7914     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7915     // Bits [5:4] of the constant are the destination select.  This is the
7916     //  value of the incoming immediate.
7917     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7918     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7919     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7920     // Create this as a scalar to vector..
7921     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7922     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7923   }
7924
7925   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7926     // PINSR* works with constant index.
7927     return Op;
7928   }
7929   return SDValue();
7930 }
7931
7932 SDValue
7933 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7934   MVT VT = Op.getSimpleValueType();
7935   MVT EltVT = VT.getVectorElementType();
7936
7937   SDLoc dl(Op);
7938   SDValue N0 = Op.getOperand(0);
7939   SDValue N1 = Op.getOperand(1);
7940   SDValue N2 = Op.getOperand(2);
7941
7942   // If this is a 256-bit vector result, first extract the 128-bit vector,
7943   // insert the element into the extracted half and then place it back.
7944   if (VT.is256BitVector() || VT.is512BitVector()) {
7945     if (!isa<ConstantSDNode>(N2))
7946       return SDValue();
7947
7948     // Get the desired 128-bit vector half.
7949     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7950     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7951
7952     // Insert the element into the desired half.
7953     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7954     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7955
7956     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7957                     DAG.getConstant(IdxIn128, MVT::i32));
7958
7959     // Insert the changed part back to the 256-bit vector
7960     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7961   }
7962
7963   if (Subtarget->hasSSE41())
7964     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7965
7966   if (EltVT == MVT::i8)
7967     return SDValue();
7968
7969   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7970     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7971     // as its second argument.
7972     if (N1.getValueType() != MVT::i32)
7973       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7974     if (N2.getValueType() != MVT::i32)
7975       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7976     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7977   }
7978   return SDValue();
7979 }
7980
7981 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7982   SDLoc dl(Op);
7983   MVT OpVT = Op.getSimpleValueType();
7984
7985   // If this is a 256-bit vector result, first insert into a 128-bit
7986   // vector and then insert into the 256-bit vector.
7987   if (!OpVT.is128BitVector()) {
7988     // Insert into a 128-bit vector.
7989     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7990     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7991                                  OpVT.getVectorNumElements() / SizeFactor);
7992
7993     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7994
7995     // Insert the 128-bit vector.
7996     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7997   }
7998
7999   if (OpVT == MVT::v1i64 &&
8000       Op.getOperand(0).getValueType() == MVT::i64)
8001     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
8002
8003   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
8004   assert(OpVT.is128BitVector() && "Expected an SSE type!");
8005   return DAG.getNode(ISD::BITCAST, dl, OpVT,
8006                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
8007 }
8008
8009 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
8010 // a simple subregister reference or explicit instructions to grab
8011 // upper bits of a vector.
8012 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8013                                       SelectionDAG &DAG) {
8014   SDLoc dl(Op);
8015   SDValue In =  Op.getOperand(0);
8016   SDValue Idx = Op.getOperand(1);
8017   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8018   MVT ResVT   = Op.getSimpleValueType();
8019   MVT InVT    = In.getSimpleValueType();
8020
8021   if (Subtarget->hasFp256()) {
8022     if (ResVT.is128BitVector() &&
8023         (InVT.is256BitVector() || InVT.is512BitVector()) &&
8024         isa<ConstantSDNode>(Idx)) {
8025       return Extract128BitVector(In, IdxVal, DAG, dl);
8026     }
8027     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
8028         isa<ConstantSDNode>(Idx)) {
8029       return Extract256BitVector(In, IdxVal, DAG, dl);
8030     }
8031   }
8032   return SDValue();
8033 }
8034
8035 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
8036 // simple superregister reference or explicit instructions to insert
8037 // the upper bits of a vector.
8038 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8039                                      SelectionDAG &DAG) {
8040   if (Subtarget->hasFp256()) {
8041     SDLoc dl(Op.getNode());
8042     SDValue Vec = Op.getNode()->getOperand(0);
8043     SDValue SubVec = Op.getNode()->getOperand(1);
8044     SDValue Idx = Op.getNode()->getOperand(2);
8045
8046     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
8047          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
8048         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
8049         isa<ConstantSDNode>(Idx)) {
8050       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8051       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
8052     }
8053
8054     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
8055         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
8056         isa<ConstantSDNode>(Idx)) {
8057       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8058       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
8059     }
8060   }
8061   return SDValue();
8062 }
8063
8064 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
8065 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
8066 // one of the above mentioned nodes. It has to be wrapped because otherwise
8067 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
8068 // be used to form addressing mode. These wrapped nodes will be selected
8069 // into MOV32ri.
8070 SDValue
8071 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
8072   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
8073
8074   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8075   // global base reg.
8076   unsigned char OpFlag = 0;
8077   unsigned WrapperKind = X86ISD::Wrapper;
8078   CodeModel::Model M = getTargetMachine().getCodeModel();
8079
8080   if (Subtarget->isPICStyleRIPRel() &&
8081       (M == CodeModel::Small || M == CodeModel::Kernel))
8082     WrapperKind = X86ISD::WrapperRIP;
8083   else if (Subtarget->isPICStyleGOT())
8084     OpFlag = X86II::MO_GOTOFF;
8085   else if (Subtarget->isPICStyleStubPIC())
8086     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8087
8088   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
8089                                              CP->getAlignment(),
8090                                              CP->getOffset(), OpFlag);
8091   SDLoc DL(CP);
8092   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8093   // With PIC, the address is actually $g + Offset.
8094   if (OpFlag) {
8095     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8096                          DAG.getNode(X86ISD::GlobalBaseReg,
8097                                      SDLoc(), getPointerTy()),
8098                          Result);
8099   }
8100
8101   return Result;
8102 }
8103
8104 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
8105   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
8106
8107   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8108   // global base reg.
8109   unsigned char OpFlag = 0;
8110   unsigned WrapperKind = X86ISD::Wrapper;
8111   CodeModel::Model M = getTargetMachine().getCodeModel();
8112
8113   if (Subtarget->isPICStyleRIPRel() &&
8114       (M == CodeModel::Small || M == CodeModel::Kernel))
8115     WrapperKind = X86ISD::WrapperRIP;
8116   else if (Subtarget->isPICStyleGOT())
8117     OpFlag = X86II::MO_GOTOFF;
8118   else if (Subtarget->isPICStyleStubPIC())
8119     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8120
8121   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
8122                                           OpFlag);
8123   SDLoc DL(JT);
8124   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8125
8126   // With PIC, the address is actually $g + Offset.
8127   if (OpFlag)
8128     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8129                          DAG.getNode(X86ISD::GlobalBaseReg,
8130                                      SDLoc(), getPointerTy()),
8131                          Result);
8132
8133   return Result;
8134 }
8135
8136 SDValue
8137 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
8138   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
8139
8140   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8141   // global base reg.
8142   unsigned char OpFlag = 0;
8143   unsigned WrapperKind = X86ISD::Wrapper;
8144   CodeModel::Model M = getTargetMachine().getCodeModel();
8145
8146   if (Subtarget->isPICStyleRIPRel() &&
8147       (M == CodeModel::Small || M == CodeModel::Kernel)) {
8148     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8149       OpFlag = X86II::MO_GOTPCREL;
8150     WrapperKind = X86ISD::WrapperRIP;
8151   } else if (Subtarget->isPICStyleGOT()) {
8152     OpFlag = X86II::MO_GOT;
8153   } else if (Subtarget->isPICStyleStubPIC()) {
8154     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8155   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8156     OpFlag = X86II::MO_DARWIN_NONLAZY;
8157   }
8158
8159   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8160
8161   SDLoc DL(Op);
8162   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8163
8164   // With PIC, the address is actually $g + Offset.
8165   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8166       !Subtarget->is64Bit()) {
8167     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8168                          DAG.getNode(X86ISD::GlobalBaseReg,
8169                                      SDLoc(), getPointerTy()),
8170                          Result);
8171   }
8172
8173   // For symbols that require a load from a stub to get the address, emit the
8174   // load.
8175   if (isGlobalStubReference(OpFlag))
8176     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8177                          MachinePointerInfo::getGOT(), false, false, false, 0);
8178
8179   return Result;
8180 }
8181
8182 SDValue
8183 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8184   // Create the TargetBlockAddressAddress node.
8185   unsigned char OpFlags =
8186     Subtarget->ClassifyBlockAddressReference();
8187   CodeModel::Model M = getTargetMachine().getCodeModel();
8188   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8189   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8190   SDLoc dl(Op);
8191   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8192                                              OpFlags);
8193
8194   if (Subtarget->isPICStyleRIPRel() &&
8195       (M == CodeModel::Small || M == CodeModel::Kernel))
8196     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8197   else
8198     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8199
8200   // With PIC, the address is actually $g + Offset.
8201   if (isGlobalRelativeToPICBase(OpFlags)) {
8202     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8203                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8204                          Result);
8205   }
8206
8207   return Result;
8208 }
8209
8210 SDValue
8211 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8212                                       int64_t Offset, SelectionDAG &DAG) const {
8213   // Create the TargetGlobalAddress node, folding in the constant
8214   // offset if it is legal.
8215   unsigned char OpFlags =
8216     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8217   CodeModel::Model M = getTargetMachine().getCodeModel();
8218   SDValue Result;
8219   if (OpFlags == X86II::MO_NO_FLAG &&
8220       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8221     // A direct static reference to a global.
8222     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8223     Offset = 0;
8224   } else {
8225     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8226   }
8227
8228   if (Subtarget->isPICStyleRIPRel() &&
8229       (M == CodeModel::Small || M == CodeModel::Kernel))
8230     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8231   else
8232     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8233
8234   // With PIC, the address is actually $g + Offset.
8235   if (isGlobalRelativeToPICBase(OpFlags)) {
8236     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8237                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8238                          Result);
8239   }
8240
8241   // For globals that require a load from a stub to get the address, emit the
8242   // load.
8243   if (isGlobalStubReference(OpFlags))
8244     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8245                          MachinePointerInfo::getGOT(), false, false, false, 0);
8246
8247   // If there was a non-zero offset that we didn't fold, create an explicit
8248   // addition for it.
8249   if (Offset != 0)
8250     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8251                          DAG.getConstant(Offset, getPointerTy()));
8252
8253   return Result;
8254 }
8255
8256 SDValue
8257 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8258   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8259   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8260   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8261 }
8262
8263 static SDValue
8264 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8265            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8266            unsigned char OperandFlags, bool LocalDynamic = false) {
8267   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8268   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8269   SDLoc dl(GA);
8270   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8271                                            GA->getValueType(0),
8272                                            GA->getOffset(),
8273                                            OperandFlags);
8274
8275   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8276                                            : X86ISD::TLSADDR;
8277
8278   if (InFlag) {
8279     SDValue Ops[] = { Chain,  TGA, *InFlag };
8280     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8281   } else {
8282     SDValue Ops[]  = { Chain, TGA };
8283     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8284   }
8285
8286   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8287   MFI->setAdjustsStack(true);
8288
8289   SDValue Flag = Chain.getValue(1);
8290   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8291 }
8292
8293 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8294 static SDValue
8295 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8296                                 const EVT PtrVT) {
8297   SDValue InFlag;
8298   SDLoc dl(GA);  // ? function entry point might be better
8299   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8300                                    DAG.getNode(X86ISD::GlobalBaseReg,
8301                                                SDLoc(), PtrVT), InFlag);
8302   InFlag = Chain.getValue(1);
8303
8304   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8305 }
8306
8307 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8308 static SDValue
8309 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8310                                 const EVT PtrVT) {
8311   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8312                     X86::RAX, X86II::MO_TLSGD);
8313 }
8314
8315 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8316                                            SelectionDAG &DAG,
8317                                            const EVT PtrVT,
8318                                            bool is64Bit) {
8319   SDLoc dl(GA);
8320
8321   // Get the start address of the TLS block for this module.
8322   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8323       .getInfo<X86MachineFunctionInfo>();
8324   MFI->incNumLocalDynamicTLSAccesses();
8325
8326   SDValue Base;
8327   if (is64Bit) {
8328     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8329                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8330   } else {
8331     SDValue InFlag;
8332     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8333         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8334     InFlag = Chain.getValue(1);
8335     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8336                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8337   }
8338
8339   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8340   // of Base.
8341
8342   // Build x@dtpoff.
8343   unsigned char OperandFlags = X86II::MO_DTPOFF;
8344   unsigned WrapperKind = X86ISD::Wrapper;
8345   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8346                                            GA->getValueType(0),
8347                                            GA->getOffset(), OperandFlags);
8348   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8349
8350   // Add x@dtpoff with the base.
8351   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8352 }
8353
8354 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8355 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8356                                    const EVT PtrVT, TLSModel::Model model,
8357                                    bool is64Bit, bool isPIC) {
8358   SDLoc dl(GA);
8359
8360   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8361   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8362                                                          is64Bit ? 257 : 256));
8363
8364   SDValue ThreadPointer =
8365       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8366                   MachinePointerInfo(Ptr), false, false, false, 0);
8367
8368   unsigned char OperandFlags = 0;
8369   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8370   // initialexec.
8371   unsigned WrapperKind = X86ISD::Wrapper;
8372   if (model == TLSModel::LocalExec) {
8373     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8374   } else if (model == TLSModel::InitialExec) {
8375     if (is64Bit) {
8376       OperandFlags = X86II::MO_GOTTPOFF;
8377       WrapperKind = X86ISD::WrapperRIP;
8378     } else {
8379       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8380     }
8381   } else {
8382     llvm_unreachable("Unexpected model");
8383   }
8384
8385   // emit "addl x@ntpoff,%eax" (local exec)
8386   // or "addl x@indntpoff,%eax" (initial exec)
8387   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8388   SDValue TGA =
8389       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8390                                  GA->getOffset(), OperandFlags);
8391   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8392
8393   if (model == TLSModel::InitialExec) {
8394     if (isPIC && !is64Bit) {
8395       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8396                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8397                            Offset);
8398     }
8399
8400     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8401                          MachinePointerInfo::getGOT(), false, false, false, 0);
8402   }
8403
8404   // The address of the thread local variable is the add of the thread
8405   // pointer with the offset of the variable.
8406   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8407 }
8408
8409 SDValue
8410 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8411
8412   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8413   const GlobalValue *GV = GA->getGlobal();
8414
8415   if (Subtarget->isTargetELF()) {
8416     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8417
8418     switch (model) {
8419       case TLSModel::GeneralDynamic:
8420         if (Subtarget->is64Bit())
8421           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8422         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8423       case TLSModel::LocalDynamic:
8424         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8425                                            Subtarget->is64Bit());
8426       case TLSModel::InitialExec:
8427       case TLSModel::LocalExec:
8428         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8429                                    Subtarget->is64Bit(),
8430                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8431     }
8432     llvm_unreachable("Unknown TLS model.");
8433   }
8434
8435   if (Subtarget->isTargetDarwin()) {
8436     // Darwin only has one model of TLS.  Lower to that.
8437     unsigned char OpFlag = 0;
8438     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8439                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8440
8441     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8442     // global base reg.
8443     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8444                   !Subtarget->is64Bit();
8445     if (PIC32)
8446       OpFlag = X86II::MO_TLVP_PIC_BASE;
8447     else
8448       OpFlag = X86II::MO_TLVP;
8449     SDLoc DL(Op);
8450     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8451                                                 GA->getValueType(0),
8452                                                 GA->getOffset(), OpFlag);
8453     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8454
8455     // With PIC32, the address is actually $g + Offset.
8456     if (PIC32)
8457       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8458                            DAG.getNode(X86ISD::GlobalBaseReg,
8459                                        SDLoc(), getPointerTy()),
8460                            Offset);
8461
8462     // Lowering the machine isd will make sure everything is in the right
8463     // location.
8464     SDValue Chain = DAG.getEntryNode();
8465     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8466     SDValue Args[] = { Chain, Offset };
8467     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8468
8469     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8470     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8471     MFI->setAdjustsStack(true);
8472
8473     // And our return value (tls address) is in the standard call return value
8474     // location.
8475     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8476     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8477                               Chain.getValue(1));
8478   }
8479
8480   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8481     // Just use the implicit TLS architecture
8482     // Need to generate someting similar to:
8483     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8484     //                                  ; from TEB
8485     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8486     //   mov     rcx, qword [rdx+rcx*8]
8487     //   mov     eax, .tls$:tlsvar
8488     //   [rax+rcx] contains the address
8489     // Windows 64bit: gs:0x58
8490     // Windows 32bit: fs:__tls_array
8491
8492     // If GV is an alias then use the aliasee for determining
8493     // thread-localness.
8494     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8495       GV = GA->resolveAliasedGlobal(false);
8496     SDLoc dl(GA);
8497     SDValue Chain = DAG.getEntryNode();
8498
8499     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8500     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8501     // use its literal value of 0x2C.
8502     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8503                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8504                                                              256)
8505                                         : Type::getInt32PtrTy(*DAG.getContext(),
8506                                                               257));
8507
8508     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8509       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8510         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8511
8512     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8513                                         MachinePointerInfo(Ptr),
8514                                         false, false, false, 0);
8515
8516     // Load the _tls_index variable
8517     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8518     if (Subtarget->is64Bit())
8519       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8520                            IDX, MachinePointerInfo(), MVT::i32,
8521                            false, false, 0);
8522     else
8523       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8524                         false, false, false, 0);
8525
8526     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8527                                     getPointerTy());
8528     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8529
8530     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8531     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8532                       false, false, false, 0);
8533
8534     // Get the offset of start of .tls section
8535     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8536                                              GA->getValueType(0),
8537                                              GA->getOffset(), X86II::MO_SECREL);
8538     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8539
8540     // The address of the thread local variable is the add of the thread
8541     // pointer with the offset of the variable.
8542     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8543   }
8544
8545   llvm_unreachable("TLS not implemented for this target.");
8546 }
8547
8548 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8549 /// and take a 2 x i32 value to shift plus a shift amount.
8550 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
8551   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8552   MVT VT = Op.getSimpleValueType();
8553   unsigned VTBits = VT.getSizeInBits();
8554   SDLoc dl(Op);
8555   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8556   SDValue ShOpLo = Op.getOperand(0);
8557   SDValue ShOpHi = Op.getOperand(1);
8558   SDValue ShAmt  = Op.getOperand(2);
8559   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
8560   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
8561   // during isel.
8562   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8563                                   DAG.getConstant(VTBits - 1, MVT::i8));
8564   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8565                                      DAG.getConstant(VTBits - 1, MVT::i8))
8566                        : DAG.getConstant(0, VT);
8567
8568   SDValue Tmp2, Tmp3;
8569   if (Op.getOpcode() == ISD::SHL_PARTS) {
8570     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8571     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
8572   } else {
8573     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8574     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
8575   }
8576
8577   // If the shift amount is larger or equal than the width of a part we can't
8578   // rely on the results of shld/shrd. Insert a test and select the appropriate
8579   // values for large shift amounts.
8580   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8581                                 DAG.getConstant(VTBits, MVT::i8));
8582   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8583                              AndNode, DAG.getConstant(0, MVT::i8));
8584
8585   SDValue Hi, Lo;
8586   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8587   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8588   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8589
8590   if (Op.getOpcode() == ISD::SHL_PARTS) {
8591     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8592     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8593   } else {
8594     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8595     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8596   }
8597
8598   SDValue Ops[2] = { Lo, Hi };
8599   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8600 }
8601
8602 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8603                                            SelectionDAG &DAG) const {
8604   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
8605
8606   if (SrcVT.isVector())
8607     return SDValue();
8608
8609   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
8610          "Unknown SINT_TO_FP to lower!");
8611
8612   // These are really Legal; return the operand so the caller accepts it as
8613   // Legal.
8614   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8615     return Op;
8616   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8617       Subtarget->is64Bit()) {
8618     return Op;
8619   }
8620
8621   SDLoc dl(Op);
8622   unsigned Size = SrcVT.getSizeInBits()/8;
8623   MachineFunction &MF = DAG.getMachineFunction();
8624   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8625   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8626   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8627                                StackSlot,
8628                                MachinePointerInfo::getFixedStack(SSFI),
8629                                false, false, 0);
8630   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8631 }
8632
8633 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8634                                      SDValue StackSlot,
8635                                      SelectionDAG &DAG) const {
8636   // Build the FILD
8637   SDLoc DL(Op);
8638   SDVTList Tys;
8639   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8640   if (useSSE)
8641     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8642   else
8643     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8644
8645   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8646
8647   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8648   MachineMemOperand *MMO;
8649   if (FI) {
8650     int SSFI = FI->getIndex();
8651     MMO =
8652       DAG.getMachineFunction()
8653       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8654                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8655   } else {
8656     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8657     StackSlot = StackSlot.getOperand(1);
8658   }
8659   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8660   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8661                                            X86ISD::FILD, DL,
8662                                            Tys, Ops, array_lengthof(Ops),
8663                                            SrcVT, MMO);
8664
8665   if (useSSE) {
8666     Chain = Result.getValue(1);
8667     SDValue InFlag = Result.getValue(2);
8668
8669     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8670     // shouldn't be necessary except that RFP cannot be live across
8671     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8672     MachineFunction &MF = DAG.getMachineFunction();
8673     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8674     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8675     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8676     Tys = DAG.getVTList(MVT::Other);
8677     SDValue Ops[] = {
8678       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8679     };
8680     MachineMemOperand *MMO =
8681       DAG.getMachineFunction()
8682       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8683                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8684
8685     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8686                                     Ops, array_lengthof(Ops),
8687                                     Op.getValueType(), MMO);
8688     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8689                          MachinePointerInfo::getFixedStack(SSFI),
8690                          false, false, false, 0);
8691   }
8692
8693   return Result;
8694 }
8695
8696 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8697 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8698                                                SelectionDAG &DAG) const {
8699   // This algorithm is not obvious. Here it is what we're trying to output:
8700   /*
8701      movq       %rax,  %xmm0
8702      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8703      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8704      #ifdef __SSE3__
8705        haddpd   %xmm0, %xmm0
8706      #else
8707        pshufd   $0x4e, %xmm0, %xmm1
8708        addpd    %xmm1, %xmm0
8709      #endif
8710   */
8711
8712   SDLoc dl(Op);
8713   LLVMContext *Context = DAG.getContext();
8714
8715   // Build some magic constants.
8716   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8717   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8718   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8719
8720   SmallVector<Constant*,2> CV1;
8721   CV1.push_back(
8722     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8723                                       APInt(64, 0x4330000000000000ULL))));
8724   CV1.push_back(
8725     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8726                                       APInt(64, 0x4530000000000000ULL))));
8727   Constant *C1 = ConstantVector::get(CV1);
8728   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8729
8730   // Load the 64-bit value into an XMM register.
8731   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8732                             Op.getOperand(0));
8733   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8734                               MachinePointerInfo::getConstantPool(),
8735                               false, false, false, 16);
8736   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8737                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8738                               CLod0);
8739
8740   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8741                               MachinePointerInfo::getConstantPool(),
8742                               false, false, false, 16);
8743   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8744   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8745   SDValue Result;
8746
8747   if (Subtarget->hasSSE3()) {
8748     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8749     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8750   } else {
8751     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8752     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8753                                            S2F, 0x4E, DAG);
8754     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8755                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8756                          Sub);
8757   }
8758
8759   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8760                      DAG.getIntPtrConstant(0));
8761 }
8762
8763 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8764 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8765                                                SelectionDAG &DAG) const {
8766   SDLoc dl(Op);
8767   // FP constant to bias correct the final result.
8768   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8769                                    MVT::f64);
8770
8771   // Load the 32-bit value into an XMM register.
8772   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8773                              Op.getOperand(0));
8774
8775   // Zero out the upper parts of the register.
8776   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8777
8778   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8779                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8780                      DAG.getIntPtrConstant(0));
8781
8782   // Or the load with the bias.
8783   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8784                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8785                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8786                                                    MVT::v2f64, Load)),
8787                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8788                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8789                                                    MVT::v2f64, Bias)));
8790   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8791                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8792                    DAG.getIntPtrConstant(0));
8793
8794   // Subtract the bias.
8795   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8796
8797   // Handle final rounding.
8798   EVT DestVT = Op.getValueType();
8799
8800   if (DestVT.bitsLT(MVT::f64))
8801     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8802                        DAG.getIntPtrConstant(0));
8803   if (DestVT.bitsGT(MVT::f64))
8804     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8805
8806   // Handle final rounding.
8807   return Sub;
8808 }
8809
8810 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8811                                                SelectionDAG &DAG) const {
8812   SDValue N0 = Op.getOperand(0);
8813   MVT SVT = N0.getSimpleValueType();
8814   SDLoc dl(Op);
8815
8816   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8817           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8818          "Custom UINT_TO_FP is not supported!");
8819
8820   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
8821   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8822                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8823 }
8824
8825 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8826                                            SelectionDAG &DAG) const {
8827   SDValue N0 = Op.getOperand(0);
8828   SDLoc dl(Op);
8829
8830   if (Op.getValueType().isVector())
8831     return lowerUINT_TO_FP_vec(Op, DAG);
8832
8833   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8834   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8835   // the optimization here.
8836   if (DAG.SignBitIsZero(N0))
8837     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8838
8839   MVT SrcVT = N0.getSimpleValueType();
8840   MVT DstVT = Op.getSimpleValueType();
8841   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8842     return LowerUINT_TO_FP_i64(Op, DAG);
8843   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8844     return LowerUINT_TO_FP_i32(Op, DAG);
8845   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8846     return SDValue();
8847
8848   // Make a 64-bit buffer, and use it to build an FILD.
8849   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8850   if (SrcVT == MVT::i32) {
8851     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8852     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8853                                      getPointerTy(), StackSlot, WordOff);
8854     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8855                                   StackSlot, MachinePointerInfo(),
8856                                   false, false, 0);
8857     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8858                                   OffsetSlot, MachinePointerInfo(),
8859                                   false, false, 0);
8860     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8861     return Fild;
8862   }
8863
8864   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8865   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8866                                StackSlot, MachinePointerInfo(),
8867                                false, false, 0);
8868   // For i64 source, we need to add the appropriate power of 2 if the input
8869   // was negative.  This is the same as the optimization in
8870   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8871   // we must be careful to do the computation in x87 extended precision, not
8872   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8873   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8874   MachineMemOperand *MMO =
8875     DAG.getMachineFunction()
8876     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8877                           MachineMemOperand::MOLoad, 8, 8);
8878
8879   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8880   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8881   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8882                                          array_lengthof(Ops), MVT::i64, MMO);
8883
8884   APInt FF(32, 0x5F800000ULL);
8885
8886   // Check whether the sign bit is set.
8887   SDValue SignSet = DAG.getSetCC(dl,
8888                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8889                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8890                                  ISD::SETLT);
8891
8892   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8893   SDValue FudgePtr = DAG.getConstantPool(
8894                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8895                                          getPointerTy());
8896
8897   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8898   SDValue Zero = DAG.getIntPtrConstant(0);
8899   SDValue Four = DAG.getIntPtrConstant(4);
8900   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8901                                Zero, Four);
8902   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8903
8904   // Load the value out, extending it from f32 to f80.
8905   // FIXME: Avoid the extend by constructing the right constant pool?
8906   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8907                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8908                                  MVT::f32, false, false, 4);
8909   // Extend everything to 80 bits to force it to be done on x87.
8910   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8911   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8912 }
8913
8914 std::pair<SDValue,SDValue>
8915 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8916                                     bool IsSigned, bool IsReplace) const {
8917   SDLoc DL(Op);
8918
8919   EVT DstTy = Op.getValueType();
8920
8921   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8922     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8923     DstTy = MVT::i64;
8924   }
8925
8926   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8927          DstTy.getSimpleVT() >= MVT::i16 &&
8928          "Unknown FP_TO_INT to lower!");
8929
8930   // These are really Legal.
8931   if (DstTy == MVT::i32 &&
8932       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8933     return std::make_pair(SDValue(), SDValue());
8934   if (Subtarget->is64Bit() &&
8935       DstTy == MVT::i64 &&
8936       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8937     return std::make_pair(SDValue(), SDValue());
8938
8939   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8940   // stack slot, or into the FTOL runtime function.
8941   MachineFunction &MF = DAG.getMachineFunction();
8942   unsigned MemSize = DstTy.getSizeInBits()/8;
8943   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8944   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8945
8946   unsigned Opc;
8947   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8948     Opc = X86ISD::WIN_FTOL;
8949   else
8950     switch (DstTy.getSimpleVT().SimpleTy) {
8951     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8952     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8953     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8954     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8955     }
8956
8957   SDValue Chain = DAG.getEntryNode();
8958   SDValue Value = Op.getOperand(0);
8959   EVT TheVT = Op.getOperand(0).getValueType();
8960   // FIXME This causes a redundant load/store if the SSE-class value is already
8961   // in memory, such as if it is on the callstack.
8962   if (isScalarFPTypeInSSEReg(TheVT)) {
8963     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8964     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8965                          MachinePointerInfo::getFixedStack(SSFI),
8966                          false, false, 0);
8967     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8968     SDValue Ops[] = {
8969       Chain, StackSlot, DAG.getValueType(TheVT)
8970     };
8971
8972     MachineMemOperand *MMO =
8973       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8974                               MachineMemOperand::MOLoad, MemSize, MemSize);
8975     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8976                                     array_lengthof(Ops), DstTy, MMO);
8977     Chain = Value.getValue(1);
8978     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8979     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8980   }
8981
8982   MachineMemOperand *MMO =
8983     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8984                             MachineMemOperand::MOStore, MemSize, MemSize);
8985
8986   if (Opc != X86ISD::WIN_FTOL) {
8987     // Build the FP_TO_INT*_IN_MEM
8988     SDValue Ops[] = { Chain, Value, StackSlot };
8989     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8990                                            Ops, array_lengthof(Ops), DstTy,
8991                                            MMO);
8992     return std::make_pair(FIST, StackSlot);
8993   } else {
8994     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8995       DAG.getVTList(MVT::Other, MVT::Glue),
8996       Chain, Value);
8997     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8998       MVT::i32, ftol.getValue(1));
8999     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
9000       MVT::i32, eax.getValue(2));
9001     SDValue Ops[] = { eax, edx };
9002     SDValue pair = IsReplace
9003       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
9004       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
9005     return std::make_pair(pair, SDValue());
9006   }
9007 }
9008
9009 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
9010                               const X86Subtarget *Subtarget) {
9011   MVT VT = Op->getSimpleValueType(0);
9012   SDValue In = Op->getOperand(0);
9013   MVT InVT = In.getSimpleValueType();
9014   SDLoc dl(Op);
9015
9016   // Optimize vectors in AVX mode:
9017   //
9018   //   v8i16 -> v8i32
9019   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
9020   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
9021   //   Concat upper and lower parts.
9022   //
9023   //   v4i32 -> v4i64
9024   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
9025   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
9026   //   Concat upper and lower parts.
9027   //
9028
9029   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
9030       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
9031       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
9032     return SDValue();
9033
9034   if (Subtarget->hasInt256())
9035     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
9036
9037   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
9038   SDValue Undef = DAG.getUNDEF(InVT);
9039   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
9040   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9041   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9042
9043   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
9044                              VT.getVectorNumElements()/2);
9045
9046   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
9047   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
9048
9049   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
9050 }
9051
9052 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
9053                                         SelectionDAG &DAG) {
9054   MVT VT = Op->getSimpleValueType(0);
9055   SDValue In = Op->getOperand(0);
9056   MVT InVT = In.getSimpleValueType();
9057   SDLoc DL(Op);
9058   unsigned int NumElts = VT.getVectorNumElements();
9059   if (NumElts != 8 && NumElts != 16)
9060     return SDValue();
9061
9062   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
9063     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
9064
9065   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
9066   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9067   // Now we have only mask extension
9068   assert(InVT.getVectorElementType() == MVT::i1);
9069   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
9070   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9071   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
9072   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9073   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9074                            MachinePointerInfo::getConstantPool(),
9075                            false, false, false, Alignment);
9076
9077   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
9078   if (VT.is512BitVector())
9079     return Brcst;
9080   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
9081 }
9082
9083 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9084                                SelectionDAG &DAG) {
9085   if (Subtarget->hasFp256()) {
9086     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9087     if (Res.getNode())
9088       return Res;
9089   }
9090
9091   return SDValue();
9092 }
9093
9094 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9095                                 SelectionDAG &DAG) {
9096   SDLoc DL(Op);
9097   MVT VT = Op.getSimpleValueType();
9098   SDValue In = Op.getOperand(0);
9099   MVT SVT = In.getSimpleValueType();
9100
9101   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
9102     return LowerZERO_EXTEND_AVX512(Op, DAG);
9103
9104   if (Subtarget->hasFp256()) {
9105     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9106     if (Res.getNode())
9107       return Res;
9108   }
9109
9110   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
9111          VT.getVectorNumElements() != SVT.getVectorNumElements());
9112   return SDValue();
9113 }
9114
9115 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
9116   SDLoc DL(Op);
9117   MVT VT = Op.getSimpleValueType();
9118   SDValue In = Op.getOperand(0);
9119   MVT InVT = In.getSimpleValueType();
9120
9121   if (VT == MVT::i1) {
9122     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
9123            "Invalid scalar TRUNCATE operation");
9124     if (InVT == MVT::i32)
9125       return SDValue();
9126     if (InVT.getSizeInBits() == 64)
9127       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
9128     else if (InVT.getSizeInBits() < 32)
9129       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
9130     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
9131   }
9132   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
9133          "Invalid TRUNCATE operation");
9134
9135   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
9136     if (VT.getVectorElementType().getSizeInBits() >=8)
9137       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
9138
9139     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
9140     unsigned NumElts = InVT.getVectorNumElements();
9141     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
9142     if (InVT.getSizeInBits() < 512) {
9143       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
9144       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
9145       InVT = ExtVT;
9146     }
9147     
9148     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
9149     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9150     SDValue CP = DAG.getConstantPool(C, getPointerTy());
9151     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9152     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9153                            MachinePointerInfo::getConstantPool(),
9154                            false, false, false, Alignment);
9155     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
9156     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9157     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9158   }
9159
9160   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9161     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9162     if (Subtarget->hasInt256()) {
9163       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9164       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9165       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9166                                 ShufMask);
9167       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9168                          DAG.getIntPtrConstant(0));
9169     }
9170
9171     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9172     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9173                                DAG.getIntPtrConstant(0));
9174     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9175                                DAG.getIntPtrConstant(2));
9176
9177     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9178     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9179
9180     // The PSHUFD mask:
9181     static const int ShufMask1[] = {0, 2, 0, 0};
9182     SDValue Undef = DAG.getUNDEF(VT);
9183     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9184     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9185
9186     // The MOVLHPS mask:
9187     static const int ShufMask2[] = {0, 1, 4, 5};
9188     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9189   }
9190
9191   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9192     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9193     if (Subtarget->hasInt256()) {
9194       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9195
9196       SmallVector<SDValue,32> pshufbMask;
9197       for (unsigned i = 0; i < 2; ++i) {
9198         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9199         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9200         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9201         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9202         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9203         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9204         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9205         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9206         for (unsigned j = 0; j < 8; ++j)
9207           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9208       }
9209       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9210                                &pshufbMask[0], 32);
9211       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9212       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9213
9214       static const int ShufMask[] = {0,  2,  -1,  -1};
9215       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9216                                 &ShufMask[0]);
9217       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9218                        DAG.getIntPtrConstant(0));
9219       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9220     }
9221
9222     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9223                                DAG.getIntPtrConstant(0));
9224
9225     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9226                                DAG.getIntPtrConstant(4));
9227
9228     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9229     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9230
9231     // The PSHUFB mask:
9232     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9233                                    -1, -1, -1, -1, -1, -1, -1, -1};
9234
9235     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9236     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9237     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9238
9239     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9240     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9241
9242     // The MOVLHPS Mask:
9243     static const int ShufMask2[] = {0, 1, 4, 5};
9244     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9245     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9246   }
9247
9248   // Handle truncation of V256 to V128 using shuffles.
9249   if (!VT.is128BitVector() || !InVT.is256BitVector())
9250     return SDValue();
9251
9252   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9253
9254   unsigned NumElems = VT.getVectorNumElements();
9255   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
9256
9257   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9258   // Prepare truncation shuffle mask
9259   for (unsigned i = 0; i != NumElems; ++i)
9260     MaskVec[i] = i * 2;
9261   SDValue V = DAG.getVectorShuffle(NVT, DL,
9262                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9263                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9264   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9265                      DAG.getIntPtrConstant(0));
9266 }
9267
9268 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9269                                            SelectionDAG &DAG) const {
9270   MVT VT = Op.getSimpleValueType();
9271   if (VT.isVector()) {
9272     if (VT == MVT::v8i16)
9273       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9274                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9275                                      MVT::v8i32, Op.getOperand(0)));
9276     return SDValue();
9277   }
9278
9279   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9280     /*IsSigned=*/ true, /*IsReplace=*/ false);
9281   SDValue FIST = Vals.first, StackSlot = Vals.second;
9282   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9283   if (FIST.getNode() == 0) return Op;
9284
9285   if (StackSlot.getNode())
9286     // Load the result.
9287     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9288                        FIST, StackSlot, MachinePointerInfo(),
9289                        false, false, false, 0);
9290
9291   // The node is the result.
9292   return FIST;
9293 }
9294
9295 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9296                                            SelectionDAG &DAG) const {
9297   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9298     /*IsSigned=*/ false, /*IsReplace=*/ false);
9299   SDValue FIST = Vals.first, StackSlot = Vals.second;
9300   assert(FIST.getNode() && "Unexpected failure");
9301
9302   if (StackSlot.getNode())
9303     // Load the result.
9304     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9305                        FIST, StackSlot, MachinePointerInfo(),
9306                        false, false, false, 0);
9307
9308   // The node is the result.
9309   return FIST;
9310 }
9311
9312 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9313   SDLoc DL(Op);
9314   MVT VT = Op.getSimpleValueType();
9315   SDValue In = Op.getOperand(0);
9316   MVT SVT = In.getSimpleValueType();
9317
9318   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9319
9320   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9321                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9322                                  In, DAG.getUNDEF(SVT)));
9323 }
9324
9325 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
9326   LLVMContext *Context = DAG.getContext();
9327   SDLoc dl(Op);
9328   MVT VT = Op.getSimpleValueType();
9329   MVT EltVT = VT;
9330   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9331   if (VT.isVector()) {
9332     EltVT = VT.getVectorElementType();
9333     NumElts = VT.getVectorNumElements();
9334   }
9335   Constant *C;
9336   if (EltVT == MVT::f64)
9337     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9338                                           APInt(64, ~(1ULL << 63))));
9339   else
9340     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9341                                           APInt(32, ~(1U << 31))));
9342   C = ConstantVector::getSplat(NumElts, C);
9343   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9344   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9345   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9346   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9347                              MachinePointerInfo::getConstantPool(),
9348                              false, false, false, Alignment);
9349   if (VT.isVector()) {
9350     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9351     return DAG.getNode(ISD::BITCAST, dl, VT,
9352                        DAG.getNode(ISD::AND, dl, ANDVT,
9353                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9354                                                Op.getOperand(0)),
9355                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9356   }
9357   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9358 }
9359
9360 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
9361   LLVMContext *Context = DAG.getContext();
9362   SDLoc dl(Op);
9363   MVT VT = Op.getSimpleValueType();
9364   MVT EltVT = VT;
9365   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9366   if (VT.isVector()) {
9367     EltVT = VT.getVectorElementType();
9368     NumElts = VT.getVectorNumElements();
9369   }
9370   Constant *C;
9371   if (EltVT == MVT::f64)
9372     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9373                                           APInt(64, 1ULL << 63)));
9374   else
9375     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9376                                           APInt(32, 1U << 31)));
9377   C = ConstantVector::getSplat(NumElts, C);
9378   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9379   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9380   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9381   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9382                              MachinePointerInfo::getConstantPool(),
9383                              false, false, false, Alignment);
9384   if (VT.isVector()) {
9385     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9386     return DAG.getNode(ISD::BITCAST, dl, VT,
9387                        DAG.getNode(ISD::XOR, dl, XORVT,
9388                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9389                                                Op.getOperand(0)),
9390                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9391   }
9392
9393   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9394 }
9395
9396 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
9397   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9398   LLVMContext *Context = DAG.getContext();
9399   SDValue Op0 = Op.getOperand(0);
9400   SDValue Op1 = Op.getOperand(1);
9401   SDLoc dl(Op);
9402   MVT VT = Op.getSimpleValueType();
9403   MVT SrcVT = Op1.getSimpleValueType();
9404
9405   // If second operand is smaller, extend it first.
9406   if (SrcVT.bitsLT(VT)) {
9407     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9408     SrcVT = VT;
9409   }
9410   // And if it is bigger, shrink it first.
9411   if (SrcVT.bitsGT(VT)) {
9412     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9413     SrcVT = VT;
9414   }
9415
9416   // At this point the operands and the result should have the same
9417   // type, and that won't be f80 since that is not custom lowered.
9418
9419   // First get the sign bit of second operand.
9420   SmallVector<Constant*,4> CV;
9421   if (SrcVT == MVT::f64) {
9422     const fltSemantics &Sem = APFloat::IEEEdouble;
9423     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9424     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9425   } else {
9426     const fltSemantics &Sem = APFloat::IEEEsingle;
9427     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9428     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9429     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9430     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9431   }
9432   Constant *C = ConstantVector::get(CV);
9433   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9434   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9435                               MachinePointerInfo::getConstantPool(),
9436                               false, false, false, 16);
9437   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9438
9439   // Shift sign bit right or left if the two operands have different types.
9440   if (SrcVT.bitsGT(VT)) {
9441     // Op0 is MVT::f32, Op1 is MVT::f64.
9442     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9443     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9444                           DAG.getConstant(32, MVT::i32));
9445     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9446     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9447                           DAG.getIntPtrConstant(0));
9448   }
9449
9450   // Clear first operand sign bit.
9451   CV.clear();
9452   if (VT == MVT::f64) {
9453     const fltSemantics &Sem = APFloat::IEEEdouble;
9454     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9455                                                    APInt(64, ~(1ULL << 63)))));
9456     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9457   } else {
9458     const fltSemantics &Sem = APFloat::IEEEsingle;
9459     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9460                                                    APInt(32, ~(1U << 31)))));
9461     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9462     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9463     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9464   }
9465   C = ConstantVector::get(CV);
9466   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9467   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9468                               MachinePointerInfo::getConstantPool(),
9469                               false, false, false, 16);
9470   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9471
9472   // Or the value with the sign bit.
9473   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9474 }
9475
9476 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9477   SDValue N0 = Op.getOperand(0);
9478   SDLoc dl(Op);
9479   MVT VT = Op.getSimpleValueType();
9480
9481   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9482   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9483                                   DAG.getConstant(1, VT));
9484   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9485 }
9486
9487 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9488 //
9489 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9490                                       SelectionDAG &DAG) {
9491   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9492
9493   if (!Subtarget->hasSSE41())
9494     return SDValue();
9495
9496   if (!Op->hasOneUse())
9497     return SDValue();
9498
9499   SDNode *N = Op.getNode();
9500   SDLoc DL(N);
9501
9502   SmallVector<SDValue, 8> Opnds;
9503   DenseMap<SDValue, unsigned> VecInMap;
9504   EVT VT = MVT::Other;
9505
9506   // Recognize a special case where a vector is casted into wide integer to
9507   // test all 0s.
9508   Opnds.push_back(N->getOperand(0));
9509   Opnds.push_back(N->getOperand(1));
9510
9511   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9512     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9513     // BFS traverse all OR'd operands.
9514     if (I->getOpcode() == ISD::OR) {
9515       Opnds.push_back(I->getOperand(0));
9516       Opnds.push_back(I->getOperand(1));
9517       // Re-evaluate the number of nodes to be traversed.
9518       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9519       continue;
9520     }
9521
9522     // Quit if a non-EXTRACT_VECTOR_ELT
9523     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9524       return SDValue();
9525
9526     // Quit if without a constant index.
9527     SDValue Idx = I->getOperand(1);
9528     if (!isa<ConstantSDNode>(Idx))
9529       return SDValue();
9530
9531     SDValue ExtractedFromVec = I->getOperand(0);
9532     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9533     if (M == VecInMap.end()) {
9534       VT = ExtractedFromVec.getValueType();
9535       // Quit if not 128/256-bit vector.
9536       if (!VT.is128BitVector() && !VT.is256BitVector())
9537         return SDValue();
9538       // Quit if not the same type.
9539       if (VecInMap.begin() != VecInMap.end() &&
9540           VT != VecInMap.begin()->first.getValueType())
9541         return SDValue();
9542       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9543     }
9544     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9545   }
9546
9547   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9548          "Not extracted from 128-/256-bit vector.");
9549
9550   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9551   SmallVector<SDValue, 8> VecIns;
9552
9553   for (DenseMap<SDValue, unsigned>::const_iterator
9554         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9555     // Quit if not all elements are used.
9556     if (I->second != FullMask)
9557       return SDValue();
9558     VecIns.push_back(I->first);
9559   }
9560
9561   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9562
9563   // Cast all vectors into TestVT for PTEST.
9564   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9565     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9566
9567   // If more than one full vectors are evaluated, OR them first before PTEST.
9568   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9569     // Each iteration will OR 2 nodes and append the result until there is only
9570     // 1 node left, i.e. the final OR'd value of all vectors.
9571     SDValue LHS = VecIns[Slot];
9572     SDValue RHS = VecIns[Slot + 1];
9573     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9574   }
9575
9576   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9577                      VecIns.back(), VecIns.back());
9578 }
9579
9580 /// Emit nodes that will be selected as "test Op0,Op0", or something
9581 /// equivalent.
9582 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9583                                     SelectionDAG &DAG) const {
9584   SDLoc dl(Op);
9585
9586   if (Op.getValueType() == MVT::i1)
9587     // KORTEST instruction should be selected
9588     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9589                        DAG.getConstant(0, Op.getValueType()));
9590
9591   // CF and OF aren't always set the way we want. Determine which
9592   // of these we need.
9593   bool NeedCF = false;
9594   bool NeedOF = false;
9595   switch (X86CC) {
9596   default: break;
9597   case X86::COND_A: case X86::COND_AE:
9598   case X86::COND_B: case X86::COND_BE:
9599     NeedCF = true;
9600     break;
9601   case X86::COND_G: case X86::COND_GE:
9602   case X86::COND_L: case X86::COND_LE:
9603   case X86::COND_O: case X86::COND_NO:
9604     NeedOF = true;
9605     break;
9606   }
9607   // See if we can use the EFLAGS value from the operand instead of
9608   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9609   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9610   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
9611     // Emit a CMP with 0, which is the TEST pattern.
9612     //if (Op.getValueType() == MVT::i1)
9613     //  return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
9614     //                     DAG.getConstant(0, MVT::i1));
9615     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9616                        DAG.getConstant(0, Op.getValueType()));
9617   }
9618   unsigned Opcode = 0;
9619   unsigned NumOperands = 0;
9620
9621   // Truncate operations may prevent the merge of the SETCC instruction
9622   // and the arithmetic instruction before it. Attempt to truncate the operands
9623   // of the arithmetic instruction and use a reduced bit-width instruction.
9624   bool NeedTruncation = false;
9625   SDValue ArithOp = Op;
9626   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9627     SDValue Arith = Op->getOperand(0);
9628     // Both the trunc and the arithmetic op need to have one user each.
9629     if (Arith->hasOneUse())
9630       switch (Arith.getOpcode()) {
9631         default: break;
9632         case ISD::ADD:
9633         case ISD::SUB:
9634         case ISD::AND:
9635         case ISD::OR:
9636         case ISD::XOR: {
9637           NeedTruncation = true;
9638           ArithOp = Arith;
9639         }
9640       }
9641   }
9642
9643   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9644   // which may be the result of a CAST.  We use the variable 'Op', which is the
9645   // non-casted variable when we check for possible users.
9646   switch (ArithOp.getOpcode()) {
9647   case ISD::ADD:
9648     // Due to an isel shortcoming, be conservative if this add is likely to be
9649     // selected as part of a load-modify-store instruction. When the root node
9650     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9651     // uses of other nodes in the match, such as the ADD in this case. This
9652     // leads to the ADD being left around and reselected, with the result being
9653     // two adds in the output.  Alas, even if none our users are stores, that
9654     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9655     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9656     // climbing the DAG back to the root, and it doesn't seem to be worth the
9657     // effort.
9658     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9659          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9660       if (UI->getOpcode() != ISD::CopyToReg &&
9661           UI->getOpcode() != ISD::SETCC &&
9662           UI->getOpcode() != ISD::STORE)
9663         goto default_case;
9664
9665     if (ConstantSDNode *C =
9666         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9667       // An add of one will be selected as an INC.
9668       if (C->getAPIntValue() == 1) {
9669         Opcode = X86ISD::INC;
9670         NumOperands = 1;
9671         break;
9672       }
9673
9674       // An add of negative one (subtract of one) will be selected as a DEC.
9675       if (C->getAPIntValue().isAllOnesValue()) {
9676         Opcode = X86ISD::DEC;
9677         NumOperands = 1;
9678         break;
9679       }
9680     }
9681
9682     // Otherwise use a regular EFLAGS-setting add.
9683     Opcode = X86ISD::ADD;
9684     NumOperands = 2;
9685     break;
9686   case ISD::AND: {
9687     // If the primary and result isn't used, don't bother using X86ISD::AND,
9688     // because a TEST instruction will be better.
9689     bool NonFlagUse = false;
9690     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9691            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9692       SDNode *User = *UI;
9693       unsigned UOpNo = UI.getOperandNo();
9694       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9695         // Look pass truncate.
9696         UOpNo = User->use_begin().getOperandNo();
9697         User = *User->use_begin();
9698       }
9699
9700       if (User->getOpcode() != ISD::BRCOND &&
9701           User->getOpcode() != ISD::SETCC &&
9702           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9703         NonFlagUse = true;
9704         break;
9705       }
9706     }
9707
9708     if (!NonFlagUse)
9709       break;
9710   }
9711     // FALL THROUGH
9712   case ISD::SUB:
9713   case ISD::OR:
9714   case ISD::XOR:
9715     // Due to the ISEL shortcoming noted above, be conservative if this op is
9716     // likely to be selected as part of a load-modify-store instruction.
9717     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9718            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9719       if (UI->getOpcode() == ISD::STORE)
9720         goto default_case;
9721
9722     // Otherwise use a regular EFLAGS-setting instruction.
9723     switch (ArithOp.getOpcode()) {
9724     default: llvm_unreachable("unexpected operator!");
9725     case ISD::SUB: Opcode = X86ISD::SUB; break;
9726     case ISD::XOR: Opcode = X86ISD::XOR; break;
9727     case ISD::AND: Opcode = X86ISD::AND; break;
9728     case ISD::OR: {
9729       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9730         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9731         if (EFLAGS.getNode())
9732           return EFLAGS;
9733       }
9734       Opcode = X86ISD::OR;
9735       break;
9736     }
9737     }
9738
9739     NumOperands = 2;
9740     break;
9741   case X86ISD::ADD:
9742   case X86ISD::SUB:
9743   case X86ISD::INC:
9744   case X86ISD::DEC:
9745   case X86ISD::OR:
9746   case X86ISD::XOR:
9747   case X86ISD::AND:
9748     return SDValue(Op.getNode(), 1);
9749   default:
9750   default_case:
9751     break;
9752   }
9753
9754   // If we found that truncation is beneficial, perform the truncation and
9755   // update 'Op'.
9756   if (NeedTruncation) {
9757     EVT VT = Op.getValueType();
9758     SDValue WideVal = Op->getOperand(0);
9759     EVT WideVT = WideVal.getValueType();
9760     unsigned ConvertedOp = 0;
9761     // Use a target machine opcode to prevent further DAGCombine
9762     // optimizations that may separate the arithmetic operations
9763     // from the setcc node.
9764     switch (WideVal.getOpcode()) {
9765       default: break;
9766       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9767       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9768       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9769       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9770       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9771     }
9772
9773     if (ConvertedOp) {
9774       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9775       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9776         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9777         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9778         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9779       }
9780     }
9781   }
9782
9783   if (Opcode == 0)
9784     // Emit a CMP with 0, which is the TEST pattern.
9785     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9786                        DAG.getConstant(0, Op.getValueType()));
9787
9788   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9789   SmallVector<SDValue, 4> Ops;
9790   for (unsigned i = 0; i != NumOperands; ++i)
9791     Ops.push_back(Op.getOperand(i));
9792
9793   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9794   DAG.ReplaceAllUsesWith(Op, New);
9795   return SDValue(New.getNode(), 1);
9796 }
9797
9798 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9799 /// equivalent.
9800 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9801                                    SelectionDAG &DAG) const {
9802   SDLoc dl(Op0);
9803   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
9804     if (C->getAPIntValue() == 0)
9805       return EmitTest(Op0, X86CC, DAG);
9806
9807      if (Op0.getValueType() == MVT::i1) {
9808        // invert the value
9809       Op0 = DAG.getNode(ISD::XOR, dl, MVT::i1, Op0,
9810                         DAG.getConstant(-1, MVT::i1));
9811       return EmitTest(Op0, X86CC, DAG);
9812      }
9813   }
9814  
9815   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9816        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9817     // Do the comparison at i32 if it's smaller. This avoids subregister
9818     // aliasing issues. Keep the smaller reference if we're optimizing for
9819     // size, however, as that'll allow better folding of memory operations.
9820     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
9821         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
9822              AttributeSet::FunctionIndex, Attribute::MinSize)) {
9823       unsigned ExtendOp =
9824           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
9825       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
9826       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
9827     }
9828     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9829     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9830     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9831                               Op0, Op1);
9832     return SDValue(Sub.getNode(), 1);
9833   }
9834   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9835 }
9836
9837 /// Convert a comparison if required by the subtarget.
9838 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9839                                                  SelectionDAG &DAG) const {
9840   // If the subtarget does not support the FUCOMI instruction, floating-point
9841   // comparisons have to be converted.
9842   if (Subtarget->hasCMov() ||
9843       Cmp.getOpcode() != X86ISD::CMP ||
9844       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9845       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9846     return Cmp;
9847
9848   // The instruction selector will select an FUCOM instruction instead of
9849   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9850   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9851   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9852   SDLoc dl(Cmp);
9853   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9854   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9855   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9856                             DAG.getConstant(8, MVT::i8));
9857   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9858   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9859 }
9860
9861 static bool isAllOnes(SDValue V) {
9862   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9863   return C && C->isAllOnesValue();
9864 }
9865
9866 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9867 /// if it's possible.
9868 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9869                                      SDLoc dl, SelectionDAG &DAG) const {
9870   SDValue Op0 = And.getOperand(0);
9871   SDValue Op1 = And.getOperand(1);
9872   if (Op0.getOpcode() == ISD::TRUNCATE)
9873     Op0 = Op0.getOperand(0);
9874   if (Op1.getOpcode() == ISD::TRUNCATE)
9875     Op1 = Op1.getOperand(0);
9876
9877   SDValue LHS, RHS;
9878   if (Op1.getOpcode() == ISD::SHL)
9879     std::swap(Op0, Op1);
9880   if (Op0.getOpcode() == ISD::SHL) {
9881     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9882       if (And00C->getZExtValue() == 1) {
9883         // If we looked past a truncate, check that it's only truncating away
9884         // known zeros.
9885         unsigned BitWidth = Op0.getValueSizeInBits();
9886         unsigned AndBitWidth = And.getValueSizeInBits();
9887         if (BitWidth > AndBitWidth) {
9888           APInt Zeros, Ones;
9889           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9890           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9891             return SDValue();
9892         }
9893         LHS = Op1;
9894         RHS = Op0.getOperand(1);
9895       }
9896   } else if (Op1.getOpcode() == ISD::Constant) {
9897     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9898     uint64_t AndRHSVal = AndRHS->getZExtValue();
9899     SDValue AndLHS = Op0;
9900
9901     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9902       LHS = AndLHS.getOperand(0);
9903       RHS = AndLHS.getOperand(1);
9904     }
9905
9906     // Use BT if the immediate can't be encoded in a TEST instruction.
9907     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9908       LHS = AndLHS;
9909       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9910     }
9911   }
9912
9913   if (LHS.getNode()) {
9914     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9915     // instruction.  Since the shift amount is in-range-or-undefined, we know
9916     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9917     // the encoding for the i16 version is larger than the i32 version.
9918     // Also promote i16 to i32 for performance / code size reason.
9919     if (LHS.getValueType() == MVT::i8 ||
9920         LHS.getValueType() == MVT::i16)
9921       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9922
9923     // If the operand types disagree, extend the shift amount to match.  Since
9924     // BT ignores high bits (like shifts) we can use anyextend.
9925     if (LHS.getValueType() != RHS.getValueType())
9926       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9927
9928     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9929     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9930     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9931                        DAG.getConstant(Cond, MVT::i8), BT);
9932   }
9933
9934   return SDValue();
9935 }
9936
9937 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9938 /// mask CMPs.
9939 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9940                               SDValue &Op1) {
9941   unsigned SSECC;
9942   bool Swap = false;
9943
9944   // SSE Condition code mapping:
9945   //  0 - EQ
9946   //  1 - LT
9947   //  2 - LE
9948   //  3 - UNORD
9949   //  4 - NEQ
9950   //  5 - NLT
9951   //  6 - NLE
9952   //  7 - ORD
9953   switch (SetCCOpcode) {
9954   default: llvm_unreachable("Unexpected SETCC condition");
9955   case ISD::SETOEQ:
9956   case ISD::SETEQ:  SSECC = 0; break;
9957   case ISD::SETOGT:
9958   case ISD::SETGT:  Swap = true; // Fallthrough
9959   case ISD::SETLT:
9960   case ISD::SETOLT: SSECC = 1; break;
9961   case ISD::SETOGE:
9962   case ISD::SETGE:  Swap = true; // Fallthrough
9963   case ISD::SETLE:
9964   case ISD::SETOLE: SSECC = 2; break;
9965   case ISD::SETUO:  SSECC = 3; break;
9966   case ISD::SETUNE:
9967   case ISD::SETNE:  SSECC = 4; break;
9968   case ISD::SETULE: Swap = true; // Fallthrough
9969   case ISD::SETUGE: SSECC = 5; break;
9970   case ISD::SETULT: Swap = true; // Fallthrough
9971   case ISD::SETUGT: SSECC = 6; break;
9972   case ISD::SETO:   SSECC = 7; break;
9973   case ISD::SETUEQ:
9974   case ISD::SETONE: SSECC = 8; break;
9975   }
9976   if (Swap)
9977     std::swap(Op0, Op1);
9978
9979   return SSECC;
9980 }
9981
9982 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9983 // ones, and then concatenate the result back.
9984 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9985   MVT VT = Op.getSimpleValueType();
9986
9987   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9988          "Unsupported value type for operation");
9989
9990   unsigned NumElems = VT.getVectorNumElements();
9991   SDLoc dl(Op);
9992   SDValue CC = Op.getOperand(2);
9993
9994   // Extract the LHS vectors
9995   SDValue LHS = Op.getOperand(0);
9996   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9997   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9998
9999   // Extract the RHS vectors
10000   SDValue RHS = Op.getOperand(1);
10001   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
10002   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
10003
10004   // Issue the operation on the smaller types and concatenate the result back
10005   MVT EltVT = VT.getVectorElementType();
10006   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10007   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
10008                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
10009                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
10010 }
10011
10012 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG,
10013                                      const X86Subtarget *Subtarget) {
10014   SDValue Op0 = Op.getOperand(0);
10015   SDValue Op1 = Op.getOperand(1);
10016   SDValue CC = Op.getOperand(2);
10017   MVT VT = Op.getSimpleValueType();
10018   SDLoc dl(Op);
10019
10020   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
10021          Op.getValueType().getScalarType() == MVT::i1 &&
10022          "Cannot set masked compare for this operation");
10023
10024   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10025   unsigned  Opc = 0;
10026   bool Unsigned = false;
10027   bool Swap = false;
10028   unsigned SSECC;
10029   switch (SetCCOpcode) {
10030   default: llvm_unreachable("Unexpected SETCC condition");
10031   case ISD::SETNE:  SSECC = 4; break;
10032   case ISD::SETEQ:  Opc = X86ISD::PCMPEQM; break;
10033   case ISD::SETUGT: SSECC = 6; Unsigned = true; break;
10034   case ISD::SETLT:  Swap = true; //fall-through
10035   case ISD::SETGT:  Opc = X86ISD::PCMPGTM; break;
10036   case ISD::SETULT: SSECC = 1; Unsigned = true; break;
10037   case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT
10038   case ISD::SETGE:  Swap = true; SSECC = 2; break; // LE + swap
10039   case ISD::SETULE: Unsigned = true; //fall-through
10040   case ISD::SETLE:  SSECC = 2; break;
10041   }
10042
10043   if (Swap)
10044     std::swap(Op0, Op1);
10045   if (Opc)
10046     return DAG.getNode(Opc, dl, VT, Op0, Op1);
10047   Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
10048   return DAG.getNode(Opc, dl, VT, Op0, Op1,
10049                      DAG.getConstant(SSECC, MVT::i8));
10050 }
10051
10052 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
10053                            SelectionDAG &DAG) {
10054   SDValue Op0 = Op.getOperand(0);
10055   SDValue Op1 = Op.getOperand(1);
10056   SDValue CC = Op.getOperand(2);
10057   MVT VT = Op.getSimpleValueType();
10058   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10059   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
10060   SDLoc dl(Op);
10061
10062   if (isFP) {
10063 #ifndef NDEBUG
10064     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
10065     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
10066 #endif
10067
10068     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
10069     unsigned Opc = X86ISD::CMPP;
10070     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
10071       assert(VT.getVectorNumElements() <= 16);
10072       Opc = X86ISD::CMPM;
10073     }
10074     // In the two special cases we can't handle, emit two comparisons.
10075     if (SSECC == 8) {
10076       unsigned CC0, CC1;
10077       unsigned CombineOpc;
10078       if (SetCCOpcode == ISD::SETUEQ) {
10079         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
10080       } else {
10081         assert(SetCCOpcode == ISD::SETONE);
10082         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
10083       }
10084
10085       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10086                                  DAG.getConstant(CC0, MVT::i8));
10087       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10088                                  DAG.getConstant(CC1, MVT::i8));
10089       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
10090     }
10091     // Handle all other FP comparisons here.
10092     return DAG.getNode(Opc, dl, VT, Op0, Op1,
10093                        DAG.getConstant(SSECC, MVT::i8));
10094   }
10095
10096   // Break 256-bit integer vector compare into smaller ones.
10097   if (VT.is256BitVector() && !Subtarget->hasInt256())
10098     return Lower256IntVSETCC(Op, DAG);
10099
10100   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
10101   EVT OpVT = Op1.getValueType();
10102   if (Subtarget->hasAVX512()) {
10103     if (Op1.getValueType().is512BitVector() ||
10104         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
10105       return LowerIntVSETCC_AVX512(Op, DAG, Subtarget);
10106
10107     // In AVX-512 architecture setcc returns mask with i1 elements,
10108     // But there is no compare instruction for i8 and i16 elements.
10109     // We are not talking about 512-bit operands in this case, these
10110     // types are illegal.
10111     if (MaskResult &&
10112         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
10113          OpVT.getVectorElementType().getSizeInBits() >= 8))
10114       return DAG.getNode(ISD::TRUNCATE, dl, VT,
10115                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
10116   }
10117
10118   // We are handling one of the integer comparisons here.  Since SSE only has
10119   // GT and EQ comparisons for integer, swapping operands and multiple
10120   // operations may be required for some comparisons.
10121   unsigned Opc;
10122   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
10123
10124   switch (SetCCOpcode) {
10125   default: llvm_unreachable("Unexpected SETCC condition");
10126   case ISD::SETNE:  Invert = true;
10127   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
10128   case ISD::SETLT:  Swap = true;
10129   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
10130   case ISD::SETGE:  Swap = true;
10131   case ISD::SETLE:  Opc = X86ISD::PCMPGT;
10132                     Invert = true; break;
10133   case ISD::SETULT: Swap = true;
10134   case ISD::SETUGT: Opc = X86ISD::PCMPGT;
10135                     FlipSigns = true; break;
10136   case ISD::SETUGE: Swap = true;
10137   case ISD::SETULE: Opc = X86ISD::PCMPGT;
10138                     FlipSigns = true; Invert = true; break;
10139   }
10140
10141   // Special case: Use min/max operations for SETULE/SETUGE
10142   MVT VET = VT.getVectorElementType();
10143   bool hasMinMax =
10144        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
10145     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
10146
10147   if (hasMinMax) {
10148     switch (SetCCOpcode) {
10149     default: break;
10150     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
10151     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
10152     }
10153
10154     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
10155   }
10156
10157   if (Swap)
10158     std::swap(Op0, Op1);
10159
10160   // Check that the operation in question is available (most are plain SSE2,
10161   // but PCMPGTQ and PCMPEQQ have different requirements).
10162   if (VT == MVT::v2i64) {
10163     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
10164       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
10165
10166       // First cast everything to the right type.
10167       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10168       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10169
10170       // Since SSE has no unsigned integer comparisons, we need to flip the sign
10171       // bits of the inputs before performing those operations. The lower
10172       // compare is always unsigned.
10173       SDValue SB;
10174       if (FlipSigns) {
10175         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10176       } else {
10177         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10178         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10179         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10180                          Sign, Zero, Sign, Zero);
10181       }
10182       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10183       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
10184
10185       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10186       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10187       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10188
10189       // Create masks for only the low parts/high parts of the 64 bit integers.
10190       static const int MaskHi[] = { 1, 1, 3, 3 };
10191       static const int MaskLo[] = { 0, 0, 2, 2 };
10192       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10193       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10194       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10195
10196       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10197       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10198
10199       if (Invert)
10200         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10201
10202       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10203     }
10204
10205     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10206       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10207       // pcmpeqd + pshufd + pand.
10208       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10209
10210       // First cast everything to the right type.
10211       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10212       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10213
10214       // Do the compare.
10215       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10216
10217       // Make sure the lower and upper halves are both all-ones.
10218       static const int Mask[] = { 1, 0, 3, 2 };
10219       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10220       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10221
10222       if (Invert)
10223         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10224
10225       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10226     }
10227   }
10228
10229   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10230   // bits of the inputs before performing those operations.
10231   if (FlipSigns) {
10232     EVT EltVT = VT.getVectorElementType();
10233     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10234     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10235     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10236   }
10237
10238   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10239
10240   // If the logical-not of the result is required, perform that now.
10241   if (Invert)
10242     Result = DAG.getNOT(dl, Result, VT);
10243
10244   if (MinMax)
10245     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10246
10247   return Result;
10248 }
10249
10250 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10251
10252   MVT VT = Op.getSimpleValueType();
10253
10254   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10255
10256   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
10257          && "SetCC type must be 8-bit or 1-bit integer");
10258   SDValue Op0 = Op.getOperand(0);
10259   SDValue Op1 = Op.getOperand(1);
10260   SDLoc dl(Op);
10261   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10262
10263   // Optimize to BT if possible.
10264   // Lower (X & (1 << N)) == 0 to BT(X, N).
10265   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10266   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10267   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10268       Op1.getOpcode() == ISD::Constant &&
10269       cast<ConstantSDNode>(Op1)->isNullValue() &&
10270       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10271     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10272     if (NewSetCC.getNode())
10273       return NewSetCC;
10274   }
10275
10276   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10277   // these.
10278   if (Op1.getOpcode() == ISD::Constant &&
10279       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10280        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10281       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10282
10283     // If the input is a setcc, then reuse the input setcc or use a new one with
10284     // the inverted condition.
10285     if (Op0.getOpcode() == X86ISD::SETCC) {
10286       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10287       bool Invert = (CC == ISD::SETNE) ^
10288         cast<ConstantSDNode>(Op1)->isNullValue();
10289       if (!Invert)
10290         return Op0;
10291
10292       CCode = X86::GetOppositeBranchCondition(CCode);
10293       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10294                                   DAG.getConstant(CCode, MVT::i8),
10295                                   Op0.getOperand(1));
10296       if (VT == MVT::i1)
10297         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10298       return SetCC;
10299     }
10300   }
10301
10302   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10303   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10304   if (X86CC == X86::COND_INVALID)
10305     return SDValue();
10306
10307   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10308   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10309   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10310                               DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10311   if (VT == MVT::i1)
10312     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10313   return SetCC;
10314 }
10315
10316 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10317 static bool isX86LogicalCmp(SDValue Op) {
10318   unsigned Opc = Op.getNode()->getOpcode();
10319   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10320       Opc == X86ISD::SAHF)
10321     return true;
10322   if (Op.getResNo() == 1 &&
10323       (Opc == X86ISD::ADD ||
10324        Opc == X86ISD::SUB ||
10325        Opc == X86ISD::ADC ||
10326        Opc == X86ISD::SBB ||
10327        Opc == X86ISD::SMUL ||
10328        Opc == X86ISD::UMUL ||
10329        Opc == X86ISD::INC ||
10330        Opc == X86ISD::DEC ||
10331        Opc == X86ISD::OR ||
10332        Opc == X86ISD::XOR ||
10333        Opc == X86ISD::AND))
10334     return true;
10335
10336   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10337     return true;
10338
10339   return false;
10340 }
10341
10342 static bool isZero(SDValue V) {
10343   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10344   return C && C->isNullValue();
10345 }
10346
10347 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10348   if (V.getOpcode() != ISD::TRUNCATE)
10349     return false;
10350
10351   SDValue VOp0 = V.getOperand(0);
10352   unsigned InBits = VOp0.getValueSizeInBits();
10353   unsigned Bits = V.getValueSizeInBits();
10354   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10355 }
10356
10357 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10358   bool addTest = true;
10359   SDValue Cond  = Op.getOperand(0);
10360   SDValue Op1 = Op.getOperand(1);
10361   SDValue Op2 = Op.getOperand(2);
10362   SDLoc DL(Op);
10363   EVT VT = Op1.getValueType();
10364   SDValue CC;
10365
10366   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10367   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10368   // sequence later on.
10369   if (Cond.getOpcode() == ISD::SETCC &&
10370       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10371        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10372       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10373     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10374     int SSECC = translateX86FSETCC(
10375         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10376
10377     if (SSECC != 8) {
10378       if (Subtarget->hasAVX512()) {
10379         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
10380                                   DAG.getConstant(SSECC, MVT::i8));
10381         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
10382       }
10383       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
10384                                 DAG.getConstant(SSECC, MVT::i8));
10385       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10386       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10387       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10388     }
10389   }
10390
10391   if (Cond.getOpcode() == ISD::SETCC) {
10392     SDValue NewCond = LowerSETCC(Cond, DAG);
10393     if (NewCond.getNode())
10394       Cond = NewCond;
10395   }
10396
10397   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10398   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10399   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10400   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10401   if (Cond.getOpcode() == X86ISD::SETCC &&
10402       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10403       isZero(Cond.getOperand(1).getOperand(1))) {
10404     SDValue Cmp = Cond.getOperand(1);
10405
10406     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10407
10408     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10409         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10410       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10411
10412       SDValue CmpOp0 = Cmp.getOperand(0);
10413       // Apply further optimizations for special cases
10414       // (select (x != 0), -1, 0) -> neg & sbb
10415       // (select (x == 0), 0, -1) -> neg & sbb
10416       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10417         if (YC->isNullValue() &&
10418             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10419           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10420           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10421                                     DAG.getConstant(0, CmpOp0.getValueType()),
10422                                     CmpOp0);
10423           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10424                                     DAG.getConstant(X86::COND_B, MVT::i8),
10425                                     SDValue(Neg.getNode(), 1));
10426           return Res;
10427         }
10428
10429       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10430                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10431       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10432
10433       SDValue Res =   // Res = 0 or -1.
10434         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10435                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10436
10437       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10438         Res = DAG.getNOT(DL, Res, Res.getValueType());
10439
10440       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10441       if (N2C == 0 || !N2C->isNullValue())
10442         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10443       return Res;
10444     }
10445   }
10446
10447   // Look past (and (setcc_carry (cmp ...)), 1).
10448   if (Cond.getOpcode() == ISD::AND &&
10449       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10450     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10451     if (C && C->getAPIntValue() == 1)
10452       Cond = Cond.getOperand(0);
10453   }
10454
10455   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10456   // setting operand in place of the X86ISD::SETCC.
10457   unsigned CondOpcode = Cond.getOpcode();
10458   if (CondOpcode == X86ISD::SETCC ||
10459       CondOpcode == X86ISD::SETCC_CARRY) {
10460     CC = Cond.getOperand(0);
10461
10462     SDValue Cmp = Cond.getOperand(1);
10463     unsigned Opc = Cmp.getOpcode();
10464     MVT VT = Op.getSimpleValueType();
10465
10466     bool IllegalFPCMov = false;
10467     if (VT.isFloatingPoint() && !VT.isVector() &&
10468         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10469       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10470
10471     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10472         Opc == X86ISD::BT) { // FIXME
10473       Cond = Cmp;
10474       addTest = false;
10475     }
10476   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10477              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10478              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10479               Cond.getOperand(0).getValueType() != MVT::i8)) {
10480     SDValue LHS = Cond.getOperand(0);
10481     SDValue RHS = Cond.getOperand(1);
10482     unsigned X86Opcode;
10483     unsigned X86Cond;
10484     SDVTList VTs;
10485     switch (CondOpcode) {
10486     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10487     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10488     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10489     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10490     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10491     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10492     default: llvm_unreachable("unexpected overflowing operator");
10493     }
10494     if (CondOpcode == ISD::UMULO)
10495       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10496                           MVT::i32);
10497     else
10498       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10499
10500     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10501
10502     if (CondOpcode == ISD::UMULO)
10503       Cond = X86Op.getValue(2);
10504     else
10505       Cond = X86Op.getValue(1);
10506
10507     CC = DAG.getConstant(X86Cond, MVT::i8);
10508     addTest = false;
10509   }
10510
10511   if (addTest) {
10512     // Look pass the truncate if the high bits are known zero.
10513     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10514         Cond = Cond.getOperand(0);
10515
10516     // We know the result of AND is compared against zero. Try to match
10517     // it to BT.
10518     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10519       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10520       if (NewSetCC.getNode()) {
10521         CC = NewSetCC.getOperand(0);
10522         Cond = NewSetCC.getOperand(1);
10523         addTest = false;
10524       }
10525     }
10526   }
10527
10528   if (addTest) {
10529     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10530     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10531   }
10532
10533   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10534   // a <  b ?  0 : -1 -> RES = setcc_carry
10535   // a >= b ? -1 :  0 -> RES = setcc_carry
10536   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10537   if (Cond.getOpcode() == X86ISD::SUB) {
10538     Cond = ConvertCmpIfNecessary(Cond, DAG);
10539     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10540
10541     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10542         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10543       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10544                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10545       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10546         return DAG.getNOT(DL, Res, Res.getValueType());
10547       return Res;
10548     }
10549   }
10550
10551   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10552   // widen the cmov and push the truncate through. This avoids introducing a new
10553   // branch during isel and doesn't add any extensions.
10554   if (Op.getValueType() == MVT::i8 &&
10555       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10556     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10557     if (T1.getValueType() == T2.getValueType() &&
10558         // Blacklist CopyFromReg to avoid partial register stalls.
10559         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10560       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10561       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10562       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10563     }
10564   }
10565
10566   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10567   // condition is true.
10568   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10569   SDValue Ops[] = { Op2, Op1, CC, Cond };
10570   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10571 }
10572
10573 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10574   MVT VT = Op->getSimpleValueType(0);
10575   SDValue In = Op->getOperand(0);
10576   MVT InVT = In.getSimpleValueType();
10577   SDLoc dl(Op);
10578
10579   unsigned int NumElts = VT.getVectorNumElements();
10580   if (NumElts != 8 && NumElts != 16)
10581     return SDValue();
10582
10583   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10584     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10585
10586   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10587   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10588
10589   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10590   Constant *C = ConstantInt::get(*DAG.getContext(),
10591     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10592
10593   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10594   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10595   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10596                           MachinePointerInfo::getConstantPool(),
10597                           false, false, false, Alignment);
10598   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10599   if (VT.is512BitVector())
10600     return Brcst;
10601   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10602 }
10603
10604 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10605                                 SelectionDAG &DAG) {
10606   MVT VT = Op->getSimpleValueType(0);
10607   SDValue In = Op->getOperand(0);
10608   MVT InVT = In.getSimpleValueType();
10609   SDLoc dl(Op);
10610
10611   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10612     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10613
10614   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10615       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10616       (VT != MVT::v16i16 || InVT != MVT::v16i8))
10617     return SDValue();
10618
10619   if (Subtarget->hasInt256())
10620     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10621
10622   // Optimize vectors in AVX mode
10623   // Sign extend  v8i16 to v8i32 and
10624   //              v4i32 to v4i64
10625   //
10626   // Divide input vector into two parts
10627   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10628   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10629   // concat the vectors to original VT
10630
10631   unsigned NumElems = InVT.getVectorNumElements();
10632   SDValue Undef = DAG.getUNDEF(InVT);
10633
10634   SmallVector<int,8> ShufMask1(NumElems, -1);
10635   for (unsigned i = 0; i != NumElems/2; ++i)
10636     ShufMask1[i] = i;
10637
10638   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10639
10640   SmallVector<int,8> ShufMask2(NumElems, -1);
10641   for (unsigned i = 0; i != NumElems/2; ++i)
10642     ShufMask2[i] = i + NumElems/2;
10643
10644   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10645
10646   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10647                                 VT.getVectorNumElements()/2);
10648
10649   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10650   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10651
10652   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10653 }
10654
10655 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10656 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10657 // from the AND / OR.
10658 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10659   Opc = Op.getOpcode();
10660   if (Opc != ISD::OR && Opc != ISD::AND)
10661     return false;
10662   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10663           Op.getOperand(0).hasOneUse() &&
10664           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10665           Op.getOperand(1).hasOneUse());
10666 }
10667
10668 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10669 // 1 and that the SETCC node has a single use.
10670 static bool isXor1OfSetCC(SDValue Op) {
10671   if (Op.getOpcode() != ISD::XOR)
10672     return false;
10673   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10674   if (N1C && N1C->getAPIntValue() == 1) {
10675     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10676       Op.getOperand(0).hasOneUse();
10677   }
10678   return false;
10679 }
10680
10681 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10682   bool addTest = true;
10683   SDValue Chain = Op.getOperand(0);
10684   SDValue Cond  = Op.getOperand(1);
10685   SDValue Dest  = Op.getOperand(2);
10686   SDLoc dl(Op);
10687   SDValue CC;
10688   bool Inverted = false;
10689
10690   if (Cond.getOpcode() == ISD::SETCC) {
10691     // Check for setcc([su]{add,sub,mul}o == 0).
10692     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10693         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10694         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10695         Cond.getOperand(0).getResNo() == 1 &&
10696         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10697          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10698          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10699          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10700          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10701          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10702       Inverted = true;
10703       Cond = Cond.getOperand(0);
10704     } else {
10705       SDValue NewCond = LowerSETCC(Cond, DAG);
10706       if (NewCond.getNode())
10707         Cond = NewCond;
10708     }
10709   }
10710 #if 0
10711   // FIXME: LowerXALUO doesn't handle these!!
10712   else if (Cond.getOpcode() == X86ISD::ADD  ||
10713            Cond.getOpcode() == X86ISD::SUB  ||
10714            Cond.getOpcode() == X86ISD::SMUL ||
10715            Cond.getOpcode() == X86ISD::UMUL)
10716     Cond = LowerXALUO(Cond, DAG);
10717 #endif
10718
10719   // Look pass (and (setcc_carry (cmp ...)), 1).
10720   if (Cond.getOpcode() == ISD::AND &&
10721       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10722     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10723     if (C && C->getAPIntValue() == 1)
10724       Cond = Cond.getOperand(0);
10725   }
10726
10727   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10728   // setting operand in place of the X86ISD::SETCC.
10729   unsigned CondOpcode = Cond.getOpcode();
10730   if (CondOpcode == X86ISD::SETCC ||
10731       CondOpcode == X86ISD::SETCC_CARRY) {
10732     CC = Cond.getOperand(0);
10733
10734     SDValue Cmp = Cond.getOperand(1);
10735     unsigned Opc = Cmp.getOpcode();
10736     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10737     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10738       Cond = Cmp;
10739       addTest = false;
10740     } else {
10741       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10742       default: break;
10743       case X86::COND_O:
10744       case X86::COND_B:
10745         // These can only come from an arithmetic instruction with overflow,
10746         // e.g. SADDO, UADDO.
10747         Cond = Cond.getNode()->getOperand(1);
10748         addTest = false;
10749         break;
10750       }
10751     }
10752   }
10753   CondOpcode = Cond.getOpcode();
10754   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10755       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10756       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10757        Cond.getOperand(0).getValueType() != MVT::i8)) {
10758     SDValue LHS = Cond.getOperand(0);
10759     SDValue RHS = Cond.getOperand(1);
10760     unsigned X86Opcode;
10761     unsigned X86Cond;
10762     SDVTList VTs;
10763     // Keep this in sync with LowerXALUO, otherwise we might create redundant
10764     // instructions that can't be removed afterwards (i.e. X86ISD::ADD and
10765     // X86ISD::INC).
10766     switch (CondOpcode) {
10767     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10768     case ISD::SADDO:
10769       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10770         if (C->isOne()) {
10771           X86Opcode = X86ISD::INC; X86Cond = X86::COND_O;
10772           break;
10773         }
10774       X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10775     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10776     case ISD::SSUBO:
10777       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10778         if (C->isOne()) {
10779           X86Opcode = X86ISD::DEC; X86Cond = X86::COND_O;
10780           break;
10781         }
10782       X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10783     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10784     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10785     default: llvm_unreachable("unexpected overflowing operator");
10786     }
10787     if (Inverted)
10788       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10789     if (CondOpcode == ISD::UMULO)
10790       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10791                           MVT::i32);
10792     else
10793       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10794
10795     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10796
10797     if (CondOpcode == ISD::UMULO)
10798       Cond = X86Op.getValue(2);
10799     else
10800       Cond = X86Op.getValue(1);
10801
10802     CC = DAG.getConstant(X86Cond, MVT::i8);
10803     addTest = false;
10804   } else {
10805     unsigned CondOpc;
10806     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10807       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10808       if (CondOpc == ISD::OR) {
10809         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10810         // two branches instead of an explicit OR instruction with a
10811         // separate test.
10812         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10813             isX86LogicalCmp(Cmp)) {
10814           CC = Cond.getOperand(0).getOperand(0);
10815           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10816                               Chain, Dest, CC, Cmp);
10817           CC = Cond.getOperand(1).getOperand(0);
10818           Cond = Cmp;
10819           addTest = false;
10820         }
10821       } else { // ISD::AND
10822         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10823         // two branches instead of an explicit AND instruction with a
10824         // separate test. However, we only do this if this block doesn't
10825         // have a fall-through edge, because this requires an explicit
10826         // jmp when the condition is false.
10827         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10828             isX86LogicalCmp(Cmp) &&
10829             Op.getNode()->hasOneUse()) {
10830           X86::CondCode CCode =
10831             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10832           CCode = X86::GetOppositeBranchCondition(CCode);
10833           CC = DAG.getConstant(CCode, MVT::i8);
10834           SDNode *User = *Op.getNode()->use_begin();
10835           // Look for an unconditional branch following this conditional branch.
10836           // We need this because we need to reverse the successors in order
10837           // to implement FCMP_OEQ.
10838           if (User->getOpcode() == ISD::BR) {
10839             SDValue FalseBB = User->getOperand(1);
10840             SDNode *NewBR =
10841               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10842             assert(NewBR == User);
10843             (void)NewBR;
10844             Dest = FalseBB;
10845
10846             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10847                                 Chain, Dest, CC, Cmp);
10848             X86::CondCode CCode =
10849               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10850             CCode = X86::GetOppositeBranchCondition(CCode);
10851             CC = DAG.getConstant(CCode, MVT::i8);
10852             Cond = Cmp;
10853             addTest = false;
10854           }
10855         }
10856       }
10857     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10858       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10859       // It should be transformed during dag combiner except when the condition
10860       // is set by a arithmetics with overflow node.
10861       X86::CondCode CCode =
10862         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10863       CCode = X86::GetOppositeBranchCondition(CCode);
10864       CC = DAG.getConstant(CCode, MVT::i8);
10865       Cond = Cond.getOperand(0).getOperand(1);
10866       addTest = false;
10867     } else if (Cond.getOpcode() == ISD::SETCC &&
10868                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10869       // For FCMP_OEQ, we can emit
10870       // two branches instead of an explicit AND instruction with a
10871       // separate test. However, we only do this if this block doesn't
10872       // have a fall-through edge, because this requires an explicit
10873       // jmp when the condition is false.
10874       if (Op.getNode()->hasOneUse()) {
10875         SDNode *User = *Op.getNode()->use_begin();
10876         // Look for an unconditional branch following this conditional branch.
10877         // We need this because we need to reverse the successors in order
10878         // to implement FCMP_OEQ.
10879         if (User->getOpcode() == ISD::BR) {
10880           SDValue FalseBB = User->getOperand(1);
10881           SDNode *NewBR =
10882             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10883           assert(NewBR == User);
10884           (void)NewBR;
10885           Dest = FalseBB;
10886
10887           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10888                                     Cond.getOperand(0), Cond.getOperand(1));
10889           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10890           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10891           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10892                               Chain, Dest, CC, Cmp);
10893           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10894           Cond = Cmp;
10895           addTest = false;
10896         }
10897       }
10898     } else if (Cond.getOpcode() == ISD::SETCC &&
10899                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10900       // For FCMP_UNE, we can emit
10901       // two branches instead of an explicit AND instruction with a
10902       // separate test. However, we only do this if this block doesn't
10903       // have a fall-through edge, because this requires an explicit
10904       // jmp when the condition is false.
10905       if (Op.getNode()->hasOneUse()) {
10906         SDNode *User = *Op.getNode()->use_begin();
10907         // Look for an unconditional branch following this conditional branch.
10908         // We need this because we need to reverse the successors in order
10909         // to implement FCMP_UNE.
10910         if (User->getOpcode() == ISD::BR) {
10911           SDValue FalseBB = User->getOperand(1);
10912           SDNode *NewBR =
10913             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10914           assert(NewBR == User);
10915           (void)NewBR;
10916
10917           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10918                                     Cond.getOperand(0), Cond.getOperand(1));
10919           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10920           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10921           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10922                               Chain, Dest, CC, Cmp);
10923           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10924           Cond = Cmp;
10925           addTest = false;
10926           Dest = FalseBB;
10927         }
10928       }
10929     }
10930   }
10931
10932   if (addTest) {
10933     // Look pass the truncate if the high bits are known zero.
10934     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10935         Cond = Cond.getOperand(0);
10936
10937     // We know the result of AND is compared against zero. Try to match
10938     // it to BT.
10939     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10940       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10941       if (NewSetCC.getNode()) {
10942         CC = NewSetCC.getOperand(0);
10943         Cond = NewSetCC.getOperand(1);
10944         addTest = false;
10945       }
10946     }
10947   }
10948
10949   if (addTest) {
10950     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10951     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10952   }
10953   Cond = ConvertCmpIfNecessary(Cond, DAG);
10954   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10955                      Chain, Dest, CC, Cond);
10956 }
10957
10958 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10959 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10960 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10961 // that the guard pages used by the OS virtual memory manager are allocated in
10962 // correct sequence.
10963 SDValue
10964 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10965                                            SelectionDAG &DAG) const {
10966   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10967           getTargetMachine().Options.EnableSegmentedStacks) &&
10968          "This should be used only on Windows targets or when segmented stacks "
10969          "are being used");
10970   assert(!Subtarget->isTargetMacho() && "Not implemented");
10971   SDLoc dl(Op);
10972
10973   // Get the inputs.
10974   SDValue Chain = Op.getOperand(0);
10975   SDValue Size  = Op.getOperand(1);
10976   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10977   EVT VT = Op.getNode()->getValueType(0);
10978
10979   bool Is64Bit = Subtarget->is64Bit();
10980   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10981
10982   if (getTargetMachine().Options.EnableSegmentedStacks) {
10983     MachineFunction &MF = DAG.getMachineFunction();
10984     MachineRegisterInfo &MRI = MF.getRegInfo();
10985
10986     if (Is64Bit) {
10987       // The 64 bit implementation of segmented stacks needs to clobber both r10
10988       // r11. This makes it impossible to use it along with nested parameters.
10989       const Function *F = MF.getFunction();
10990
10991       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10992            I != E; ++I)
10993         if (I->hasNestAttr())
10994           report_fatal_error("Cannot use segmented stacks with functions that "
10995                              "have nested arguments.");
10996     }
10997
10998     const TargetRegisterClass *AddrRegClass =
10999       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
11000     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
11001     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
11002     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
11003                                 DAG.getRegister(Vreg, SPTy));
11004     SDValue Ops1[2] = { Value, Chain };
11005     return DAG.getMergeValues(Ops1, 2, dl);
11006   } else {
11007     SDValue Flag;
11008     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
11009
11010     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
11011     Flag = Chain.getValue(1);
11012     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
11013
11014     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
11015
11016     const X86RegisterInfo *RegInfo =
11017       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
11018     unsigned SPReg = RegInfo->getStackRegister();
11019     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
11020     Chain = SP.getValue(1);
11021
11022     if (Align) {
11023       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
11024                        DAG.getConstant(-(uint64_t)Align, VT));
11025       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
11026     }
11027
11028     SDValue Ops1[2] = { SP, Chain };
11029     return DAG.getMergeValues(Ops1, 2, dl);
11030   }
11031 }
11032
11033 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
11034   MachineFunction &MF = DAG.getMachineFunction();
11035   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
11036
11037   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11038   SDLoc DL(Op);
11039
11040   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
11041     // vastart just stores the address of the VarArgsFrameIndex slot into the
11042     // memory location argument.
11043     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11044                                    getPointerTy());
11045     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
11046                         MachinePointerInfo(SV), false, false, 0);
11047   }
11048
11049   // __va_list_tag:
11050   //   gp_offset         (0 - 6 * 8)
11051   //   fp_offset         (48 - 48 + 8 * 16)
11052   //   overflow_arg_area (point to parameters coming in memory).
11053   //   reg_save_area
11054   SmallVector<SDValue, 8> MemOps;
11055   SDValue FIN = Op.getOperand(1);
11056   // Store gp_offset
11057   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
11058                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
11059                                                MVT::i32),
11060                                FIN, MachinePointerInfo(SV), false, false, 0);
11061   MemOps.push_back(Store);
11062
11063   // Store fp_offset
11064   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11065                     FIN, DAG.getIntPtrConstant(4));
11066   Store = DAG.getStore(Op.getOperand(0), DL,
11067                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
11068                                        MVT::i32),
11069                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
11070   MemOps.push_back(Store);
11071
11072   // Store ptr to overflow_arg_area
11073   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11074                     FIN, DAG.getIntPtrConstant(4));
11075   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11076                                     getPointerTy());
11077   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
11078                        MachinePointerInfo(SV, 8),
11079                        false, false, 0);
11080   MemOps.push_back(Store);
11081
11082   // Store ptr to reg_save_area.
11083   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11084                     FIN, DAG.getIntPtrConstant(8));
11085   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
11086                                     getPointerTy());
11087   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
11088                        MachinePointerInfo(SV, 16), false, false, 0);
11089   MemOps.push_back(Store);
11090   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
11091                      &MemOps[0], MemOps.size());
11092 }
11093
11094 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
11095   assert(Subtarget->is64Bit() &&
11096          "LowerVAARG only handles 64-bit va_arg!");
11097   assert((Subtarget->isTargetLinux() ||
11098           Subtarget->isTargetDarwin()) &&
11099           "Unhandled target in LowerVAARG");
11100   assert(Op.getNode()->getNumOperands() == 4);
11101   SDValue Chain = Op.getOperand(0);
11102   SDValue SrcPtr = Op.getOperand(1);
11103   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11104   unsigned Align = Op.getConstantOperandVal(3);
11105   SDLoc dl(Op);
11106
11107   EVT ArgVT = Op.getNode()->getValueType(0);
11108   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11109   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
11110   uint8_t ArgMode;
11111
11112   // Decide which area this value should be read from.
11113   // TODO: Implement the AMD64 ABI in its entirety. This simple
11114   // selection mechanism works only for the basic types.
11115   if (ArgVT == MVT::f80) {
11116     llvm_unreachable("va_arg for f80 not yet implemented");
11117   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
11118     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
11119   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
11120     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
11121   } else {
11122     llvm_unreachable("Unhandled argument type in LowerVAARG");
11123   }
11124
11125   if (ArgMode == 2) {
11126     // Sanity Check: Make sure using fp_offset makes sense.
11127     assert(!getTargetMachine().Options.UseSoftFloat &&
11128            !(DAG.getMachineFunction()
11129                 .getFunction()->getAttributes()
11130                 .hasAttribute(AttributeSet::FunctionIndex,
11131                               Attribute::NoImplicitFloat)) &&
11132            Subtarget->hasSSE1());
11133   }
11134
11135   // Insert VAARG_64 node into the DAG
11136   // VAARG_64 returns two values: Variable Argument Address, Chain
11137   SmallVector<SDValue, 11> InstOps;
11138   InstOps.push_back(Chain);
11139   InstOps.push_back(SrcPtr);
11140   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11141   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
11142   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
11143   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
11144   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
11145                                           VTs, &InstOps[0], InstOps.size(),
11146                                           MVT::i64,
11147                                           MachinePointerInfo(SV),
11148                                           /*Align=*/0,
11149                                           /*Volatile=*/false,
11150                                           /*ReadMem=*/true,
11151                                           /*WriteMem=*/true);
11152   Chain = VAARG.getValue(1);
11153
11154   // Load the next argument and return it
11155   return DAG.getLoad(ArgVT, dl,
11156                      Chain,
11157                      VAARG,
11158                      MachinePointerInfo(),
11159                      false, false, false, 0);
11160 }
11161
11162 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
11163                            SelectionDAG &DAG) {
11164   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
11165   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
11166   SDValue Chain = Op.getOperand(0);
11167   SDValue DstPtr = Op.getOperand(1);
11168   SDValue SrcPtr = Op.getOperand(2);
11169   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
11170   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11171   SDLoc DL(Op);
11172
11173   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
11174                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
11175                        false,
11176                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
11177 }
11178
11179 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
11180 // amount is a constant. Takes immediate version of shift as input.
11181 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
11182                                           SDValue SrcOp, uint64_t ShiftAmt,
11183                                           SelectionDAG &DAG) {
11184   MVT ElementType = VT.getVectorElementType();
11185
11186   // Check for ShiftAmt >= element width
11187   if (ShiftAmt >= ElementType.getSizeInBits()) {
11188     if (Opc == X86ISD::VSRAI)
11189       ShiftAmt = ElementType.getSizeInBits() - 1;
11190     else
11191       return DAG.getConstant(0, VT);
11192   }
11193
11194   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
11195          && "Unknown target vector shift-by-constant node");
11196
11197   // Fold this packed vector shift into a build vector if SrcOp is a
11198   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
11199   if (VT == SrcOp.getSimpleValueType() &&
11200       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
11201     SmallVector<SDValue, 8> Elts;
11202     unsigned NumElts = SrcOp->getNumOperands();
11203     ConstantSDNode *ND;
11204
11205     switch(Opc) {
11206     default: llvm_unreachable(0);
11207     case X86ISD::VSHLI:
11208       for (unsigned i=0; i!=NumElts; ++i) {
11209         SDValue CurrentOp = SrcOp->getOperand(i);
11210         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11211           Elts.push_back(CurrentOp);
11212           continue;
11213         }
11214         ND = cast<ConstantSDNode>(CurrentOp);
11215         const APInt &C = ND->getAPIntValue();
11216         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
11217       }
11218       break;
11219     case X86ISD::VSRLI:
11220       for (unsigned i=0; i!=NumElts; ++i) {
11221         SDValue CurrentOp = SrcOp->getOperand(i);
11222         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11223           Elts.push_back(CurrentOp);
11224           continue;
11225         }
11226         ND = cast<ConstantSDNode>(CurrentOp);
11227         const APInt &C = ND->getAPIntValue();
11228         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
11229       }
11230       break;
11231     case X86ISD::VSRAI:
11232       for (unsigned i=0; i!=NumElts; ++i) {
11233         SDValue CurrentOp = SrcOp->getOperand(i);
11234         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11235           Elts.push_back(CurrentOp);
11236           continue;
11237         }
11238         ND = cast<ConstantSDNode>(CurrentOp);
11239         const APInt &C = ND->getAPIntValue();
11240         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
11241       }
11242       break;
11243     }
11244
11245     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Elts[0], NumElts);
11246   }
11247
11248   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
11249 }
11250
11251 // getTargetVShiftNode - Handle vector element shifts where the shift amount
11252 // may or may not be a constant. Takes immediate version of shift as input.
11253 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
11254                                    SDValue SrcOp, SDValue ShAmt,
11255                                    SelectionDAG &DAG) {
11256   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11257
11258   // Catch shift-by-constant.
11259   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11260     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11261                                       CShAmt->getZExtValue(), DAG);
11262
11263   // Change opcode to non-immediate version
11264   switch (Opc) {
11265     default: llvm_unreachable("Unknown target vector shift node");
11266     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11267     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11268     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11269   }
11270
11271   // Need to build a vector containing shift amount
11272   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11273   SDValue ShOps[4];
11274   ShOps[0] = ShAmt;
11275   ShOps[1] = DAG.getConstant(0, MVT::i32);
11276   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
11277   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
11278
11279   // The return type has to be a 128-bit type with the same element
11280   // type as the input type.
11281   MVT EltVT = VT.getVectorElementType();
11282   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11283
11284   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11285   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11286 }
11287
11288 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11289   SDLoc dl(Op);
11290   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11291   switch (IntNo) {
11292   default: return SDValue();    // Don't custom lower most intrinsics.
11293   // Comparison intrinsics.
11294   case Intrinsic::x86_sse_comieq_ss:
11295   case Intrinsic::x86_sse_comilt_ss:
11296   case Intrinsic::x86_sse_comile_ss:
11297   case Intrinsic::x86_sse_comigt_ss:
11298   case Intrinsic::x86_sse_comige_ss:
11299   case Intrinsic::x86_sse_comineq_ss:
11300   case Intrinsic::x86_sse_ucomieq_ss:
11301   case Intrinsic::x86_sse_ucomilt_ss:
11302   case Intrinsic::x86_sse_ucomile_ss:
11303   case Intrinsic::x86_sse_ucomigt_ss:
11304   case Intrinsic::x86_sse_ucomige_ss:
11305   case Intrinsic::x86_sse_ucomineq_ss:
11306   case Intrinsic::x86_sse2_comieq_sd:
11307   case Intrinsic::x86_sse2_comilt_sd:
11308   case Intrinsic::x86_sse2_comile_sd:
11309   case Intrinsic::x86_sse2_comigt_sd:
11310   case Intrinsic::x86_sse2_comige_sd:
11311   case Intrinsic::x86_sse2_comineq_sd:
11312   case Intrinsic::x86_sse2_ucomieq_sd:
11313   case Intrinsic::x86_sse2_ucomilt_sd:
11314   case Intrinsic::x86_sse2_ucomile_sd:
11315   case Intrinsic::x86_sse2_ucomigt_sd:
11316   case Intrinsic::x86_sse2_ucomige_sd:
11317   case Intrinsic::x86_sse2_ucomineq_sd: {
11318     unsigned Opc;
11319     ISD::CondCode CC;
11320     switch (IntNo) {
11321     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11322     case Intrinsic::x86_sse_comieq_ss:
11323     case Intrinsic::x86_sse2_comieq_sd:
11324       Opc = X86ISD::COMI;
11325       CC = ISD::SETEQ;
11326       break;
11327     case Intrinsic::x86_sse_comilt_ss:
11328     case Intrinsic::x86_sse2_comilt_sd:
11329       Opc = X86ISD::COMI;
11330       CC = ISD::SETLT;
11331       break;
11332     case Intrinsic::x86_sse_comile_ss:
11333     case Intrinsic::x86_sse2_comile_sd:
11334       Opc = X86ISD::COMI;
11335       CC = ISD::SETLE;
11336       break;
11337     case Intrinsic::x86_sse_comigt_ss:
11338     case Intrinsic::x86_sse2_comigt_sd:
11339       Opc = X86ISD::COMI;
11340       CC = ISD::SETGT;
11341       break;
11342     case Intrinsic::x86_sse_comige_ss:
11343     case Intrinsic::x86_sse2_comige_sd:
11344       Opc = X86ISD::COMI;
11345       CC = ISD::SETGE;
11346       break;
11347     case Intrinsic::x86_sse_comineq_ss:
11348     case Intrinsic::x86_sse2_comineq_sd:
11349       Opc = X86ISD::COMI;
11350       CC = ISD::SETNE;
11351       break;
11352     case Intrinsic::x86_sse_ucomieq_ss:
11353     case Intrinsic::x86_sse2_ucomieq_sd:
11354       Opc = X86ISD::UCOMI;
11355       CC = ISD::SETEQ;
11356       break;
11357     case Intrinsic::x86_sse_ucomilt_ss:
11358     case Intrinsic::x86_sse2_ucomilt_sd:
11359       Opc = X86ISD::UCOMI;
11360       CC = ISD::SETLT;
11361       break;
11362     case Intrinsic::x86_sse_ucomile_ss:
11363     case Intrinsic::x86_sse2_ucomile_sd:
11364       Opc = X86ISD::UCOMI;
11365       CC = ISD::SETLE;
11366       break;
11367     case Intrinsic::x86_sse_ucomigt_ss:
11368     case Intrinsic::x86_sse2_ucomigt_sd:
11369       Opc = X86ISD::UCOMI;
11370       CC = ISD::SETGT;
11371       break;
11372     case Intrinsic::x86_sse_ucomige_ss:
11373     case Intrinsic::x86_sse2_ucomige_sd:
11374       Opc = X86ISD::UCOMI;
11375       CC = ISD::SETGE;
11376       break;
11377     case Intrinsic::x86_sse_ucomineq_ss:
11378     case Intrinsic::x86_sse2_ucomineq_sd:
11379       Opc = X86ISD::UCOMI;
11380       CC = ISD::SETNE;
11381       break;
11382     }
11383
11384     SDValue LHS = Op.getOperand(1);
11385     SDValue RHS = Op.getOperand(2);
11386     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11387     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11388     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11389     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11390                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11391     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11392   }
11393
11394   // Arithmetic intrinsics.
11395   case Intrinsic::x86_sse2_pmulu_dq:
11396   case Intrinsic::x86_avx2_pmulu_dq:
11397     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11398                        Op.getOperand(1), Op.getOperand(2));
11399
11400   // SSE2/AVX2 sub with unsigned saturation intrinsics
11401   case Intrinsic::x86_sse2_psubus_b:
11402   case Intrinsic::x86_sse2_psubus_w:
11403   case Intrinsic::x86_avx2_psubus_b:
11404   case Intrinsic::x86_avx2_psubus_w:
11405     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11406                        Op.getOperand(1), Op.getOperand(2));
11407
11408   // SSE3/AVX horizontal add/sub intrinsics
11409   case Intrinsic::x86_sse3_hadd_ps:
11410   case Intrinsic::x86_sse3_hadd_pd:
11411   case Intrinsic::x86_avx_hadd_ps_256:
11412   case Intrinsic::x86_avx_hadd_pd_256:
11413   case Intrinsic::x86_sse3_hsub_ps:
11414   case Intrinsic::x86_sse3_hsub_pd:
11415   case Intrinsic::x86_avx_hsub_ps_256:
11416   case Intrinsic::x86_avx_hsub_pd_256:
11417   case Intrinsic::x86_ssse3_phadd_w_128:
11418   case Intrinsic::x86_ssse3_phadd_d_128:
11419   case Intrinsic::x86_avx2_phadd_w:
11420   case Intrinsic::x86_avx2_phadd_d:
11421   case Intrinsic::x86_ssse3_phsub_w_128:
11422   case Intrinsic::x86_ssse3_phsub_d_128:
11423   case Intrinsic::x86_avx2_phsub_w:
11424   case Intrinsic::x86_avx2_phsub_d: {
11425     unsigned Opcode;
11426     switch (IntNo) {
11427     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11428     case Intrinsic::x86_sse3_hadd_ps:
11429     case Intrinsic::x86_sse3_hadd_pd:
11430     case Intrinsic::x86_avx_hadd_ps_256:
11431     case Intrinsic::x86_avx_hadd_pd_256:
11432       Opcode = X86ISD::FHADD;
11433       break;
11434     case Intrinsic::x86_sse3_hsub_ps:
11435     case Intrinsic::x86_sse3_hsub_pd:
11436     case Intrinsic::x86_avx_hsub_ps_256:
11437     case Intrinsic::x86_avx_hsub_pd_256:
11438       Opcode = X86ISD::FHSUB;
11439       break;
11440     case Intrinsic::x86_ssse3_phadd_w_128:
11441     case Intrinsic::x86_ssse3_phadd_d_128:
11442     case Intrinsic::x86_avx2_phadd_w:
11443     case Intrinsic::x86_avx2_phadd_d:
11444       Opcode = X86ISD::HADD;
11445       break;
11446     case Intrinsic::x86_ssse3_phsub_w_128:
11447     case Intrinsic::x86_ssse3_phsub_d_128:
11448     case Intrinsic::x86_avx2_phsub_w:
11449     case Intrinsic::x86_avx2_phsub_d:
11450       Opcode = X86ISD::HSUB;
11451       break;
11452     }
11453     return DAG.getNode(Opcode, dl, Op.getValueType(),
11454                        Op.getOperand(1), Op.getOperand(2));
11455   }
11456
11457   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11458   case Intrinsic::x86_sse2_pmaxu_b:
11459   case Intrinsic::x86_sse41_pmaxuw:
11460   case Intrinsic::x86_sse41_pmaxud:
11461   case Intrinsic::x86_avx2_pmaxu_b:
11462   case Intrinsic::x86_avx2_pmaxu_w:
11463   case Intrinsic::x86_avx2_pmaxu_d:
11464   case Intrinsic::x86_sse2_pminu_b:
11465   case Intrinsic::x86_sse41_pminuw:
11466   case Intrinsic::x86_sse41_pminud:
11467   case Intrinsic::x86_avx2_pminu_b:
11468   case Intrinsic::x86_avx2_pminu_w:
11469   case Intrinsic::x86_avx2_pminu_d:
11470   case Intrinsic::x86_sse41_pmaxsb:
11471   case Intrinsic::x86_sse2_pmaxs_w:
11472   case Intrinsic::x86_sse41_pmaxsd:
11473   case Intrinsic::x86_avx2_pmaxs_b:
11474   case Intrinsic::x86_avx2_pmaxs_w:
11475   case Intrinsic::x86_avx2_pmaxs_d:
11476   case Intrinsic::x86_sse41_pminsb:
11477   case Intrinsic::x86_sse2_pmins_w:
11478   case Intrinsic::x86_sse41_pminsd:
11479   case Intrinsic::x86_avx2_pmins_b:
11480   case Intrinsic::x86_avx2_pmins_w:
11481   case Intrinsic::x86_avx2_pmins_d: {
11482     unsigned Opcode;
11483     switch (IntNo) {
11484     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11485     case Intrinsic::x86_sse2_pmaxu_b:
11486     case Intrinsic::x86_sse41_pmaxuw:
11487     case Intrinsic::x86_sse41_pmaxud:
11488     case Intrinsic::x86_avx2_pmaxu_b:
11489     case Intrinsic::x86_avx2_pmaxu_w:
11490     case Intrinsic::x86_avx2_pmaxu_d:
11491       Opcode = X86ISD::UMAX;
11492       break;
11493     case Intrinsic::x86_sse2_pminu_b:
11494     case Intrinsic::x86_sse41_pminuw:
11495     case Intrinsic::x86_sse41_pminud:
11496     case Intrinsic::x86_avx2_pminu_b:
11497     case Intrinsic::x86_avx2_pminu_w:
11498     case Intrinsic::x86_avx2_pminu_d:
11499       Opcode = X86ISD::UMIN;
11500       break;
11501     case Intrinsic::x86_sse41_pmaxsb:
11502     case Intrinsic::x86_sse2_pmaxs_w:
11503     case Intrinsic::x86_sse41_pmaxsd:
11504     case Intrinsic::x86_avx2_pmaxs_b:
11505     case Intrinsic::x86_avx2_pmaxs_w:
11506     case Intrinsic::x86_avx2_pmaxs_d:
11507       Opcode = X86ISD::SMAX;
11508       break;
11509     case Intrinsic::x86_sse41_pminsb:
11510     case Intrinsic::x86_sse2_pmins_w:
11511     case Intrinsic::x86_sse41_pminsd:
11512     case Intrinsic::x86_avx2_pmins_b:
11513     case Intrinsic::x86_avx2_pmins_w:
11514     case Intrinsic::x86_avx2_pmins_d:
11515       Opcode = X86ISD::SMIN;
11516       break;
11517     }
11518     return DAG.getNode(Opcode, dl, Op.getValueType(),
11519                        Op.getOperand(1), Op.getOperand(2));
11520   }
11521
11522   // SSE/SSE2/AVX floating point max/min intrinsics.
11523   case Intrinsic::x86_sse_max_ps:
11524   case Intrinsic::x86_sse2_max_pd:
11525   case Intrinsic::x86_avx_max_ps_256:
11526   case Intrinsic::x86_avx_max_pd_256:
11527   case Intrinsic::x86_sse_min_ps:
11528   case Intrinsic::x86_sse2_min_pd:
11529   case Intrinsic::x86_avx_min_ps_256:
11530   case Intrinsic::x86_avx_min_pd_256: {
11531     unsigned Opcode;
11532     switch (IntNo) {
11533     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11534     case Intrinsic::x86_sse_max_ps:
11535     case Intrinsic::x86_sse2_max_pd:
11536     case Intrinsic::x86_avx_max_ps_256:
11537     case Intrinsic::x86_avx_max_pd_256:
11538       Opcode = X86ISD::FMAX;
11539       break;
11540     case Intrinsic::x86_sse_min_ps:
11541     case Intrinsic::x86_sse2_min_pd:
11542     case Intrinsic::x86_avx_min_ps_256:
11543     case Intrinsic::x86_avx_min_pd_256:
11544       Opcode = X86ISD::FMIN;
11545       break;
11546     }
11547     return DAG.getNode(Opcode, dl, Op.getValueType(),
11548                        Op.getOperand(1), Op.getOperand(2));
11549   }
11550
11551   // AVX2 variable shift intrinsics
11552   case Intrinsic::x86_avx2_psllv_d:
11553   case Intrinsic::x86_avx2_psllv_q:
11554   case Intrinsic::x86_avx2_psllv_d_256:
11555   case Intrinsic::x86_avx2_psllv_q_256:
11556   case Intrinsic::x86_avx2_psrlv_d:
11557   case Intrinsic::x86_avx2_psrlv_q:
11558   case Intrinsic::x86_avx2_psrlv_d_256:
11559   case Intrinsic::x86_avx2_psrlv_q_256:
11560   case Intrinsic::x86_avx2_psrav_d:
11561   case Intrinsic::x86_avx2_psrav_d_256: {
11562     unsigned Opcode;
11563     switch (IntNo) {
11564     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11565     case Intrinsic::x86_avx2_psllv_d:
11566     case Intrinsic::x86_avx2_psllv_q:
11567     case Intrinsic::x86_avx2_psllv_d_256:
11568     case Intrinsic::x86_avx2_psllv_q_256:
11569       Opcode = ISD::SHL;
11570       break;
11571     case Intrinsic::x86_avx2_psrlv_d:
11572     case Intrinsic::x86_avx2_psrlv_q:
11573     case Intrinsic::x86_avx2_psrlv_d_256:
11574     case Intrinsic::x86_avx2_psrlv_q_256:
11575       Opcode = ISD::SRL;
11576       break;
11577     case Intrinsic::x86_avx2_psrav_d:
11578     case Intrinsic::x86_avx2_psrav_d_256:
11579       Opcode = ISD::SRA;
11580       break;
11581     }
11582     return DAG.getNode(Opcode, dl, Op.getValueType(),
11583                        Op.getOperand(1), Op.getOperand(2));
11584   }
11585
11586   case Intrinsic::x86_ssse3_pshuf_b_128:
11587   case Intrinsic::x86_avx2_pshuf_b:
11588     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11589                        Op.getOperand(1), Op.getOperand(2));
11590
11591   case Intrinsic::x86_ssse3_psign_b_128:
11592   case Intrinsic::x86_ssse3_psign_w_128:
11593   case Intrinsic::x86_ssse3_psign_d_128:
11594   case Intrinsic::x86_avx2_psign_b:
11595   case Intrinsic::x86_avx2_psign_w:
11596   case Intrinsic::x86_avx2_psign_d:
11597     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11598                        Op.getOperand(1), Op.getOperand(2));
11599
11600   case Intrinsic::x86_sse41_insertps:
11601     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11602                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11603
11604   case Intrinsic::x86_avx_vperm2f128_ps_256:
11605   case Intrinsic::x86_avx_vperm2f128_pd_256:
11606   case Intrinsic::x86_avx_vperm2f128_si_256:
11607   case Intrinsic::x86_avx2_vperm2i128:
11608     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11609                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11610
11611   case Intrinsic::x86_avx2_permd:
11612   case Intrinsic::x86_avx2_permps:
11613     // Operands intentionally swapped. Mask is last operand to intrinsic,
11614     // but second operand for node/instruction.
11615     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11616                        Op.getOperand(2), Op.getOperand(1));
11617
11618   case Intrinsic::x86_sse_sqrt_ps:
11619   case Intrinsic::x86_sse2_sqrt_pd:
11620   case Intrinsic::x86_avx_sqrt_ps_256:
11621   case Intrinsic::x86_avx_sqrt_pd_256:
11622     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11623
11624   // ptest and testp intrinsics. The intrinsic these come from are designed to
11625   // return an integer value, not just an instruction so lower it to the ptest
11626   // or testp pattern and a setcc for the result.
11627   case Intrinsic::x86_sse41_ptestz:
11628   case Intrinsic::x86_sse41_ptestc:
11629   case Intrinsic::x86_sse41_ptestnzc:
11630   case Intrinsic::x86_avx_ptestz_256:
11631   case Intrinsic::x86_avx_ptestc_256:
11632   case Intrinsic::x86_avx_ptestnzc_256:
11633   case Intrinsic::x86_avx_vtestz_ps:
11634   case Intrinsic::x86_avx_vtestc_ps:
11635   case Intrinsic::x86_avx_vtestnzc_ps:
11636   case Intrinsic::x86_avx_vtestz_pd:
11637   case Intrinsic::x86_avx_vtestc_pd:
11638   case Intrinsic::x86_avx_vtestnzc_pd:
11639   case Intrinsic::x86_avx_vtestz_ps_256:
11640   case Intrinsic::x86_avx_vtestc_ps_256:
11641   case Intrinsic::x86_avx_vtestnzc_ps_256:
11642   case Intrinsic::x86_avx_vtestz_pd_256:
11643   case Intrinsic::x86_avx_vtestc_pd_256:
11644   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11645     bool IsTestPacked = false;
11646     unsigned X86CC;
11647     switch (IntNo) {
11648     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11649     case Intrinsic::x86_avx_vtestz_ps:
11650     case Intrinsic::x86_avx_vtestz_pd:
11651     case Intrinsic::x86_avx_vtestz_ps_256:
11652     case Intrinsic::x86_avx_vtestz_pd_256:
11653       IsTestPacked = true; // Fallthrough
11654     case Intrinsic::x86_sse41_ptestz:
11655     case Intrinsic::x86_avx_ptestz_256:
11656       // ZF = 1
11657       X86CC = X86::COND_E;
11658       break;
11659     case Intrinsic::x86_avx_vtestc_ps:
11660     case Intrinsic::x86_avx_vtestc_pd:
11661     case Intrinsic::x86_avx_vtestc_ps_256:
11662     case Intrinsic::x86_avx_vtestc_pd_256:
11663       IsTestPacked = true; // Fallthrough
11664     case Intrinsic::x86_sse41_ptestc:
11665     case Intrinsic::x86_avx_ptestc_256:
11666       // CF = 1
11667       X86CC = X86::COND_B;
11668       break;
11669     case Intrinsic::x86_avx_vtestnzc_ps:
11670     case Intrinsic::x86_avx_vtestnzc_pd:
11671     case Intrinsic::x86_avx_vtestnzc_ps_256:
11672     case Intrinsic::x86_avx_vtestnzc_pd_256:
11673       IsTestPacked = true; // Fallthrough
11674     case Intrinsic::x86_sse41_ptestnzc:
11675     case Intrinsic::x86_avx_ptestnzc_256:
11676       // ZF and CF = 0
11677       X86CC = X86::COND_A;
11678       break;
11679     }
11680
11681     SDValue LHS = Op.getOperand(1);
11682     SDValue RHS = Op.getOperand(2);
11683     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11684     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11685     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11686     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11687     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11688   }
11689   case Intrinsic::x86_avx512_kortestz_w:
11690   case Intrinsic::x86_avx512_kortestc_w: {
11691     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
11692     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11693     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11694     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11695     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11696     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
11697     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11698   }
11699
11700   // SSE/AVX shift intrinsics
11701   case Intrinsic::x86_sse2_psll_w:
11702   case Intrinsic::x86_sse2_psll_d:
11703   case Intrinsic::x86_sse2_psll_q:
11704   case Intrinsic::x86_avx2_psll_w:
11705   case Intrinsic::x86_avx2_psll_d:
11706   case Intrinsic::x86_avx2_psll_q:
11707   case Intrinsic::x86_sse2_psrl_w:
11708   case Intrinsic::x86_sse2_psrl_d:
11709   case Intrinsic::x86_sse2_psrl_q:
11710   case Intrinsic::x86_avx2_psrl_w:
11711   case Intrinsic::x86_avx2_psrl_d:
11712   case Intrinsic::x86_avx2_psrl_q:
11713   case Intrinsic::x86_sse2_psra_w:
11714   case Intrinsic::x86_sse2_psra_d:
11715   case Intrinsic::x86_avx2_psra_w:
11716   case Intrinsic::x86_avx2_psra_d: {
11717     unsigned Opcode;
11718     switch (IntNo) {
11719     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11720     case Intrinsic::x86_sse2_psll_w:
11721     case Intrinsic::x86_sse2_psll_d:
11722     case Intrinsic::x86_sse2_psll_q:
11723     case Intrinsic::x86_avx2_psll_w:
11724     case Intrinsic::x86_avx2_psll_d:
11725     case Intrinsic::x86_avx2_psll_q:
11726       Opcode = X86ISD::VSHL;
11727       break;
11728     case Intrinsic::x86_sse2_psrl_w:
11729     case Intrinsic::x86_sse2_psrl_d:
11730     case Intrinsic::x86_sse2_psrl_q:
11731     case Intrinsic::x86_avx2_psrl_w:
11732     case Intrinsic::x86_avx2_psrl_d:
11733     case Intrinsic::x86_avx2_psrl_q:
11734       Opcode = X86ISD::VSRL;
11735       break;
11736     case Intrinsic::x86_sse2_psra_w:
11737     case Intrinsic::x86_sse2_psra_d:
11738     case Intrinsic::x86_avx2_psra_w:
11739     case Intrinsic::x86_avx2_psra_d:
11740       Opcode = X86ISD::VSRA;
11741       break;
11742     }
11743     return DAG.getNode(Opcode, dl, Op.getValueType(),
11744                        Op.getOperand(1), Op.getOperand(2));
11745   }
11746
11747   // SSE/AVX immediate shift intrinsics
11748   case Intrinsic::x86_sse2_pslli_w:
11749   case Intrinsic::x86_sse2_pslli_d:
11750   case Intrinsic::x86_sse2_pslli_q:
11751   case Intrinsic::x86_avx2_pslli_w:
11752   case Intrinsic::x86_avx2_pslli_d:
11753   case Intrinsic::x86_avx2_pslli_q:
11754   case Intrinsic::x86_sse2_psrli_w:
11755   case Intrinsic::x86_sse2_psrli_d:
11756   case Intrinsic::x86_sse2_psrli_q:
11757   case Intrinsic::x86_avx2_psrli_w:
11758   case Intrinsic::x86_avx2_psrli_d:
11759   case Intrinsic::x86_avx2_psrli_q:
11760   case Intrinsic::x86_sse2_psrai_w:
11761   case Intrinsic::x86_sse2_psrai_d:
11762   case Intrinsic::x86_avx2_psrai_w:
11763   case Intrinsic::x86_avx2_psrai_d: {
11764     unsigned Opcode;
11765     switch (IntNo) {
11766     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11767     case Intrinsic::x86_sse2_pslli_w:
11768     case Intrinsic::x86_sse2_pslli_d:
11769     case Intrinsic::x86_sse2_pslli_q:
11770     case Intrinsic::x86_avx2_pslli_w:
11771     case Intrinsic::x86_avx2_pslli_d:
11772     case Intrinsic::x86_avx2_pslli_q:
11773       Opcode = X86ISD::VSHLI;
11774       break;
11775     case Intrinsic::x86_sse2_psrli_w:
11776     case Intrinsic::x86_sse2_psrli_d:
11777     case Intrinsic::x86_sse2_psrli_q:
11778     case Intrinsic::x86_avx2_psrli_w:
11779     case Intrinsic::x86_avx2_psrli_d:
11780     case Intrinsic::x86_avx2_psrli_q:
11781       Opcode = X86ISD::VSRLI;
11782       break;
11783     case Intrinsic::x86_sse2_psrai_w:
11784     case Intrinsic::x86_sse2_psrai_d:
11785     case Intrinsic::x86_avx2_psrai_w:
11786     case Intrinsic::x86_avx2_psrai_d:
11787       Opcode = X86ISD::VSRAI;
11788       break;
11789     }
11790     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
11791                                Op.getOperand(1), Op.getOperand(2), DAG);
11792   }
11793
11794   case Intrinsic::x86_sse42_pcmpistria128:
11795   case Intrinsic::x86_sse42_pcmpestria128:
11796   case Intrinsic::x86_sse42_pcmpistric128:
11797   case Intrinsic::x86_sse42_pcmpestric128:
11798   case Intrinsic::x86_sse42_pcmpistrio128:
11799   case Intrinsic::x86_sse42_pcmpestrio128:
11800   case Intrinsic::x86_sse42_pcmpistris128:
11801   case Intrinsic::x86_sse42_pcmpestris128:
11802   case Intrinsic::x86_sse42_pcmpistriz128:
11803   case Intrinsic::x86_sse42_pcmpestriz128: {
11804     unsigned Opcode;
11805     unsigned X86CC;
11806     switch (IntNo) {
11807     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11808     case Intrinsic::x86_sse42_pcmpistria128:
11809       Opcode = X86ISD::PCMPISTRI;
11810       X86CC = X86::COND_A;
11811       break;
11812     case Intrinsic::x86_sse42_pcmpestria128:
11813       Opcode = X86ISD::PCMPESTRI;
11814       X86CC = X86::COND_A;
11815       break;
11816     case Intrinsic::x86_sse42_pcmpistric128:
11817       Opcode = X86ISD::PCMPISTRI;
11818       X86CC = X86::COND_B;
11819       break;
11820     case Intrinsic::x86_sse42_pcmpestric128:
11821       Opcode = X86ISD::PCMPESTRI;
11822       X86CC = X86::COND_B;
11823       break;
11824     case Intrinsic::x86_sse42_pcmpistrio128:
11825       Opcode = X86ISD::PCMPISTRI;
11826       X86CC = X86::COND_O;
11827       break;
11828     case Intrinsic::x86_sse42_pcmpestrio128:
11829       Opcode = X86ISD::PCMPESTRI;
11830       X86CC = X86::COND_O;
11831       break;
11832     case Intrinsic::x86_sse42_pcmpistris128:
11833       Opcode = X86ISD::PCMPISTRI;
11834       X86CC = X86::COND_S;
11835       break;
11836     case Intrinsic::x86_sse42_pcmpestris128:
11837       Opcode = X86ISD::PCMPESTRI;
11838       X86CC = X86::COND_S;
11839       break;
11840     case Intrinsic::x86_sse42_pcmpistriz128:
11841       Opcode = X86ISD::PCMPISTRI;
11842       X86CC = X86::COND_E;
11843       break;
11844     case Intrinsic::x86_sse42_pcmpestriz128:
11845       Opcode = X86ISD::PCMPESTRI;
11846       X86CC = X86::COND_E;
11847       break;
11848     }
11849     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11850     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11851     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11852     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11853                                 DAG.getConstant(X86CC, MVT::i8),
11854                                 SDValue(PCMP.getNode(), 1));
11855     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11856   }
11857
11858   case Intrinsic::x86_sse42_pcmpistri128:
11859   case Intrinsic::x86_sse42_pcmpestri128: {
11860     unsigned Opcode;
11861     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11862       Opcode = X86ISD::PCMPISTRI;
11863     else
11864       Opcode = X86ISD::PCMPESTRI;
11865
11866     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11867     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11868     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11869   }
11870   case Intrinsic::x86_fma_vfmadd_ps:
11871   case Intrinsic::x86_fma_vfmadd_pd:
11872   case Intrinsic::x86_fma_vfmsub_ps:
11873   case Intrinsic::x86_fma_vfmsub_pd:
11874   case Intrinsic::x86_fma_vfnmadd_ps:
11875   case Intrinsic::x86_fma_vfnmadd_pd:
11876   case Intrinsic::x86_fma_vfnmsub_ps:
11877   case Intrinsic::x86_fma_vfnmsub_pd:
11878   case Intrinsic::x86_fma_vfmaddsub_ps:
11879   case Intrinsic::x86_fma_vfmaddsub_pd:
11880   case Intrinsic::x86_fma_vfmsubadd_ps:
11881   case Intrinsic::x86_fma_vfmsubadd_pd:
11882   case Intrinsic::x86_fma_vfmadd_ps_256:
11883   case Intrinsic::x86_fma_vfmadd_pd_256:
11884   case Intrinsic::x86_fma_vfmsub_ps_256:
11885   case Intrinsic::x86_fma_vfmsub_pd_256:
11886   case Intrinsic::x86_fma_vfnmadd_ps_256:
11887   case Intrinsic::x86_fma_vfnmadd_pd_256:
11888   case Intrinsic::x86_fma_vfnmsub_ps_256:
11889   case Intrinsic::x86_fma_vfnmsub_pd_256:
11890   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11891   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11892   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11893   case Intrinsic::x86_fma_vfmsubadd_pd_256:
11894   case Intrinsic::x86_fma_vfmadd_ps_512:
11895   case Intrinsic::x86_fma_vfmadd_pd_512:
11896   case Intrinsic::x86_fma_vfmsub_ps_512:
11897   case Intrinsic::x86_fma_vfmsub_pd_512:
11898   case Intrinsic::x86_fma_vfnmadd_ps_512:
11899   case Intrinsic::x86_fma_vfnmadd_pd_512:
11900   case Intrinsic::x86_fma_vfnmsub_ps_512:
11901   case Intrinsic::x86_fma_vfnmsub_pd_512:
11902   case Intrinsic::x86_fma_vfmaddsub_ps_512:
11903   case Intrinsic::x86_fma_vfmaddsub_pd_512:
11904   case Intrinsic::x86_fma_vfmsubadd_ps_512:
11905   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
11906     unsigned Opc;
11907     switch (IntNo) {
11908     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11909     case Intrinsic::x86_fma_vfmadd_ps:
11910     case Intrinsic::x86_fma_vfmadd_pd:
11911     case Intrinsic::x86_fma_vfmadd_ps_256:
11912     case Intrinsic::x86_fma_vfmadd_pd_256:
11913     case Intrinsic::x86_fma_vfmadd_ps_512:
11914     case Intrinsic::x86_fma_vfmadd_pd_512:
11915       Opc = X86ISD::FMADD;
11916       break;
11917     case Intrinsic::x86_fma_vfmsub_ps:
11918     case Intrinsic::x86_fma_vfmsub_pd:
11919     case Intrinsic::x86_fma_vfmsub_ps_256:
11920     case Intrinsic::x86_fma_vfmsub_pd_256:
11921     case Intrinsic::x86_fma_vfmsub_ps_512:
11922     case Intrinsic::x86_fma_vfmsub_pd_512:
11923       Opc = X86ISD::FMSUB;
11924       break;
11925     case Intrinsic::x86_fma_vfnmadd_ps:
11926     case Intrinsic::x86_fma_vfnmadd_pd:
11927     case Intrinsic::x86_fma_vfnmadd_ps_256:
11928     case Intrinsic::x86_fma_vfnmadd_pd_256:
11929     case Intrinsic::x86_fma_vfnmadd_ps_512:
11930     case Intrinsic::x86_fma_vfnmadd_pd_512:
11931       Opc = X86ISD::FNMADD;
11932       break;
11933     case Intrinsic::x86_fma_vfnmsub_ps:
11934     case Intrinsic::x86_fma_vfnmsub_pd:
11935     case Intrinsic::x86_fma_vfnmsub_ps_256:
11936     case Intrinsic::x86_fma_vfnmsub_pd_256:
11937     case Intrinsic::x86_fma_vfnmsub_ps_512:
11938     case Intrinsic::x86_fma_vfnmsub_pd_512:
11939       Opc = X86ISD::FNMSUB;
11940       break;
11941     case Intrinsic::x86_fma_vfmaddsub_ps:
11942     case Intrinsic::x86_fma_vfmaddsub_pd:
11943     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11944     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11945     case Intrinsic::x86_fma_vfmaddsub_ps_512:
11946     case Intrinsic::x86_fma_vfmaddsub_pd_512:
11947       Opc = X86ISD::FMADDSUB;
11948       break;
11949     case Intrinsic::x86_fma_vfmsubadd_ps:
11950     case Intrinsic::x86_fma_vfmsubadd_pd:
11951     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11952     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11953     case Intrinsic::x86_fma_vfmsubadd_ps_512:
11954     case Intrinsic::x86_fma_vfmsubadd_pd_512:
11955       Opc = X86ISD::FMSUBADD;
11956       break;
11957     }
11958
11959     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11960                        Op.getOperand(2), Op.getOperand(3));
11961   }
11962   }
11963 }
11964
11965 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11966                              SDValue Base, SDValue Index,
11967                              SDValue ScaleOp, SDValue Chain,
11968                              const X86Subtarget * Subtarget) {
11969   SDLoc dl(Op);
11970   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11971   assert(C && "Invalid scale type");
11972   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11973   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11974   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11975                              Index.getSimpleValueType().getVectorNumElements());
11976   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11977   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11978   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11979   SDValue Segment = DAG.getRegister(0, MVT::i32);
11980   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11981   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11982   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11983   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11984 }
11985
11986 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11987                               SDValue Src, SDValue Mask, SDValue Base,
11988                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11989                               const X86Subtarget * Subtarget) {
11990   SDLoc dl(Op);
11991   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11992   assert(C && "Invalid scale type");
11993   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11994   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11995                              Index.getSimpleValueType().getVectorNumElements());
11996   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11997   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11998   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11999   SDValue Segment = DAG.getRegister(0, MVT::i32);
12000   if (Src.getOpcode() == ISD::UNDEF)
12001     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
12002   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
12003   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12004   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
12005   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
12006 }
12007
12008 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12009                               SDValue Src, SDValue Base, SDValue Index,
12010                               SDValue ScaleOp, SDValue Chain) {
12011   SDLoc dl(Op);
12012   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12013   assert(C && "Invalid scale type");
12014   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12015   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12016   SDValue Segment = DAG.getRegister(0, MVT::i32);
12017   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12018                              Index.getSimpleValueType().getVectorNumElements());
12019   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
12020   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
12021   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
12022   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12023   return SDValue(Res, 1);
12024 }
12025
12026 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
12027                                SDValue Src, SDValue Mask, SDValue Base,
12028                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
12029   SDLoc dl(Op);
12030   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
12031   assert(C && "Invalid scale type");
12032   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
12033   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
12034   SDValue Segment = DAG.getRegister(0, MVT::i32);
12035   EVT MaskVT = MVT::getVectorVT(MVT::i1,
12036                              Index.getSimpleValueType().getVectorNumElements());
12037   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
12038   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
12039   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
12040   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
12041   return SDValue(Res, 1);
12042 }
12043
12044 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
12045                                       SelectionDAG &DAG) {
12046   SDLoc dl(Op);
12047   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
12048   switch (IntNo) {
12049   default: return SDValue();    // Don't custom lower most intrinsics.
12050
12051   // RDRAND/RDSEED intrinsics.
12052   case Intrinsic::x86_rdrand_16:
12053   case Intrinsic::x86_rdrand_32:
12054   case Intrinsic::x86_rdrand_64:
12055   case Intrinsic::x86_rdseed_16:
12056   case Intrinsic::x86_rdseed_32:
12057   case Intrinsic::x86_rdseed_64: {
12058     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
12059                        IntNo == Intrinsic::x86_rdseed_32 ||
12060                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
12061                                                             X86ISD::RDRAND;
12062     // Emit the node with the right value type.
12063     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
12064     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
12065
12066     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
12067     // Otherwise return the value from Rand, which is always 0, casted to i32.
12068     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
12069                       DAG.getConstant(1, Op->getValueType(1)),
12070                       DAG.getConstant(X86::COND_B, MVT::i32),
12071                       SDValue(Result.getNode(), 1) };
12072     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
12073                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
12074                                   Ops, array_lengthof(Ops));
12075
12076     // Return { result, isValid, chain }.
12077     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12078                        SDValue(Result.getNode(), 2));
12079   }
12080   //int_gather(index, base, scale);
12081   case Intrinsic::x86_avx512_gather_qpd_512:
12082   case Intrinsic::x86_avx512_gather_qps_512:
12083   case Intrinsic::x86_avx512_gather_dpd_512:
12084   case Intrinsic::x86_avx512_gather_qpi_512:
12085   case Intrinsic::x86_avx512_gather_qpq_512:
12086   case Intrinsic::x86_avx512_gather_dpq_512:
12087   case Intrinsic::x86_avx512_gather_dps_512:
12088   case Intrinsic::x86_avx512_gather_dpi_512: {
12089     unsigned Opc;
12090     switch (IntNo) {
12091     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12092     case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
12093     case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
12094     case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
12095     case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
12096     case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
12097     case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
12098     case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
12099     case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
12100     }
12101     SDValue Chain = Op.getOperand(0);
12102     SDValue Index = Op.getOperand(2);
12103     SDValue Base  = Op.getOperand(3);
12104     SDValue Scale = Op.getOperand(4);
12105     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
12106   }
12107   //int_gather_mask(v1, mask, index, base, scale);
12108   case Intrinsic::x86_avx512_gather_qps_mask_512:
12109   case Intrinsic::x86_avx512_gather_qpd_mask_512:
12110   case Intrinsic::x86_avx512_gather_dpd_mask_512:
12111   case Intrinsic::x86_avx512_gather_dps_mask_512:
12112   case Intrinsic::x86_avx512_gather_qpi_mask_512:
12113   case Intrinsic::x86_avx512_gather_qpq_mask_512:
12114   case Intrinsic::x86_avx512_gather_dpi_mask_512:
12115   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
12116     unsigned Opc;
12117     switch (IntNo) {
12118     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12119     case Intrinsic::x86_avx512_gather_qps_mask_512:
12120       Opc = X86::VGATHERQPSZrm; break;
12121     case Intrinsic::x86_avx512_gather_qpd_mask_512:
12122       Opc = X86::VGATHERQPDZrm; break;
12123     case Intrinsic::x86_avx512_gather_dpd_mask_512:
12124       Opc = X86::VGATHERDPDZrm; break;
12125     case Intrinsic::x86_avx512_gather_dps_mask_512:
12126       Opc = X86::VGATHERDPSZrm; break;
12127     case Intrinsic::x86_avx512_gather_qpi_mask_512:
12128       Opc = X86::VPGATHERQDZrm; break;
12129     case Intrinsic::x86_avx512_gather_qpq_mask_512:
12130       Opc = X86::VPGATHERQQZrm; break;
12131     case Intrinsic::x86_avx512_gather_dpi_mask_512:
12132       Opc = X86::VPGATHERDDZrm; break;
12133     case Intrinsic::x86_avx512_gather_dpq_mask_512:
12134       Opc = X86::VPGATHERDQZrm; break;
12135     }
12136     SDValue Chain = Op.getOperand(0);
12137     SDValue Src   = Op.getOperand(2);
12138     SDValue Mask  = Op.getOperand(3);
12139     SDValue Index = Op.getOperand(4);
12140     SDValue Base  = Op.getOperand(5);
12141     SDValue Scale = Op.getOperand(6);
12142     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12143                           Subtarget);
12144   }
12145   //int_scatter(base, index, v1, scale);
12146   case Intrinsic::x86_avx512_scatter_qpd_512:
12147   case Intrinsic::x86_avx512_scatter_qps_512:
12148   case Intrinsic::x86_avx512_scatter_dpd_512:
12149   case Intrinsic::x86_avx512_scatter_qpi_512:
12150   case Intrinsic::x86_avx512_scatter_qpq_512:
12151   case Intrinsic::x86_avx512_scatter_dpq_512:
12152   case Intrinsic::x86_avx512_scatter_dps_512:
12153   case Intrinsic::x86_avx512_scatter_dpi_512: {
12154     unsigned Opc;
12155     switch (IntNo) {
12156     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12157     case Intrinsic::x86_avx512_scatter_qpd_512:
12158       Opc = X86::VSCATTERQPDZmr; break;
12159     case Intrinsic::x86_avx512_scatter_qps_512:
12160       Opc = X86::VSCATTERQPSZmr; break;
12161     case Intrinsic::x86_avx512_scatter_dpd_512:
12162       Opc = X86::VSCATTERDPDZmr; break;
12163     case Intrinsic::x86_avx512_scatter_dps_512:
12164       Opc = X86::VSCATTERDPSZmr; break;
12165     case Intrinsic::x86_avx512_scatter_qpi_512:
12166       Opc = X86::VPSCATTERQDZmr; break;
12167     case Intrinsic::x86_avx512_scatter_qpq_512:
12168       Opc = X86::VPSCATTERQQZmr; break;
12169     case Intrinsic::x86_avx512_scatter_dpq_512:
12170       Opc = X86::VPSCATTERDQZmr; break;
12171     case Intrinsic::x86_avx512_scatter_dpi_512:
12172       Opc = X86::VPSCATTERDDZmr; break;
12173     }
12174     SDValue Chain = Op.getOperand(0);
12175     SDValue Base  = Op.getOperand(2);
12176     SDValue Index = Op.getOperand(3);
12177     SDValue Src   = Op.getOperand(4);
12178     SDValue Scale = Op.getOperand(5);
12179     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
12180   }
12181   //int_scatter_mask(base, mask, index, v1, scale);
12182   case Intrinsic::x86_avx512_scatter_qps_mask_512:
12183   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12184   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12185   case Intrinsic::x86_avx512_scatter_dps_mask_512:
12186   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12187   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12188   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12189   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
12190     unsigned Opc;
12191     switch (IntNo) {
12192     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12193     case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12194       Opc = X86::VSCATTERQPDZmr; break;
12195     case Intrinsic::x86_avx512_scatter_qps_mask_512:
12196       Opc = X86::VSCATTERQPSZmr; break;
12197     case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12198       Opc = X86::VSCATTERDPDZmr; break;
12199     case Intrinsic::x86_avx512_scatter_dps_mask_512:
12200       Opc = X86::VSCATTERDPSZmr; break;
12201     case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12202       Opc = X86::VPSCATTERQDZmr; break;
12203     case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12204       Opc = X86::VPSCATTERQQZmr; break;
12205     case Intrinsic::x86_avx512_scatter_dpq_mask_512:
12206       Opc = X86::VPSCATTERDQZmr; break;
12207     case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12208       Opc = X86::VPSCATTERDDZmr; break;
12209     }
12210     SDValue Chain = Op.getOperand(0);
12211     SDValue Base  = Op.getOperand(2);
12212     SDValue Mask  = Op.getOperand(3);
12213     SDValue Index = Op.getOperand(4);
12214     SDValue Src   = Op.getOperand(5);
12215     SDValue Scale = Op.getOperand(6);
12216     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12217   }
12218   // XTEST intrinsics.
12219   case Intrinsic::x86_xtest: {
12220     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12221     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12222     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12223                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12224                                 InTrans);
12225     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12226     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12227                        Ret, SDValue(InTrans.getNode(), 1));
12228   }
12229   }
12230 }
12231
12232 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12233                                            SelectionDAG &DAG) const {
12234   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12235   MFI->setReturnAddressIsTaken(true);
12236
12237   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
12238     return SDValue();
12239
12240   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12241   SDLoc dl(Op);
12242   EVT PtrVT = getPointerTy();
12243
12244   if (Depth > 0) {
12245     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12246     const X86RegisterInfo *RegInfo =
12247       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12248     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12249     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12250                        DAG.getNode(ISD::ADD, dl, PtrVT,
12251                                    FrameAddr, Offset),
12252                        MachinePointerInfo(), false, false, false, 0);
12253   }
12254
12255   // Just load the return address.
12256   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12257   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12258                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12259 }
12260
12261 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12262   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12263   MFI->setFrameAddressIsTaken(true);
12264
12265   EVT VT = Op.getValueType();
12266   SDLoc dl(Op);  // FIXME probably not meaningful
12267   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12268   const X86RegisterInfo *RegInfo =
12269     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12270   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12271   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12272           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12273          "Invalid Frame Register!");
12274   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12275   while (Depth--)
12276     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12277                             MachinePointerInfo(),
12278                             false, false, false, 0);
12279   return FrameAddr;
12280 }
12281
12282 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12283                                                      SelectionDAG &DAG) const {
12284   const X86RegisterInfo *RegInfo =
12285     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12286   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12287 }
12288
12289 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12290   SDValue Chain     = Op.getOperand(0);
12291   SDValue Offset    = Op.getOperand(1);
12292   SDValue Handler   = Op.getOperand(2);
12293   SDLoc dl      (Op);
12294
12295   EVT PtrVT = getPointerTy();
12296   const X86RegisterInfo *RegInfo =
12297     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12298   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12299   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12300           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12301          "Invalid Frame Register!");
12302   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12303   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12304
12305   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12306                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12307   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12308   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12309                        false, false, 0);
12310   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12311
12312   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12313                      DAG.getRegister(StoreAddrReg, PtrVT));
12314 }
12315
12316 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12317                                                SelectionDAG &DAG) const {
12318   SDLoc DL(Op);
12319   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12320                      DAG.getVTList(MVT::i32, MVT::Other),
12321                      Op.getOperand(0), Op.getOperand(1));
12322 }
12323
12324 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12325                                                 SelectionDAG &DAG) const {
12326   SDLoc DL(Op);
12327   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12328                      Op.getOperand(0), Op.getOperand(1));
12329 }
12330
12331 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12332   return Op.getOperand(0);
12333 }
12334
12335 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12336                                                 SelectionDAG &DAG) const {
12337   SDValue Root = Op.getOperand(0);
12338   SDValue Trmp = Op.getOperand(1); // trampoline
12339   SDValue FPtr = Op.getOperand(2); // nested function
12340   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12341   SDLoc dl (Op);
12342
12343   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12344   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12345
12346   if (Subtarget->is64Bit()) {
12347     SDValue OutChains[6];
12348
12349     // Large code-model.
12350     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12351     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12352
12353     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12354     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12355
12356     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12357
12358     // Load the pointer to the nested function into R11.
12359     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12360     SDValue Addr = Trmp;
12361     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12362                                 Addr, MachinePointerInfo(TrmpAddr),
12363                                 false, false, 0);
12364
12365     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12366                        DAG.getConstant(2, MVT::i64));
12367     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12368                                 MachinePointerInfo(TrmpAddr, 2),
12369                                 false, false, 2);
12370
12371     // Load the 'nest' parameter value into R10.
12372     // R10 is specified in X86CallingConv.td
12373     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12374     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12375                        DAG.getConstant(10, MVT::i64));
12376     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12377                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12378                                 false, false, 0);
12379
12380     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12381                        DAG.getConstant(12, MVT::i64));
12382     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12383                                 MachinePointerInfo(TrmpAddr, 12),
12384                                 false, false, 2);
12385
12386     // Jump to the nested function.
12387     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12388     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12389                        DAG.getConstant(20, MVT::i64));
12390     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12391                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12392                                 false, false, 0);
12393
12394     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12395     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12396                        DAG.getConstant(22, MVT::i64));
12397     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12398                                 MachinePointerInfo(TrmpAddr, 22),
12399                                 false, false, 0);
12400
12401     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12402   } else {
12403     const Function *Func =
12404       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12405     CallingConv::ID CC = Func->getCallingConv();
12406     unsigned NestReg;
12407
12408     switch (CC) {
12409     default:
12410       llvm_unreachable("Unsupported calling convention");
12411     case CallingConv::C:
12412     case CallingConv::X86_StdCall: {
12413       // Pass 'nest' parameter in ECX.
12414       // Must be kept in sync with X86CallingConv.td
12415       NestReg = X86::ECX;
12416
12417       // Check that ECX wasn't needed by an 'inreg' parameter.
12418       FunctionType *FTy = Func->getFunctionType();
12419       const AttributeSet &Attrs = Func->getAttributes();
12420
12421       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12422         unsigned InRegCount = 0;
12423         unsigned Idx = 1;
12424
12425         for (FunctionType::param_iterator I = FTy->param_begin(),
12426              E = FTy->param_end(); I != E; ++I, ++Idx)
12427           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12428             // FIXME: should only count parameters that are lowered to integers.
12429             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12430
12431         if (InRegCount > 2) {
12432           report_fatal_error("Nest register in use - reduce number of inreg"
12433                              " parameters!");
12434         }
12435       }
12436       break;
12437     }
12438     case CallingConv::X86_FastCall:
12439     case CallingConv::X86_ThisCall:
12440     case CallingConv::Fast:
12441       // Pass 'nest' parameter in EAX.
12442       // Must be kept in sync with X86CallingConv.td
12443       NestReg = X86::EAX;
12444       break;
12445     }
12446
12447     SDValue OutChains[4];
12448     SDValue Addr, Disp;
12449
12450     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12451                        DAG.getConstant(10, MVT::i32));
12452     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12453
12454     // This is storing the opcode for MOV32ri.
12455     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12456     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12457     OutChains[0] = DAG.getStore(Root, dl,
12458                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12459                                 Trmp, MachinePointerInfo(TrmpAddr),
12460                                 false, false, 0);
12461
12462     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12463                        DAG.getConstant(1, MVT::i32));
12464     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12465                                 MachinePointerInfo(TrmpAddr, 1),
12466                                 false, false, 1);
12467
12468     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12469     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12470                        DAG.getConstant(5, MVT::i32));
12471     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12472                                 MachinePointerInfo(TrmpAddr, 5),
12473                                 false, false, 1);
12474
12475     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12476                        DAG.getConstant(6, MVT::i32));
12477     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12478                                 MachinePointerInfo(TrmpAddr, 6),
12479                                 false, false, 1);
12480
12481     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12482   }
12483 }
12484
12485 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12486                                             SelectionDAG &DAG) const {
12487   /*
12488    The rounding mode is in bits 11:10 of FPSR, and has the following
12489    settings:
12490      00 Round to nearest
12491      01 Round to -inf
12492      10 Round to +inf
12493      11 Round to 0
12494
12495   FLT_ROUNDS, on the other hand, expects the following:
12496     -1 Undefined
12497      0 Round to 0
12498      1 Round to nearest
12499      2 Round to +inf
12500      3 Round to -inf
12501
12502   To perform the conversion, we do:
12503     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12504   */
12505
12506   MachineFunction &MF = DAG.getMachineFunction();
12507   const TargetMachine &TM = MF.getTarget();
12508   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12509   unsigned StackAlignment = TFI.getStackAlignment();
12510   MVT VT = Op.getSimpleValueType();
12511   SDLoc DL(Op);
12512
12513   // Save FP Control Word to stack slot
12514   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12515   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12516
12517   MachineMemOperand *MMO =
12518    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12519                            MachineMemOperand::MOStore, 2, 2);
12520
12521   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12522   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12523                                           DAG.getVTList(MVT::Other),
12524                                           Ops, array_lengthof(Ops), MVT::i16,
12525                                           MMO);
12526
12527   // Load FP Control Word from stack slot
12528   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12529                             MachinePointerInfo(), false, false, false, 0);
12530
12531   // Transform as necessary
12532   SDValue CWD1 =
12533     DAG.getNode(ISD::SRL, DL, MVT::i16,
12534                 DAG.getNode(ISD::AND, DL, MVT::i16,
12535                             CWD, DAG.getConstant(0x800, MVT::i16)),
12536                 DAG.getConstant(11, MVT::i8));
12537   SDValue CWD2 =
12538     DAG.getNode(ISD::SRL, DL, MVT::i16,
12539                 DAG.getNode(ISD::AND, DL, MVT::i16,
12540                             CWD, DAG.getConstant(0x400, MVT::i16)),
12541                 DAG.getConstant(9, MVT::i8));
12542
12543   SDValue RetVal =
12544     DAG.getNode(ISD::AND, DL, MVT::i16,
12545                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12546                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12547                             DAG.getConstant(1, MVT::i16)),
12548                 DAG.getConstant(3, MVT::i16));
12549
12550   return DAG.getNode((VT.getSizeInBits() < 16 ?
12551                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12552 }
12553
12554 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12555   MVT VT = Op.getSimpleValueType();
12556   EVT OpVT = VT;
12557   unsigned NumBits = VT.getSizeInBits();
12558   SDLoc dl(Op);
12559
12560   Op = Op.getOperand(0);
12561   if (VT == MVT::i8) {
12562     // Zero extend to i32 since there is not an i8 bsr.
12563     OpVT = MVT::i32;
12564     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12565   }
12566
12567   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12568   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12569   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12570
12571   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12572   SDValue Ops[] = {
12573     Op,
12574     DAG.getConstant(NumBits+NumBits-1, OpVT),
12575     DAG.getConstant(X86::COND_E, MVT::i8),
12576     Op.getValue(1)
12577   };
12578   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12579
12580   // Finally xor with NumBits-1.
12581   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12582
12583   if (VT == MVT::i8)
12584     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12585   return Op;
12586 }
12587
12588 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12589   MVT VT = Op.getSimpleValueType();
12590   EVT OpVT = VT;
12591   unsigned NumBits = VT.getSizeInBits();
12592   SDLoc dl(Op);
12593
12594   Op = Op.getOperand(0);
12595   if (VT == MVT::i8) {
12596     // Zero extend to i32 since there is not an i8 bsr.
12597     OpVT = MVT::i32;
12598     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12599   }
12600
12601   // Issue a bsr (scan bits in reverse).
12602   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12603   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12604
12605   // And xor with NumBits-1.
12606   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12607
12608   if (VT == MVT::i8)
12609     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12610   return Op;
12611 }
12612
12613 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12614   MVT VT = Op.getSimpleValueType();
12615   unsigned NumBits = VT.getSizeInBits();
12616   SDLoc dl(Op);
12617   Op = Op.getOperand(0);
12618
12619   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12620   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12621   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12622
12623   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12624   SDValue Ops[] = {
12625     Op,
12626     DAG.getConstant(NumBits, VT),
12627     DAG.getConstant(X86::COND_E, MVT::i8),
12628     Op.getValue(1)
12629   };
12630   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12631 }
12632
12633 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12634 // ones, and then concatenate the result back.
12635 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12636   MVT VT = Op.getSimpleValueType();
12637
12638   assert(VT.is256BitVector() && VT.isInteger() &&
12639          "Unsupported value type for operation");
12640
12641   unsigned NumElems = VT.getVectorNumElements();
12642   SDLoc dl(Op);
12643
12644   // Extract the LHS vectors
12645   SDValue LHS = Op.getOperand(0);
12646   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12647   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12648
12649   // Extract the RHS vectors
12650   SDValue RHS = Op.getOperand(1);
12651   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12652   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12653
12654   MVT EltVT = VT.getVectorElementType();
12655   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12656
12657   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12658                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12659                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12660 }
12661
12662 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12663   assert(Op.getSimpleValueType().is256BitVector() &&
12664          Op.getSimpleValueType().isInteger() &&
12665          "Only handle AVX 256-bit vector integer operation");
12666   return Lower256IntArith(Op, DAG);
12667 }
12668
12669 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12670   assert(Op.getSimpleValueType().is256BitVector() &&
12671          Op.getSimpleValueType().isInteger() &&
12672          "Only handle AVX 256-bit vector integer operation");
12673   return Lower256IntArith(Op, DAG);
12674 }
12675
12676 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12677                         SelectionDAG &DAG) {
12678   SDLoc dl(Op);
12679   MVT VT = Op.getSimpleValueType();
12680
12681   // Decompose 256-bit ops into smaller 128-bit ops.
12682   if (VT.is256BitVector() && !Subtarget->hasInt256())
12683     return Lower256IntArith(Op, DAG);
12684
12685   SDValue A = Op.getOperand(0);
12686   SDValue B = Op.getOperand(1);
12687
12688   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12689   if (VT == MVT::v4i32) {
12690     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12691            "Should not custom lower when pmuldq is available!");
12692
12693     // Extract the odd parts.
12694     static const int UnpackMask[] = { 1, -1, 3, -1 };
12695     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12696     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12697
12698     // Multiply the even parts.
12699     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12700     // Now multiply odd parts.
12701     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12702
12703     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12704     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12705
12706     // Merge the two vectors back together with a shuffle. This expands into 2
12707     // shuffles.
12708     static const int ShufMask[] = { 0, 4, 2, 6 };
12709     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12710   }
12711
12712   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12713          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12714
12715   //  Ahi = psrlqi(a, 32);
12716   //  Bhi = psrlqi(b, 32);
12717   //
12718   //  AloBlo = pmuludq(a, b);
12719   //  AloBhi = pmuludq(a, Bhi);
12720   //  AhiBlo = pmuludq(Ahi, b);
12721
12722   //  AloBhi = psllqi(AloBhi, 32);
12723   //  AhiBlo = psllqi(AhiBlo, 32);
12724   //  return AloBlo + AloBhi + AhiBlo;
12725
12726   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12727   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
12728
12729   // Bit cast to 32-bit vectors for MULUDQ
12730   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12731                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12732   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12733   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12734   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12735   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12736
12737   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12738   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12739   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12740
12741   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12742   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
12743
12744   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12745   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12746 }
12747
12748 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12749   MVT VT = Op.getSimpleValueType();
12750   MVT EltTy = VT.getVectorElementType();
12751   unsigned NumElts = VT.getVectorNumElements();
12752   SDValue N0 = Op.getOperand(0);
12753   SDLoc dl(Op);
12754
12755   // Lower sdiv X, pow2-const.
12756   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12757   if (!C)
12758     return SDValue();
12759
12760   APInt SplatValue, SplatUndef;
12761   unsigned SplatBitSize;
12762   bool HasAnyUndefs;
12763   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12764                           HasAnyUndefs) ||
12765       EltTy.getSizeInBits() < SplatBitSize)
12766     return SDValue();
12767
12768   if ((SplatValue != 0) &&
12769       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12770     unsigned Lg2 = SplatValue.countTrailingZeros();
12771     // Splat the sign bit.
12772     SmallVector<SDValue, 16> Sz(NumElts,
12773                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12774                                                 EltTy));
12775     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12776                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12777                                           NumElts));
12778     // Add (N0 < 0) ? abs2 - 1 : 0;
12779     SmallVector<SDValue, 16> Amt(NumElts,
12780                                  DAG.getConstant(EltTy.getSizeInBits() - Lg2,
12781                                                  EltTy));
12782     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12783                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12784                                           NumElts));
12785     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12786     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
12787     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12788                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12789                                           NumElts));
12790
12791     // If we're dividing by a positive value, we're done.  Otherwise, we must
12792     // negate the result.
12793     if (SplatValue.isNonNegative())
12794       return SRA;
12795
12796     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12797     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12798     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12799   }
12800   return SDValue();
12801 }
12802
12803 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12804                                          const X86Subtarget *Subtarget) {
12805   MVT VT = Op.getSimpleValueType();
12806   SDLoc dl(Op);
12807   SDValue R = Op.getOperand(0);
12808   SDValue Amt = Op.getOperand(1);
12809
12810   // Optimize shl/srl/sra with constant shift amount.
12811   if (isSplatVector(Amt.getNode())) {
12812     SDValue SclrAmt = Amt->getOperand(0);
12813     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12814       uint64_t ShiftAmt = C->getZExtValue();
12815
12816       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12817           (Subtarget->hasInt256() &&
12818            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12819           (Subtarget->hasAVX512() &&
12820            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12821         if (Op.getOpcode() == ISD::SHL)
12822           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12823                                             DAG);
12824         if (Op.getOpcode() == ISD::SRL)
12825           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12826                                             DAG);
12827         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12828           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12829                                             DAG);
12830       }
12831
12832       if (VT == MVT::v16i8) {
12833         if (Op.getOpcode() == ISD::SHL) {
12834           // Make a large shift.
12835           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12836                                                    MVT::v8i16, R, ShiftAmt,
12837                                                    DAG);
12838           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12839           // Zero out the rightmost bits.
12840           SmallVector<SDValue, 16> V(16,
12841                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12842                                                      MVT::i8));
12843           return DAG.getNode(ISD::AND, dl, VT, SHL,
12844                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12845         }
12846         if (Op.getOpcode() == ISD::SRL) {
12847           // Make a large shift.
12848           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12849                                                    MVT::v8i16, R, ShiftAmt,
12850                                                    DAG);
12851           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12852           // Zero out the leftmost bits.
12853           SmallVector<SDValue, 16> V(16,
12854                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12855                                                      MVT::i8));
12856           return DAG.getNode(ISD::AND, dl, VT, SRL,
12857                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12858         }
12859         if (Op.getOpcode() == ISD::SRA) {
12860           if (ShiftAmt == 7) {
12861             // R s>> 7  ===  R s< 0
12862             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12863             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12864           }
12865
12866           // R s>> a === ((R u>> a) ^ m) - m
12867           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12868           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12869                                                          MVT::i8));
12870           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12871           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12872           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12873           return Res;
12874         }
12875         llvm_unreachable("Unknown shift opcode.");
12876       }
12877
12878       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12879         if (Op.getOpcode() == ISD::SHL) {
12880           // Make a large shift.
12881           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12882                                                    MVT::v16i16, R, ShiftAmt,
12883                                                    DAG);
12884           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12885           // Zero out the rightmost bits.
12886           SmallVector<SDValue, 32> V(32,
12887                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12888                                                      MVT::i8));
12889           return DAG.getNode(ISD::AND, dl, VT, SHL,
12890                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12891         }
12892         if (Op.getOpcode() == ISD::SRL) {
12893           // Make a large shift.
12894           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12895                                                    MVT::v16i16, R, ShiftAmt,
12896                                                    DAG);
12897           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12898           // Zero out the leftmost bits.
12899           SmallVector<SDValue, 32> V(32,
12900                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12901                                                      MVT::i8));
12902           return DAG.getNode(ISD::AND, dl, VT, SRL,
12903                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12904         }
12905         if (Op.getOpcode() == ISD::SRA) {
12906           if (ShiftAmt == 7) {
12907             // R s>> 7  ===  R s< 0
12908             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12909             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12910           }
12911
12912           // R s>> a === ((R u>> a) ^ m) - m
12913           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12914           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12915                                                          MVT::i8));
12916           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12917           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12918           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12919           return Res;
12920         }
12921         llvm_unreachable("Unknown shift opcode.");
12922       }
12923     }
12924   }
12925
12926   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12927   if (!Subtarget->is64Bit() &&
12928       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12929       Amt.getOpcode() == ISD::BITCAST &&
12930       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12931     Amt = Amt.getOperand(0);
12932     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
12933                      VT.getVectorNumElements();
12934     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12935     uint64_t ShiftAmt = 0;
12936     for (unsigned i = 0; i != Ratio; ++i) {
12937       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12938       if (C == 0)
12939         return SDValue();
12940       // 6 == Log2(64)
12941       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12942     }
12943     // Check remaining shift amounts.
12944     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12945       uint64_t ShAmt = 0;
12946       for (unsigned j = 0; j != Ratio; ++j) {
12947         ConstantSDNode *C =
12948           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12949         if (C == 0)
12950           return SDValue();
12951         // 6 == Log2(64)
12952         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12953       }
12954       if (ShAmt != ShiftAmt)
12955         return SDValue();
12956     }
12957     switch (Op.getOpcode()) {
12958     default:
12959       llvm_unreachable("Unknown shift opcode!");
12960     case ISD::SHL:
12961       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12962                                         DAG);
12963     case ISD::SRL:
12964       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12965                                         DAG);
12966     case ISD::SRA:
12967       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12968                                         DAG);
12969     }
12970   }
12971
12972   return SDValue();
12973 }
12974
12975 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12976                                         const X86Subtarget* Subtarget) {
12977   MVT VT = Op.getSimpleValueType();
12978   SDLoc dl(Op);
12979   SDValue R = Op.getOperand(0);
12980   SDValue Amt = Op.getOperand(1);
12981
12982   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12983       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12984       (Subtarget->hasInt256() &&
12985        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12986         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12987        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12988     SDValue BaseShAmt;
12989     EVT EltVT = VT.getVectorElementType();
12990
12991     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12992       unsigned NumElts = VT.getVectorNumElements();
12993       unsigned i, j;
12994       for (i = 0; i != NumElts; ++i) {
12995         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12996           continue;
12997         break;
12998       }
12999       for (j = i; j != NumElts; ++j) {
13000         SDValue Arg = Amt.getOperand(j);
13001         if (Arg.getOpcode() == ISD::UNDEF) continue;
13002         if (Arg != Amt.getOperand(i))
13003           break;
13004       }
13005       if (i != NumElts && j == NumElts)
13006         BaseShAmt = Amt.getOperand(i);
13007     } else {
13008       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
13009         Amt = Amt.getOperand(0);
13010       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
13011                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
13012         SDValue InVec = Amt.getOperand(0);
13013         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13014           unsigned NumElts = InVec.getValueType().getVectorNumElements();
13015           unsigned i = 0;
13016           for (; i != NumElts; ++i) {
13017             SDValue Arg = InVec.getOperand(i);
13018             if (Arg.getOpcode() == ISD::UNDEF) continue;
13019             BaseShAmt = Arg;
13020             break;
13021           }
13022         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13023            if (ConstantSDNode *C =
13024                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
13025              unsigned SplatIdx =
13026                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
13027              if (C->getZExtValue() == SplatIdx)
13028                BaseShAmt = InVec.getOperand(1);
13029            }
13030         }
13031         if (BaseShAmt.getNode() == 0)
13032           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
13033                                   DAG.getIntPtrConstant(0));
13034       }
13035     }
13036
13037     if (BaseShAmt.getNode()) {
13038       if (EltVT.bitsGT(MVT::i32))
13039         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
13040       else if (EltVT.bitsLT(MVT::i32))
13041         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
13042
13043       switch (Op.getOpcode()) {
13044       default:
13045         llvm_unreachable("Unknown shift opcode!");
13046       case ISD::SHL:
13047         switch (VT.SimpleTy) {
13048         default: return SDValue();
13049         case MVT::v2i64:
13050         case MVT::v4i32:
13051         case MVT::v8i16:
13052         case MVT::v4i64:
13053         case MVT::v8i32:
13054         case MVT::v16i16:
13055         case MVT::v16i32:
13056         case MVT::v8i64:
13057           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
13058         }
13059       case ISD::SRA:
13060         switch (VT.SimpleTy) {
13061         default: return SDValue();
13062         case MVT::v4i32:
13063         case MVT::v8i16:
13064         case MVT::v8i32:
13065         case MVT::v16i16:
13066         case MVT::v16i32:
13067         case MVT::v8i64:
13068           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
13069         }
13070       case ISD::SRL:
13071         switch (VT.SimpleTy) {
13072         default: return SDValue();
13073         case MVT::v2i64:
13074         case MVT::v4i32:
13075         case MVT::v8i16:
13076         case MVT::v4i64:
13077         case MVT::v8i32:
13078         case MVT::v16i16:
13079         case MVT::v16i32:
13080         case MVT::v8i64:
13081           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13082         }
13083       }
13084     }
13085   }
13086
13087   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13088   if (!Subtarget->is64Bit() &&
13089       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13090       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13091       Amt.getOpcode() == ISD::BITCAST &&
13092       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13093     Amt = Amt.getOperand(0);
13094     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13095                      VT.getVectorNumElements();
13096     std::vector<SDValue> Vals(Ratio);
13097     for (unsigned i = 0; i != Ratio; ++i)
13098       Vals[i] = Amt.getOperand(i);
13099     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13100       for (unsigned j = 0; j != Ratio; ++j)
13101         if (Vals[j] != Amt.getOperand(i + j))
13102           return SDValue();
13103     }
13104     switch (Op.getOpcode()) {
13105     default:
13106       llvm_unreachable("Unknown shift opcode!");
13107     case ISD::SHL:
13108       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13109     case ISD::SRL:
13110       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13111     case ISD::SRA:
13112       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13113     }
13114   }
13115
13116   return SDValue();
13117 }
13118
13119 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13120                           SelectionDAG &DAG) {
13121
13122   MVT VT = Op.getSimpleValueType();
13123   SDLoc dl(Op);
13124   SDValue R = Op.getOperand(0);
13125   SDValue Amt = Op.getOperand(1);
13126   SDValue V;
13127
13128   if (!Subtarget->hasSSE2())
13129     return SDValue();
13130
13131   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13132   if (V.getNode())
13133     return V;
13134
13135   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13136   if (V.getNode())
13137       return V;
13138
13139   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13140     return Op;
13141   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13142   if (Subtarget->hasInt256()) {
13143     if (Op.getOpcode() == ISD::SRL &&
13144         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13145          VT == MVT::v4i64 || VT == MVT::v8i32))
13146       return Op;
13147     if (Op.getOpcode() == ISD::SHL &&
13148         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13149          VT == MVT::v4i64 || VT == MVT::v8i32))
13150       return Op;
13151     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13152       return Op;
13153   }
13154
13155   // Lower SHL with variable shift amount.
13156   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13157     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13158
13159     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13160     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13161     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13162     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13163   }
13164   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13165     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13166
13167     // a = a << 5;
13168     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13169     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13170
13171     // Turn 'a' into a mask suitable for VSELECT
13172     SDValue VSelM = DAG.getConstant(0x80, VT);
13173     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13174     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13175
13176     SDValue CM1 = DAG.getConstant(0x0f, VT);
13177     SDValue CM2 = DAG.getConstant(0x3f, VT);
13178
13179     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13180     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13181     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13182     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13183     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13184
13185     // a += a
13186     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13187     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13188     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13189
13190     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
13191     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
13192     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
13193     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13194     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13195
13196     // a += a
13197     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13198     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13199     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13200
13201     // return VSELECT(r, r+r, a);
13202     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
13203                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
13204     return R;
13205   }
13206
13207   // Decompose 256-bit shifts into smaller 128-bit shifts.
13208   if (VT.is256BitVector()) {
13209     unsigned NumElems = VT.getVectorNumElements();
13210     MVT EltVT = VT.getVectorElementType();
13211     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13212
13213     // Extract the two vectors
13214     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
13215     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
13216
13217     // Recreate the shift amount vectors
13218     SDValue Amt1, Amt2;
13219     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13220       // Constant shift amount
13221       SmallVector<SDValue, 4> Amt1Csts;
13222       SmallVector<SDValue, 4> Amt2Csts;
13223       for (unsigned i = 0; i != NumElems/2; ++i)
13224         Amt1Csts.push_back(Amt->getOperand(i));
13225       for (unsigned i = NumElems/2; i != NumElems; ++i)
13226         Amt2Csts.push_back(Amt->getOperand(i));
13227
13228       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13229                                  &Amt1Csts[0], NumElems/2);
13230       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13231                                  &Amt2Csts[0], NumElems/2);
13232     } else {
13233       // Variable shift amount
13234       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13235       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
13236     }
13237
13238     // Issue new vector shifts for the smaller types
13239     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13240     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13241
13242     // Concatenate the result back
13243     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13244   }
13245
13246   return SDValue();
13247 }
13248
13249 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
13250   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13251   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
13252   // looks for this combo and may remove the "setcc" instruction if the "setcc"
13253   // has only one use.
13254   SDNode *N = Op.getNode();
13255   SDValue LHS = N->getOperand(0);
13256   SDValue RHS = N->getOperand(1);
13257   unsigned BaseOp = 0;
13258   unsigned Cond = 0;
13259   SDLoc DL(Op);
13260   switch (Op.getOpcode()) {
13261   default: llvm_unreachable("Unknown ovf instruction!");
13262   case ISD::SADDO:
13263     // A subtract of one will be selected as a INC. Note that INC doesn't
13264     // set CF, so we can't do this for UADDO.
13265     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13266       if (C->isOne()) {
13267         BaseOp = X86ISD::INC;
13268         Cond = X86::COND_O;
13269         break;
13270       }
13271     BaseOp = X86ISD::ADD;
13272     Cond = X86::COND_O;
13273     break;
13274   case ISD::UADDO:
13275     BaseOp = X86ISD::ADD;
13276     Cond = X86::COND_B;
13277     break;
13278   case ISD::SSUBO:
13279     // A subtract of one will be selected as a DEC. Note that DEC doesn't
13280     // set CF, so we can't do this for USUBO.
13281     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13282       if (C->isOne()) {
13283         BaseOp = X86ISD::DEC;
13284         Cond = X86::COND_O;
13285         break;
13286       }
13287     BaseOp = X86ISD::SUB;
13288     Cond = X86::COND_O;
13289     break;
13290   case ISD::USUBO:
13291     BaseOp = X86ISD::SUB;
13292     Cond = X86::COND_B;
13293     break;
13294   case ISD::SMULO:
13295     BaseOp = X86ISD::SMUL;
13296     Cond = X86::COND_O;
13297     break;
13298   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13299     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13300                                  MVT::i32);
13301     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
13302
13303     SDValue SetCC =
13304       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13305                   DAG.getConstant(X86::COND_O, MVT::i32),
13306                   SDValue(Sum.getNode(), 2));
13307
13308     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13309   }
13310   }
13311
13312   // Also sets EFLAGS.
13313   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13314   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13315
13316   SDValue SetCC =
13317     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13318                 DAG.getConstant(Cond, MVT::i32),
13319                 SDValue(Sum.getNode(), 1));
13320
13321   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13322 }
13323
13324 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13325                                                   SelectionDAG &DAG) const {
13326   SDLoc dl(Op);
13327   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13328   MVT VT = Op.getSimpleValueType();
13329
13330   if (!Subtarget->hasSSE2() || !VT.isVector())
13331     return SDValue();
13332
13333   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13334                       ExtraVT.getScalarType().getSizeInBits();
13335
13336   switch (VT.SimpleTy) {
13337     default: return SDValue();
13338     case MVT::v8i32:
13339     case MVT::v16i16:
13340       if (!Subtarget->hasFp256())
13341         return SDValue();
13342       if (!Subtarget->hasInt256()) {
13343         // needs to be split
13344         unsigned NumElems = VT.getVectorNumElements();
13345
13346         // Extract the LHS vectors
13347         SDValue LHS = Op.getOperand(0);
13348         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13349         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13350
13351         MVT EltVT = VT.getVectorElementType();
13352         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13353
13354         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13355         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13356         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13357                                    ExtraNumElems/2);
13358         SDValue Extra = DAG.getValueType(ExtraVT);
13359
13360         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13361         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13362
13363         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13364       }
13365       // fall through
13366     case MVT::v4i32:
13367     case MVT::v8i16: {
13368       SDValue Op0 = Op.getOperand(0);
13369       SDValue Op00 = Op0.getOperand(0);
13370       SDValue Tmp1;
13371       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13372       if (Op0.getOpcode() == ISD::BITCAST &&
13373           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
13374         // (sext (vzext x)) -> (vsext x)
13375         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13376         if (Tmp1.getNode()) {
13377           EVT ExtraEltVT = ExtraVT.getVectorElementType();
13378           // This folding is only valid when the in-reg type is a vector of i8,
13379           // i16, or i32.
13380           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
13381               ExtraEltVT == MVT::i32) {
13382             SDValue Tmp1Op0 = Tmp1.getOperand(0);
13383             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13384                    "This optimization is invalid without a VZEXT.");
13385             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13386           }
13387           Op0 = Tmp1;
13388         }
13389       }
13390
13391       // If the above didn't work, then just use Shift-Left + Shift-Right.
13392       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13393                                         DAG);
13394       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13395                                         DAG);
13396     }
13397   }
13398 }
13399
13400 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13401                                  SelectionDAG &DAG) {
13402   SDLoc dl(Op);
13403   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13404     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13405   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13406     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13407
13408   // The only fence that needs an instruction is a sequentially-consistent
13409   // cross-thread fence.
13410   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13411     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13412     // no-sse2). There isn't any reason to disable it if the target processor
13413     // supports it.
13414     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13415       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13416
13417     SDValue Chain = Op.getOperand(0);
13418     SDValue Zero = DAG.getConstant(0, MVT::i32);
13419     SDValue Ops[] = {
13420       DAG.getRegister(X86::ESP, MVT::i32), // Base
13421       DAG.getTargetConstant(1, MVT::i8),   // Scale
13422       DAG.getRegister(0, MVT::i32),        // Index
13423       DAG.getTargetConstant(0, MVT::i32),  // Disp
13424       DAG.getRegister(0, MVT::i32),        // Segment.
13425       Zero,
13426       Chain
13427     };
13428     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13429     return SDValue(Res, 0);
13430   }
13431
13432   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13433   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13434 }
13435
13436 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13437                              SelectionDAG &DAG) {
13438   MVT T = Op.getSimpleValueType();
13439   SDLoc DL(Op);
13440   unsigned Reg = 0;
13441   unsigned size = 0;
13442   switch(T.SimpleTy) {
13443   default: llvm_unreachable("Invalid value type!");
13444   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13445   case MVT::i16: Reg = X86::AX;  size = 2; break;
13446   case MVT::i32: Reg = X86::EAX; size = 4; break;
13447   case MVT::i64:
13448     assert(Subtarget->is64Bit() && "Node not type legal!");
13449     Reg = X86::RAX; size = 8;
13450     break;
13451   }
13452   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13453                                     Op.getOperand(2), SDValue());
13454   SDValue Ops[] = { cpIn.getValue(0),
13455                     Op.getOperand(1),
13456                     Op.getOperand(3),
13457                     DAG.getTargetConstant(size, MVT::i8),
13458                     cpIn.getValue(1) };
13459   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13460   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13461   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13462                                            Ops, array_lengthof(Ops), T, MMO);
13463   SDValue cpOut =
13464     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13465   return cpOut;
13466 }
13467
13468 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13469                                      SelectionDAG &DAG) {
13470   assert(Subtarget->is64Bit() && "Result not type legalized?");
13471   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13472   SDValue TheChain = Op.getOperand(0);
13473   SDLoc dl(Op);
13474   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13475   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13476   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13477                                    rax.getValue(2));
13478   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13479                             DAG.getConstant(32, MVT::i8));
13480   SDValue Ops[] = {
13481     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13482     rdx.getValue(1)
13483   };
13484   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13485 }
13486
13487 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13488                             SelectionDAG &DAG) {
13489   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13490   MVT DstVT = Op.getSimpleValueType();
13491   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13492          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13493   assert((DstVT == MVT::i64 ||
13494           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13495          "Unexpected custom BITCAST");
13496   // i64 <=> MMX conversions are Legal.
13497   if (SrcVT==MVT::i64 && DstVT.isVector())
13498     return Op;
13499   if (DstVT==MVT::i64 && SrcVT.isVector())
13500     return Op;
13501   // MMX <=> MMX conversions are Legal.
13502   if (SrcVT.isVector() && DstVT.isVector())
13503     return Op;
13504   // All other conversions need to be expanded.
13505   return SDValue();
13506 }
13507
13508 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13509   SDNode *Node = Op.getNode();
13510   SDLoc dl(Node);
13511   EVT T = Node->getValueType(0);
13512   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13513                               DAG.getConstant(0, T), Node->getOperand(2));
13514   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13515                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13516                        Node->getOperand(0),
13517                        Node->getOperand(1), negOp,
13518                        cast<AtomicSDNode>(Node)->getSrcValue(),
13519                        cast<AtomicSDNode>(Node)->getAlignment(),
13520                        cast<AtomicSDNode>(Node)->getOrdering(),
13521                        cast<AtomicSDNode>(Node)->getSynchScope());
13522 }
13523
13524 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13525   SDNode *Node = Op.getNode();
13526   SDLoc dl(Node);
13527   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13528
13529   // Convert seq_cst store -> xchg
13530   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13531   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13532   //        (The only way to get a 16-byte store is cmpxchg16b)
13533   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13534   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13535       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13536     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13537                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13538                                  Node->getOperand(0),
13539                                  Node->getOperand(1), Node->getOperand(2),
13540                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13541                                  cast<AtomicSDNode>(Node)->getOrdering(),
13542                                  cast<AtomicSDNode>(Node)->getSynchScope());
13543     return Swap.getValue(1);
13544   }
13545   // Other atomic stores have a simple pattern.
13546   return Op;
13547 }
13548
13549 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13550   EVT VT = Op.getNode()->getSimpleValueType(0);
13551
13552   // Let legalize expand this if it isn't a legal type yet.
13553   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13554     return SDValue();
13555
13556   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13557
13558   unsigned Opc;
13559   bool ExtraOp = false;
13560   switch (Op.getOpcode()) {
13561   default: llvm_unreachable("Invalid code");
13562   case ISD::ADDC: Opc = X86ISD::ADD; break;
13563   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13564   case ISD::SUBC: Opc = X86ISD::SUB; break;
13565   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13566   }
13567
13568   if (!ExtraOp)
13569     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13570                        Op.getOperand(1));
13571   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13572                      Op.getOperand(1), Op.getOperand(2));
13573 }
13574
13575 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13576                             SelectionDAG &DAG) {
13577   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13578
13579   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13580   // which returns the values as { float, float } (in XMM0) or
13581   // { double, double } (which is returned in XMM0, XMM1).
13582   SDLoc dl(Op);
13583   SDValue Arg = Op.getOperand(0);
13584   EVT ArgVT = Arg.getValueType();
13585   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13586
13587   TargetLowering::ArgListTy Args;
13588   TargetLowering::ArgListEntry Entry;
13589
13590   Entry.Node = Arg;
13591   Entry.Ty = ArgTy;
13592   Entry.isSExt = false;
13593   Entry.isZExt = false;
13594   Args.push_back(Entry);
13595
13596   bool isF64 = ArgVT == MVT::f64;
13597   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13598   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13599   // the results are returned via SRet in memory.
13600   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13601   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13602   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13603
13604   Type *RetTy = isF64
13605     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13606     : (Type*)VectorType::get(ArgTy, 4);
13607   TargetLowering::
13608     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13609                          false, false, false, false, 0,
13610                          CallingConv::C, /*isTaillCall=*/false,
13611                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13612                          Callee, Args, DAG, dl);
13613   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13614
13615   if (isF64)
13616     // Returned in xmm0 and xmm1.
13617     return CallResult.first;
13618
13619   // Returned in bits 0:31 and 32:64 xmm0.
13620   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13621                                CallResult.first, DAG.getIntPtrConstant(0));
13622   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13623                                CallResult.first, DAG.getIntPtrConstant(1));
13624   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13625   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13626 }
13627
13628 /// LowerOperation - Provide custom lowering hooks for some operations.
13629 ///
13630 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13631   switch (Op.getOpcode()) {
13632   default: llvm_unreachable("Should not custom lower this!");
13633   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13634   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13635   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13636   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13637   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13638   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13639   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13640   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13641   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13642   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13643   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13644   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13645   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13646   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13647   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13648   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13649   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13650   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13651   case ISD::SHL_PARTS:
13652   case ISD::SRA_PARTS:
13653   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13654   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13655   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13656   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13657   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13658   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13659   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13660   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13661   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13662   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13663   case ISD::FABS:               return LowerFABS(Op, DAG);
13664   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13665   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13666   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13667   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13668   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13669   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13670   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13671   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13672   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13673   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13674   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13675   case ISD::INTRINSIC_VOID:
13676   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13677   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13678   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13679   case ISD::FRAME_TO_ARGS_OFFSET:
13680                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13681   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13682   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13683   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13684   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13685   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13686   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13687   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13688   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13689   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13690   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13691   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13692   case ISD::SRA:
13693   case ISD::SRL:
13694   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13695   case ISD::SADDO:
13696   case ISD::UADDO:
13697   case ISD::SSUBO:
13698   case ISD::USUBO:
13699   case ISD::SMULO:
13700   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13701   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13702   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13703   case ISD::ADDC:
13704   case ISD::ADDE:
13705   case ISD::SUBC:
13706   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13707   case ISD::ADD:                return LowerADD(Op, DAG);
13708   case ISD::SUB:                return LowerSUB(Op, DAG);
13709   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13710   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13711   }
13712 }
13713
13714 static void ReplaceATOMIC_LOAD(SDNode *Node,
13715                                   SmallVectorImpl<SDValue> &Results,
13716                                   SelectionDAG &DAG) {
13717   SDLoc dl(Node);
13718   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13719
13720   // Convert wide load -> cmpxchg8b/cmpxchg16b
13721   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13722   //        (The only way to get a 16-byte load is cmpxchg16b)
13723   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13724   SDValue Zero = DAG.getConstant(0, VT);
13725   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13726                                Node->getOperand(0),
13727                                Node->getOperand(1), Zero, Zero,
13728                                cast<AtomicSDNode>(Node)->getMemOperand(),
13729                                cast<AtomicSDNode>(Node)->getOrdering(),
13730                                cast<AtomicSDNode>(Node)->getSynchScope());
13731   Results.push_back(Swap.getValue(0));
13732   Results.push_back(Swap.getValue(1));
13733 }
13734
13735 static void
13736 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13737                         SelectionDAG &DAG, unsigned NewOp) {
13738   SDLoc dl(Node);
13739   assert (Node->getValueType(0) == MVT::i64 &&
13740           "Only know how to expand i64 atomics");
13741
13742   SDValue Chain = Node->getOperand(0);
13743   SDValue In1 = Node->getOperand(1);
13744   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13745                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13746   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13747                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13748   SDValue Ops[] = { Chain, In1, In2L, In2H };
13749   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13750   SDValue Result =
13751     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13752                             cast<MemSDNode>(Node)->getMemOperand());
13753   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13754   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13755   Results.push_back(Result.getValue(2));
13756 }
13757
13758 /// ReplaceNodeResults - Replace a node with an illegal result type
13759 /// with a new node built out of custom code.
13760 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13761                                            SmallVectorImpl<SDValue>&Results,
13762                                            SelectionDAG &DAG) const {
13763   SDLoc dl(N);
13764   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13765   switch (N->getOpcode()) {
13766   default:
13767     llvm_unreachable("Do not know how to custom type legalize this operation!");
13768   case ISD::SIGN_EXTEND_INREG:
13769   case ISD::ADDC:
13770   case ISD::ADDE:
13771   case ISD::SUBC:
13772   case ISD::SUBE:
13773     // We don't want to expand or promote these.
13774     return;
13775   case ISD::FP_TO_SINT:
13776   case ISD::FP_TO_UINT: {
13777     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13778
13779     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13780       return;
13781
13782     std::pair<SDValue,SDValue> Vals =
13783         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13784     SDValue FIST = Vals.first, StackSlot = Vals.second;
13785     if (FIST.getNode() != 0) {
13786       EVT VT = N->getValueType(0);
13787       // Return a load from the stack slot.
13788       if (StackSlot.getNode() != 0)
13789         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13790                                       MachinePointerInfo(),
13791                                       false, false, false, 0));
13792       else
13793         Results.push_back(FIST);
13794     }
13795     return;
13796   }
13797   case ISD::UINT_TO_FP: {
13798     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13799     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13800         N->getValueType(0) != MVT::v2f32)
13801       return;
13802     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13803                                  N->getOperand(0));
13804     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13805                                      MVT::f64);
13806     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13807     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13808                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13809     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13810     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13811     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13812     return;
13813   }
13814   case ISD::FP_ROUND: {
13815     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13816         return;
13817     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13818     Results.push_back(V);
13819     return;
13820   }
13821   case ISD::READCYCLECOUNTER: {
13822     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13823     SDValue TheChain = N->getOperand(0);
13824     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13825     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13826                                      rd.getValue(1));
13827     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13828                                      eax.getValue(2));
13829     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13830     SDValue Ops[] = { eax, edx };
13831     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13832                                   array_lengthof(Ops)));
13833     Results.push_back(edx.getValue(1));
13834     return;
13835   }
13836   case ISD::ATOMIC_CMP_SWAP: {
13837     EVT T = N->getValueType(0);
13838     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13839     bool Regs64bit = T == MVT::i128;
13840     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13841     SDValue cpInL, cpInH;
13842     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13843                         DAG.getConstant(0, HalfT));
13844     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13845                         DAG.getConstant(1, HalfT));
13846     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13847                              Regs64bit ? X86::RAX : X86::EAX,
13848                              cpInL, SDValue());
13849     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13850                              Regs64bit ? X86::RDX : X86::EDX,
13851                              cpInH, cpInL.getValue(1));
13852     SDValue swapInL, swapInH;
13853     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13854                           DAG.getConstant(0, HalfT));
13855     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13856                           DAG.getConstant(1, HalfT));
13857     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13858                                Regs64bit ? X86::RBX : X86::EBX,
13859                                swapInL, cpInH.getValue(1));
13860     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13861                                Regs64bit ? X86::RCX : X86::ECX,
13862                                swapInH, swapInL.getValue(1));
13863     SDValue Ops[] = { swapInH.getValue(0),
13864                       N->getOperand(1),
13865                       swapInH.getValue(1) };
13866     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13867     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13868     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13869                                   X86ISD::LCMPXCHG8_DAG;
13870     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13871                                              Ops, array_lengthof(Ops), T, MMO);
13872     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13873                                         Regs64bit ? X86::RAX : X86::EAX,
13874                                         HalfT, Result.getValue(1));
13875     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13876                                         Regs64bit ? X86::RDX : X86::EDX,
13877                                         HalfT, cpOutL.getValue(2));
13878     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13879     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13880     Results.push_back(cpOutH.getValue(1));
13881     return;
13882   }
13883   case ISD::ATOMIC_LOAD_ADD:
13884   case ISD::ATOMIC_LOAD_AND:
13885   case ISD::ATOMIC_LOAD_NAND:
13886   case ISD::ATOMIC_LOAD_OR:
13887   case ISD::ATOMIC_LOAD_SUB:
13888   case ISD::ATOMIC_LOAD_XOR:
13889   case ISD::ATOMIC_LOAD_MAX:
13890   case ISD::ATOMIC_LOAD_MIN:
13891   case ISD::ATOMIC_LOAD_UMAX:
13892   case ISD::ATOMIC_LOAD_UMIN:
13893   case ISD::ATOMIC_SWAP: {
13894     unsigned Opc;
13895     switch (N->getOpcode()) {
13896     default: llvm_unreachable("Unexpected opcode");
13897     case ISD::ATOMIC_LOAD_ADD:
13898       Opc = X86ISD::ATOMADD64_DAG;
13899       break;
13900     case ISD::ATOMIC_LOAD_AND:
13901       Opc = X86ISD::ATOMAND64_DAG;
13902       break;
13903     case ISD::ATOMIC_LOAD_NAND:
13904       Opc = X86ISD::ATOMNAND64_DAG;
13905       break;
13906     case ISD::ATOMIC_LOAD_OR:
13907       Opc = X86ISD::ATOMOR64_DAG;
13908       break;
13909     case ISD::ATOMIC_LOAD_SUB:
13910       Opc = X86ISD::ATOMSUB64_DAG;
13911       break;
13912     case ISD::ATOMIC_LOAD_XOR:
13913       Opc = X86ISD::ATOMXOR64_DAG;
13914       break;
13915     case ISD::ATOMIC_LOAD_MAX:
13916       Opc = X86ISD::ATOMMAX64_DAG;
13917       break;
13918     case ISD::ATOMIC_LOAD_MIN:
13919       Opc = X86ISD::ATOMMIN64_DAG;
13920       break;
13921     case ISD::ATOMIC_LOAD_UMAX:
13922       Opc = X86ISD::ATOMUMAX64_DAG;
13923       break;
13924     case ISD::ATOMIC_LOAD_UMIN:
13925       Opc = X86ISD::ATOMUMIN64_DAG;
13926       break;
13927     case ISD::ATOMIC_SWAP:
13928       Opc = X86ISD::ATOMSWAP64_DAG;
13929       break;
13930     }
13931     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13932     return;
13933   }
13934   case ISD::ATOMIC_LOAD:
13935     ReplaceATOMIC_LOAD(N, Results, DAG);
13936   }
13937 }
13938
13939 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13940   switch (Opcode) {
13941   default: return NULL;
13942   case X86ISD::BSF:                return "X86ISD::BSF";
13943   case X86ISD::BSR:                return "X86ISD::BSR";
13944   case X86ISD::SHLD:               return "X86ISD::SHLD";
13945   case X86ISD::SHRD:               return "X86ISD::SHRD";
13946   case X86ISD::FAND:               return "X86ISD::FAND";
13947   case X86ISD::FANDN:              return "X86ISD::FANDN";
13948   case X86ISD::FOR:                return "X86ISD::FOR";
13949   case X86ISD::FXOR:               return "X86ISD::FXOR";
13950   case X86ISD::FSRL:               return "X86ISD::FSRL";
13951   case X86ISD::FILD:               return "X86ISD::FILD";
13952   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13953   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13954   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13955   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13956   case X86ISD::FLD:                return "X86ISD::FLD";
13957   case X86ISD::FST:                return "X86ISD::FST";
13958   case X86ISD::CALL:               return "X86ISD::CALL";
13959   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13960   case X86ISD::BT:                 return "X86ISD::BT";
13961   case X86ISD::CMP:                return "X86ISD::CMP";
13962   case X86ISD::COMI:               return "X86ISD::COMI";
13963   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13964   case X86ISD::CMPM:               return "X86ISD::CMPM";
13965   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13966   case X86ISD::SETCC:              return "X86ISD::SETCC";
13967   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13968   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
13969   case X86ISD::CMOV:               return "X86ISD::CMOV";
13970   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13971   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13972   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13973   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13974   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13975   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13976   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13977   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13978   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13979   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13980   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13981   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13982   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13983   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13984   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13985   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13986   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13987   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13988   case X86ISD::HADD:               return "X86ISD::HADD";
13989   case X86ISD::HSUB:               return "X86ISD::HSUB";
13990   case X86ISD::FHADD:              return "X86ISD::FHADD";
13991   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13992   case X86ISD::UMAX:               return "X86ISD::UMAX";
13993   case X86ISD::UMIN:               return "X86ISD::UMIN";
13994   case X86ISD::SMAX:               return "X86ISD::SMAX";
13995   case X86ISD::SMIN:               return "X86ISD::SMIN";
13996   case X86ISD::FMAX:               return "X86ISD::FMAX";
13997   case X86ISD::FMIN:               return "X86ISD::FMIN";
13998   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13999   case X86ISD::FMINC:              return "X86ISD::FMINC";
14000   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
14001   case X86ISD::FRCP:               return "X86ISD::FRCP";
14002   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
14003   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
14004   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
14005   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
14006   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
14007   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
14008   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
14009   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
14010   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
14011   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
14012   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
14013   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
14014   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
14015   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
14016   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
14017   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
14018   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
14019   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
14020   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
14021   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
14022   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
14023   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
14024   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
14025   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
14026   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
14027   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
14028   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
14029   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
14030   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
14031   case X86ISD::VSHL:               return "X86ISD::VSHL";
14032   case X86ISD::VSRL:               return "X86ISD::VSRL";
14033   case X86ISD::VSRA:               return "X86ISD::VSRA";
14034   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
14035   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
14036   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
14037   case X86ISD::CMPP:               return "X86ISD::CMPP";
14038   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
14039   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
14040   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
14041   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
14042   case X86ISD::ADD:                return "X86ISD::ADD";
14043   case X86ISD::SUB:                return "X86ISD::SUB";
14044   case X86ISD::ADC:                return "X86ISD::ADC";
14045   case X86ISD::SBB:                return "X86ISD::SBB";
14046   case X86ISD::SMUL:               return "X86ISD::SMUL";
14047   case X86ISD::UMUL:               return "X86ISD::UMUL";
14048   case X86ISD::INC:                return "X86ISD::INC";
14049   case X86ISD::DEC:                return "X86ISD::DEC";
14050   case X86ISD::OR:                 return "X86ISD::OR";
14051   case X86ISD::XOR:                return "X86ISD::XOR";
14052   case X86ISD::AND:                return "X86ISD::AND";
14053   case X86ISD::BZHI:               return "X86ISD::BZHI";
14054   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
14055   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
14056   case X86ISD::PTEST:              return "X86ISD::PTEST";
14057   case X86ISD::TESTP:              return "X86ISD::TESTP";
14058   case X86ISD::TESTM:              return "X86ISD::TESTM";
14059   case X86ISD::TESTNM:             return "X86ISD::TESTNM";
14060   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
14061   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
14062   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
14063   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
14064   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
14065   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
14066   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
14067   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
14068   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
14069   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
14070   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
14071   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
14072   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
14073   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
14074   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
14075   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14076   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14077   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14078   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14079   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14080   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14081   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14082   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14083   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14084   case X86ISD::VPERMIV3:           return "X86ISD::VPERMIV3";
14085   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14086   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14087   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14088   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14089   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14090   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14091   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14092   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14093   case X86ISD::SAHF:               return "X86ISD::SAHF";
14094   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14095   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14096   case X86ISD::FMADD:              return "X86ISD::FMADD";
14097   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14098   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14099   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14100   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14101   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14102   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14103   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14104   case X86ISD::XTEST:              return "X86ISD::XTEST";
14105   }
14106 }
14107
14108 // isLegalAddressingMode - Return true if the addressing mode represented
14109 // by AM is legal for this target, for a load/store of the specified type.
14110 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14111                                               Type *Ty) const {
14112   // X86 supports extremely general addressing modes.
14113   CodeModel::Model M = getTargetMachine().getCodeModel();
14114   Reloc::Model R = getTargetMachine().getRelocationModel();
14115
14116   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14117   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
14118     return false;
14119
14120   if (AM.BaseGV) {
14121     unsigned GVFlags =
14122       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14123
14124     // If a reference to this global requires an extra load, we can't fold it.
14125     if (isGlobalStubReference(GVFlags))
14126       return false;
14127
14128     // If BaseGV requires a register for the PIC base, we cannot also have a
14129     // BaseReg specified.
14130     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
14131       return false;
14132
14133     // If lower 4G is not available, then we must use rip-relative addressing.
14134     if ((M != CodeModel::Small || R != Reloc::Static) &&
14135         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
14136       return false;
14137   }
14138
14139   switch (AM.Scale) {
14140   case 0:
14141   case 1:
14142   case 2:
14143   case 4:
14144   case 8:
14145     // These scales always work.
14146     break;
14147   case 3:
14148   case 5:
14149   case 9:
14150     // These scales are formed with basereg+scalereg.  Only accept if there is
14151     // no basereg yet.
14152     if (AM.HasBaseReg)
14153       return false;
14154     break;
14155   default:  // Other stuff never works.
14156     return false;
14157   }
14158
14159   return true;
14160 }
14161
14162 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
14163   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14164     return false;
14165   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
14166   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
14167   return NumBits1 > NumBits2;
14168 }
14169
14170 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
14171   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14172     return false;
14173
14174   if (!isTypeLegal(EVT::getEVT(Ty1)))
14175     return false;
14176
14177   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
14178
14179   // Assuming the caller doesn't have a zeroext or signext return parameter,
14180   // truncation all the way down to i1 is valid.
14181   return true;
14182 }
14183
14184 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
14185   return isInt<32>(Imm);
14186 }
14187
14188 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
14189   // Can also use sub to handle negated immediates.
14190   return isInt<32>(Imm);
14191 }
14192
14193 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
14194   if (!VT1.isInteger() || !VT2.isInteger())
14195     return false;
14196   unsigned NumBits1 = VT1.getSizeInBits();
14197   unsigned NumBits2 = VT2.getSizeInBits();
14198   return NumBits1 > NumBits2;
14199 }
14200
14201 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
14202   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14203   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
14204 }
14205
14206 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
14207   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14208   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
14209 }
14210
14211 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
14212   EVT VT1 = Val.getValueType();
14213   if (isZExtFree(VT1, VT2))
14214     return true;
14215
14216   if (Val.getOpcode() != ISD::LOAD)
14217     return false;
14218
14219   if (!VT1.isSimple() || !VT1.isInteger() ||
14220       !VT2.isSimple() || !VT2.isInteger())
14221     return false;
14222
14223   switch (VT1.getSimpleVT().SimpleTy) {
14224   default: break;
14225   case MVT::i8:
14226   case MVT::i16:
14227   case MVT::i32:
14228     // X86 has 8, 16, and 32-bit zero-extending loads.
14229     return true;
14230   }
14231
14232   return false;
14233 }
14234
14235 bool
14236 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14237   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14238     return false;
14239
14240   VT = VT.getScalarType();
14241
14242   if (!VT.isSimple())
14243     return false;
14244
14245   switch (VT.getSimpleVT().SimpleTy) {
14246   case MVT::f32:
14247   case MVT::f64:
14248     return true;
14249   default:
14250     break;
14251   }
14252
14253   return false;
14254 }
14255
14256 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
14257   // i16 instructions are longer (0x66 prefix) and potentially slower.
14258   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
14259 }
14260
14261 /// isShuffleMaskLegal - Targets can use this to indicate that they only
14262 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
14263 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
14264 /// are assumed to be legal.
14265 bool
14266 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
14267                                       EVT VT) const {
14268   if (!VT.isSimple())
14269     return false;
14270
14271   MVT SVT = VT.getSimpleVT();
14272
14273   // Very little shuffling can be done for 64-bit vectors right now.
14274   if (VT.getSizeInBits() == 64)
14275     return false;
14276
14277   // FIXME: pshufb, blends, shifts.
14278   return (SVT.getVectorNumElements() == 2 ||
14279           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
14280           isMOVLMask(M, SVT) ||
14281           isSHUFPMask(M, SVT) ||
14282           isPSHUFDMask(M, SVT) ||
14283           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14284           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14285           isPALIGNRMask(M, SVT, Subtarget) ||
14286           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14287           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14288           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14289           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
14290 }
14291
14292 bool
14293 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
14294                                           EVT VT) const {
14295   if (!VT.isSimple())
14296     return false;
14297
14298   MVT SVT = VT.getSimpleVT();
14299   unsigned NumElts = SVT.getVectorNumElements();
14300   // FIXME: This collection of masks seems suspect.
14301   if (NumElts == 2)
14302     return true;
14303   if (NumElts == 4 && SVT.is128BitVector()) {
14304     return (isMOVLMask(Mask, SVT)  ||
14305             isCommutedMOVLMask(Mask, SVT, true) ||
14306             isSHUFPMask(Mask, SVT) ||
14307             isSHUFPMask(Mask, SVT, /* Commuted */ true));
14308   }
14309   return false;
14310 }
14311
14312 //===----------------------------------------------------------------------===//
14313 //                           X86 Scheduler Hooks
14314 //===----------------------------------------------------------------------===//
14315
14316 /// Utility function to emit xbegin specifying the start of an RTM region.
14317 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14318                                      const TargetInstrInfo *TII) {
14319   DebugLoc DL = MI->getDebugLoc();
14320
14321   const BasicBlock *BB = MBB->getBasicBlock();
14322   MachineFunction::iterator I = MBB;
14323   ++I;
14324
14325   // For the v = xbegin(), we generate
14326   //
14327   // thisMBB:
14328   //  xbegin sinkMBB
14329   //
14330   // mainMBB:
14331   //  eax = -1
14332   //
14333   // sinkMBB:
14334   //  v = eax
14335
14336   MachineBasicBlock *thisMBB = MBB;
14337   MachineFunction *MF = MBB->getParent();
14338   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14339   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14340   MF->insert(I, mainMBB);
14341   MF->insert(I, sinkMBB);
14342
14343   // Transfer the remainder of BB and its successor edges to sinkMBB.
14344   sinkMBB->splice(sinkMBB->begin(), MBB,
14345                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14346   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14347
14348   // thisMBB:
14349   //  xbegin sinkMBB
14350   //  # fallthrough to mainMBB
14351   //  # abortion to sinkMBB
14352   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14353   thisMBB->addSuccessor(mainMBB);
14354   thisMBB->addSuccessor(sinkMBB);
14355
14356   // mainMBB:
14357   //  EAX = -1
14358   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14359   mainMBB->addSuccessor(sinkMBB);
14360
14361   // sinkMBB:
14362   // EAX is live into the sinkMBB
14363   sinkMBB->addLiveIn(X86::EAX);
14364   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14365           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14366     .addReg(X86::EAX);
14367
14368   MI->eraseFromParent();
14369   return sinkMBB;
14370 }
14371
14372 // Get CMPXCHG opcode for the specified data type.
14373 static unsigned getCmpXChgOpcode(EVT VT) {
14374   switch (VT.getSimpleVT().SimpleTy) {
14375   case MVT::i8:  return X86::LCMPXCHG8;
14376   case MVT::i16: return X86::LCMPXCHG16;
14377   case MVT::i32: return X86::LCMPXCHG32;
14378   case MVT::i64: return X86::LCMPXCHG64;
14379   default:
14380     break;
14381   }
14382   llvm_unreachable("Invalid operand size!");
14383 }
14384
14385 // Get LOAD opcode for the specified data type.
14386 static unsigned getLoadOpcode(EVT VT) {
14387   switch (VT.getSimpleVT().SimpleTy) {
14388   case MVT::i8:  return X86::MOV8rm;
14389   case MVT::i16: return X86::MOV16rm;
14390   case MVT::i32: return X86::MOV32rm;
14391   case MVT::i64: return X86::MOV64rm;
14392   default:
14393     break;
14394   }
14395   llvm_unreachable("Invalid operand size!");
14396 }
14397
14398 // Get opcode of the non-atomic one from the specified atomic instruction.
14399 static unsigned getNonAtomicOpcode(unsigned Opc) {
14400   switch (Opc) {
14401   case X86::ATOMAND8:  return X86::AND8rr;
14402   case X86::ATOMAND16: return X86::AND16rr;
14403   case X86::ATOMAND32: return X86::AND32rr;
14404   case X86::ATOMAND64: return X86::AND64rr;
14405   case X86::ATOMOR8:   return X86::OR8rr;
14406   case X86::ATOMOR16:  return X86::OR16rr;
14407   case X86::ATOMOR32:  return X86::OR32rr;
14408   case X86::ATOMOR64:  return X86::OR64rr;
14409   case X86::ATOMXOR8:  return X86::XOR8rr;
14410   case X86::ATOMXOR16: return X86::XOR16rr;
14411   case X86::ATOMXOR32: return X86::XOR32rr;
14412   case X86::ATOMXOR64: return X86::XOR64rr;
14413   }
14414   llvm_unreachable("Unhandled atomic-load-op opcode!");
14415 }
14416
14417 // Get opcode of the non-atomic one from the specified atomic instruction with
14418 // extra opcode.
14419 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14420                                                unsigned &ExtraOpc) {
14421   switch (Opc) {
14422   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14423   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14424   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14425   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14426   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14427   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14428   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14429   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14430   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14431   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14432   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14433   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14434   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14435   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14436   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14437   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14438   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14439   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14440   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14441   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14442   }
14443   llvm_unreachable("Unhandled atomic-load-op opcode!");
14444 }
14445
14446 // Get opcode of the non-atomic one from the specified atomic instruction for
14447 // 64-bit data type on 32-bit target.
14448 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14449   switch (Opc) {
14450   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14451   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14452   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14453   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14454   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14455   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14456   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14457   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14458   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14459   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14460   }
14461   llvm_unreachable("Unhandled atomic-load-op opcode!");
14462 }
14463
14464 // Get opcode of the non-atomic one from the specified atomic instruction for
14465 // 64-bit data type on 32-bit target with extra opcode.
14466 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14467                                                    unsigned &HiOpc,
14468                                                    unsigned &ExtraOpc) {
14469   switch (Opc) {
14470   case X86::ATOMNAND6432:
14471     ExtraOpc = X86::NOT32r;
14472     HiOpc = X86::AND32rr;
14473     return X86::AND32rr;
14474   }
14475   llvm_unreachable("Unhandled atomic-load-op opcode!");
14476 }
14477
14478 // Get pseudo CMOV opcode from the specified data type.
14479 static unsigned getPseudoCMOVOpc(EVT VT) {
14480   switch (VT.getSimpleVT().SimpleTy) {
14481   case MVT::i8:  return X86::CMOV_GR8;
14482   case MVT::i16: return X86::CMOV_GR16;
14483   case MVT::i32: return X86::CMOV_GR32;
14484   default:
14485     break;
14486   }
14487   llvm_unreachable("Unknown CMOV opcode!");
14488 }
14489
14490 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14491 // They will be translated into a spin-loop or compare-exchange loop from
14492 //
14493 //    ...
14494 //    dst = atomic-fetch-op MI.addr, MI.val
14495 //    ...
14496 //
14497 // to
14498 //
14499 //    ...
14500 //    t1 = LOAD MI.addr
14501 // loop:
14502 //    t4 = phi(t1, t3 / loop)
14503 //    t2 = OP MI.val, t4
14504 //    EAX = t4
14505 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14506 //    t3 = EAX
14507 //    JNE loop
14508 // sink:
14509 //    dst = t3
14510 //    ...
14511 MachineBasicBlock *
14512 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14513                                        MachineBasicBlock *MBB) const {
14514   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14515   DebugLoc DL = MI->getDebugLoc();
14516
14517   MachineFunction *MF = MBB->getParent();
14518   MachineRegisterInfo &MRI = MF->getRegInfo();
14519
14520   const BasicBlock *BB = MBB->getBasicBlock();
14521   MachineFunction::iterator I = MBB;
14522   ++I;
14523
14524   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14525          "Unexpected number of operands");
14526
14527   assert(MI->hasOneMemOperand() &&
14528          "Expected atomic-load-op to have one memoperand");
14529
14530   // Memory Reference
14531   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14532   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14533
14534   unsigned DstReg, SrcReg;
14535   unsigned MemOpndSlot;
14536
14537   unsigned CurOp = 0;
14538
14539   DstReg = MI->getOperand(CurOp++).getReg();
14540   MemOpndSlot = CurOp;
14541   CurOp += X86::AddrNumOperands;
14542   SrcReg = MI->getOperand(CurOp++).getReg();
14543
14544   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14545   MVT::SimpleValueType VT = *RC->vt_begin();
14546   unsigned t1 = MRI.createVirtualRegister(RC);
14547   unsigned t2 = MRI.createVirtualRegister(RC);
14548   unsigned t3 = MRI.createVirtualRegister(RC);
14549   unsigned t4 = MRI.createVirtualRegister(RC);
14550   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14551
14552   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14553   unsigned LOADOpc = getLoadOpcode(VT);
14554
14555   // For the atomic load-arith operator, we generate
14556   //
14557   //  thisMBB:
14558   //    t1 = LOAD [MI.addr]
14559   //  mainMBB:
14560   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14561   //    t1 = OP MI.val, EAX
14562   //    EAX = t4
14563   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14564   //    t3 = EAX
14565   //    JNE mainMBB
14566   //  sinkMBB:
14567   //    dst = t3
14568
14569   MachineBasicBlock *thisMBB = MBB;
14570   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14571   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14572   MF->insert(I, mainMBB);
14573   MF->insert(I, sinkMBB);
14574
14575   MachineInstrBuilder MIB;
14576
14577   // Transfer the remainder of BB and its successor edges to sinkMBB.
14578   sinkMBB->splice(sinkMBB->begin(), MBB,
14579                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14580   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14581
14582   // thisMBB:
14583   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14584   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14585     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14586     if (NewMO.isReg())
14587       NewMO.setIsKill(false);
14588     MIB.addOperand(NewMO);
14589   }
14590   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14591     unsigned flags = (*MMOI)->getFlags();
14592     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14593     MachineMemOperand *MMO =
14594       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14595                                (*MMOI)->getSize(),
14596                                (*MMOI)->getBaseAlignment(),
14597                                (*MMOI)->getTBAAInfo(),
14598                                (*MMOI)->getRanges());
14599     MIB.addMemOperand(MMO);
14600   }
14601
14602   thisMBB->addSuccessor(mainMBB);
14603
14604   // mainMBB:
14605   MachineBasicBlock *origMainMBB = mainMBB;
14606
14607   // Add a PHI.
14608   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14609                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14610
14611   unsigned Opc = MI->getOpcode();
14612   switch (Opc) {
14613   default:
14614     llvm_unreachable("Unhandled atomic-load-op opcode!");
14615   case X86::ATOMAND8:
14616   case X86::ATOMAND16:
14617   case X86::ATOMAND32:
14618   case X86::ATOMAND64:
14619   case X86::ATOMOR8:
14620   case X86::ATOMOR16:
14621   case X86::ATOMOR32:
14622   case X86::ATOMOR64:
14623   case X86::ATOMXOR8:
14624   case X86::ATOMXOR16:
14625   case X86::ATOMXOR32:
14626   case X86::ATOMXOR64: {
14627     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14628     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14629       .addReg(t4);
14630     break;
14631   }
14632   case X86::ATOMNAND8:
14633   case X86::ATOMNAND16:
14634   case X86::ATOMNAND32:
14635   case X86::ATOMNAND64: {
14636     unsigned Tmp = MRI.createVirtualRegister(RC);
14637     unsigned NOTOpc;
14638     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14639     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14640       .addReg(t4);
14641     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14642     break;
14643   }
14644   case X86::ATOMMAX8:
14645   case X86::ATOMMAX16:
14646   case X86::ATOMMAX32:
14647   case X86::ATOMMAX64:
14648   case X86::ATOMMIN8:
14649   case X86::ATOMMIN16:
14650   case X86::ATOMMIN32:
14651   case X86::ATOMMIN64:
14652   case X86::ATOMUMAX8:
14653   case X86::ATOMUMAX16:
14654   case X86::ATOMUMAX32:
14655   case X86::ATOMUMAX64:
14656   case X86::ATOMUMIN8:
14657   case X86::ATOMUMIN16:
14658   case X86::ATOMUMIN32:
14659   case X86::ATOMUMIN64: {
14660     unsigned CMPOpc;
14661     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14662
14663     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14664       .addReg(SrcReg)
14665       .addReg(t4);
14666
14667     if (Subtarget->hasCMov()) {
14668       if (VT != MVT::i8) {
14669         // Native support
14670         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14671           .addReg(SrcReg)
14672           .addReg(t4);
14673       } else {
14674         // Promote i8 to i32 to use CMOV32
14675         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14676         const TargetRegisterClass *RC32 =
14677           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14678         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14679         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14680         unsigned Tmp = MRI.createVirtualRegister(RC32);
14681
14682         unsigned Undef = MRI.createVirtualRegister(RC32);
14683         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14684
14685         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14686           .addReg(Undef)
14687           .addReg(SrcReg)
14688           .addImm(X86::sub_8bit);
14689         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14690           .addReg(Undef)
14691           .addReg(t4)
14692           .addImm(X86::sub_8bit);
14693
14694         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14695           .addReg(SrcReg32)
14696           .addReg(AccReg32);
14697
14698         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14699           .addReg(Tmp, 0, X86::sub_8bit);
14700       }
14701     } else {
14702       // Use pseudo select and lower them.
14703       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14704              "Invalid atomic-load-op transformation!");
14705       unsigned SelOpc = getPseudoCMOVOpc(VT);
14706       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14707       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14708       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14709               .addReg(SrcReg).addReg(t4)
14710               .addImm(CC);
14711       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14712       // Replace the original PHI node as mainMBB is changed after CMOV
14713       // lowering.
14714       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14715         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14716       Phi->eraseFromParent();
14717     }
14718     break;
14719   }
14720   }
14721
14722   // Copy PhyReg back from virtual register.
14723   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14724     .addReg(t4);
14725
14726   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14727   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14728     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14729     if (NewMO.isReg())
14730       NewMO.setIsKill(false);
14731     MIB.addOperand(NewMO);
14732   }
14733   MIB.addReg(t2);
14734   MIB.setMemRefs(MMOBegin, MMOEnd);
14735
14736   // Copy PhyReg back to virtual register.
14737   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14738     .addReg(PhyReg);
14739
14740   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14741
14742   mainMBB->addSuccessor(origMainMBB);
14743   mainMBB->addSuccessor(sinkMBB);
14744
14745   // sinkMBB:
14746   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14747           TII->get(TargetOpcode::COPY), DstReg)
14748     .addReg(t3);
14749
14750   MI->eraseFromParent();
14751   return sinkMBB;
14752 }
14753
14754 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14755 // instructions. They will be translated into a spin-loop or compare-exchange
14756 // loop from
14757 //
14758 //    ...
14759 //    dst = atomic-fetch-op MI.addr, MI.val
14760 //    ...
14761 //
14762 // to
14763 //
14764 //    ...
14765 //    t1L = LOAD [MI.addr + 0]
14766 //    t1H = LOAD [MI.addr + 4]
14767 // loop:
14768 //    t4L = phi(t1L, t3L / loop)
14769 //    t4H = phi(t1H, t3H / loop)
14770 //    t2L = OP MI.val.lo, t4L
14771 //    t2H = OP MI.val.hi, t4H
14772 //    EAX = t4L
14773 //    EDX = t4H
14774 //    EBX = t2L
14775 //    ECX = t2H
14776 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14777 //    t3L = EAX
14778 //    t3H = EDX
14779 //    JNE loop
14780 // sink:
14781 //    dstL = t3L
14782 //    dstH = t3H
14783 //    ...
14784 MachineBasicBlock *
14785 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14786                                            MachineBasicBlock *MBB) const {
14787   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14788   DebugLoc DL = MI->getDebugLoc();
14789
14790   MachineFunction *MF = MBB->getParent();
14791   MachineRegisterInfo &MRI = MF->getRegInfo();
14792
14793   const BasicBlock *BB = MBB->getBasicBlock();
14794   MachineFunction::iterator I = MBB;
14795   ++I;
14796
14797   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14798          "Unexpected number of operands");
14799
14800   assert(MI->hasOneMemOperand() &&
14801          "Expected atomic-load-op32 to have one memoperand");
14802
14803   // Memory Reference
14804   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14805   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14806
14807   unsigned DstLoReg, DstHiReg;
14808   unsigned SrcLoReg, SrcHiReg;
14809   unsigned MemOpndSlot;
14810
14811   unsigned CurOp = 0;
14812
14813   DstLoReg = MI->getOperand(CurOp++).getReg();
14814   DstHiReg = MI->getOperand(CurOp++).getReg();
14815   MemOpndSlot = CurOp;
14816   CurOp += X86::AddrNumOperands;
14817   SrcLoReg = MI->getOperand(CurOp++).getReg();
14818   SrcHiReg = MI->getOperand(CurOp++).getReg();
14819
14820   const TargetRegisterClass *RC = &X86::GR32RegClass;
14821   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14822
14823   unsigned t1L = MRI.createVirtualRegister(RC);
14824   unsigned t1H = MRI.createVirtualRegister(RC);
14825   unsigned t2L = MRI.createVirtualRegister(RC);
14826   unsigned t2H = MRI.createVirtualRegister(RC);
14827   unsigned t3L = MRI.createVirtualRegister(RC);
14828   unsigned t3H = MRI.createVirtualRegister(RC);
14829   unsigned t4L = MRI.createVirtualRegister(RC);
14830   unsigned t4H = MRI.createVirtualRegister(RC);
14831
14832   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14833   unsigned LOADOpc = X86::MOV32rm;
14834
14835   // For the atomic load-arith operator, we generate
14836   //
14837   //  thisMBB:
14838   //    t1L = LOAD [MI.addr + 0]
14839   //    t1H = LOAD [MI.addr + 4]
14840   //  mainMBB:
14841   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14842   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14843   //    t2L = OP MI.val.lo, t4L
14844   //    t2H = OP MI.val.hi, t4H
14845   //    EBX = t2L
14846   //    ECX = t2H
14847   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14848   //    t3L = EAX
14849   //    t3H = EDX
14850   //    JNE loop
14851   //  sinkMBB:
14852   //    dstL = t3L
14853   //    dstH = t3H
14854
14855   MachineBasicBlock *thisMBB = MBB;
14856   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14857   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14858   MF->insert(I, mainMBB);
14859   MF->insert(I, sinkMBB);
14860
14861   MachineInstrBuilder MIB;
14862
14863   // Transfer the remainder of BB and its successor edges to sinkMBB.
14864   sinkMBB->splice(sinkMBB->begin(), MBB,
14865                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14866   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14867
14868   // thisMBB:
14869   // Lo
14870   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14871   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14872     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14873     if (NewMO.isReg())
14874       NewMO.setIsKill(false);
14875     MIB.addOperand(NewMO);
14876   }
14877   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14878     unsigned flags = (*MMOI)->getFlags();
14879     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14880     MachineMemOperand *MMO =
14881       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14882                                (*MMOI)->getSize(),
14883                                (*MMOI)->getBaseAlignment(),
14884                                (*MMOI)->getTBAAInfo(),
14885                                (*MMOI)->getRanges());
14886     MIB.addMemOperand(MMO);
14887   };
14888   MachineInstr *LowMI = MIB;
14889
14890   // Hi
14891   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14892   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14893     if (i == X86::AddrDisp) {
14894       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14895     } else {
14896       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14897       if (NewMO.isReg())
14898         NewMO.setIsKill(false);
14899       MIB.addOperand(NewMO);
14900     }
14901   }
14902   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14903
14904   thisMBB->addSuccessor(mainMBB);
14905
14906   // mainMBB:
14907   MachineBasicBlock *origMainMBB = mainMBB;
14908
14909   // Add PHIs.
14910   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14911                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14912   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14913                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14914
14915   unsigned Opc = MI->getOpcode();
14916   switch (Opc) {
14917   default:
14918     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14919   case X86::ATOMAND6432:
14920   case X86::ATOMOR6432:
14921   case X86::ATOMXOR6432:
14922   case X86::ATOMADD6432:
14923   case X86::ATOMSUB6432: {
14924     unsigned HiOpc;
14925     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14926     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14927       .addReg(SrcLoReg);
14928     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14929       .addReg(SrcHiReg);
14930     break;
14931   }
14932   case X86::ATOMNAND6432: {
14933     unsigned HiOpc, NOTOpc;
14934     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14935     unsigned TmpL = MRI.createVirtualRegister(RC);
14936     unsigned TmpH = MRI.createVirtualRegister(RC);
14937     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14938       .addReg(t4L);
14939     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14940       .addReg(t4H);
14941     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14942     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14943     break;
14944   }
14945   case X86::ATOMMAX6432:
14946   case X86::ATOMMIN6432:
14947   case X86::ATOMUMAX6432:
14948   case X86::ATOMUMIN6432: {
14949     unsigned HiOpc;
14950     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14951     unsigned cL = MRI.createVirtualRegister(RC8);
14952     unsigned cH = MRI.createVirtualRegister(RC8);
14953     unsigned cL32 = MRI.createVirtualRegister(RC);
14954     unsigned cH32 = MRI.createVirtualRegister(RC);
14955     unsigned cc = MRI.createVirtualRegister(RC);
14956     // cl := cmp src_lo, lo
14957     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14958       .addReg(SrcLoReg).addReg(t4L);
14959     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14960     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14961     // ch := cmp src_hi, hi
14962     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14963       .addReg(SrcHiReg).addReg(t4H);
14964     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14965     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14966     // cc := if (src_hi == hi) ? cl : ch;
14967     if (Subtarget->hasCMov()) {
14968       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14969         .addReg(cH32).addReg(cL32);
14970     } else {
14971       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14972               .addReg(cH32).addReg(cL32)
14973               .addImm(X86::COND_E);
14974       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14975     }
14976     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14977     if (Subtarget->hasCMov()) {
14978       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14979         .addReg(SrcLoReg).addReg(t4L);
14980       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14981         .addReg(SrcHiReg).addReg(t4H);
14982     } else {
14983       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14984               .addReg(SrcLoReg).addReg(t4L)
14985               .addImm(X86::COND_NE);
14986       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14987       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14988       // 2nd CMOV lowering.
14989       mainMBB->addLiveIn(X86::EFLAGS);
14990       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14991               .addReg(SrcHiReg).addReg(t4H)
14992               .addImm(X86::COND_NE);
14993       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14994       // Replace the original PHI node as mainMBB is changed after CMOV
14995       // lowering.
14996       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14997         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14998       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14999         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
15000       PhiL->eraseFromParent();
15001       PhiH->eraseFromParent();
15002     }
15003     break;
15004   }
15005   case X86::ATOMSWAP6432: {
15006     unsigned HiOpc;
15007     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
15008     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
15009     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
15010     break;
15011   }
15012   }
15013
15014   // Copy EDX:EAX back from HiReg:LoReg
15015   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
15016   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
15017   // Copy ECX:EBX from t1H:t1L
15018   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
15019   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
15020
15021   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
15022   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15023     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
15024     if (NewMO.isReg())
15025       NewMO.setIsKill(false);
15026     MIB.addOperand(NewMO);
15027   }
15028   MIB.setMemRefs(MMOBegin, MMOEnd);
15029
15030   // Copy EDX:EAX back to t3H:t3L
15031   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
15032   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
15033
15034   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
15035
15036   mainMBB->addSuccessor(origMainMBB);
15037   mainMBB->addSuccessor(sinkMBB);
15038
15039   // sinkMBB:
15040   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15041           TII->get(TargetOpcode::COPY), DstLoReg)
15042     .addReg(t3L);
15043   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15044           TII->get(TargetOpcode::COPY), DstHiReg)
15045     .addReg(t3H);
15046
15047   MI->eraseFromParent();
15048   return sinkMBB;
15049 }
15050
15051 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
15052 // or XMM0_V32I8 in AVX all of this code can be replaced with that
15053 // in the .td file.
15054 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
15055                                        const TargetInstrInfo *TII) {
15056   unsigned Opc;
15057   switch (MI->getOpcode()) {
15058   default: llvm_unreachable("illegal opcode!");
15059   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
15060   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
15061   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
15062   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
15063   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
15064   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
15065   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
15066   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
15067   }
15068
15069   DebugLoc dl = MI->getDebugLoc();
15070   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15071
15072   unsigned NumArgs = MI->getNumOperands();
15073   for (unsigned i = 1; i < NumArgs; ++i) {
15074     MachineOperand &Op = MI->getOperand(i);
15075     if (!(Op.isReg() && Op.isImplicit()))
15076       MIB.addOperand(Op);
15077   }
15078   if (MI->hasOneMemOperand())
15079     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15080
15081   BuildMI(*BB, MI, dl,
15082     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15083     .addReg(X86::XMM0);
15084
15085   MI->eraseFromParent();
15086   return BB;
15087 }
15088
15089 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15090 // defs in an instruction pattern
15091 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15092                                        const TargetInstrInfo *TII) {
15093   unsigned Opc;
15094   switch (MI->getOpcode()) {
15095   default: llvm_unreachable("illegal opcode!");
15096   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
15097   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
15098   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
15099   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
15100   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
15101   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
15102   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
15103   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
15104   }
15105
15106   DebugLoc dl = MI->getDebugLoc();
15107   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15108
15109   unsigned NumArgs = MI->getNumOperands(); // remove the results
15110   for (unsigned i = 1; i < NumArgs; ++i) {
15111     MachineOperand &Op = MI->getOperand(i);
15112     if (!(Op.isReg() && Op.isImplicit()))
15113       MIB.addOperand(Op);
15114   }
15115   if (MI->hasOneMemOperand())
15116     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15117
15118   BuildMI(*BB, MI, dl,
15119     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15120     .addReg(X86::ECX);
15121
15122   MI->eraseFromParent();
15123   return BB;
15124 }
15125
15126 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
15127                                        const TargetInstrInfo *TII,
15128                                        const X86Subtarget* Subtarget) {
15129   DebugLoc dl = MI->getDebugLoc();
15130
15131   // Address into RAX/EAX, other two args into ECX, EDX.
15132   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
15133   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
15134   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
15135   for (int i = 0; i < X86::AddrNumOperands; ++i)
15136     MIB.addOperand(MI->getOperand(i));
15137
15138   unsigned ValOps = X86::AddrNumOperands;
15139   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
15140     .addReg(MI->getOperand(ValOps).getReg());
15141   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
15142     .addReg(MI->getOperand(ValOps+1).getReg());
15143
15144   // The instruction doesn't actually take any operands though.
15145   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
15146
15147   MI->eraseFromParent(); // The pseudo is gone now.
15148   return BB;
15149 }
15150
15151 MachineBasicBlock *
15152 X86TargetLowering::EmitVAARG64WithCustomInserter(
15153                    MachineInstr *MI,
15154                    MachineBasicBlock *MBB) const {
15155   // Emit va_arg instruction on X86-64.
15156
15157   // Operands to this pseudo-instruction:
15158   // 0  ) Output        : destination address (reg)
15159   // 1-5) Input         : va_list address (addr, i64mem)
15160   // 6  ) ArgSize       : Size (in bytes) of vararg type
15161   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
15162   // 8  ) Align         : Alignment of type
15163   // 9  ) EFLAGS (implicit-def)
15164
15165   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
15166   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
15167
15168   unsigned DestReg = MI->getOperand(0).getReg();
15169   MachineOperand &Base = MI->getOperand(1);
15170   MachineOperand &Scale = MI->getOperand(2);
15171   MachineOperand &Index = MI->getOperand(3);
15172   MachineOperand &Disp = MI->getOperand(4);
15173   MachineOperand &Segment = MI->getOperand(5);
15174   unsigned ArgSize = MI->getOperand(6).getImm();
15175   unsigned ArgMode = MI->getOperand(7).getImm();
15176   unsigned Align = MI->getOperand(8).getImm();
15177
15178   // Memory Reference
15179   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
15180   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15181   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15182
15183   // Machine Information
15184   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15185   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
15186   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
15187   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
15188   DebugLoc DL = MI->getDebugLoc();
15189
15190   // struct va_list {
15191   //   i32   gp_offset
15192   //   i32   fp_offset
15193   //   i64   overflow_area (address)
15194   //   i64   reg_save_area (address)
15195   // }
15196   // sizeof(va_list) = 24
15197   // alignment(va_list) = 8
15198
15199   unsigned TotalNumIntRegs = 6;
15200   unsigned TotalNumXMMRegs = 8;
15201   bool UseGPOffset = (ArgMode == 1);
15202   bool UseFPOffset = (ArgMode == 2);
15203   unsigned MaxOffset = TotalNumIntRegs * 8 +
15204                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
15205
15206   /* Align ArgSize to a multiple of 8 */
15207   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
15208   bool NeedsAlign = (Align > 8);
15209
15210   MachineBasicBlock *thisMBB = MBB;
15211   MachineBasicBlock *overflowMBB;
15212   MachineBasicBlock *offsetMBB;
15213   MachineBasicBlock *endMBB;
15214
15215   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
15216   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
15217   unsigned OffsetReg = 0;
15218
15219   if (!UseGPOffset && !UseFPOffset) {
15220     // If we only pull from the overflow region, we don't create a branch.
15221     // We don't need to alter control flow.
15222     OffsetDestReg = 0; // unused
15223     OverflowDestReg = DestReg;
15224
15225     offsetMBB = NULL;
15226     overflowMBB = thisMBB;
15227     endMBB = thisMBB;
15228   } else {
15229     // First emit code to check if gp_offset (or fp_offset) is below the bound.
15230     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15231     // If not, pull from overflow_area. (branch to overflowMBB)
15232     //
15233     //       thisMBB
15234     //         |     .
15235     //         |        .
15236     //     offsetMBB   overflowMBB
15237     //         |        .
15238     //         |     .
15239     //        endMBB
15240
15241     // Registers for the PHI in endMBB
15242     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
15243     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
15244
15245     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15246     MachineFunction *MF = MBB->getParent();
15247     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15248     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15249     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15250
15251     MachineFunction::iterator MBBIter = MBB;
15252     ++MBBIter;
15253
15254     // Insert the new basic blocks
15255     MF->insert(MBBIter, offsetMBB);
15256     MF->insert(MBBIter, overflowMBB);
15257     MF->insert(MBBIter, endMBB);
15258
15259     // Transfer the remainder of MBB and its successor edges to endMBB.
15260     endMBB->splice(endMBB->begin(), thisMBB,
15261                     llvm::next(MachineBasicBlock::iterator(MI)),
15262                     thisMBB->end());
15263     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
15264
15265     // Make offsetMBB and overflowMBB successors of thisMBB
15266     thisMBB->addSuccessor(offsetMBB);
15267     thisMBB->addSuccessor(overflowMBB);
15268
15269     // endMBB is a successor of both offsetMBB and overflowMBB
15270     offsetMBB->addSuccessor(endMBB);
15271     overflowMBB->addSuccessor(endMBB);
15272
15273     // Load the offset value into a register
15274     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15275     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
15276       .addOperand(Base)
15277       .addOperand(Scale)
15278       .addOperand(Index)
15279       .addDisp(Disp, UseFPOffset ? 4 : 0)
15280       .addOperand(Segment)
15281       .setMemRefs(MMOBegin, MMOEnd);
15282
15283     // Check if there is enough room left to pull this argument.
15284     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15285       .addReg(OffsetReg)
15286       .addImm(MaxOffset + 8 - ArgSizeA8);
15287
15288     // Branch to "overflowMBB" if offset >= max
15289     // Fall through to "offsetMBB" otherwise
15290     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15291       .addMBB(overflowMBB);
15292   }
15293
15294   // In offsetMBB, emit code to use the reg_save_area.
15295   if (offsetMBB) {
15296     assert(OffsetReg != 0);
15297
15298     // Read the reg_save_area address.
15299     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15300     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15301       .addOperand(Base)
15302       .addOperand(Scale)
15303       .addOperand(Index)
15304       .addDisp(Disp, 16)
15305       .addOperand(Segment)
15306       .setMemRefs(MMOBegin, MMOEnd);
15307
15308     // Zero-extend the offset
15309     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15310       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15311         .addImm(0)
15312         .addReg(OffsetReg)
15313         .addImm(X86::sub_32bit);
15314
15315     // Add the offset to the reg_save_area to get the final address.
15316     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15317       .addReg(OffsetReg64)
15318       .addReg(RegSaveReg);
15319
15320     // Compute the offset for the next argument
15321     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15322     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15323       .addReg(OffsetReg)
15324       .addImm(UseFPOffset ? 16 : 8);
15325
15326     // Store it back into the va_list.
15327     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15328       .addOperand(Base)
15329       .addOperand(Scale)
15330       .addOperand(Index)
15331       .addDisp(Disp, UseFPOffset ? 4 : 0)
15332       .addOperand(Segment)
15333       .addReg(NextOffsetReg)
15334       .setMemRefs(MMOBegin, MMOEnd);
15335
15336     // Jump to endMBB
15337     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15338       .addMBB(endMBB);
15339   }
15340
15341   //
15342   // Emit code to use overflow area
15343   //
15344
15345   // Load the overflow_area address into a register.
15346   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15347   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15348     .addOperand(Base)
15349     .addOperand(Scale)
15350     .addOperand(Index)
15351     .addDisp(Disp, 8)
15352     .addOperand(Segment)
15353     .setMemRefs(MMOBegin, MMOEnd);
15354
15355   // If we need to align it, do so. Otherwise, just copy the address
15356   // to OverflowDestReg.
15357   if (NeedsAlign) {
15358     // Align the overflow address
15359     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15360     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15361
15362     // aligned_addr = (addr + (align-1)) & ~(align-1)
15363     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15364       .addReg(OverflowAddrReg)
15365       .addImm(Align-1);
15366
15367     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15368       .addReg(TmpReg)
15369       .addImm(~(uint64_t)(Align-1));
15370   } else {
15371     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15372       .addReg(OverflowAddrReg);
15373   }
15374
15375   // Compute the next overflow address after this argument.
15376   // (the overflow address should be kept 8-byte aligned)
15377   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15378   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15379     .addReg(OverflowDestReg)
15380     .addImm(ArgSizeA8);
15381
15382   // Store the new overflow address.
15383   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15384     .addOperand(Base)
15385     .addOperand(Scale)
15386     .addOperand(Index)
15387     .addDisp(Disp, 8)
15388     .addOperand(Segment)
15389     .addReg(NextAddrReg)
15390     .setMemRefs(MMOBegin, MMOEnd);
15391
15392   // If we branched, emit the PHI to the front of endMBB.
15393   if (offsetMBB) {
15394     BuildMI(*endMBB, endMBB->begin(), DL,
15395             TII->get(X86::PHI), DestReg)
15396       .addReg(OffsetDestReg).addMBB(offsetMBB)
15397       .addReg(OverflowDestReg).addMBB(overflowMBB);
15398   }
15399
15400   // Erase the pseudo instruction
15401   MI->eraseFromParent();
15402
15403   return endMBB;
15404 }
15405
15406 MachineBasicBlock *
15407 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15408                                                  MachineInstr *MI,
15409                                                  MachineBasicBlock *MBB) const {
15410   // Emit code to save XMM registers to the stack. The ABI says that the
15411   // number of registers to save is given in %al, so it's theoretically
15412   // possible to do an indirect jump trick to avoid saving all of them,
15413   // however this code takes a simpler approach and just executes all
15414   // of the stores if %al is non-zero. It's less code, and it's probably
15415   // easier on the hardware branch predictor, and stores aren't all that
15416   // expensive anyway.
15417
15418   // Create the new basic blocks. One block contains all the XMM stores,
15419   // and one block is the final destination regardless of whether any
15420   // stores were performed.
15421   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15422   MachineFunction *F = MBB->getParent();
15423   MachineFunction::iterator MBBIter = MBB;
15424   ++MBBIter;
15425   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15426   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15427   F->insert(MBBIter, XMMSaveMBB);
15428   F->insert(MBBIter, EndMBB);
15429
15430   // Transfer the remainder of MBB and its successor edges to EndMBB.
15431   EndMBB->splice(EndMBB->begin(), MBB,
15432                  llvm::next(MachineBasicBlock::iterator(MI)),
15433                  MBB->end());
15434   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15435
15436   // The original block will now fall through to the XMM save block.
15437   MBB->addSuccessor(XMMSaveMBB);
15438   // The XMMSaveMBB will fall through to the end block.
15439   XMMSaveMBB->addSuccessor(EndMBB);
15440
15441   // Now add the instructions.
15442   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15443   DebugLoc DL = MI->getDebugLoc();
15444
15445   unsigned CountReg = MI->getOperand(0).getReg();
15446   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15447   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15448
15449   if (!Subtarget->isTargetWin64()) {
15450     // If %al is 0, branch around the XMM save block.
15451     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15452     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15453     MBB->addSuccessor(EndMBB);
15454   }
15455
15456   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
15457   // that was just emitted, but clearly shouldn't be "saved".
15458   assert((MI->getNumOperands() <= 3 ||
15459           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
15460           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
15461          && "Expected last argument to be EFLAGS");
15462   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15463   // In the XMM save block, save all the XMM argument registers.
15464   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
15465     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15466     MachineMemOperand *MMO =
15467       F->getMachineMemOperand(
15468           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15469         MachineMemOperand::MOStore,
15470         /*Size=*/16, /*Align=*/16);
15471     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15472       .addFrameIndex(RegSaveFrameIndex)
15473       .addImm(/*Scale=*/1)
15474       .addReg(/*IndexReg=*/0)
15475       .addImm(/*Disp=*/Offset)
15476       .addReg(/*Segment=*/0)
15477       .addReg(MI->getOperand(i).getReg())
15478       .addMemOperand(MMO);
15479   }
15480
15481   MI->eraseFromParent();   // The pseudo instruction is gone now.
15482
15483   return EndMBB;
15484 }
15485
15486 // The EFLAGS operand of SelectItr might be missing a kill marker
15487 // because there were multiple uses of EFLAGS, and ISel didn't know
15488 // which to mark. Figure out whether SelectItr should have had a
15489 // kill marker, and set it if it should. Returns the correct kill
15490 // marker value.
15491 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15492                                      MachineBasicBlock* BB,
15493                                      const TargetRegisterInfo* TRI) {
15494   // Scan forward through BB for a use/def of EFLAGS.
15495   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15496   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15497     const MachineInstr& mi = *miI;
15498     if (mi.readsRegister(X86::EFLAGS))
15499       return false;
15500     if (mi.definesRegister(X86::EFLAGS))
15501       break; // Should have kill-flag - update below.
15502   }
15503
15504   // If we hit the end of the block, check whether EFLAGS is live into a
15505   // successor.
15506   if (miI == BB->end()) {
15507     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15508                                           sEnd = BB->succ_end();
15509          sItr != sEnd; ++sItr) {
15510       MachineBasicBlock* succ = *sItr;
15511       if (succ->isLiveIn(X86::EFLAGS))
15512         return false;
15513     }
15514   }
15515
15516   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15517   // out. SelectMI should have a kill flag on EFLAGS.
15518   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15519   return true;
15520 }
15521
15522 MachineBasicBlock *
15523 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15524                                      MachineBasicBlock *BB) const {
15525   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15526   DebugLoc DL = MI->getDebugLoc();
15527
15528   // To "insert" a SELECT_CC instruction, we actually have to insert the
15529   // diamond control-flow pattern.  The incoming instruction knows the
15530   // destination vreg to set, the condition code register to branch on, the
15531   // true/false values to select between, and a branch opcode to use.
15532   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15533   MachineFunction::iterator It = BB;
15534   ++It;
15535
15536   //  thisMBB:
15537   //  ...
15538   //   TrueVal = ...
15539   //   cmpTY ccX, r1, r2
15540   //   bCC copy1MBB
15541   //   fallthrough --> copy0MBB
15542   MachineBasicBlock *thisMBB = BB;
15543   MachineFunction *F = BB->getParent();
15544   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15545   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15546   F->insert(It, copy0MBB);
15547   F->insert(It, sinkMBB);
15548
15549   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15550   // live into the sink and copy blocks.
15551   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15552   if (!MI->killsRegister(X86::EFLAGS) &&
15553       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15554     copy0MBB->addLiveIn(X86::EFLAGS);
15555     sinkMBB->addLiveIn(X86::EFLAGS);
15556   }
15557
15558   // Transfer the remainder of BB and its successor edges to sinkMBB.
15559   sinkMBB->splice(sinkMBB->begin(), BB,
15560                   llvm::next(MachineBasicBlock::iterator(MI)),
15561                   BB->end());
15562   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15563
15564   // Add the true and fallthrough blocks as its successors.
15565   BB->addSuccessor(copy0MBB);
15566   BB->addSuccessor(sinkMBB);
15567
15568   // Create the conditional branch instruction.
15569   unsigned Opc =
15570     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15571   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15572
15573   //  copy0MBB:
15574   //   %FalseValue = ...
15575   //   # fallthrough to sinkMBB
15576   copy0MBB->addSuccessor(sinkMBB);
15577
15578   //  sinkMBB:
15579   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15580   //  ...
15581   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15582           TII->get(X86::PHI), MI->getOperand(0).getReg())
15583     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15584     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15585
15586   MI->eraseFromParent();   // The pseudo instruction is gone now.
15587   return sinkMBB;
15588 }
15589
15590 MachineBasicBlock *
15591 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15592                                         bool Is64Bit) const {
15593   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15594   DebugLoc DL = MI->getDebugLoc();
15595   MachineFunction *MF = BB->getParent();
15596   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15597
15598   assert(getTargetMachine().Options.EnableSegmentedStacks);
15599
15600   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15601   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15602
15603   // BB:
15604   //  ... [Till the alloca]
15605   // If stacklet is not large enough, jump to mallocMBB
15606   //
15607   // bumpMBB:
15608   //  Allocate by subtracting from RSP
15609   //  Jump to continueMBB
15610   //
15611   // mallocMBB:
15612   //  Allocate by call to runtime
15613   //
15614   // continueMBB:
15615   //  ...
15616   //  [rest of original BB]
15617   //
15618
15619   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15620   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15621   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15622
15623   MachineRegisterInfo &MRI = MF->getRegInfo();
15624   const TargetRegisterClass *AddrRegClass =
15625     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15626
15627   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15628     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15629     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15630     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15631     sizeVReg = MI->getOperand(1).getReg(),
15632     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15633
15634   MachineFunction::iterator MBBIter = BB;
15635   ++MBBIter;
15636
15637   MF->insert(MBBIter, bumpMBB);
15638   MF->insert(MBBIter, mallocMBB);
15639   MF->insert(MBBIter, continueMBB);
15640
15641   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15642                       (MachineBasicBlock::iterator(MI)), BB->end());
15643   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15644
15645   // Add code to the main basic block to check if the stack limit has been hit,
15646   // and if so, jump to mallocMBB otherwise to bumpMBB.
15647   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15648   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15649     .addReg(tmpSPVReg).addReg(sizeVReg);
15650   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15651     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15652     .addReg(SPLimitVReg);
15653   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15654
15655   // bumpMBB simply decreases the stack pointer, since we know the current
15656   // stacklet has enough space.
15657   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15658     .addReg(SPLimitVReg);
15659   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15660     .addReg(SPLimitVReg);
15661   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15662
15663   // Calls into a routine in libgcc to allocate more space from the heap.
15664   const uint32_t *RegMask =
15665     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15666   if (Is64Bit) {
15667     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15668       .addReg(sizeVReg);
15669     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15670       .addExternalSymbol("__morestack_allocate_stack_space")
15671       .addRegMask(RegMask)
15672       .addReg(X86::RDI, RegState::Implicit)
15673       .addReg(X86::RAX, RegState::ImplicitDefine);
15674   } else {
15675     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15676       .addImm(12);
15677     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15678     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15679       .addExternalSymbol("__morestack_allocate_stack_space")
15680       .addRegMask(RegMask)
15681       .addReg(X86::EAX, RegState::ImplicitDefine);
15682   }
15683
15684   if (!Is64Bit)
15685     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15686       .addImm(16);
15687
15688   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15689     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15690   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15691
15692   // Set up the CFG correctly.
15693   BB->addSuccessor(bumpMBB);
15694   BB->addSuccessor(mallocMBB);
15695   mallocMBB->addSuccessor(continueMBB);
15696   bumpMBB->addSuccessor(continueMBB);
15697
15698   // Take care of the PHI nodes.
15699   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15700           MI->getOperand(0).getReg())
15701     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15702     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15703
15704   // Delete the original pseudo instruction.
15705   MI->eraseFromParent();
15706
15707   // And we're done.
15708   return continueMBB;
15709 }
15710
15711 MachineBasicBlock *
15712 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15713                                           MachineBasicBlock *BB) const {
15714   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15715   DebugLoc DL = MI->getDebugLoc();
15716
15717   assert(!Subtarget->isTargetMacho());
15718
15719   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15720   // non-trivial part is impdef of ESP.
15721
15722   if (Subtarget->isTargetWin64()) {
15723     if (Subtarget->isTargetCygMing()) {
15724       // ___chkstk(Mingw64):
15725       // Clobbers R10, R11, RAX and EFLAGS.
15726       // Updates RSP.
15727       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15728         .addExternalSymbol("___chkstk")
15729         .addReg(X86::RAX, RegState::Implicit)
15730         .addReg(X86::RSP, RegState::Implicit)
15731         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15732         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15733         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15734     } else {
15735       // __chkstk(MSVCRT): does not update stack pointer.
15736       // Clobbers R10, R11 and EFLAGS.
15737       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15738         .addExternalSymbol("__chkstk")
15739         .addReg(X86::RAX, RegState::Implicit)
15740         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15741       // RAX has the offset to be subtracted from RSP.
15742       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15743         .addReg(X86::RSP)
15744         .addReg(X86::RAX);
15745     }
15746   } else {
15747     const char *StackProbeSymbol =
15748       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15749
15750     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15751       .addExternalSymbol(StackProbeSymbol)
15752       .addReg(X86::EAX, RegState::Implicit)
15753       .addReg(X86::ESP, RegState::Implicit)
15754       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15755       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15756       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15757   }
15758
15759   MI->eraseFromParent();   // The pseudo instruction is gone now.
15760   return BB;
15761 }
15762
15763 MachineBasicBlock *
15764 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15765                                       MachineBasicBlock *BB) const {
15766   // This is pretty easy.  We're taking the value that we received from
15767   // our load from the relocation, sticking it in either RDI (x86-64)
15768   // or EAX and doing an indirect call.  The return value will then
15769   // be in the normal return register.
15770   const X86InstrInfo *TII
15771     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15772   DebugLoc DL = MI->getDebugLoc();
15773   MachineFunction *F = BB->getParent();
15774
15775   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15776   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15777
15778   // Get a register mask for the lowered call.
15779   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15780   // proper register mask.
15781   const uint32_t *RegMask =
15782     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15783   if (Subtarget->is64Bit()) {
15784     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15785                                       TII->get(X86::MOV64rm), X86::RDI)
15786     .addReg(X86::RIP)
15787     .addImm(0).addReg(0)
15788     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15789                       MI->getOperand(3).getTargetFlags())
15790     .addReg(0);
15791     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15792     addDirectMem(MIB, X86::RDI);
15793     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15794   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15795     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15796                                       TII->get(X86::MOV32rm), X86::EAX)
15797     .addReg(0)
15798     .addImm(0).addReg(0)
15799     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15800                       MI->getOperand(3).getTargetFlags())
15801     .addReg(0);
15802     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15803     addDirectMem(MIB, X86::EAX);
15804     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15805   } else {
15806     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15807                                       TII->get(X86::MOV32rm), X86::EAX)
15808     .addReg(TII->getGlobalBaseReg(F))
15809     .addImm(0).addReg(0)
15810     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15811                       MI->getOperand(3).getTargetFlags())
15812     .addReg(0);
15813     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15814     addDirectMem(MIB, X86::EAX);
15815     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15816   }
15817
15818   MI->eraseFromParent(); // The pseudo instruction is gone now.
15819   return BB;
15820 }
15821
15822 MachineBasicBlock *
15823 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15824                                     MachineBasicBlock *MBB) const {
15825   DebugLoc DL = MI->getDebugLoc();
15826   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15827
15828   MachineFunction *MF = MBB->getParent();
15829   MachineRegisterInfo &MRI = MF->getRegInfo();
15830
15831   const BasicBlock *BB = MBB->getBasicBlock();
15832   MachineFunction::iterator I = MBB;
15833   ++I;
15834
15835   // Memory Reference
15836   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15837   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15838
15839   unsigned DstReg;
15840   unsigned MemOpndSlot = 0;
15841
15842   unsigned CurOp = 0;
15843
15844   DstReg = MI->getOperand(CurOp++).getReg();
15845   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15846   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15847   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15848   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15849
15850   MemOpndSlot = CurOp;
15851
15852   MVT PVT = getPointerTy();
15853   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15854          "Invalid Pointer Size!");
15855
15856   // For v = setjmp(buf), we generate
15857   //
15858   // thisMBB:
15859   //  buf[LabelOffset] = restoreMBB
15860   //  SjLjSetup restoreMBB
15861   //
15862   // mainMBB:
15863   //  v_main = 0
15864   //
15865   // sinkMBB:
15866   //  v = phi(main, restore)
15867   //
15868   // restoreMBB:
15869   //  v_restore = 1
15870
15871   MachineBasicBlock *thisMBB = MBB;
15872   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15873   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15874   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15875   MF->insert(I, mainMBB);
15876   MF->insert(I, sinkMBB);
15877   MF->push_back(restoreMBB);
15878
15879   MachineInstrBuilder MIB;
15880
15881   // Transfer the remainder of BB and its successor edges to sinkMBB.
15882   sinkMBB->splice(sinkMBB->begin(), MBB,
15883                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15884   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15885
15886   // thisMBB:
15887   unsigned PtrStoreOpc = 0;
15888   unsigned LabelReg = 0;
15889   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15890   Reloc::Model RM = getTargetMachine().getRelocationModel();
15891   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15892                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15893
15894   // Prepare IP either in reg or imm.
15895   if (!UseImmLabel) {
15896     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15897     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15898     LabelReg = MRI.createVirtualRegister(PtrRC);
15899     if (Subtarget->is64Bit()) {
15900       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15901               .addReg(X86::RIP)
15902               .addImm(0)
15903               .addReg(0)
15904               .addMBB(restoreMBB)
15905               .addReg(0);
15906     } else {
15907       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15908       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15909               .addReg(XII->getGlobalBaseReg(MF))
15910               .addImm(0)
15911               .addReg(0)
15912               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15913               .addReg(0);
15914     }
15915   } else
15916     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15917   // Store IP
15918   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15919   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15920     if (i == X86::AddrDisp)
15921       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15922     else
15923       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15924   }
15925   if (!UseImmLabel)
15926     MIB.addReg(LabelReg);
15927   else
15928     MIB.addMBB(restoreMBB);
15929   MIB.setMemRefs(MMOBegin, MMOEnd);
15930   // Setup
15931   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15932           .addMBB(restoreMBB);
15933
15934   const X86RegisterInfo *RegInfo =
15935     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15936   MIB.addRegMask(RegInfo->getNoPreservedMask());
15937   thisMBB->addSuccessor(mainMBB);
15938   thisMBB->addSuccessor(restoreMBB);
15939
15940   // mainMBB:
15941   //  EAX = 0
15942   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15943   mainMBB->addSuccessor(sinkMBB);
15944
15945   // sinkMBB:
15946   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15947           TII->get(X86::PHI), DstReg)
15948     .addReg(mainDstReg).addMBB(mainMBB)
15949     .addReg(restoreDstReg).addMBB(restoreMBB);
15950
15951   // restoreMBB:
15952   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15953   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15954   restoreMBB->addSuccessor(sinkMBB);
15955
15956   MI->eraseFromParent();
15957   return sinkMBB;
15958 }
15959
15960 MachineBasicBlock *
15961 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15962                                      MachineBasicBlock *MBB) const {
15963   DebugLoc DL = MI->getDebugLoc();
15964   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15965
15966   MachineFunction *MF = MBB->getParent();
15967   MachineRegisterInfo &MRI = MF->getRegInfo();
15968
15969   // Memory Reference
15970   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15971   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15972
15973   MVT PVT = getPointerTy();
15974   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15975          "Invalid Pointer Size!");
15976
15977   const TargetRegisterClass *RC =
15978     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15979   unsigned Tmp = MRI.createVirtualRegister(RC);
15980   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15981   const X86RegisterInfo *RegInfo =
15982     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15983   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15984   unsigned SP = RegInfo->getStackRegister();
15985
15986   MachineInstrBuilder MIB;
15987
15988   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15989   const int64_t SPOffset = 2 * PVT.getStoreSize();
15990
15991   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15992   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15993
15994   // Reload FP
15995   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15996   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15997     MIB.addOperand(MI->getOperand(i));
15998   MIB.setMemRefs(MMOBegin, MMOEnd);
15999   // Reload IP
16000   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
16001   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16002     if (i == X86::AddrDisp)
16003       MIB.addDisp(MI->getOperand(i), LabelOffset);
16004     else
16005       MIB.addOperand(MI->getOperand(i));
16006   }
16007   MIB.setMemRefs(MMOBegin, MMOEnd);
16008   // Reload SP
16009   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
16010   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
16011     if (i == X86::AddrDisp)
16012       MIB.addDisp(MI->getOperand(i), SPOffset);
16013     else
16014       MIB.addOperand(MI->getOperand(i));
16015   }
16016   MIB.setMemRefs(MMOBegin, MMOEnd);
16017   // Jump
16018   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
16019
16020   MI->eraseFromParent();
16021   return MBB;
16022 }
16023
16024 // Replace 213-type (isel default) FMA3 instructions with 231-type for
16025 // accumulator loops. Writing back to the accumulator allows the coalescer
16026 // to remove extra copies in the loop.   
16027 MachineBasicBlock *
16028 X86TargetLowering::emitFMA3Instr(MachineInstr *MI,
16029                                  MachineBasicBlock *MBB) const {
16030   MachineOperand &AddendOp = MI->getOperand(3);
16031
16032   // Bail out early if the addend isn't a register - we can't switch these.
16033   if (!AddendOp.isReg())
16034     return MBB;
16035
16036   MachineFunction &MF = *MBB->getParent();
16037   MachineRegisterInfo &MRI = MF.getRegInfo();
16038
16039   // Check whether the addend is defined by a PHI:
16040   assert(MRI.hasOneDef(AddendOp.getReg()) && "Multiple defs in SSA?");
16041   MachineInstr &AddendDef = *MRI.def_begin(AddendOp.getReg());
16042   if (!AddendDef.isPHI())
16043     return MBB;
16044
16045   // Look for the following pattern:
16046   // loop:
16047   //   %addend = phi [%entry, 0], [%loop, %result]
16048   //   ...
16049   //   %result<tied1> = FMA213 %m2<tied0>, %m1, %addend
16050
16051   // Replace with:
16052   //   loop:
16053   //   %addend = phi [%entry, 0], [%loop, %result]
16054   //   ...
16055   //   %result<tied1> = FMA231 %addend<tied0>, %m1, %m2
16056
16057   for (unsigned i = 1, e = AddendDef.getNumOperands(); i < e; i += 2) {
16058     assert(AddendDef.getOperand(i).isReg());
16059     MachineOperand PHISrcOp = AddendDef.getOperand(i);
16060     MachineInstr &PHISrcInst = *MRI.def_begin(PHISrcOp.getReg());
16061     if (&PHISrcInst == MI) {
16062       // Found a matching instruction.
16063       unsigned NewFMAOpc = 0;
16064       switch (MI->getOpcode()) {
16065         case X86::VFMADDPDr213r: NewFMAOpc = X86::VFMADDPDr231r; break;
16066         case X86::VFMADDPSr213r: NewFMAOpc = X86::VFMADDPSr231r; break;
16067         case X86::VFMADDSDr213r: NewFMAOpc = X86::VFMADDSDr231r; break;
16068         case X86::VFMADDSSr213r: NewFMAOpc = X86::VFMADDSSr231r; break;
16069         case X86::VFMSUBPDr213r: NewFMAOpc = X86::VFMSUBPDr231r; break;
16070         case X86::VFMSUBPSr213r: NewFMAOpc = X86::VFMSUBPSr231r; break;
16071         case X86::VFMSUBSDr213r: NewFMAOpc = X86::VFMSUBSDr231r; break;
16072         case X86::VFMSUBSSr213r: NewFMAOpc = X86::VFMSUBSSr231r; break;
16073         case X86::VFNMADDPDr213r: NewFMAOpc = X86::VFNMADDPDr231r; break;
16074         case X86::VFNMADDPSr213r: NewFMAOpc = X86::VFNMADDPSr231r; break;
16075         case X86::VFNMADDSDr213r: NewFMAOpc = X86::VFNMADDSDr231r; break;
16076         case X86::VFNMADDSSr213r: NewFMAOpc = X86::VFNMADDSSr231r; break;
16077         case X86::VFNMSUBPDr213r: NewFMAOpc = X86::VFNMSUBPDr231r; break;
16078         case X86::VFNMSUBPSr213r: NewFMAOpc = X86::VFNMSUBPSr231r; break;
16079         case X86::VFNMSUBSDr213r: NewFMAOpc = X86::VFNMSUBSDr231r; break;
16080         case X86::VFNMSUBSSr213r: NewFMAOpc = X86::VFNMSUBSSr231r; break;
16081         case X86::VFMADDPDr213rY: NewFMAOpc = X86::VFMADDPDr231rY; break;
16082         case X86::VFMADDPSr213rY: NewFMAOpc = X86::VFMADDPSr231rY; break;
16083         case X86::VFMSUBPDr213rY: NewFMAOpc = X86::VFMSUBPDr231rY; break;
16084         case X86::VFMSUBPSr213rY: NewFMAOpc = X86::VFMSUBPSr231rY; break;
16085         case X86::VFNMADDPDr213rY: NewFMAOpc = X86::VFNMADDPDr231rY; break;
16086         case X86::VFNMADDPSr213rY: NewFMAOpc = X86::VFNMADDPSr231rY; break;
16087         case X86::VFNMSUBPDr213rY: NewFMAOpc = X86::VFNMSUBPDr231rY; break;
16088         case X86::VFNMSUBPSr213rY: NewFMAOpc = X86::VFNMSUBPSr231rY; break;
16089         default: llvm_unreachable("Unrecognized FMA variant.");
16090       }
16091
16092       const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
16093       MachineInstrBuilder MIB =
16094         BuildMI(MF, MI->getDebugLoc(), TII.get(NewFMAOpc))
16095         .addOperand(MI->getOperand(0))
16096         .addOperand(MI->getOperand(3))
16097         .addOperand(MI->getOperand(2))
16098         .addOperand(MI->getOperand(1));
16099       MBB->insert(MachineBasicBlock::iterator(MI), MIB);
16100       MI->eraseFromParent();
16101     }
16102   }
16103
16104   return MBB;
16105 }
16106
16107 MachineBasicBlock *
16108 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
16109                                                MachineBasicBlock *BB) const {
16110   switch (MI->getOpcode()) {
16111   default: llvm_unreachable("Unexpected instr type to insert");
16112   case X86::TAILJMPd64:
16113   case X86::TAILJMPr64:
16114   case X86::TAILJMPm64:
16115     llvm_unreachable("TAILJMP64 would not be touched here.");
16116   case X86::TCRETURNdi64:
16117   case X86::TCRETURNri64:
16118   case X86::TCRETURNmi64:
16119     return BB;
16120   case X86::WIN_ALLOCA:
16121     return EmitLoweredWinAlloca(MI, BB);
16122   case X86::SEG_ALLOCA_32:
16123     return EmitLoweredSegAlloca(MI, BB, false);
16124   case X86::SEG_ALLOCA_64:
16125     return EmitLoweredSegAlloca(MI, BB, true);
16126   case X86::TLSCall_32:
16127   case X86::TLSCall_64:
16128     return EmitLoweredTLSCall(MI, BB);
16129   case X86::CMOV_GR8:
16130   case X86::CMOV_FR32:
16131   case X86::CMOV_FR64:
16132   case X86::CMOV_V4F32:
16133   case X86::CMOV_V2F64:
16134   case X86::CMOV_V2I64:
16135   case X86::CMOV_V8F32:
16136   case X86::CMOV_V4F64:
16137   case X86::CMOV_V4I64:
16138   case X86::CMOV_V16F32:
16139   case X86::CMOV_V8F64:
16140   case X86::CMOV_V8I64:
16141   case X86::CMOV_GR16:
16142   case X86::CMOV_GR32:
16143   case X86::CMOV_RFP32:
16144   case X86::CMOV_RFP64:
16145   case X86::CMOV_RFP80:
16146     return EmitLoweredSelect(MI, BB);
16147
16148   case X86::FP32_TO_INT16_IN_MEM:
16149   case X86::FP32_TO_INT32_IN_MEM:
16150   case X86::FP32_TO_INT64_IN_MEM:
16151   case X86::FP64_TO_INT16_IN_MEM:
16152   case X86::FP64_TO_INT32_IN_MEM:
16153   case X86::FP64_TO_INT64_IN_MEM:
16154   case X86::FP80_TO_INT16_IN_MEM:
16155   case X86::FP80_TO_INT32_IN_MEM:
16156   case X86::FP80_TO_INT64_IN_MEM: {
16157     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16158     DebugLoc DL = MI->getDebugLoc();
16159
16160     // Change the floating point control register to use "round towards zero"
16161     // mode when truncating to an integer value.
16162     MachineFunction *F = BB->getParent();
16163     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
16164     addFrameReference(BuildMI(*BB, MI, DL,
16165                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
16166
16167     // Load the old value of the high byte of the control word...
16168     unsigned OldCW =
16169       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
16170     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
16171                       CWFrameIdx);
16172
16173     // Set the high part to be round to zero...
16174     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
16175       .addImm(0xC7F);
16176
16177     // Reload the modified control word now...
16178     addFrameReference(BuildMI(*BB, MI, DL,
16179                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16180
16181     // Restore the memory image of control word to original value
16182     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
16183       .addReg(OldCW);
16184
16185     // Get the X86 opcode to use.
16186     unsigned Opc;
16187     switch (MI->getOpcode()) {
16188     default: llvm_unreachable("illegal opcode!");
16189     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
16190     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
16191     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
16192     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
16193     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
16194     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
16195     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
16196     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
16197     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
16198     }
16199
16200     X86AddressMode AM;
16201     MachineOperand &Op = MI->getOperand(0);
16202     if (Op.isReg()) {
16203       AM.BaseType = X86AddressMode::RegBase;
16204       AM.Base.Reg = Op.getReg();
16205     } else {
16206       AM.BaseType = X86AddressMode::FrameIndexBase;
16207       AM.Base.FrameIndex = Op.getIndex();
16208     }
16209     Op = MI->getOperand(1);
16210     if (Op.isImm())
16211       AM.Scale = Op.getImm();
16212     Op = MI->getOperand(2);
16213     if (Op.isImm())
16214       AM.IndexReg = Op.getImm();
16215     Op = MI->getOperand(3);
16216     if (Op.isGlobal()) {
16217       AM.GV = Op.getGlobal();
16218     } else {
16219       AM.Disp = Op.getImm();
16220     }
16221     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
16222                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
16223
16224     // Reload the original control word now.
16225     addFrameReference(BuildMI(*BB, MI, DL,
16226                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16227
16228     MI->eraseFromParent();   // The pseudo instruction is gone now.
16229     return BB;
16230   }
16231     // String/text processing lowering.
16232   case X86::PCMPISTRM128REG:
16233   case X86::VPCMPISTRM128REG:
16234   case X86::PCMPISTRM128MEM:
16235   case X86::VPCMPISTRM128MEM:
16236   case X86::PCMPESTRM128REG:
16237   case X86::VPCMPESTRM128REG:
16238   case X86::PCMPESTRM128MEM:
16239   case X86::VPCMPESTRM128MEM:
16240     assert(Subtarget->hasSSE42() &&
16241            "Target must have SSE4.2 or AVX features enabled");
16242     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
16243
16244   // String/text processing lowering.
16245   case X86::PCMPISTRIREG:
16246   case X86::VPCMPISTRIREG:
16247   case X86::PCMPISTRIMEM:
16248   case X86::VPCMPISTRIMEM:
16249   case X86::PCMPESTRIREG:
16250   case X86::VPCMPESTRIREG:
16251   case X86::PCMPESTRIMEM:
16252   case X86::VPCMPESTRIMEM:
16253     assert(Subtarget->hasSSE42() &&
16254            "Target must have SSE4.2 or AVX features enabled");
16255     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
16256
16257   // Thread synchronization.
16258   case X86::MONITOR:
16259     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
16260
16261   // xbegin
16262   case X86::XBEGIN:
16263     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
16264
16265   // Atomic Lowering.
16266   case X86::ATOMAND8:
16267   case X86::ATOMAND16:
16268   case X86::ATOMAND32:
16269   case X86::ATOMAND64:
16270     // Fall through
16271   case X86::ATOMOR8:
16272   case X86::ATOMOR16:
16273   case X86::ATOMOR32:
16274   case X86::ATOMOR64:
16275     // Fall through
16276   case X86::ATOMXOR16:
16277   case X86::ATOMXOR8:
16278   case X86::ATOMXOR32:
16279   case X86::ATOMXOR64:
16280     // Fall through
16281   case X86::ATOMNAND8:
16282   case X86::ATOMNAND16:
16283   case X86::ATOMNAND32:
16284   case X86::ATOMNAND64:
16285     // Fall through
16286   case X86::ATOMMAX8:
16287   case X86::ATOMMAX16:
16288   case X86::ATOMMAX32:
16289   case X86::ATOMMAX64:
16290     // Fall through
16291   case X86::ATOMMIN8:
16292   case X86::ATOMMIN16:
16293   case X86::ATOMMIN32:
16294   case X86::ATOMMIN64:
16295     // Fall through
16296   case X86::ATOMUMAX8:
16297   case X86::ATOMUMAX16:
16298   case X86::ATOMUMAX32:
16299   case X86::ATOMUMAX64:
16300     // Fall through
16301   case X86::ATOMUMIN8:
16302   case X86::ATOMUMIN16:
16303   case X86::ATOMUMIN32:
16304   case X86::ATOMUMIN64:
16305     return EmitAtomicLoadArith(MI, BB);
16306
16307   // This group does 64-bit operations on a 32-bit host.
16308   case X86::ATOMAND6432:
16309   case X86::ATOMOR6432:
16310   case X86::ATOMXOR6432:
16311   case X86::ATOMNAND6432:
16312   case X86::ATOMADD6432:
16313   case X86::ATOMSUB6432:
16314   case X86::ATOMMAX6432:
16315   case X86::ATOMMIN6432:
16316   case X86::ATOMUMAX6432:
16317   case X86::ATOMUMIN6432:
16318   case X86::ATOMSWAP6432:
16319     return EmitAtomicLoadArith6432(MI, BB);
16320
16321   case X86::VASTART_SAVE_XMM_REGS:
16322     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
16323
16324   case X86::VAARG_64:
16325     return EmitVAARG64WithCustomInserter(MI, BB);
16326
16327   case X86::EH_SjLj_SetJmp32:
16328   case X86::EH_SjLj_SetJmp64:
16329     return emitEHSjLjSetJmp(MI, BB);
16330
16331   case X86::EH_SjLj_LongJmp32:
16332   case X86::EH_SjLj_LongJmp64:
16333     return emitEHSjLjLongJmp(MI, BB);
16334
16335   case TargetOpcode::STACKMAP:
16336   case TargetOpcode::PATCHPOINT:
16337     return emitPatchPoint(MI, BB);
16338
16339   case X86::VFMADDPDr213r:
16340   case X86::VFMADDPSr213r:
16341   case X86::VFMADDSDr213r:
16342   case X86::VFMADDSSr213r:
16343   case X86::VFMSUBPDr213r:
16344   case X86::VFMSUBPSr213r:
16345   case X86::VFMSUBSDr213r:
16346   case X86::VFMSUBSSr213r:
16347   case X86::VFNMADDPDr213r:
16348   case X86::VFNMADDPSr213r:
16349   case X86::VFNMADDSDr213r:
16350   case X86::VFNMADDSSr213r:
16351   case X86::VFNMSUBPDr213r:
16352   case X86::VFNMSUBPSr213r:
16353   case X86::VFNMSUBSDr213r:
16354   case X86::VFNMSUBSSr213r:
16355   case X86::VFMADDPDr213rY:
16356   case X86::VFMADDPSr213rY:
16357   case X86::VFMSUBPDr213rY:
16358   case X86::VFMSUBPSr213rY:
16359   case X86::VFNMADDPDr213rY:
16360   case X86::VFNMADDPSr213rY:
16361   case X86::VFNMSUBPDr213rY:
16362   case X86::VFNMSUBPSr213rY:
16363     return emitFMA3Instr(MI, BB);
16364   }
16365 }
16366
16367 //===----------------------------------------------------------------------===//
16368 //                           X86 Optimization Hooks
16369 //===----------------------------------------------------------------------===//
16370
16371 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
16372                                                        APInt &KnownZero,
16373                                                        APInt &KnownOne,
16374                                                        const SelectionDAG &DAG,
16375                                                        unsigned Depth) const {
16376   unsigned BitWidth = KnownZero.getBitWidth();
16377   unsigned Opc = Op.getOpcode();
16378   assert((Opc >= ISD::BUILTIN_OP_END ||
16379           Opc == ISD::INTRINSIC_WO_CHAIN ||
16380           Opc == ISD::INTRINSIC_W_CHAIN ||
16381           Opc == ISD::INTRINSIC_VOID) &&
16382          "Should use MaskedValueIsZero if you don't know whether Op"
16383          " is a target node!");
16384
16385   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
16386   switch (Opc) {
16387   default: break;
16388   case X86ISD::ADD:
16389   case X86ISD::SUB:
16390   case X86ISD::ADC:
16391   case X86ISD::SBB:
16392   case X86ISD::SMUL:
16393   case X86ISD::UMUL:
16394   case X86ISD::INC:
16395   case X86ISD::DEC:
16396   case X86ISD::OR:
16397   case X86ISD::XOR:
16398   case X86ISD::AND:
16399     // These nodes' second result is a boolean.
16400     if (Op.getResNo() == 0)
16401       break;
16402     // Fallthrough
16403   case X86ISD::SETCC:
16404     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
16405     break;
16406   case ISD::INTRINSIC_WO_CHAIN: {
16407     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16408     unsigned NumLoBits = 0;
16409     switch (IntId) {
16410     default: break;
16411     case Intrinsic::x86_sse_movmsk_ps:
16412     case Intrinsic::x86_avx_movmsk_ps_256:
16413     case Intrinsic::x86_sse2_movmsk_pd:
16414     case Intrinsic::x86_avx_movmsk_pd_256:
16415     case Intrinsic::x86_mmx_pmovmskb:
16416     case Intrinsic::x86_sse2_pmovmskb_128:
16417     case Intrinsic::x86_avx2_pmovmskb: {
16418       // High bits of movmskp{s|d}, pmovmskb are known zero.
16419       switch (IntId) {
16420         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16421         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
16422         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
16423         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
16424         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
16425         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
16426         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
16427         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
16428       }
16429       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
16430       break;
16431     }
16432     }
16433     break;
16434   }
16435   }
16436 }
16437
16438 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16439                                                          unsigned Depth) const {
16440   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16441   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16442     return Op.getValueType().getScalarType().getSizeInBits();
16443
16444   // Fallback case.
16445   return 1;
16446 }
16447
16448 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16449 /// node is a GlobalAddress + offset.
16450 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16451                                        const GlobalValue* &GA,
16452                                        int64_t &Offset) const {
16453   if (N->getOpcode() == X86ISD::Wrapper) {
16454     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16455       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16456       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16457       return true;
16458     }
16459   }
16460   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16461 }
16462
16463 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16464 /// same as extracting the high 128-bit part of 256-bit vector and then
16465 /// inserting the result into the low part of a new 256-bit vector
16466 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16467   EVT VT = SVOp->getValueType(0);
16468   unsigned NumElems = VT.getVectorNumElements();
16469
16470   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16471   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16472     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16473         SVOp->getMaskElt(j) >= 0)
16474       return false;
16475
16476   return true;
16477 }
16478
16479 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16480 /// same as extracting the low 128-bit part of 256-bit vector and then
16481 /// inserting the result into the high part of a new 256-bit vector
16482 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16483   EVT VT = SVOp->getValueType(0);
16484   unsigned NumElems = VT.getVectorNumElements();
16485
16486   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16487   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16488     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16489         SVOp->getMaskElt(j) >= 0)
16490       return false;
16491
16492   return true;
16493 }
16494
16495 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16496 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16497                                         TargetLowering::DAGCombinerInfo &DCI,
16498                                         const X86Subtarget* Subtarget) {
16499   SDLoc dl(N);
16500   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16501   SDValue V1 = SVOp->getOperand(0);
16502   SDValue V2 = SVOp->getOperand(1);
16503   EVT VT = SVOp->getValueType(0);
16504   unsigned NumElems = VT.getVectorNumElements();
16505
16506   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16507       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16508     //
16509     //                   0,0,0,...
16510     //                      |
16511     //    V      UNDEF    BUILD_VECTOR    UNDEF
16512     //     \      /           \           /
16513     //  CONCAT_VECTOR         CONCAT_VECTOR
16514     //         \                  /
16515     //          \                /
16516     //          RESULT: V + zero extended
16517     //
16518     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16519         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16520         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16521       return SDValue();
16522
16523     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16524       return SDValue();
16525
16526     // To match the shuffle mask, the first half of the mask should
16527     // be exactly the first vector, and all the rest a splat with the
16528     // first element of the second one.
16529     for (unsigned i = 0; i != NumElems/2; ++i)
16530       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16531           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16532         return SDValue();
16533
16534     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16535     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16536       if (Ld->hasNUsesOfValue(1, 0)) {
16537         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16538         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16539         SDValue ResNode =
16540           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16541                                   array_lengthof(Ops),
16542                                   Ld->getMemoryVT(),
16543                                   Ld->getPointerInfo(),
16544                                   Ld->getAlignment(),
16545                                   false/*isVolatile*/, true/*ReadMem*/,
16546                                   false/*WriteMem*/);
16547
16548         // Make sure the newly-created LOAD is in the same position as Ld in
16549         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16550         // and update uses of Ld's output chain to use the TokenFactor.
16551         if (Ld->hasAnyUseOfValue(1)) {
16552           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16553                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16554           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16555           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16556                                  SDValue(ResNode.getNode(), 1));
16557         }
16558
16559         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16560       }
16561     }
16562
16563     // Emit a zeroed vector and insert the desired subvector on its
16564     // first half.
16565     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16566     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16567     return DCI.CombineTo(N, InsV);
16568   }
16569
16570   //===--------------------------------------------------------------------===//
16571   // Combine some shuffles into subvector extracts and inserts:
16572   //
16573
16574   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16575   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16576     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16577     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16578     return DCI.CombineTo(N, InsV);
16579   }
16580
16581   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16582   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16583     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16584     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16585     return DCI.CombineTo(N, InsV);
16586   }
16587
16588   return SDValue();
16589 }
16590
16591 /// PerformShuffleCombine - Performs several different shuffle combines.
16592 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16593                                      TargetLowering::DAGCombinerInfo &DCI,
16594                                      const X86Subtarget *Subtarget) {
16595   SDLoc dl(N);
16596   EVT VT = N->getValueType(0);
16597
16598   // Don't create instructions with illegal types after legalize types has run.
16599   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16600   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16601     return SDValue();
16602
16603   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16604   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16605       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16606     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16607
16608   // Only handle 128 wide vector from here on.
16609   if (!VT.is128BitVector())
16610     return SDValue();
16611
16612   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16613   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16614   // consecutive, non-overlapping, and in the right order.
16615   SmallVector<SDValue, 16> Elts;
16616   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16617     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16618
16619   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
16620 }
16621
16622 /// PerformTruncateCombine - Converts truncate operation to
16623 /// a sequence of vector shuffle operations.
16624 /// It is possible when we truncate 256-bit vector to 128-bit vector
16625 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16626                                       TargetLowering::DAGCombinerInfo &DCI,
16627                                       const X86Subtarget *Subtarget)  {
16628   return SDValue();
16629 }
16630
16631 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16632 /// specific shuffle of a load can be folded into a single element load.
16633 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16634 /// shuffles have been customed lowered so we need to handle those here.
16635 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16636                                          TargetLowering::DAGCombinerInfo &DCI) {
16637   if (DCI.isBeforeLegalizeOps())
16638     return SDValue();
16639
16640   SDValue InVec = N->getOperand(0);
16641   SDValue EltNo = N->getOperand(1);
16642
16643   if (!isa<ConstantSDNode>(EltNo))
16644     return SDValue();
16645
16646   EVT VT = InVec.getValueType();
16647
16648   bool HasShuffleIntoBitcast = false;
16649   if (InVec.getOpcode() == ISD::BITCAST) {
16650     // Don't duplicate a load with other uses.
16651     if (!InVec.hasOneUse())
16652       return SDValue();
16653     EVT BCVT = InVec.getOperand(0).getValueType();
16654     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16655       return SDValue();
16656     InVec = InVec.getOperand(0);
16657     HasShuffleIntoBitcast = true;
16658   }
16659
16660   if (!isTargetShuffle(InVec.getOpcode()))
16661     return SDValue();
16662
16663   // Don't duplicate a load with other uses.
16664   if (!InVec.hasOneUse())
16665     return SDValue();
16666
16667   SmallVector<int, 16> ShuffleMask;
16668   bool UnaryShuffle;
16669   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16670                             UnaryShuffle))
16671     return SDValue();
16672
16673   // Select the input vector, guarding against out of range extract vector.
16674   unsigned NumElems = VT.getVectorNumElements();
16675   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16676   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16677   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16678                                          : InVec.getOperand(1);
16679
16680   // If inputs to shuffle are the same for both ops, then allow 2 uses
16681   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16682
16683   if (LdNode.getOpcode() == ISD::BITCAST) {
16684     // Don't duplicate a load with other uses.
16685     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16686       return SDValue();
16687
16688     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16689     LdNode = LdNode.getOperand(0);
16690   }
16691
16692   if (!ISD::isNormalLoad(LdNode.getNode()))
16693     return SDValue();
16694
16695   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16696
16697   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16698     return SDValue();
16699
16700   if (HasShuffleIntoBitcast) {
16701     // If there's a bitcast before the shuffle, check if the load type and
16702     // alignment is valid.
16703     unsigned Align = LN0->getAlignment();
16704     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16705     unsigned NewAlign = TLI.getDataLayout()->
16706       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16707
16708     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16709       return SDValue();
16710   }
16711
16712   // All checks match so transform back to vector_shuffle so that DAG combiner
16713   // can finish the job
16714   SDLoc dl(N);
16715
16716   // Create shuffle node taking into account the case that its a unary shuffle
16717   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16718   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16719                                  InVec.getOperand(0), Shuffle,
16720                                  &ShuffleMask[0]);
16721   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16722   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16723                      EltNo);
16724 }
16725
16726 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16727 /// generation and convert it from being a bunch of shuffles and extracts
16728 /// to a simple store and scalar loads to extract the elements.
16729 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16730                                          TargetLowering::DAGCombinerInfo &DCI) {
16731   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16732   if (NewOp.getNode())
16733     return NewOp;
16734
16735   SDValue InputVector = N->getOperand(0);
16736
16737   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16738   // from mmx to v2i32 has a single usage.
16739   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16740       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16741       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16742     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16743                        N->getValueType(0),
16744                        InputVector.getNode()->getOperand(0));
16745
16746   // Only operate on vectors of 4 elements, where the alternative shuffling
16747   // gets to be more expensive.
16748   if (InputVector.getValueType() != MVT::v4i32)
16749     return SDValue();
16750
16751   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16752   // single use which is a sign-extend or zero-extend, and all elements are
16753   // used.
16754   SmallVector<SDNode *, 4> Uses;
16755   unsigned ExtractedElements = 0;
16756   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16757        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16758     if (UI.getUse().getResNo() != InputVector.getResNo())
16759       return SDValue();
16760
16761     SDNode *Extract = *UI;
16762     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16763       return SDValue();
16764
16765     if (Extract->getValueType(0) != MVT::i32)
16766       return SDValue();
16767     if (!Extract->hasOneUse())
16768       return SDValue();
16769     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16770         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16771       return SDValue();
16772     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16773       return SDValue();
16774
16775     // Record which element was extracted.
16776     ExtractedElements |=
16777       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16778
16779     Uses.push_back(Extract);
16780   }
16781
16782   // If not all the elements were used, this may not be worthwhile.
16783   if (ExtractedElements != 15)
16784     return SDValue();
16785
16786   // Ok, we've now decided to do the transformation.
16787   SDLoc dl(InputVector);
16788
16789   // Store the value to a temporary stack slot.
16790   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16791   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16792                             MachinePointerInfo(), false, false, 0);
16793
16794   // Replace each use (extract) with a load of the appropriate element.
16795   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16796        UE = Uses.end(); UI != UE; ++UI) {
16797     SDNode *Extract = *UI;
16798
16799     // cOMpute the element's address.
16800     SDValue Idx = Extract->getOperand(1);
16801     unsigned EltSize =
16802         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16803     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16804     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16805     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16806
16807     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16808                                      StackPtr, OffsetVal);
16809
16810     // Load the scalar.
16811     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16812                                      ScalarAddr, MachinePointerInfo(),
16813                                      false, false, false, 0);
16814
16815     // Replace the exact with the load.
16816     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16817   }
16818
16819   // The replacement was made in place; don't return anything.
16820   return SDValue();
16821 }
16822
16823 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16824 static std::pair<unsigned, bool>
16825 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16826                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16827   if (!VT.isVector())
16828     return std::make_pair(0, false);
16829
16830   bool NeedSplit = false;
16831   switch (VT.getSimpleVT().SimpleTy) {
16832   default: return std::make_pair(0, false);
16833   case MVT::v32i8:
16834   case MVT::v16i16:
16835   case MVT::v8i32:
16836     if (!Subtarget->hasAVX2())
16837       NeedSplit = true;
16838     if (!Subtarget->hasAVX())
16839       return std::make_pair(0, false);
16840     break;
16841   case MVT::v16i8:
16842   case MVT::v8i16:
16843   case MVT::v4i32:
16844     if (!Subtarget->hasSSE2())
16845       return std::make_pair(0, false);
16846   }
16847
16848   // SSE2 has only a small subset of the operations.
16849   bool hasUnsigned = Subtarget->hasSSE41() ||
16850                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16851   bool hasSigned = Subtarget->hasSSE41() ||
16852                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16853
16854   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16855
16856   unsigned Opc = 0;
16857   // Check for x CC y ? x : y.
16858   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16859       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16860     switch (CC) {
16861     default: break;
16862     case ISD::SETULT:
16863     case ISD::SETULE:
16864       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16865     case ISD::SETUGT:
16866     case ISD::SETUGE:
16867       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16868     case ISD::SETLT:
16869     case ISD::SETLE:
16870       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16871     case ISD::SETGT:
16872     case ISD::SETGE:
16873       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16874     }
16875   // Check for x CC y ? y : x -- a min/max with reversed arms.
16876   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16877              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16878     switch (CC) {
16879     default: break;
16880     case ISD::SETULT:
16881     case ISD::SETULE:
16882       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16883     case ISD::SETUGT:
16884     case ISD::SETUGE:
16885       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16886     case ISD::SETLT:
16887     case ISD::SETLE:
16888       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16889     case ISD::SETGT:
16890     case ISD::SETGE:
16891       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16892     }
16893   }
16894
16895   return std::make_pair(Opc, NeedSplit);
16896 }
16897
16898 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16899 /// nodes.
16900 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16901                                     TargetLowering::DAGCombinerInfo &DCI,
16902                                     const X86Subtarget *Subtarget) {
16903   SDLoc DL(N);
16904   SDValue Cond = N->getOperand(0);
16905   // Get the LHS/RHS of the select.
16906   SDValue LHS = N->getOperand(1);
16907   SDValue RHS = N->getOperand(2);
16908   EVT VT = LHS.getValueType();
16909   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16910
16911   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16912   // instructions match the semantics of the common C idiom x<y?x:y but not
16913   // x<=y?x:y, because of how they handle negative zero (which can be
16914   // ignored in unsafe-math mode).
16915   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16916       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16917       (Subtarget->hasSSE2() ||
16918        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16919     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16920
16921     unsigned Opcode = 0;
16922     // Check for x CC y ? x : y.
16923     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16924         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16925       switch (CC) {
16926       default: break;
16927       case ISD::SETULT:
16928         // Converting this to a min would handle NaNs incorrectly, and swapping
16929         // the operands would cause it to handle comparisons between positive
16930         // and negative zero incorrectly.
16931         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16932           if (!DAG.getTarget().Options.UnsafeFPMath &&
16933               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16934             break;
16935           std::swap(LHS, RHS);
16936         }
16937         Opcode = X86ISD::FMIN;
16938         break;
16939       case ISD::SETOLE:
16940         // Converting this to a min would handle comparisons between positive
16941         // and negative zero incorrectly.
16942         if (!DAG.getTarget().Options.UnsafeFPMath &&
16943             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16944           break;
16945         Opcode = X86ISD::FMIN;
16946         break;
16947       case ISD::SETULE:
16948         // Converting this to a min would handle both negative zeros and NaNs
16949         // incorrectly, but we can swap the operands to fix both.
16950         std::swap(LHS, RHS);
16951       case ISD::SETOLT:
16952       case ISD::SETLT:
16953       case ISD::SETLE:
16954         Opcode = X86ISD::FMIN;
16955         break;
16956
16957       case ISD::SETOGE:
16958         // Converting this to a max would handle comparisons between positive
16959         // and negative zero incorrectly.
16960         if (!DAG.getTarget().Options.UnsafeFPMath &&
16961             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16962           break;
16963         Opcode = X86ISD::FMAX;
16964         break;
16965       case ISD::SETUGT:
16966         // Converting this to a max would handle NaNs incorrectly, and swapping
16967         // the operands would cause it to handle comparisons between positive
16968         // and negative zero incorrectly.
16969         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16970           if (!DAG.getTarget().Options.UnsafeFPMath &&
16971               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16972             break;
16973           std::swap(LHS, RHS);
16974         }
16975         Opcode = X86ISD::FMAX;
16976         break;
16977       case ISD::SETUGE:
16978         // Converting this to a max would handle both negative zeros and NaNs
16979         // incorrectly, but we can swap the operands to fix both.
16980         std::swap(LHS, RHS);
16981       case ISD::SETOGT:
16982       case ISD::SETGT:
16983       case ISD::SETGE:
16984         Opcode = X86ISD::FMAX;
16985         break;
16986       }
16987     // Check for x CC y ? y : x -- a min/max with reversed arms.
16988     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16989                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16990       switch (CC) {
16991       default: break;
16992       case ISD::SETOGE:
16993         // Converting this to a min would handle comparisons between positive
16994         // and negative zero incorrectly, and swapping the operands would
16995         // cause it to handle NaNs incorrectly.
16996         if (!DAG.getTarget().Options.UnsafeFPMath &&
16997             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16998           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16999             break;
17000           std::swap(LHS, RHS);
17001         }
17002         Opcode = X86ISD::FMIN;
17003         break;
17004       case ISD::SETUGT:
17005         // Converting this to a min would handle NaNs incorrectly.
17006         if (!DAG.getTarget().Options.UnsafeFPMath &&
17007             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
17008           break;
17009         Opcode = X86ISD::FMIN;
17010         break;
17011       case ISD::SETUGE:
17012         // Converting this to a min would handle both negative zeros and NaNs
17013         // incorrectly, but we can swap the operands to fix both.
17014         std::swap(LHS, RHS);
17015       case ISD::SETOGT:
17016       case ISD::SETGT:
17017       case ISD::SETGE:
17018         Opcode = X86ISD::FMIN;
17019         break;
17020
17021       case ISD::SETULT:
17022         // Converting this to a max would handle NaNs incorrectly.
17023         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17024           break;
17025         Opcode = X86ISD::FMAX;
17026         break;
17027       case ISD::SETOLE:
17028         // Converting this to a max would handle comparisons between positive
17029         // and negative zero incorrectly, and swapping the operands would
17030         // cause it to handle NaNs incorrectly.
17031         if (!DAG.getTarget().Options.UnsafeFPMath &&
17032             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
17033           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
17034             break;
17035           std::swap(LHS, RHS);
17036         }
17037         Opcode = X86ISD::FMAX;
17038         break;
17039       case ISD::SETULE:
17040         // Converting this to a max would handle both negative zeros and NaNs
17041         // incorrectly, but we can swap the operands to fix both.
17042         std::swap(LHS, RHS);
17043       case ISD::SETOLT:
17044       case ISD::SETLT:
17045       case ISD::SETLE:
17046         Opcode = X86ISD::FMAX;
17047         break;
17048       }
17049     }
17050
17051     if (Opcode)
17052       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
17053   }
17054
17055   EVT CondVT = Cond.getValueType();
17056   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
17057       CondVT.getVectorElementType() == MVT::i1) {
17058     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
17059     // lowering on AVX-512. In this case we convert it to
17060     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
17061     // The same situation for all 128 and 256-bit vectors of i8 and i16
17062     EVT OpVT = LHS.getValueType();
17063     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
17064         (OpVT.getVectorElementType() == MVT::i8 ||
17065          OpVT.getVectorElementType() == MVT::i16)) {
17066       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
17067       DCI.AddToWorklist(Cond.getNode());
17068       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
17069     }
17070   }
17071   // If this is a select between two integer constants, try to do some
17072   // optimizations.
17073   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
17074     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
17075       // Don't do this for crazy integer types.
17076       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
17077         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
17078         // so that TrueC (the true value) is larger than FalseC.
17079         bool NeedsCondInvert = false;
17080
17081         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
17082             // Efficiently invertible.
17083             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
17084              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
17085               isa<ConstantSDNode>(Cond.getOperand(1))))) {
17086           NeedsCondInvert = true;
17087           std::swap(TrueC, FalseC);
17088         }
17089
17090         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
17091         if (FalseC->getAPIntValue() == 0 &&
17092             TrueC->getAPIntValue().isPowerOf2()) {
17093           if (NeedsCondInvert) // Invert the condition if needed.
17094             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17095                                DAG.getConstant(1, Cond.getValueType()));
17096
17097           // Zero extend the condition if needed.
17098           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
17099
17100           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17101           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
17102                              DAG.getConstant(ShAmt, MVT::i8));
17103         }
17104
17105         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
17106         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17107           if (NeedsCondInvert) // Invert the condition if needed.
17108             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17109                                DAG.getConstant(1, Cond.getValueType()));
17110
17111           // Zero extend the condition if needed.
17112           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17113                              FalseC->getValueType(0), Cond);
17114           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17115                              SDValue(FalseC, 0));
17116         }
17117
17118         // Optimize cases that will turn into an LEA instruction.  This requires
17119         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17120         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17121           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17122           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17123
17124           bool isFastMultiplier = false;
17125           if (Diff < 10) {
17126             switch ((unsigned char)Diff) {
17127               default: break;
17128               case 1:  // result = add base, cond
17129               case 2:  // result = lea base(    , cond*2)
17130               case 3:  // result = lea base(cond, cond*2)
17131               case 4:  // result = lea base(    , cond*4)
17132               case 5:  // result = lea base(cond, cond*4)
17133               case 8:  // result = lea base(    , cond*8)
17134               case 9:  // result = lea base(cond, cond*8)
17135                 isFastMultiplier = true;
17136                 break;
17137             }
17138           }
17139
17140           if (isFastMultiplier) {
17141             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17142             if (NeedsCondInvert) // Invert the condition if needed.
17143               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
17144                                  DAG.getConstant(1, Cond.getValueType()));
17145
17146             // Zero extend the condition if needed.
17147             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17148                                Cond);
17149             // Scale the condition by the difference.
17150             if (Diff != 1)
17151               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17152                                  DAG.getConstant(Diff, Cond.getValueType()));
17153
17154             // Add the base if non-zero.
17155             if (FalseC->getAPIntValue() != 0)
17156               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17157                                  SDValue(FalseC, 0));
17158             return Cond;
17159           }
17160         }
17161       }
17162   }
17163
17164   // Canonicalize max and min:
17165   // (x > y) ? x : y -> (x >= y) ? x : y
17166   // (x < y) ? x : y -> (x <= y) ? x : y
17167   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
17168   // the need for an extra compare
17169   // against zero. e.g.
17170   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
17171   // subl   %esi, %edi
17172   // testl  %edi, %edi
17173   // movl   $0, %eax
17174   // cmovgl %edi, %eax
17175   // =>
17176   // xorl   %eax, %eax
17177   // subl   %esi, $edi
17178   // cmovsl %eax, %edi
17179   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
17180       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17181       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17182     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17183     switch (CC) {
17184     default: break;
17185     case ISD::SETLT:
17186     case ISD::SETGT: {
17187       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
17188       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
17189                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
17190       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
17191     }
17192     }
17193   }
17194
17195   // Early exit check
17196   if (!TLI.isTypeLegal(VT))
17197     return SDValue();
17198
17199   // Match VSELECTs into subs with unsigned saturation.
17200   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17201       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
17202       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
17203        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
17204     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17205
17206     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
17207     // left side invert the predicate to simplify logic below.
17208     SDValue Other;
17209     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
17210       Other = RHS;
17211       CC = ISD::getSetCCInverse(CC, true);
17212     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
17213       Other = LHS;
17214     }
17215
17216     if (Other.getNode() && Other->getNumOperands() == 2 &&
17217         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
17218       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
17219       SDValue CondRHS = Cond->getOperand(1);
17220
17221       // Look for a general sub with unsigned saturation first.
17222       // x >= y ? x-y : 0 --> subus x, y
17223       // x >  y ? x-y : 0 --> subus x, y
17224       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
17225           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
17226         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17227
17228       // If the RHS is a constant we have to reverse the const canonicalization.
17229       // x > C-1 ? x+-C : 0 --> subus x, C
17230       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
17231           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
17232         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17233         if (CondRHS.getConstantOperandVal(0) == -A-1)
17234           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
17235                              DAG.getConstant(-A, VT));
17236       }
17237
17238       // Another special case: If C was a sign bit, the sub has been
17239       // canonicalized into a xor.
17240       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
17241       //        it's safe to decanonicalize the xor?
17242       // x s< 0 ? x^C : 0 --> subus x, C
17243       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
17244           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
17245           isSplatVector(OpRHS.getNode())) {
17246         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17247         if (A.isSignBit())
17248           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17249       }
17250     }
17251   }
17252
17253   // Try to match a min/max vector operation.
17254   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
17255     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
17256     unsigned Opc = ret.first;
17257     bool NeedSplit = ret.second;
17258
17259     if (Opc && NeedSplit) {
17260       unsigned NumElems = VT.getVectorNumElements();
17261       // Extract the LHS vectors
17262       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
17263       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
17264
17265       // Extract the RHS vectors
17266       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
17267       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
17268
17269       // Create min/max for each subvector
17270       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
17271       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
17272
17273       // Merge the result
17274       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
17275     } else if (Opc)
17276       return DAG.getNode(Opc, DL, VT, LHS, RHS);
17277   }
17278
17279   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
17280   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17281       // Check if SETCC has already been promoted
17282       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
17283       // Check that condition value type matches vselect operand type
17284       CondVT == VT) { 
17285
17286     assert(Cond.getValueType().isVector() &&
17287            "vector select expects a vector selector!");
17288
17289     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
17290     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
17291
17292     if (!TValIsAllOnes && !FValIsAllZeros) {
17293       // Try invert the condition if true value is not all 1s and false value
17294       // is not all 0s.
17295       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
17296       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
17297
17298       if (TValIsAllZeros || FValIsAllOnes) {
17299         SDValue CC = Cond.getOperand(2);
17300         ISD::CondCode NewCC =
17301           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
17302                                Cond.getOperand(0).getValueType().isInteger());
17303         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
17304         std::swap(LHS, RHS);
17305         TValIsAllOnes = FValIsAllOnes;
17306         FValIsAllZeros = TValIsAllZeros;
17307       }
17308     }
17309
17310     if (TValIsAllOnes || FValIsAllZeros) {
17311       SDValue Ret;
17312
17313       if (TValIsAllOnes && FValIsAllZeros)
17314         Ret = Cond;
17315       else if (TValIsAllOnes)
17316         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
17317                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
17318       else if (FValIsAllZeros)
17319         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
17320                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
17321
17322       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
17323     }
17324   }
17325
17326   // Try to fold this VSELECT into a MOVSS/MOVSD
17327   if (N->getOpcode() == ISD::VSELECT &&
17328       Cond.getOpcode() == ISD::BUILD_VECTOR && !DCI.isBeforeLegalize()) {
17329     if (VT == MVT::v4i32 || VT == MVT::v4f32 ||
17330         (Subtarget->hasSSE2() && (VT == MVT::v2i64 || VT == MVT::v2f64))) {
17331       bool CanFold = false;
17332       unsigned NumElems = Cond.getNumOperands();
17333       SDValue A = LHS;
17334       SDValue B = RHS;
17335       
17336       if (isZero(Cond.getOperand(0))) {
17337         CanFold = true;
17338
17339         // fold (vselect <0,-1,-1,-1>, A, B) -> (movss A, B)
17340         // fold (vselect <0,-1> -> (movsd A, B)
17341         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
17342           CanFold = isAllOnes(Cond.getOperand(i));
17343       } else if (isAllOnes(Cond.getOperand(0))) {
17344         CanFold = true;
17345         std::swap(A, B);
17346
17347         // fold (vselect <-1,0,0,0>, A, B) -> (movss B, A)
17348         // fold (vselect <-1,0> -> (movsd B, A)
17349         for (unsigned i = 1, e = NumElems; i != e && CanFold; ++i)
17350           CanFold = isZero(Cond.getOperand(i));
17351       }
17352
17353       if (CanFold) {
17354         if (VT == MVT::v4i32 || VT == MVT::v4f32)
17355           return getTargetShuffleNode(X86ISD::MOVSS, DL, VT, A, B, DAG);
17356         return getTargetShuffleNode(X86ISD::MOVSD, DL, VT, A, B, DAG);
17357       }
17358
17359       if (Subtarget->hasSSE2() && (VT == MVT::v4i32 || VT == MVT::v4f32)) {
17360         // fold (v4i32: vselect <0,0,-1,-1>, A, B) ->
17361         //      (v4i32 (bitcast (movsd (v2i64 (bitcast A)),
17362         //                             (v2i64 (bitcast B)))))
17363         //
17364         // fold (v4f32: vselect <0,0,-1,-1>, A, B) ->
17365         //      (v4f32 (bitcast (movsd (v2f64 (bitcast A)),
17366         //                             (v2f64 (bitcast B)))))
17367         //
17368         // fold (v4i32: vselect <-1,-1,0,0>, A, B) ->
17369         //      (v4i32 (bitcast (movsd (v2i64 (bitcast B)),
17370         //                             (v2i64 (bitcast A)))))
17371         //
17372         // fold (v4f32: vselect <-1,-1,0,0>, A, B) ->
17373         //      (v4f32 (bitcast (movsd (v2f64 (bitcast B)),
17374         //                             (v2f64 (bitcast A)))))
17375
17376         CanFold = (isZero(Cond.getOperand(0)) &&
17377                    isZero(Cond.getOperand(1)) &&
17378                    isAllOnes(Cond.getOperand(2)) &&
17379                    isAllOnes(Cond.getOperand(3)));
17380
17381         if (!CanFold && isAllOnes(Cond.getOperand(0)) &&
17382             isAllOnes(Cond.getOperand(1)) &&
17383             isZero(Cond.getOperand(2)) &&
17384             isZero(Cond.getOperand(3))) {
17385           CanFold = true;
17386           std::swap(LHS, RHS);
17387         }
17388
17389         if (CanFold) {
17390           EVT NVT = (VT == MVT::v4i32) ? MVT::v2i64 : MVT::v2f64;
17391           SDValue NewA = DAG.getNode(ISD::BITCAST, DL, NVT, LHS);
17392           SDValue NewB = DAG.getNode(ISD::BITCAST, DL, NVT, RHS);
17393           SDValue Select = getTargetShuffleNode(X86ISD::MOVSD, DL, NVT, NewA,
17394                                                 NewB, DAG);
17395           return DAG.getNode(ISD::BITCAST, DL, VT, Select);
17396         }
17397       }
17398     }
17399   }
17400
17401   // If we know that this node is legal then we know that it is going to be
17402   // matched by one of the SSE/AVX BLEND instructions. These instructions only
17403   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
17404   // to simplify previous instructions.
17405   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
17406       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
17407     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
17408
17409     // Don't optimize vector selects that map to mask-registers.
17410     if (BitWidth == 1)
17411       return SDValue();
17412
17413     // Check all uses of that condition operand to check whether it will be
17414     // consumed by non-BLEND instructions, which may depend on all bits are set
17415     // properly.
17416     for (SDNode::use_iterator I = Cond->use_begin(),
17417                               E = Cond->use_end(); I != E; ++I)
17418       if (I->getOpcode() != ISD::VSELECT)
17419         // TODO: Add other opcodes eventually lowered into BLEND.
17420         return SDValue();
17421
17422     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
17423     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
17424
17425     APInt KnownZero, KnownOne;
17426     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
17427                                           DCI.isBeforeLegalizeOps());
17428     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
17429         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
17430       DCI.CommitTargetLoweringOpt(TLO);
17431   }
17432
17433   return SDValue();
17434 }
17435
17436 // Check whether a boolean test is testing a boolean value generated by
17437 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
17438 // code.
17439 //
17440 // Simplify the following patterns:
17441 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
17442 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
17443 // to (Op EFLAGS Cond)
17444 //
17445 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
17446 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
17447 // to (Op EFLAGS !Cond)
17448 //
17449 // where Op could be BRCOND or CMOV.
17450 //
17451 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
17452   // Quit if not CMP and SUB with its value result used.
17453   if (Cmp.getOpcode() != X86ISD::CMP &&
17454       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
17455       return SDValue();
17456
17457   // Quit if not used as a boolean value.
17458   if (CC != X86::COND_E && CC != X86::COND_NE)
17459     return SDValue();
17460
17461   // Check CMP operands. One of them should be 0 or 1 and the other should be
17462   // an SetCC or extended from it.
17463   SDValue Op1 = Cmp.getOperand(0);
17464   SDValue Op2 = Cmp.getOperand(1);
17465
17466   SDValue SetCC;
17467   const ConstantSDNode* C = 0;
17468   bool needOppositeCond = (CC == X86::COND_E);
17469   bool checkAgainstTrue = false; // Is it a comparison against 1?
17470
17471   if ((C = dyn_cast<ConstantSDNode>(Op1)))
17472     SetCC = Op2;
17473   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17474     SetCC = Op1;
17475   else // Quit if all operands are not constants.
17476     return SDValue();
17477
17478   if (C->getZExtValue() == 1) {
17479     needOppositeCond = !needOppositeCond;
17480     checkAgainstTrue = true;
17481   } else if (C->getZExtValue() != 0)
17482     // Quit if the constant is neither 0 or 1.
17483     return SDValue();
17484
17485   bool truncatedToBoolWithAnd = false;
17486   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17487   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17488          SetCC.getOpcode() == ISD::TRUNCATE ||
17489          SetCC.getOpcode() == ISD::AND) {
17490     if (SetCC.getOpcode() == ISD::AND) {
17491       int OpIdx = -1;
17492       ConstantSDNode *CS;
17493       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17494           CS->getZExtValue() == 1)
17495         OpIdx = 1;
17496       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17497           CS->getZExtValue() == 1)
17498         OpIdx = 0;
17499       if (OpIdx == -1)
17500         break;
17501       SetCC = SetCC.getOperand(OpIdx);
17502       truncatedToBoolWithAnd = true;
17503     } else
17504       SetCC = SetCC.getOperand(0);
17505   }
17506
17507   switch (SetCC.getOpcode()) {
17508   case X86ISD::SETCC_CARRY:
17509     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17510     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17511     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17512     // truncated to i1 using 'and'.
17513     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17514       break;
17515     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17516            "Invalid use of SETCC_CARRY!");
17517     // FALL THROUGH
17518   case X86ISD::SETCC:
17519     // Set the condition code or opposite one if necessary.
17520     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17521     if (needOppositeCond)
17522       CC = X86::GetOppositeBranchCondition(CC);
17523     return SetCC.getOperand(1);
17524   case X86ISD::CMOV: {
17525     // Check whether false/true value has canonical one, i.e. 0 or 1.
17526     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17527     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17528     // Quit if true value is not a constant.
17529     if (!TVal)
17530       return SDValue();
17531     // Quit if false value is not a constant.
17532     if (!FVal) {
17533       SDValue Op = SetCC.getOperand(0);
17534       // Skip 'zext' or 'trunc' node.
17535       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17536           Op.getOpcode() == ISD::TRUNCATE)
17537         Op = Op.getOperand(0);
17538       // A special case for rdrand/rdseed, where 0 is set if false cond is
17539       // found.
17540       if ((Op.getOpcode() != X86ISD::RDRAND &&
17541            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17542         return SDValue();
17543     }
17544     // Quit if false value is not the constant 0 or 1.
17545     bool FValIsFalse = true;
17546     if (FVal && FVal->getZExtValue() != 0) {
17547       if (FVal->getZExtValue() != 1)
17548         return SDValue();
17549       // If FVal is 1, opposite cond is needed.
17550       needOppositeCond = !needOppositeCond;
17551       FValIsFalse = false;
17552     }
17553     // Quit if TVal is not the constant opposite of FVal.
17554     if (FValIsFalse && TVal->getZExtValue() != 1)
17555       return SDValue();
17556     if (!FValIsFalse && TVal->getZExtValue() != 0)
17557       return SDValue();
17558     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17559     if (needOppositeCond)
17560       CC = X86::GetOppositeBranchCondition(CC);
17561     return SetCC.getOperand(3);
17562   }
17563   }
17564
17565   return SDValue();
17566 }
17567
17568 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17569 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17570                                   TargetLowering::DAGCombinerInfo &DCI,
17571                                   const X86Subtarget *Subtarget) {
17572   SDLoc DL(N);
17573
17574   // If the flag operand isn't dead, don't touch this CMOV.
17575   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17576     return SDValue();
17577
17578   SDValue FalseOp = N->getOperand(0);
17579   SDValue TrueOp = N->getOperand(1);
17580   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17581   SDValue Cond = N->getOperand(3);
17582
17583   if (CC == X86::COND_E || CC == X86::COND_NE) {
17584     switch (Cond.getOpcode()) {
17585     default: break;
17586     case X86ISD::BSR:
17587     case X86ISD::BSF:
17588       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17589       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17590         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17591     }
17592   }
17593
17594   SDValue Flags;
17595
17596   Flags = checkBoolTestSetCCCombine(Cond, CC);
17597   if (Flags.getNode() &&
17598       // Extra check as FCMOV only supports a subset of X86 cond.
17599       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17600     SDValue Ops[] = { FalseOp, TrueOp,
17601                       DAG.getConstant(CC, MVT::i8), Flags };
17602     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17603                        Ops, array_lengthof(Ops));
17604   }
17605
17606   // If this is a select between two integer constants, try to do some
17607   // optimizations.  Note that the operands are ordered the opposite of SELECT
17608   // operands.
17609   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17610     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17611       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17612       // larger than FalseC (the false value).
17613       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17614         CC = X86::GetOppositeBranchCondition(CC);
17615         std::swap(TrueC, FalseC);
17616         std::swap(TrueOp, FalseOp);
17617       }
17618
17619       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17620       // This is efficient for any integer data type (including i8/i16) and
17621       // shift amount.
17622       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17623         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17624                            DAG.getConstant(CC, MVT::i8), Cond);
17625
17626         // Zero extend the condition if needed.
17627         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17628
17629         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17630         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17631                            DAG.getConstant(ShAmt, MVT::i8));
17632         if (N->getNumValues() == 2)  // Dead flag value?
17633           return DCI.CombineTo(N, Cond, SDValue());
17634         return Cond;
17635       }
17636
17637       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17638       // for any integer data type, including i8/i16.
17639       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17640         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17641                            DAG.getConstant(CC, MVT::i8), Cond);
17642
17643         // Zero extend the condition if needed.
17644         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17645                            FalseC->getValueType(0), Cond);
17646         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17647                            SDValue(FalseC, 0));
17648
17649         if (N->getNumValues() == 2)  // Dead flag value?
17650           return DCI.CombineTo(N, Cond, SDValue());
17651         return Cond;
17652       }
17653
17654       // Optimize cases that will turn into an LEA instruction.  This requires
17655       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17656       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17657         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17658         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17659
17660         bool isFastMultiplier = false;
17661         if (Diff < 10) {
17662           switch ((unsigned char)Diff) {
17663           default: break;
17664           case 1:  // result = add base, cond
17665           case 2:  // result = lea base(    , cond*2)
17666           case 3:  // result = lea base(cond, cond*2)
17667           case 4:  // result = lea base(    , cond*4)
17668           case 5:  // result = lea base(cond, cond*4)
17669           case 8:  // result = lea base(    , cond*8)
17670           case 9:  // result = lea base(cond, cond*8)
17671             isFastMultiplier = true;
17672             break;
17673           }
17674         }
17675
17676         if (isFastMultiplier) {
17677           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17678           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17679                              DAG.getConstant(CC, MVT::i8), Cond);
17680           // Zero extend the condition if needed.
17681           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17682                              Cond);
17683           // Scale the condition by the difference.
17684           if (Diff != 1)
17685             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17686                                DAG.getConstant(Diff, Cond.getValueType()));
17687
17688           // Add the base if non-zero.
17689           if (FalseC->getAPIntValue() != 0)
17690             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17691                                SDValue(FalseC, 0));
17692           if (N->getNumValues() == 2)  // Dead flag value?
17693             return DCI.CombineTo(N, Cond, SDValue());
17694           return Cond;
17695         }
17696       }
17697     }
17698   }
17699
17700   // Handle these cases:
17701   //   (select (x != c), e, c) -> select (x != c), e, x),
17702   //   (select (x == c), c, e) -> select (x == c), x, e)
17703   // where the c is an integer constant, and the "select" is the combination
17704   // of CMOV and CMP.
17705   //
17706   // The rationale for this change is that the conditional-move from a constant
17707   // needs two instructions, however, conditional-move from a register needs
17708   // only one instruction.
17709   //
17710   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17711   //  some instruction-combining opportunities. This opt needs to be
17712   //  postponed as late as possible.
17713   //
17714   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17715     // the DCI.xxxx conditions are provided to postpone the optimization as
17716     // late as possible.
17717
17718     ConstantSDNode *CmpAgainst = 0;
17719     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17720         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17721         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17722
17723       if (CC == X86::COND_NE &&
17724           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17725         CC = X86::GetOppositeBranchCondition(CC);
17726         std::swap(TrueOp, FalseOp);
17727       }
17728
17729       if (CC == X86::COND_E &&
17730           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17731         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17732                           DAG.getConstant(CC, MVT::i8), Cond };
17733         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17734                            array_lengthof(Ops));
17735       }
17736     }
17737   }
17738
17739   return SDValue();
17740 }
17741
17742 /// PerformMulCombine - Optimize a single multiply with constant into two
17743 /// in order to implement it with two cheaper instructions, e.g.
17744 /// LEA + SHL, LEA + LEA.
17745 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17746                                  TargetLowering::DAGCombinerInfo &DCI) {
17747   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17748     return SDValue();
17749
17750   EVT VT = N->getValueType(0);
17751   if (VT != MVT::i64)
17752     return SDValue();
17753
17754   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17755   if (!C)
17756     return SDValue();
17757   uint64_t MulAmt = C->getZExtValue();
17758   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17759     return SDValue();
17760
17761   uint64_t MulAmt1 = 0;
17762   uint64_t MulAmt2 = 0;
17763   if ((MulAmt % 9) == 0) {
17764     MulAmt1 = 9;
17765     MulAmt2 = MulAmt / 9;
17766   } else if ((MulAmt % 5) == 0) {
17767     MulAmt1 = 5;
17768     MulAmt2 = MulAmt / 5;
17769   } else if ((MulAmt % 3) == 0) {
17770     MulAmt1 = 3;
17771     MulAmt2 = MulAmt / 3;
17772   }
17773   if (MulAmt2 &&
17774       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17775     SDLoc DL(N);
17776
17777     if (isPowerOf2_64(MulAmt2) &&
17778         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17779       // If second multiplifer is pow2, issue it first. We want the multiply by
17780       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17781       // is an add.
17782       std::swap(MulAmt1, MulAmt2);
17783
17784     SDValue NewMul;
17785     if (isPowerOf2_64(MulAmt1))
17786       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17787                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17788     else
17789       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17790                            DAG.getConstant(MulAmt1, VT));
17791
17792     if (isPowerOf2_64(MulAmt2))
17793       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17794                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17795     else
17796       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17797                            DAG.getConstant(MulAmt2, VT));
17798
17799     // Do not add new nodes to DAG combiner worklist.
17800     DCI.CombineTo(N, NewMul, false);
17801   }
17802   return SDValue();
17803 }
17804
17805 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17806   SDValue N0 = N->getOperand(0);
17807   SDValue N1 = N->getOperand(1);
17808   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17809   EVT VT = N0.getValueType();
17810
17811   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17812   // since the result of setcc_c is all zero's or all ones.
17813   if (VT.isInteger() && !VT.isVector() &&
17814       N1C && N0.getOpcode() == ISD::AND &&
17815       N0.getOperand(1).getOpcode() == ISD::Constant) {
17816     SDValue N00 = N0.getOperand(0);
17817     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17818         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17819           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17820          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17821       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17822       APInt ShAmt = N1C->getAPIntValue();
17823       Mask = Mask.shl(ShAmt);
17824       if (Mask != 0)
17825         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17826                            N00, DAG.getConstant(Mask, VT));
17827     }
17828   }
17829
17830   // Hardware support for vector shifts is sparse which makes us scalarize the
17831   // vector operations in many cases. Also, on sandybridge ADD is faster than
17832   // shl.
17833   // (shl V, 1) -> add V,V
17834   if (isSplatVector(N1.getNode())) {
17835     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17836     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17837     // We shift all of the values by one. In many cases we do not have
17838     // hardware support for this operation. This is better expressed as an ADD
17839     // of two values.
17840     if (N1C && (1 == N1C->getZExtValue())) {
17841       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17842     }
17843   }
17844
17845   return SDValue();
17846 }
17847
17848 /// \brief Returns a vector of 0s if the node in input is a vector logical
17849 /// shift by a constant amount which is known to be bigger than or equal
17850 /// to the vector element size in bits.
17851 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17852                                       const X86Subtarget *Subtarget) {
17853   EVT VT = N->getValueType(0);
17854
17855   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17856       (!Subtarget->hasInt256() ||
17857        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17858     return SDValue();
17859
17860   SDValue Amt = N->getOperand(1);
17861   SDLoc DL(N);
17862   if (isSplatVector(Amt.getNode())) {
17863     SDValue SclrAmt = Amt->getOperand(0);
17864     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17865       APInt ShiftAmt = C->getAPIntValue();
17866       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17867
17868       // SSE2/AVX2 logical shifts always return a vector of 0s
17869       // if the shift amount is bigger than or equal to
17870       // the element size. The constant shift amount will be
17871       // encoded as a 8-bit immediate.
17872       if (ShiftAmt.trunc(8).uge(MaxAmount))
17873         return getZeroVector(VT, Subtarget, DAG, DL);
17874     }
17875   }
17876
17877   return SDValue();
17878 }
17879
17880 /// PerformShiftCombine - Combine shifts.
17881 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17882                                    TargetLowering::DAGCombinerInfo &DCI,
17883                                    const X86Subtarget *Subtarget) {
17884   if (N->getOpcode() == ISD::SHL) {
17885     SDValue V = PerformSHLCombine(N, DAG);
17886     if (V.getNode()) return V;
17887   }
17888
17889   if (N->getOpcode() != ISD::SRA) {
17890     // Try to fold this logical shift into a zero vector.
17891     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17892     if (V.getNode()) return V;
17893   }
17894
17895   return SDValue();
17896 }
17897
17898 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17899 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17900 // and friends.  Likewise for OR -> CMPNEQSS.
17901 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17902                             TargetLowering::DAGCombinerInfo &DCI,
17903                             const X86Subtarget *Subtarget) {
17904   unsigned opcode;
17905
17906   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17907   // we're requiring SSE2 for both.
17908   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17909     SDValue N0 = N->getOperand(0);
17910     SDValue N1 = N->getOperand(1);
17911     SDValue CMP0 = N0->getOperand(1);
17912     SDValue CMP1 = N1->getOperand(1);
17913     SDLoc DL(N);
17914
17915     // The SETCCs should both refer to the same CMP.
17916     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17917       return SDValue();
17918
17919     SDValue CMP00 = CMP0->getOperand(0);
17920     SDValue CMP01 = CMP0->getOperand(1);
17921     EVT     VT    = CMP00.getValueType();
17922
17923     if (VT == MVT::f32 || VT == MVT::f64) {
17924       bool ExpectingFlags = false;
17925       // Check for any users that want flags:
17926       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17927            !ExpectingFlags && UI != UE; ++UI)
17928         switch (UI->getOpcode()) {
17929         default:
17930         case ISD::BR_CC:
17931         case ISD::BRCOND:
17932         case ISD::SELECT:
17933           ExpectingFlags = true;
17934           break;
17935         case ISD::CopyToReg:
17936         case ISD::SIGN_EXTEND:
17937         case ISD::ZERO_EXTEND:
17938         case ISD::ANY_EXTEND:
17939           break;
17940         }
17941
17942       if (!ExpectingFlags) {
17943         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17944         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17945
17946         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17947           X86::CondCode tmp = cc0;
17948           cc0 = cc1;
17949           cc1 = tmp;
17950         }
17951
17952         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17953             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17954           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17955           // FIXME: need symbolic constants for these magic numbers.
17956           // See X86ATTInstPrinter.cpp:printSSECC().
17957           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17958           if (Subtarget->hasAVX512()) {
17959             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
17960                                          CMP01, DAG.getConstant(x86cc, MVT::i8));
17961             if (N->getValueType(0) != MVT::i1)
17962               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
17963                                  FSetCC);
17964             return FSetCC;
17965           }
17966           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
17967                                               CMP00.getValueType(), CMP00, CMP01,
17968                                               DAG.getConstant(x86cc, MVT::i8));
17969           MVT IntVT = (is64BitFP ? MVT::i64 : MVT::i32); 
17970           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT,
17971                                               OnesOrZeroesF);
17972           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
17973                                       DAG.getConstant(1, IntVT));
17974           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17975           return OneBitOfTruth;
17976         }
17977       }
17978     }
17979   }
17980   return SDValue();
17981 }
17982
17983 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17984 /// so it can be folded inside ANDNP.
17985 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17986   EVT VT = N->getValueType(0);
17987
17988   // Match direct AllOnes for 128 and 256-bit vectors
17989   if (ISD::isBuildVectorAllOnes(N))
17990     return true;
17991
17992   // Look through a bit convert.
17993   if (N->getOpcode() == ISD::BITCAST)
17994     N = N->getOperand(0).getNode();
17995
17996   // Sometimes the operand may come from a insert_subvector building a 256-bit
17997   // allones vector
17998   if (VT.is256BitVector() &&
17999       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
18000     SDValue V1 = N->getOperand(0);
18001     SDValue V2 = N->getOperand(1);
18002
18003     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
18004         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
18005         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
18006         ISD::isBuildVectorAllOnes(V2.getNode()))
18007       return true;
18008   }
18009
18010   return false;
18011 }
18012
18013 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
18014 // register. In most cases we actually compare or select YMM-sized registers
18015 // and mixing the two types creates horrible code. This method optimizes
18016 // some of the transition sequences.
18017 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
18018                                  TargetLowering::DAGCombinerInfo &DCI,
18019                                  const X86Subtarget *Subtarget) {
18020   EVT VT = N->getValueType(0);
18021   if (!VT.is256BitVector())
18022     return SDValue();
18023
18024   assert((N->getOpcode() == ISD::ANY_EXTEND ||
18025           N->getOpcode() == ISD::ZERO_EXTEND ||
18026           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
18027
18028   SDValue Narrow = N->getOperand(0);
18029   EVT NarrowVT = Narrow->getValueType(0);
18030   if (!NarrowVT.is128BitVector())
18031     return SDValue();
18032
18033   if (Narrow->getOpcode() != ISD::XOR &&
18034       Narrow->getOpcode() != ISD::AND &&
18035       Narrow->getOpcode() != ISD::OR)
18036     return SDValue();
18037
18038   SDValue N0  = Narrow->getOperand(0);
18039   SDValue N1  = Narrow->getOperand(1);
18040   SDLoc DL(Narrow);
18041
18042   // The Left side has to be a trunc.
18043   if (N0.getOpcode() != ISD::TRUNCATE)
18044     return SDValue();
18045
18046   // The type of the truncated inputs.
18047   EVT WideVT = N0->getOperand(0)->getValueType(0);
18048   if (WideVT != VT)
18049     return SDValue();
18050
18051   // The right side has to be a 'trunc' or a constant vector.
18052   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
18053   bool RHSConst = (isSplatVector(N1.getNode()) &&
18054                    isa<ConstantSDNode>(N1->getOperand(0)));
18055   if (!RHSTrunc && !RHSConst)
18056     return SDValue();
18057
18058   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18059
18060   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
18061     return SDValue();
18062
18063   // Set N0 and N1 to hold the inputs to the new wide operation.
18064   N0 = N0->getOperand(0);
18065   if (RHSConst) {
18066     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
18067                      N1->getOperand(0));
18068     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
18069     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
18070   } else if (RHSTrunc) {
18071     N1 = N1->getOperand(0);
18072   }
18073
18074   // Generate the wide operation.
18075   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
18076   unsigned Opcode = N->getOpcode();
18077   switch (Opcode) {
18078   case ISD::ANY_EXTEND:
18079     return Op;
18080   case ISD::ZERO_EXTEND: {
18081     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
18082     APInt Mask = APInt::getAllOnesValue(InBits);
18083     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
18084     return DAG.getNode(ISD::AND, DL, VT,
18085                        Op, DAG.getConstant(Mask, VT));
18086   }
18087   case ISD::SIGN_EXTEND:
18088     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
18089                        Op, DAG.getValueType(NarrowVT));
18090   default:
18091     llvm_unreachable("Unexpected opcode");
18092   }
18093 }
18094
18095 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
18096                                  TargetLowering::DAGCombinerInfo &DCI,
18097                                  const X86Subtarget *Subtarget) {
18098   EVT VT = N->getValueType(0);
18099   if (DCI.isBeforeLegalizeOps())
18100     return SDValue();
18101
18102   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
18103   if (R.getNode())
18104     return R;
18105
18106   // Create BEXTR and BZHI instructions
18107   // BZHI is X & ((1 << Y) - 1)
18108   // BEXTR is ((X >> imm) & (2**size-1))
18109   if (VT == MVT::i32 || VT == MVT::i64) {
18110     SDValue N0 = N->getOperand(0);
18111     SDValue N1 = N->getOperand(1);
18112     SDLoc DL(N);
18113
18114     if (Subtarget->hasBMI2()) {
18115       // Check for (and (add (shl 1, Y), -1), X)
18116       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
18117         SDValue N00 = N0.getOperand(0);
18118         if (N00.getOpcode() == ISD::SHL) {
18119           SDValue N001 = N00.getOperand(1);
18120           assert(N001.getValueType() == MVT::i8 && "unexpected type");
18121           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
18122           if (C && C->getZExtValue() == 1)
18123             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
18124         }
18125       }
18126
18127       // Check for (and X, (add (shl 1, Y), -1))
18128       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
18129         SDValue N10 = N1.getOperand(0);
18130         if (N10.getOpcode() == ISD::SHL) {
18131           SDValue N101 = N10.getOperand(1);
18132           assert(N101.getValueType() == MVT::i8 && "unexpected type");
18133           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
18134           if (C && C->getZExtValue() == 1)
18135             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
18136         }
18137       }
18138     }
18139
18140     // Check for BEXTR.
18141     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
18142         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
18143       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
18144       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18145       if (MaskNode && ShiftNode) {
18146         uint64_t Mask = MaskNode->getZExtValue();
18147         uint64_t Shift = ShiftNode->getZExtValue();
18148         if (isMask_64(Mask)) {
18149           uint64_t MaskSize = CountPopulation_64(Mask);
18150           if (Shift + MaskSize <= VT.getSizeInBits())
18151             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
18152                                DAG.getConstant(Shift | (MaskSize << 8), VT));
18153         }
18154       }
18155     } // BEXTR
18156
18157     return SDValue();
18158   }
18159
18160   // Want to form ANDNP nodes:
18161   // 1) In the hopes of then easily combining them with OR and AND nodes
18162   //    to form PBLEND/PSIGN.
18163   // 2) To match ANDN packed intrinsics
18164   if (VT != MVT::v2i64 && VT != MVT::v4i64)
18165     return SDValue();
18166
18167   SDValue N0 = N->getOperand(0);
18168   SDValue N1 = N->getOperand(1);
18169   SDLoc DL(N);
18170
18171   // Check LHS for vnot
18172   if (N0.getOpcode() == ISD::XOR &&
18173       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
18174       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
18175     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
18176
18177   // Check RHS for vnot
18178   if (N1.getOpcode() == ISD::XOR &&
18179       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
18180       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
18181     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
18182
18183   return SDValue();
18184 }
18185
18186 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
18187                                 TargetLowering::DAGCombinerInfo &DCI,
18188                                 const X86Subtarget *Subtarget) {
18189   if (DCI.isBeforeLegalizeOps())
18190     return SDValue();
18191
18192   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
18193   if (R.getNode())
18194     return R;
18195
18196   SDValue N0 = N->getOperand(0);
18197   SDValue N1 = N->getOperand(1);
18198   EVT VT = N->getValueType(0);
18199
18200   // look for psign/blend
18201   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
18202     if (!Subtarget->hasSSSE3() ||
18203         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
18204       return SDValue();
18205
18206     // Canonicalize pandn to RHS
18207     if (N0.getOpcode() == X86ISD::ANDNP)
18208       std::swap(N0, N1);
18209     // or (and (m, y), (pandn m, x))
18210     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
18211       SDValue Mask = N1.getOperand(0);
18212       SDValue X    = N1.getOperand(1);
18213       SDValue Y;
18214       if (N0.getOperand(0) == Mask)
18215         Y = N0.getOperand(1);
18216       if (N0.getOperand(1) == Mask)
18217         Y = N0.getOperand(0);
18218
18219       // Check to see if the mask appeared in both the AND and ANDNP and
18220       if (!Y.getNode())
18221         return SDValue();
18222
18223       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
18224       // Look through mask bitcast.
18225       if (Mask.getOpcode() == ISD::BITCAST)
18226         Mask = Mask.getOperand(0);
18227       if (X.getOpcode() == ISD::BITCAST)
18228         X = X.getOperand(0);
18229       if (Y.getOpcode() == ISD::BITCAST)
18230         Y = Y.getOperand(0);
18231
18232       EVT MaskVT = Mask.getValueType();
18233
18234       // Validate that the Mask operand is a vector sra node.
18235       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
18236       // there is no psrai.b
18237       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
18238       unsigned SraAmt = ~0;
18239       if (Mask.getOpcode() == ISD::SRA) {
18240         SDValue Amt = Mask.getOperand(1);
18241         if (isSplatVector(Amt.getNode())) {
18242           SDValue SclrAmt = Amt->getOperand(0);
18243           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
18244             SraAmt = C->getZExtValue();
18245         }
18246       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
18247         SDValue SraC = Mask.getOperand(1);
18248         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
18249       }
18250       if ((SraAmt + 1) != EltBits)
18251         return SDValue();
18252
18253       SDLoc DL(N);
18254
18255       // Now we know we at least have a plendvb with the mask val.  See if
18256       // we can form a psignb/w/d.
18257       // psign = x.type == y.type == mask.type && y = sub(0, x);
18258       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
18259           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
18260           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
18261         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
18262                "Unsupported VT for PSIGN");
18263         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
18264         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18265       }
18266       // PBLENDVB only available on SSE 4.1
18267       if (!Subtarget->hasSSE41())
18268         return SDValue();
18269
18270       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
18271
18272       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
18273       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
18274       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
18275       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
18276       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18277     }
18278   }
18279
18280   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
18281     return SDValue();
18282
18283   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
18284   MachineFunction &MF = DAG.getMachineFunction();
18285   bool OptForSize = MF.getFunction()->getAttributes().
18286     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
18287
18288   // SHLD/SHRD instructions have lower register pressure, but on some
18289   // platforms they have higher latency than the equivalent
18290   // series of shifts/or that would otherwise be generated.
18291   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
18292   // have higher latencies and we are not optimizing for size.
18293   if (!OptForSize && Subtarget->isSHLDSlow())
18294     return SDValue();
18295
18296   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
18297     std::swap(N0, N1);
18298   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
18299     return SDValue();
18300   if (!N0.hasOneUse() || !N1.hasOneUse())
18301     return SDValue();
18302
18303   SDValue ShAmt0 = N0.getOperand(1);
18304   if (ShAmt0.getValueType() != MVT::i8)
18305     return SDValue();
18306   SDValue ShAmt1 = N1.getOperand(1);
18307   if (ShAmt1.getValueType() != MVT::i8)
18308     return SDValue();
18309   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
18310     ShAmt0 = ShAmt0.getOperand(0);
18311   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
18312     ShAmt1 = ShAmt1.getOperand(0);
18313
18314   SDLoc DL(N);
18315   unsigned Opc = X86ISD::SHLD;
18316   SDValue Op0 = N0.getOperand(0);
18317   SDValue Op1 = N1.getOperand(0);
18318   if (ShAmt0.getOpcode() == ISD::SUB) {
18319     Opc = X86ISD::SHRD;
18320     std::swap(Op0, Op1);
18321     std::swap(ShAmt0, ShAmt1);
18322   }
18323
18324   unsigned Bits = VT.getSizeInBits();
18325   if (ShAmt1.getOpcode() == ISD::SUB) {
18326     SDValue Sum = ShAmt1.getOperand(0);
18327     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
18328       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
18329       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
18330         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
18331       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
18332         return DAG.getNode(Opc, DL, VT,
18333                            Op0, Op1,
18334                            DAG.getNode(ISD::TRUNCATE, DL,
18335                                        MVT::i8, ShAmt0));
18336     }
18337   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
18338     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
18339     if (ShAmt0C &&
18340         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
18341       return DAG.getNode(Opc, DL, VT,
18342                          N0.getOperand(0), N1.getOperand(0),
18343                          DAG.getNode(ISD::TRUNCATE, DL,
18344                                        MVT::i8, ShAmt0));
18345   }
18346
18347   return SDValue();
18348 }
18349
18350 // Generate NEG and CMOV for integer abs.
18351 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
18352   EVT VT = N->getValueType(0);
18353
18354   // Since X86 does not have CMOV for 8-bit integer, we don't convert
18355   // 8-bit integer abs to NEG and CMOV.
18356   if (VT.isInteger() && VT.getSizeInBits() == 8)
18357     return SDValue();
18358
18359   SDValue N0 = N->getOperand(0);
18360   SDValue N1 = N->getOperand(1);
18361   SDLoc DL(N);
18362
18363   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
18364   // and change it to SUB and CMOV.
18365   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
18366       N0.getOpcode() == ISD::ADD &&
18367       N0.getOperand(1) == N1 &&
18368       N1.getOpcode() == ISD::SRA &&
18369       N1.getOperand(0) == N0.getOperand(0))
18370     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
18371       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
18372         // Generate SUB & CMOV.
18373         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
18374                                   DAG.getConstant(0, VT), N0.getOperand(0));
18375
18376         SDValue Ops[] = { N0.getOperand(0), Neg,
18377                           DAG.getConstant(X86::COND_GE, MVT::i8),
18378                           SDValue(Neg.getNode(), 1) };
18379         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
18380                            Ops, array_lengthof(Ops));
18381       }
18382   return SDValue();
18383 }
18384
18385 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
18386 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
18387                                  TargetLowering::DAGCombinerInfo &DCI,
18388                                  const X86Subtarget *Subtarget) {
18389   if (DCI.isBeforeLegalizeOps())
18390     return SDValue();
18391
18392   if (Subtarget->hasCMov()) {
18393     SDValue RV = performIntegerAbsCombine(N, DAG);
18394     if (RV.getNode())
18395       return RV;
18396   }
18397
18398   return SDValue();
18399 }
18400
18401 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
18402 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
18403                                   TargetLowering::DAGCombinerInfo &DCI,
18404                                   const X86Subtarget *Subtarget) {
18405   LoadSDNode *Ld = cast<LoadSDNode>(N);
18406   EVT RegVT = Ld->getValueType(0);
18407   EVT MemVT = Ld->getMemoryVT();
18408   SDLoc dl(Ld);
18409   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18410   unsigned RegSz = RegVT.getSizeInBits();
18411
18412   // On Sandybridge unaligned 256bit loads are inefficient.
18413   ISD::LoadExtType Ext = Ld->getExtensionType();
18414   unsigned Alignment = Ld->getAlignment();
18415   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
18416   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
18417       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
18418     unsigned NumElems = RegVT.getVectorNumElements();
18419     if (NumElems < 2)
18420       return SDValue();
18421
18422     SDValue Ptr = Ld->getBasePtr();
18423     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
18424
18425     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18426                                   NumElems/2);
18427     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18428                                 Ld->getPointerInfo(), Ld->isVolatile(),
18429                                 Ld->isNonTemporal(), Ld->isInvariant(),
18430                                 Alignment);
18431     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18432     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18433                                 Ld->getPointerInfo(), Ld->isVolatile(),
18434                                 Ld->isNonTemporal(), Ld->isInvariant(),
18435                                 std::min(16U, Alignment));
18436     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18437                              Load1.getValue(1),
18438                              Load2.getValue(1));
18439
18440     SDValue NewVec = DAG.getUNDEF(RegVT);
18441     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
18442     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
18443     return DCI.CombineTo(N, NewVec, TF, true);
18444   }
18445
18446   // If this is a vector EXT Load then attempt to optimize it using a
18447   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18448   // expansion is still better than scalar code.
18449   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18450   // emit a shuffle and a arithmetic shift.
18451   // TODO: It is possible to support ZExt by zeroing the undef values
18452   // during the shuffle phase or after the shuffle.
18453   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18454       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
18455     assert(MemVT != RegVT && "Cannot extend to the same type");
18456     assert(MemVT.isVector() && "Must load a vector from memory");
18457
18458     unsigned NumElems = RegVT.getVectorNumElements();
18459     unsigned MemSz = MemVT.getSizeInBits();
18460     assert(RegSz > MemSz && "Register size must be greater than the mem size");
18461
18462     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18463       return SDValue();
18464
18465     // All sizes must be a power of two.
18466     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18467       return SDValue();
18468
18469     // Attempt to load the original value using scalar loads.
18470     // Find the largest scalar type that divides the total loaded size.
18471     MVT SclrLoadTy = MVT::i8;
18472     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18473          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18474       MVT Tp = (MVT::SimpleValueType)tp;
18475       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18476         SclrLoadTy = Tp;
18477       }
18478     }
18479
18480     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18481     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18482         (64 <= MemSz))
18483       SclrLoadTy = MVT::f64;
18484
18485     // Calculate the number of scalar loads that we need to perform
18486     // in order to load our vector from memory.
18487     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18488     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18489       return SDValue();
18490
18491     unsigned loadRegZize = RegSz;
18492     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18493       loadRegZize /= 2;
18494
18495     // Represent our vector as a sequence of elements which are the
18496     // largest scalar that we can load.
18497     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18498       loadRegZize/SclrLoadTy.getSizeInBits());
18499
18500     // Represent the data using the same element type that is stored in
18501     // memory. In practice, we ''widen'' MemVT.
18502     EVT WideVecVT =
18503           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18504                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18505
18506     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18507       "Invalid vector type");
18508
18509     // We can't shuffle using an illegal type.
18510     if (!TLI.isTypeLegal(WideVecVT))
18511       return SDValue();
18512
18513     SmallVector<SDValue, 8> Chains;
18514     SDValue Ptr = Ld->getBasePtr();
18515     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18516                                         TLI.getPointerTy());
18517     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18518
18519     for (unsigned i = 0; i < NumLoads; ++i) {
18520       // Perform a single load.
18521       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18522                                        Ptr, Ld->getPointerInfo(),
18523                                        Ld->isVolatile(), Ld->isNonTemporal(),
18524                                        Ld->isInvariant(), Ld->getAlignment());
18525       Chains.push_back(ScalarLoad.getValue(1));
18526       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18527       // another round of DAGCombining.
18528       if (i == 0)
18529         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18530       else
18531         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18532                           ScalarLoad, DAG.getIntPtrConstant(i));
18533
18534       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18535     }
18536
18537     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18538                                Chains.size());
18539
18540     // Bitcast the loaded value to a vector of the original element type, in
18541     // the size of the target vector type.
18542     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18543     unsigned SizeRatio = RegSz/MemSz;
18544
18545     if (Ext == ISD::SEXTLOAD) {
18546       // If we have SSE4.1 we can directly emit a VSEXT node.
18547       if (Subtarget->hasSSE41()) {
18548         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18549         return DCI.CombineTo(N, Sext, TF, true);
18550       }
18551
18552       // Otherwise we'll shuffle the small elements in the high bits of the
18553       // larger type and perform an arithmetic shift. If the shift is not legal
18554       // it's better to scalarize.
18555       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18556         return SDValue();
18557
18558       // Redistribute the loaded elements into the different locations.
18559       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18560       for (unsigned i = 0; i != NumElems; ++i)
18561         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18562
18563       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18564                                            DAG.getUNDEF(WideVecVT),
18565                                            &ShuffleVec[0]);
18566
18567       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18568
18569       // Build the arithmetic shift.
18570       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18571                      MemVT.getVectorElementType().getSizeInBits();
18572       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18573                           DAG.getConstant(Amt, RegVT));
18574
18575       return DCI.CombineTo(N, Shuff, TF, true);
18576     }
18577
18578     // Redistribute the loaded elements into the different locations.
18579     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18580     for (unsigned i = 0; i != NumElems; ++i)
18581       ShuffleVec[i*SizeRatio] = i;
18582
18583     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18584                                          DAG.getUNDEF(WideVecVT),
18585                                          &ShuffleVec[0]);
18586
18587     // Bitcast to the requested type.
18588     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18589     // Replace the original load with the new sequence
18590     // and return the new chain.
18591     return DCI.CombineTo(N, Shuff, TF, true);
18592   }
18593
18594   return SDValue();
18595 }
18596
18597 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18598 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18599                                    const X86Subtarget *Subtarget) {
18600   StoreSDNode *St = cast<StoreSDNode>(N);
18601   EVT VT = St->getValue().getValueType();
18602   EVT StVT = St->getMemoryVT();
18603   SDLoc dl(St);
18604   SDValue StoredVal = St->getOperand(1);
18605   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18606
18607   // If we are saving a concatenation of two XMM registers, perform two stores.
18608   // On Sandy Bridge, 256-bit memory operations are executed by two
18609   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18610   // memory  operation.
18611   unsigned Alignment = St->getAlignment();
18612   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18613   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18614       StVT == VT && !IsAligned) {
18615     unsigned NumElems = VT.getVectorNumElements();
18616     if (NumElems < 2)
18617       return SDValue();
18618
18619     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18620     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18621
18622     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18623     SDValue Ptr0 = St->getBasePtr();
18624     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18625
18626     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18627                                 St->getPointerInfo(), St->isVolatile(),
18628                                 St->isNonTemporal(), Alignment);
18629     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18630                                 St->getPointerInfo(), St->isVolatile(),
18631                                 St->isNonTemporal(),
18632                                 std::min(16U, Alignment));
18633     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18634   }
18635
18636   // Optimize trunc store (of multiple scalars) to shuffle and store.
18637   // First, pack all of the elements in one place. Next, store to memory
18638   // in fewer chunks.
18639   if (St->isTruncatingStore() && VT.isVector()) {
18640     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18641     unsigned NumElems = VT.getVectorNumElements();
18642     assert(StVT != VT && "Cannot truncate to the same type");
18643     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18644     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18645
18646     // From, To sizes and ElemCount must be pow of two
18647     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18648     // We are going to use the original vector elt for storing.
18649     // Accumulated smaller vector elements must be a multiple of the store size.
18650     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18651
18652     unsigned SizeRatio  = FromSz / ToSz;
18653
18654     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18655
18656     // Create a type on which we perform the shuffle
18657     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18658             StVT.getScalarType(), NumElems*SizeRatio);
18659
18660     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18661
18662     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18663     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18664     for (unsigned i = 0; i != NumElems; ++i)
18665       ShuffleVec[i] = i * SizeRatio;
18666
18667     // Can't shuffle using an illegal type.
18668     if (!TLI.isTypeLegal(WideVecVT))
18669       return SDValue();
18670
18671     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18672                                          DAG.getUNDEF(WideVecVT),
18673                                          &ShuffleVec[0]);
18674     // At this point all of the data is stored at the bottom of the
18675     // register. We now need to save it to mem.
18676
18677     // Find the largest store unit
18678     MVT StoreType = MVT::i8;
18679     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18680          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18681       MVT Tp = (MVT::SimpleValueType)tp;
18682       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18683         StoreType = Tp;
18684     }
18685
18686     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18687     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18688         (64 <= NumElems * ToSz))
18689       StoreType = MVT::f64;
18690
18691     // Bitcast the original vector into a vector of store-size units
18692     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18693             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18694     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18695     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18696     SmallVector<SDValue, 8> Chains;
18697     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18698                                         TLI.getPointerTy());
18699     SDValue Ptr = St->getBasePtr();
18700
18701     // Perform one or more big stores into memory.
18702     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18703       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18704                                    StoreType, ShuffWide,
18705                                    DAG.getIntPtrConstant(i));
18706       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18707                                 St->getPointerInfo(), St->isVolatile(),
18708                                 St->isNonTemporal(), St->getAlignment());
18709       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18710       Chains.push_back(Ch);
18711     }
18712
18713     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18714                                Chains.size());
18715   }
18716
18717   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18718   // the FP state in cases where an emms may be missing.
18719   // A preferable solution to the general problem is to figure out the right
18720   // places to insert EMMS.  This qualifies as a quick hack.
18721
18722   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18723   if (VT.getSizeInBits() != 64)
18724     return SDValue();
18725
18726   const Function *F = DAG.getMachineFunction().getFunction();
18727   bool NoImplicitFloatOps = F->getAttributes().
18728     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18729   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18730                      && Subtarget->hasSSE2();
18731   if ((VT.isVector() ||
18732        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18733       isa<LoadSDNode>(St->getValue()) &&
18734       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18735       St->getChain().hasOneUse() && !St->isVolatile()) {
18736     SDNode* LdVal = St->getValue().getNode();
18737     LoadSDNode *Ld = 0;
18738     int TokenFactorIndex = -1;
18739     SmallVector<SDValue, 8> Ops;
18740     SDNode* ChainVal = St->getChain().getNode();
18741     // Must be a store of a load.  We currently handle two cases:  the load
18742     // is a direct child, and it's under an intervening TokenFactor.  It is
18743     // possible to dig deeper under nested TokenFactors.
18744     if (ChainVal == LdVal)
18745       Ld = cast<LoadSDNode>(St->getChain());
18746     else if (St->getValue().hasOneUse() &&
18747              ChainVal->getOpcode() == ISD::TokenFactor) {
18748       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18749         if (ChainVal->getOperand(i).getNode() == LdVal) {
18750           TokenFactorIndex = i;
18751           Ld = cast<LoadSDNode>(St->getValue());
18752         } else
18753           Ops.push_back(ChainVal->getOperand(i));
18754       }
18755     }
18756
18757     if (!Ld || !ISD::isNormalLoad(Ld))
18758       return SDValue();
18759
18760     // If this is not the MMX case, i.e. we are just turning i64 load/store
18761     // into f64 load/store, avoid the transformation if there are multiple
18762     // uses of the loaded value.
18763     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18764       return SDValue();
18765
18766     SDLoc LdDL(Ld);
18767     SDLoc StDL(N);
18768     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18769     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18770     // pair instead.
18771     if (Subtarget->is64Bit() || F64IsLegal) {
18772       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18773       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18774                                   Ld->getPointerInfo(), Ld->isVolatile(),
18775                                   Ld->isNonTemporal(), Ld->isInvariant(),
18776                                   Ld->getAlignment());
18777       SDValue NewChain = NewLd.getValue(1);
18778       if (TokenFactorIndex != -1) {
18779         Ops.push_back(NewChain);
18780         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18781                                Ops.size());
18782       }
18783       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18784                           St->getPointerInfo(),
18785                           St->isVolatile(), St->isNonTemporal(),
18786                           St->getAlignment());
18787     }
18788
18789     // Otherwise, lower to two pairs of 32-bit loads / stores.
18790     SDValue LoAddr = Ld->getBasePtr();
18791     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18792                                  DAG.getConstant(4, MVT::i32));
18793
18794     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18795                                Ld->getPointerInfo(),
18796                                Ld->isVolatile(), Ld->isNonTemporal(),
18797                                Ld->isInvariant(), Ld->getAlignment());
18798     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18799                                Ld->getPointerInfo().getWithOffset(4),
18800                                Ld->isVolatile(), Ld->isNonTemporal(),
18801                                Ld->isInvariant(),
18802                                MinAlign(Ld->getAlignment(), 4));
18803
18804     SDValue NewChain = LoLd.getValue(1);
18805     if (TokenFactorIndex != -1) {
18806       Ops.push_back(LoLd);
18807       Ops.push_back(HiLd);
18808       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18809                              Ops.size());
18810     }
18811
18812     LoAddr = St->getBasePtr();
18813     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18814                          DAG.getConstant(4, MVT::i32));
18815
18816     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18817                                 St->getPointerInfo(),
18818                                 St->isVolatile(), St->isNonTemporal(),
18819                                 St->getAlignment());
18820     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18821                                 St->getPointerInfo().getWithOffset(4),
18822                                 St->isVolatile(),
18823                                 St->isNonTemporal(),
18824                                 MinAlign(St->getAlignment(), 4));
18825     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18826   }
18827   return SDValue();
18828 }
18829
18830 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18831 /// and return the operands for the horizontal operation in LHS and RHS.  A
18832 /// horizontal operation performs the binary operation on successive elements
18833 /// of its first operand, then on successive elements of its second operand,
18834 /// returning the resulting values in a vector.  For example, if
18835 ///   A = < float a0, float a1, float a2, float a3 >
18836 /// and
18837 ///   B = < float b0, float b1, float b2, float b3 >
18838 /// then the result of doing a horizontal operation on A and B is
18839 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18840 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18841 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18842 /// set to A, RHS to B, and the routine returns 'true'.
18843 /// Note that the binary operation should have the property that if one of the
18844 /// operands is UNDEF then the result is UNDEF.
18845 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18846   // Look for the following pattern: if
18847   //   A = < float a0, float a1, float a2, float a3 >
18848   //   B = < float b0, float b1, float b2, float b3 >
18849   // and
18850   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18851   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18852   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18853   // which is A horizontal-op B.
18854
18855   // At least one of the operands should be a vector shuffle.
18856   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18857       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18858     return false;
18859
18860   MVT VT = LHS.getSimpleValueType();
18861
18862   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18863          "Unsupported vector type for horizontal add/sub");
18864
18865   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18866   // operate independently on 128-bit lanes.
18867   unsigned NumElts = VT.getVectorNumElements();
18868   unsigned NumLanes = VT.getSizeInBits()/128;
18869   unsigned NumLaneElts = NumElts / NumLanes;
18870   assert((NumLaneElts % 2 == 0) &&
18871          "Vector type should have an even number of elements in each lane");
18872   unsigned HalfLaneElts = NumLaneElts/2;
18873
18874   // View LHS in the form
18875   //   LHS = VECTOR_SHUFFLE A, B, LMask
18876   // If LHS is not a shuffle then pretend it is the shuffle
18877   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18878   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18879   // type VT.
18880   SDValue A, B;
18881   SmallVector<int, 16> LMask(NumElts);
18882   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18883     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18884       A = LHS.getOperand(0);
18885     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18886       B = LHS.getOperand(1);
18887     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18888     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18889   } else {
18890     if (LHS.getOpcode() != ISD::UNDEF)
18891       A = LHS;
18892     for (unsigned i = 0; i != NumElts; ++i)
18893       LMask[i] = i;
18894   }
18895
18896   // Likewise, view RHS in the form
18897   //   RHS = VECTOR_SHUFFLE C, D, RMask
18898   SDValue C, D;
18899   SmallVector<int, 16> RMask(NumElts);
18900   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18901     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18902       C = RHS.getOperand(0);
18903     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18904       D = RHS.getOperand(1);
18905     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18906     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18907   } else {
18908     if (RHS.getOpcode() != ISD::UNDEF)
18909       C = RHS;
18910     for (unsigned i = 0; i != NumElts; ++i)
18911       RMask[i] = i;
18912   }
18913
18914   // Check that the shuffles are both shuffling the same vectors.
18915   if (!(A == C && B == D) && !(A == D && B == C))
18916     return false;
18917
18918   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18919   if (!A.getNode() && !B.getNode())
18920     return false;
18921
18922   // If A and B occur in reverse order in RHS, then "swap" them (which means
18923   // rewriting the mask).
18924   if (A != C)
18925     CommuteVectorShuffleMask(RMask, NumElts);
18926
18927   // At this point LHS and RHS are equivalent to
18928   //   LHS = VECTOR_SHUFFLE A, B, LMask
18929   //   RHS = VECTOR_SHUFFLE A, B, RMask
18930   // Check that the masks correspond to performing a horizontal operation.
18931   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18932     for (unsigned i = 0; i != NumLaneElts; ++i) {
18933       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18934
18935       // Ignore any UNDEF components.
18936       if (LIdx < 0 || RIdx < 0 ||
18937           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18938           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18939         continue;
18940
18941       // Check that successive elements are being operated on.  If not, this is
18942       // not a horizontal operation.
18943       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18944       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18945       if (!(LIdx == Index && RIdx == Index + 1) &&
18946           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18947         return false;
18948     }
18949   }
18950
18951   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18952   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18953   return true;
18954 }
18955
18956 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18957 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18958                                   const X86Subtarget *Subtarget) {
18959   EVT VT = N->getValueType(0);
18960   SDValue LHS = N->getOperand(0);
18961   SDValue RHS = N->getOperand(1);
18962
18963   // Try to synthesize horizontal adds from adds of shuffles.
18964   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18965        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18966       isHorizontalBinOp(LHS, RHS, true))
18967     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18968   return SDValue();
18969 }
18970
18971 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18972 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18973                                   const X86Subtarget *Subtarget) {
18974   EVT VT = N->getValueType(0);
18975   SDValue LHS = N->getOperand(0);
18976   SDValue RHS = N->getOperand(1);
18977
18978   // Try to synthesize horizontal subs from subs of shuffles.
18979   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18980        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18981       isHorizontalBinOp(LHS, RHS, false))
18982     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18983   return SDValue();
18984 }
18985
18986 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18987 /// X86ISD::FXOR nodes.
18988 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18989   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18990   // F[X]OR(0.0, x) -> x
18991   // F[X]OR(x, 0.0) -> x
18992   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18993     if (C->getValueAPF().isPosZero())
18994       return N->getOperand(1);
18995   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18996     if (C->getValueAPF().isPosZero())
18997       return N->getOperand(0);
18998   return SDValue();
18999 }
19000
19001 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
19002 /// X86ISD::FMAX nodes.
19003 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
19004   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
19005
19006   // Only perform optimizations if UnsafeMath is used.
19007   if (!DAG.getTarget().Options.UnsafeFPMath)
19008     return SDValue();
19009
19010   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
19011   // into FMINC and FMAXC, which are Commutative operations.
19012   unsigned NewOp = 0;
19013   switch (N->getOpcode()) {
19014     default: llvm_unreachable("unknown opcode");
19015     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
19016     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
19017   }
19018
19019   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
19020                      N->getOperand(0), N->getOperand(1));
19021 }
19022
19023 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
19024 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
19025   // FAND(0.0, x) -> 0.0
19026   // FAND(x, 0.0) -> 0.0
19027   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19028     if (C->getValueAPF().isPosZero())
19029       return N->getOperand(0);
19030   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19031     if (C->getValueAPF().isPosZero())
19032       return N->getOperand(1);
19033   return SDValue();
19034 }
19035
19036 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
19037 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
19038   // FANDN(x, 0.0) -> 0.0
19039   // FANDN(0.0, x) -> x
19040   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
19041     if (C->getValueAPF().isPosZero())
19042       return N->getOperand(1);
19043   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
19044     if (C->getValueAPF().isPosZero())
19045       return N->getOperand(1);
19046   return SDValue();
19047 }
19048
19049 static SDValue PerformBTCombine(SDNode *N,
19050                                 SelectionDAG &DAG,
19051                                 TargetLowering::DAGCombinerInfo &DCI) {
19052   // BT ignores high bits in the bit index operand.
19053   SDValue Op1 = N->getOperand(1);
19054   if (Op1.hasOneUse()) {
19055     unsigned BitWidth = Op1.getValueSizeInBits();
19056     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
19057     APInt KnownZero, KnownOne;
19058     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
19059                                           !DCI.isBeforeLegalizeOps());
19060     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
19061     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
19062         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
19063       DCI.CommitTargetLoweringOpt(TLO);
19064   }
19065   return SDValue();
19066 }
19067
19068 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
19069   SDValue Op = N->getOperand(0);
19070   if (Op.getOpcode() == ISD::BITCAST)
19071     Op = Op.getOperand(0);
19072   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
19073   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
19074       VT.getVectorElementType().getSizeInBits() ==
19075       OpVT.getVectorElementType().getSizeInBits()) {
19076     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
19077   }
19078   return SDValue();
19079 }
19080
19081 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
19082                                                const X86Subtarget *Subtarget) {
19083   EVT VT = N->getValueType(0);
19084   if (!VT.isVector())
19085     return SDValue();
19086
19087   SDValue N0 = N->getOperand(0);
19088   SDValue N1 = N->getOperand(1);
19089   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
19090   SDLoc dl(N);
19091
19092   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
19093   // both SSE and AVX2 since there is no sign-extended shift right
19094   // operation on a vector with 64-bit elements.
19095   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
19096   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
19097   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
19098       N0.getOpcode() == ISD::SIGN_EXTEND)) {
19099     SDValue N00 = N0.getOperand(0);
19100
19101     // EXTLOAD has a better solution on AVX2,
19102     // it may be replaced with X86ISD::VSEXT node.
19103     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
19104       if (!ISD::isNormalLoad(N00.getNode()))
19105         return SDValue();
19106
19107     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
19108         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
19109                                   N00, N1);
19110       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
19111     }
19112   }
19113   return SDValue();
19114 }
19115
19116 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
19117                                   TargetLowering::DAGCombinerInfo &DCI,
19118                                   const X86Subtarget *Subtarget) {
19119   if (!DCI.isBeforeLegalizeOps())
19120     return SDValue();
19121
19122   if (!Subtarget->hasFp256())
19123     return SDValue();
19124
19125   EVT VT = N->getValueType(0);
19126   if (VT.isVector() && VT.getSizeInBits() == 256) {
19127     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19128     if (R.getNode())
19129       return R;
19130   }
19131
19132   return SDValue();
19133 }
19134
19135 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
19136                                  const X86Subtarget* Subtarget) {
19137   SDLoc dl(N);
19138   EVT VT = N->getValueType(0);
19139
19140   // Let legalize expand this if it isn't a legal type yet.
19141   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
19142     return SDValue();
19143
19144   EVT ScalarVT = VT.getScalarType();
19145   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
19146       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
19147     return SDValue();
19148
19149   SDValue A = N->getOperand(0);
19150   SDValue B = N->getOperand(1);
19151   SDValue C = N->getOperand(2);
19152
19153   bool NegA = (A.getOpcode() == ISD::FNEG);
19154   bool NegB = (B.getOpcode() == ISD::FNEG);
19155   bool NegC = (C.getOpcode() == ISD::FNEG);
19156
19157   // Negative multiplication when NegA xor NegB
19158   bool NegMul = (NegA != NegB);
19159   if (NegA)
19160     A = A.getOperand(0);
19161   if (NegB)
19162     B = B.getOperand(0);
19163   if (NegC)
19164     C = C.getOperand(0);
19165
19166   unsigned Opcode;
19167   if (!NegMul)
19168     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
19169   else
19170     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
19171
19172   return DAG.getNode(Opcode, dl, VT, A, B, C);
19173 }
19174
19175 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
19176                                   TargetLowering::DAGCombinerInfo &DCI,
19177                                   const X86Subtarget *Subtarget) {
19178   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
19179   //           (and (i32 x86isd::setcc_carry), 1)
19180   // This eliminates the zext. This transformation is necessary because
19181   // ISD::SETCC is always legalized to i8.
19182   SDLoc dl(N);
19183   SDValue N0 = N->getOperand(0);
19184   EVT VT = N->getValueType(0);
19185
19186   if (N0.getOpcode() == ISD::AND &&
19187       N0.hasOneUse() &&
19188       N0.getOperand(0).hasOneUse()) {
19189     SDValue N00 = N0.getOperand(0);
19190     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19191       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
19192       if (!C || C->getZExtValue() != 1)
19193         return SDValue();
19194       return DAG.getNode(ISD::AND, dl, VT,
19195                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19196                                      N00.getOperand(0), N00.getOperand(1)),
19197                          DAG.getConstant(1, VT));
19198     }
19199   }
19200
19201   if (N0.getOpcode() == ISD::TRUNCATE &&
19202       N0.hasOneUse() &&
19203       N0.getOperand(0).hasOneUse()) {
19204     SDValue N00 = N0.getOperand(0);
19205     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19206       return DAG.getNode(ISD::AND, dl, VT,
19207                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19208                                      N00.getOperand(0), N00.getOperand(1)),
19209                          DAG.getConstant(1, VT));
19210     }
19211   }
19212   if (VT.is256BitVector()) {
19213     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19214     if (R.getNode())
19215       return R;
19216   }
19217
19218   return SDValue();
19219 }
19220
19221 // Optimize x == -y --> x+y == 0
19222 //          x != -y --> x+y != 0
19223 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG,
19224                                       const X86Subtarget* Subtarget) {
19225   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
19226   SDValue LHS = N->getOperand(0);
19227   SDValue RHS = N->getOperand(1);
19228   EVT VT = N->getValueType(0);
19229   SDLoc DL(N);
19230
19231   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
19232     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
19233       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
19234         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19235                                    LHS.getValueType(), RHS, LHS.getOperand(1));
19236         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19237                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19238       }
19239   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
19240     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
19241       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
19242         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19243                                    RHS.getValueType(), LHS, RHS.getOperand(1));
19244         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19245                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19246       }
19247
19248   if (VT.getScalarType() == MVT::i1) {
19249     bool IsSEXT0 = (LHS.getOpcode() == ISD::SIGN_EXTEND) &&
19250       (LHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
19251     bool IsVZero0 = ISD::isBuildVectorAllZeros(LHS.getNode());
19252     if (!IsSEXT0 && !IsVZero0)
19253       return SDValue();
19254     bool IsSEXT1 = (RHS.getOpcode() == ISD::SIGN_EXTEND) &&
19255       (RHS.getOperand(0).getValueType().getScalarType() ==  MVT::i1);
19256     bool IsVZero1 = ISD::isBuildVectorAllZeros(RHS.getNode());
19257
19258     if (!IsSEXT1 && !IsVZero1)
19259       return SDValue();
19260
19261     if (IsSEXT0 && IsVZero1) {
19262       assert(VT == LHS.getOperand(0).getValueType() && "Uexpected operand type");
19263       if (CC == ISD::SETEQ)
19264         return DAG.getNOT(DL, LHS.getOperand(0), VT);
19265       return LHS.getOperand(0);
19266     }
19267     if (IsSEXT1 && IsVZero0) {
19268       assert(VT == RHS.getOperand(0).getValueType() && "Uexpected operand type");
19269       if (CC == ISD::SETEQ)
19270         return DAG.getNOT(DL, RHS.getOperand(0), VT);
19271       return RHS.getOperand(0);
19272     }
19273   }
19274
19275   return SDValue();
19276 }
19277
19278 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
19279 // as "sbb reg,reg", since it can be extended without zext and produces
19280 // an all-ones bit which is more useful than 0/1 in some cases.
19281 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
19282                                MVT VT) {
19283   if (VT == MVT::i8)
19284     return DAG.getNode(ISD::AND, DL, VT,
19285                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19286                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
19287                        DAG.getConstant(1, VT));
19288   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
19289   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
19290                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19291                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
19292 }
19293
19294 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
19295 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
19296                                    TargetLowering::DAGCombinerInfo &DCI,
19297                                    const X86Subtarget *Subtarget) {
19298   SDLoc DL(N);
19299   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
19300   SDValue EFLAGS = N->getOperand(1);
19301
19302   if (CC == X86::COND_A) {
19303     // Try to convert COND_A into COND_B in an attempt to facilitate
19304     // materializing "setb reg".
19305     //
19306     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
19307     // cannot take an immediate as its first operand.
19308     //
19309     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
19310         EFLAGS.getValueType().isInteger() &&
19311         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
19312       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
19313                                    EFLAGS.getNode()->getVTList(),
19314                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
19315       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
19316       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
19317     }
19318   }
19319
19320   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
19321   // a zext and produces an all-ones bit which is more useful than 0/1 in some
19322   // cases.
19323   if (CC == X86::COND_B)
19324     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
19325
19326   SDValue Flags;
19327
19328   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19329   if (Flags.getNode()) {
19330     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19331     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
19332   }
19333
19334   return SDValue();
19335 }
19336
19337 // Optimize branch condition evaluation.
19338 //
19339 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
19340                                     TargetLowering::DAGCombinerInfo &DCI,
19341                                     const X86Subtarget *Subtarget) {
19342   SDLoc DL(N);
19343   SDValue Chain = N->getOperand(0);
19344   SDValue Dest = N->getOperand(1);
19345   SDValue EFLAGS = N->getOperand(3);
19346   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
19347
19348   SDValue Flags;
19349
19350   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19351   if (Flags.getNode()) {
19352     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19353     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
19354                        Flags);
19355   }
19356
19357   return SDValue();
19358 }
19359
19360 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
19361                                         const X86TargetLowering *XTLI) {
19362   SDValue Op0 = N->getOperand(0);
19363   EVT InVT = Op0->getValueType(0);
19364
19365   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
19366   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
19367     SDLoc dl(N);
19368     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
19369     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
19370     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
19371   }
19372
19373   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
19374   // a 32-bit target where SSE doesn't support i64->FP operations.
19375   if (Op0.getOpcode() == ISD::LOAD) {
19376     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
19377     EVT VT = Ld->getValueType(0);
19378     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
19379         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
19380         !XTLI->getSubtarget()->is64Bit() &&
19381         VT == MVT::i64) {
19382       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
19383                                           Ld->getChain(), Op0, DAG);
19384       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
19385       return FILDChain;
19386     }
19387   }
19388   return SDValue();
19389 }
19390
19391 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
19392 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
19393                                  X86TargetLowering::DAGCombinerInfo &DCI) {
19394   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
19395   // the result is either zero or one (depending on the input carry bit).
19396   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
19397   if (X86::isZeroNode(N->getOperand(0)) &&
19398       X86::isZeroNode(N->getOperand(1)) &&
19399       // We don't have a good way to replace an EFLAGS use, so only do this when
19400       // dead right now.
19401       SDValue(N, 1).use_empty()) {
19402     SDLoc DL(N);
19403     EVT VT = N->getValueType(0);
19404     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
19405     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
19406                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
19407                                            DAG.getConstant(X86::COND_B,MVT::i8),
19408                                            N->getOperand(2)),
19409                                DAG.getConstant(1, VT));
19410     return DCI.CombineTo(N, Res1, CarryOut);
19411   }
19412
19413   return SDValue();
19414 }
19415
19416 // fold (add Y, (sete  X, 0)) -> adc  0, Y
19417 //      (add Y, (setne X, 0)) -> sbb -1, Y
19418 //      (sub (sete  X, 0), Y) -> sbb  0, Y
19419 //      (sub (setne X, 0), Y) -> adc -1, Y
19420 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
19421   SDLoc DL(N);
19422
19423   // Look through ZExts.
19424   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
19425   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
19426     return SDValue();
19427
19428   SDValue SetCC = Ext.getOperand(0);
19429   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
19430     return SDValue();
19431
19432   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
19433   if (CC != X86::COND_E && CC != X86::COND_NE)
19434     return SDValue();
19435
19436   SDValue Cmp = SetCC.getOperand(1);
19437   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
19438       !X86::isZeroNode(Cmp.getOperand(1)) ||
19439       !Cmp.getOperand(0).getValueType().isInteger())
19440     return SDValue();
19441
19442   SDValue CmpOp0 = Cmp.getOperand(0);
19443   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
19444                                DAG.getConstant(1, CmpOp0.getValueType()));
19445
19446   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
19447   if (CC == X86::COND_NE)
19448     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
19449                        DL, OtherVal.getValueType(), OtherVal,
19450                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
19451   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
19452                      DL, OtherVal.getValueType(), OtherVal,
19453                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
19454 }
19455
19456 /// PerformADDCombine - Do target-specific dag combines on integer adds.
19457 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
19458                                  const X86Subtarget *Subtarget) {
19459   EVT VT = N->getValueType(0);
19460   SDValue Op0 = N->getOperand(0);
19461   SDValue Op1 = N->getOperand(1);
19462
19463   // Try to synthesize horizontal adds from adds of shuffles.
19464   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19465        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19466       isHorizontalBinOp(Op0, Op1, true))
19467     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
19468
19469   return OptimizeConditionalInDecrement(N, DAG);
19470 }
19471
19472 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
19473                                  const X86Subtarget *Subtarget) {
19474   SDValue Op0 = N->getOperand(0);
19475   SDValue Op1 = N->getOperand(1);
19476
19477   // X86 can't encode an immediate LHS of a sub. See if we can push the
19478   // negation into a preceding instruction.
19479   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
19480     // If the RHS of the sub is a XOR with one use and a constant, invert the
19481     // immediate. Then add one to the LHS of the sub so we can turn
19482     // X-Y -> X+~Y+1, saving one register.
19483     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
19484         isa<ConstantSDNode>(Op1.getOperand(1))) {
19485       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
19486       EVT VT = Op0.getValueType();
19487       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
19488                                    Op1.getOperand(0),
19489                                    DAG.getConstant(~XorC, VT));
19490       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
19491                          DAG.getConstant(C->getAPIntValue()+1, VT));
19492     }
19493   }
19494
19495   // Try to synthesize horizontal adds from adds of shuffles.
19496   EVT VT = N->getValueType(0);
19497   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19498        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19499       isHorizontalBinOp(Op0, Op1, true))
19500     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
19501
19502   return OptimizeConditionalInDecrement(N, DAG);
19503 }
19504
19505 /// performVZEXTCombine - Performs build vector combines
19506 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19507                                         TargetLowering::DAGCombinerInfo &DCI,
19508                                         const X86Subtarget *Subtarget) {
19509   // (vzext (bitcast (vzext (x)) -> (vzext x)
19510   SDValue In = N->getOperand(0);
19511   while (In.getOpcode() == ISD::BITCAST)
19512     In = In.getOperand(0);
19513
19514   if (In.getOpcode() != X86ISD::VZEXT)
19515     return SDValue();
19516
19517   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
19518                      In.getOperand(0));
19519 }
19520
19521 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19522                                              DAGCombinerInfo &DCI) const {
19523   SelectionDAG &DAG = DCI.DAG;
19524   switch (N->getOpcode()) {
19525   default: break;
19526   case ISD::EXTRACT_VECTOR_ELT:
19527     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19528   case ISD::VSELECT:
19529   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19530   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19531   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19532   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19533   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19534   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19535   case ISD::SHL:
19536   case ISD::SRA:
19537   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19538   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19539   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19540   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19541   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19542   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19543   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19544   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19545   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19546   case X86ISD::FXOR:
19547   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19548   case X86ISD::FMIN:
19549   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19550   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19551   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19552   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19553   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19554   case ISD::ANY_EXTEND:
19555   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19556   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19557   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19558   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19559   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG, Subtarget);
19560   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19561   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19562   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19563   case X86ISD::SHUFP:       // Handle all target specific shuffles
19564   case X86ISD::PALIGNR:
19565   case X86ISD::UNPCKH:
19566   case X86ISD::UNPCKL:
19567   case X86ISD::MOVHLPS:
19568   case X86ISD::MOVLHPS:
19569   case X86ISD::PSHUFD:
19570   case X86ISD::PSHUFHW:
19571   case X86ISD::PSHUFLW:
19572   case X86ISD::MOVSS:
19573   case X86ISD::MOVSD:
19574   case X86ISD::VPERMILP:
19575   case X86ISD::VPERM2X128:
19576   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19577   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19578   }
19579
19580   return SDValue();
19581 }
19582
19583 /// isTypeDesirableForOp - Return true if the target has native support for
19584 /// the specified value type and it is 'desirable' to use the type for the
19585 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19586 /// instruction encodings are longer and some i16 instructions are slow.
19587 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19588   if (!isTypeLegal(VT))
19589     return false;
19590   if (VT != MVT::i16)
19591     return true;
19592
19593   switch (Opc) {
19594   default:
19595     return true;
19596   case ISD::LOAD:
19597   case ISD::SIGN_EXTEND:
19598   case ISD::ZERO_EXTEND:
19599   case ISD::ANY_EXTEND:
19600   case ISD::SHL:
19601   case ISD::SRL:
19602   case ISD::SUB:
19603   case ISD::ADD:
19604   case ISD::MUL:
19605   case ISD::AND:
19606   case ISD::OR:
19607   case ISD::XOR:
19608     return false;
19609   }
19610 }
19611
19612 /// IsDesirableToPromoteOp - This method query the target whether it is
19613 /// beneficial for dag combiner to promote the specified node. If true, it
19614 /// should return the desired promotion type by reference.
19615 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19616   EVT VT = Op.getValueType();
19617   if (VT != MVT::i16)
19618     return false;
19619
19620   bool Promote = false;
19621   bool Commute = false;
19622   switch (Op.getOpcode()) {
19623   default: break;
19624   case ISD::LOAD: {
19625     LoadSDNode *LD = cast<LoadSDNode>(Op);
19626     // If the non-extending load has a single use and it's not live out, then it
19627     // might be folded.
19628     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19629                                                      Op.hasOneUse()*/) {
19630       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19631              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19632         // The only case where we'd want to promote LOAD (rather then it being
19633         // promoted as an operand is when it's only use is liveout.
19634         if (UI->getOpcode() != ISD::CopyToReg)
19635           return false;
19636       }
19637     }
19638     Promote = true;
19639     break;
19640   }
19641   case ISD::SIGN_EXTEND:
19642   case ISD::ZERO_EXTEND:
19643   case ISD::ANY_EXTEND:
19644     Promote = true;
19645     break;
19646   case ISD::SHL:
19647   case ISD::SRL: {
19648     SDValue N0 = Op.getOperand(0);
19649     // Look out for (store (shl (load), x)).
19650     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19651       return false;
19652     Promote = true;
19653     break;
19654   }
19655   case ISD::ADD:
19656   case ISD::MUL:
19657   case ISD::AND:
19658   case ISD::OR:
19659   case ISD::XOR:
19660     Commute = true;
19661     // fallthrough
19662   case ISD::SUB: {
19663     SDValue N0 = Op.getOperand(0);
19664     SDValue N1 = Op.getOperand(1);
19665     if (!Commute && MayFoldLoad(N1))
19666       return false;
19667     // Avoid disabling potential load folding opportunities.
19668     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19669       return false;
19670     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19671       return false;
19672     Promote = true;
19673   }
19674   }
19675
19676   PVT = MVT::i32;
19677   return Promote;
19678 }
19679
19680 //===----------------------------------------------------------------------===//
19681 //                           X86 Inline Assembly Support
19682 //===----------------------------------------------------------------------===//
19683
19684 namespace {
19685   // Helper to match a string separated by whitespace.
19686   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19687     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19688
19689     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19690       StringRef piece(*args[i]);
19691       if (!s.startswith(piece)) // Check if the piece matches.
19692         return false;
19693
19694       s = s.substr(piece.size());
19695       StringRef::size_type pos = s.find_first_not_of(" \t");
19696       if (pos == 0) // We matched a prefix.
19697         return false;
19698
19699       s = s.substr(pos);
19700     }
19701
19702     return s.empty();
19703   }
19704   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19705 }
19706
19707 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19708
19709   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19710     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19711         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19712         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19713
19714       if (AsmPieces.size() == 3)
19715         return true;
19716       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19717         return true;
19718     }
19719   }
19720   return false;
19721 }
19722
19723 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19724   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19725
19726   std::string AsmStr = IA->getAsmString();
19727
19728   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19729   if (!Ty || Ty->getBitWidth() % 16 != 0)
19730     return false;
19731
19732   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19733   SmallVector<StringRef, 4> AsmPieces;
19734   SplitString(AsmStr, AsmPieces, ";\n");
19735
19736   switch (AsmPieces.size()) {
19737   default: return false;
19738   case 1:
19739     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19740     // we will turn this bswap into something that will be lowered to logical
19741     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19742     // lower so don't worry about this.
19743     // bswap $0
19744     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19745         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19746         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19747         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19748         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19749         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19750       // No need to check constraints, nothing other than the equivalent of
19751       // "=r,0" would be valid here.
19752       return IntrinsicLowering::LowerToByteSwap(CI);
19753     }
19754
19755     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19756     if (CI->getType()->isIntegerTy(16) &&
19757         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19758         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19759          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19760       AsmPieces.clear();
19761       const std::string &ConstraintsStr = IA->getConstraintString();
19762       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19763       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19764       if (clobbersFlagRegisters(AsmPieces))
19765         return IntrinsicLowering::LowerToByteSwap(CI);
19766     }
19767     break;
19768   case 3:
19769     if (CI->getType()->isIntegerTy(32) &&
19770         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19771         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19772         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19773         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19774       AsmPieces.clear();
19775       const std::string &ConstraintsStr = IA->getConstraintString();
19776       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19777       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19778       if (clobbersFlagRegisters(AsmPieces))
19779         return IntrinsicLowering::LowerToByteSwap(CI);
19780     }
19781
19782     if (CI->getType()->isIntegerTy(64)) {
19783       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19784       if (Constraints.size() >= 2 &&
19785           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19786           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19787         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19788         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19789             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19790             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19791           return IntrinsicLowering::LowerToByteSwap(CI);
19792       }
19793     }
19794     break;
19795   }
19796   return false;
19797 }
19798
19799 /// getConstraintType - Given a constraint letter, return the type of
19800 /// constraint it is for this target.
19801 X86TargetLowering::ConstraintType
19802 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19803   if (Constraint.size() == 1) {
19804     switch (Constraint[0]) {
19805     case 'R':
19806     case 'q':
19807     case 'Q':
19808     case 'f':
19809     case 't':
19810     case 'u':
19811     case 'y':
19812     case 'x':
19813     case 'Y':
19814     case 'l':
19815       return C_RegisterClass;
19816     case 'a':
19817     case 'b':
19818     case 'c':
19819     case 'd':
19820     case 'S':
19821     case 'D':
19822     case 'A':
19823       return C_Register;
19824     case 'I':
19825     case 'J':
19826     case 'K':
19827     case 'L':
19828     case 'M':
19829     case 'N':
19830     case 'G':
19831     case 'C':
19832     case 'e':
19833     case 'Z':
19834       return C_Other;
19835     default:
19836       break;
19837     }
19838   }
19839   return TargetLowering::getConstraintType(Constraint);
19840 }
19841
19842 /// Examine constraint type and operand type and determine a weight value.
19843 /// This object must already have been set up with the operand type
19844 /// and the current alternative constraint selected.
19845 TargetLowering::ConstraintWeight
19846   X86TargetLowering::getSingleConstraintMatchWeight(
19847     AsmOperandInfo &info, const char *constraint) const {
19848   ConstraintWeight weight = CW_Invalid;
19849   Value *CallOperandVal = info.CallOperandVal;
19850     // If we don't have a value, we can't do a match,
19851     // but allow it at the lowest weight.
19852   if (CallOperandVal == NULL)
19853     return CW_Default;
19854   Type *type = CallOperandVal->getType();
19855   // Look at the constraint type.
19856   switch (*constraint) {
19857   default:
19858     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19859   case 'R':
19860   case 'q':
19861   case 'Q':
19862   case 'a':
19863   case 'b':
19864   case 'c':
19865   case 'd':
19866   case 'S':
19867   case 'D':
19868   case 'A':
19869     if (CallOperandVal->getType()->isIntegerTy())
19870       weight = CW_SpecificReg;
19871     break;
19872   case 'f':
19873   case 't':
19874   case 'u':
19875     if (type->isFloatingPointTy())
19876       weight = CW_SpecificReg;
19877     break;
19878   case 'y':
19879     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19880       weight = CW_SpecificReg;
19881     break;
19882   case 'x':
19883   case 'Y':
19884     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19885         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19886       weight = CW_Register;
19887     break;
19888   case 'I':
19889     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19890       if (C->getZExtValue() <= 31)
19891         weight = CW_Constant;
19892     }
19893     break;
19894   case 'J':
19895     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19896       if (C->getZExtValue() <= 63)
19897         weight = CW_Constant;
19898     }
19899     break;
19900   case 'K':
19901     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19902       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19903         weight = CW_Constant;
19904     }
19905     break;
19906   case 'L':
19907     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19908       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19909         weight = CW_Constant;
19910     }
19911     break;
19912   case 'M':
19913     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19914       if (C->getZExtValue() <= 3)
19915         weight = CW_Constant;
19916     }
19917     break;
19918   case 'N':
19919     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19920       if (C->getZExtValue() <= 0xff)
19921         weight = CW_Constant;
19922     }
19923     break;
19924   case 'G':
19925   case 'C':
19926     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19927       weight = CW_Constant;
19928     }
19929     break;
19930   case 'e':
19931     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19932       if ((C->getSExtValue() >= -0x80000000LL) &&
19933           (C->getSExtValue() <= 0x7fffffffLL))
19934         weight = CW_Constant;
19935     }
19936     break;
19937   case 'Z':
19938     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19939       if (C->getZExtValue() <= 0xffffffff)
19940         weight = CW_Constant;
19941     }
19942     break;
19943   }
19944   return weight;
19945 }
19946
19947 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19948 /// with another that has more specific requirements based on the type of the
19949 /// corresponding operand.
19950 const char *X86TargetLowering::
19951 LowerXConstraint(EVT ConstraintVT) const {
19952   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19953   // 'f' like normal targets.
19954   if (ConstraintVT.isFloatingPoint()) {
19955     if (Subtarget->hasSSE2())
19956       return "Y";
19957     if (Subtarget->hasSSE1())
19958       return "x";
19959   }
19960
19961   return TargetLowering::LowerXConstraint(ConstraintVT);
19962 }
19963
19964 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19965 /// vector.  If it is invalid, don't add anything to Ops.
19966 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19967                                                      std::string &Constraint,
19968                                                      std::vector<SDValue>&Ops,
19969                                                      SelectionDAG &DAG) const {
19970   SDValue Result(0, 0);
19971
19972   // Only support length 1 constraints for now.
19973   if (Constraint.length() > 1) return;
19974
19975   char ConstraintLetter = Constraint[0];
19976   switch (ConstraintLetter) {
19977   default: break;
19978   case 'I':
19979     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19980       if (C->getZExtValue() <= 31) {
19981         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19982         break;
19983       }
19984     }
19985     return;
19986   case 'J':
19987     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19988       if (C->getZExtValue() <= 63) {
19989         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19990         break;
19991       }
19992     }
19993     return;
19994   case 'K':
19995     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19996       if (isInt<8>(C->getSExtValue())) {
19997         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19998         break;
19999       }
20000     }
20001     return;
20002   case 'N':
20003     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20004       if (C->getZExtValue() <= 255) {
20005         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20006         break;
20007       }
20008     }
20009     return;
20010   case 'e': {
20011     // 32-bit signed value
20012     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20013       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
20014                                            C->getSExtValue())) {
20015         // Widen to 64 bits here to get it sign extended.
20016         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
20017         break;
20018       }
20019     // FIXME gcc accepts some relocatable values here too, but only in certain
20020     // memory models; it's complicated.
20021     }
20022     return;
20023   }
20024   case 'Z': {
20025     // 32-bit unsigned value
20026     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
20027       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
20028                                            C->getZExtValue())) {
20029         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
20030         break;
20031       }
20032     }
20033     // FIXME gcc accepts some relocatable values here too, but only in certain
20034     // memory models; it's complicated.
20035     return;
20036   }
20037   case 'i': {
20038     // Literal immediates are always ok.
20039     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
20040       // Widen to 64 bits here to get it sign extended.
20041       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
20042       break;
20043     }
20044
20045     // In any sort of PIC mode addresses need to be computed at runtime by
20046     // adding in a register or some sort of table lookup.  These can't
20047     // be used as immediates.
20048     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
20049       return;
20050
20051     // If we are in non-pic codegen mode, we allow the address of a global (with
20052     // an optional displacement) to be used with 'i'.
20053     GlobalAddressSDNode *GA = 0;
20054     int64_t Offset = 0;
20055
20056     // Match either (GA), (GA+C), (GA+C1+C2), etc.
20057     while (1) {
20058       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
20059         Offset += GA->getOffset();
20060         break;
20061       } else if (Op.getOpcode() == ISD::ADD) {
20062         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
20063           Offset += C->getZExtValue();
20064           Op = Op.getOperand(0);
20065           continue;
20066         }
20067       } else if (Op.getOpcode() == ISD::SUB) {
20068         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
20069           Offset += -C->getZExtValue();
20070           Op = Op.getOperand(0);
20071           continue;
20072         }
20073       }
20074
20075       // Otherwise, this isn't something we can handle, reject it.
20076       return;
20077     }
20078
20079     const GlobalValue *GV = GA->getGlobal();
20080     // If we require an extra load to get this address, as in PIC mode, we
20081     // can't accept it.
20082     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
20083                                                         getTargetMachine())))
20084       return;
20085
20086     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
20087                                         GA->getValueType(0), Offset);
20088     break;
20089   }
20090   }
20091
20092   if (Result.getNode()) {
20093     Ops.push_back(Result);
20094     return;
20095   }
20096   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
20097 }
20098
20099 std::pair<unsigned, const TargetRegisterClass*>
20100 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
20101                                                 MVT VT) const {
20102   // First, see if this is a constraint that directly corresponds to an LLVM
20103   // register class.
20104   if (Constraint.size() == 1) {
20105     // GCC Constraint Letters
20106     switch (Constraint[0]) {
20107     default: break;
20108       // TODO: Slight differences here in allocation order and leaving
20109       // RIP in the class. Do they matter any more here than they do
20110       // in the normal allocation?
20111     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
20112       if (Subtarget->is64Bit()) {
20113         if (VT == MVT::i32 || VT == MVT::f32)
20114           return std::make_pair(0U, &X86::GR32RegClass);
20115         if (VT == MVT::i16)
20116           return std::make_pair(0U, &X86::GR16RegClass);
20117         if (VT == MVT::i8 || VT == MVT::i1)
20118           return std::make_pair(0U, &X86::GR8RegClass);
20119         if (VT == MVT::i64 || VT == MVT::f64)
20120           return std::make_pair(0U, &X86::GR64RegClass);
20121         break;
20122       }
20123       // 32-bit fallthrough
20124     case 'Q':   // Q_REGS
20125       if (VT == MVT::i32 || VT == MVT::f32)
20126         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
20127       if (VT == MVT::i16)
20128         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
20129       if (VT == MVT::i8 || VT == MVT::i1)
20130         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
20131       if (VT == MVT::i64)
20132         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
20133       break;
20134     case 'r':   // GENERAL_REGS
20135     case 'l':   // INDEX_REGS
20136       if (VT == MVT::i8 || VT == MVT::i1)
20137         return std::make_pair(0U, &X86::GR8RegClass);
20138       if (VT == MVT::i16)
20139         return std::make_pair(0U, &X86::GR16RegClass);
20140       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
20141         return std::make_pair(0U, &X86::GR32RegClass);
20142       return std::make_pair(0U, &X86::GR64RegClass);
20143     case 'R':   // LEGACY_REGS
20144       if (VT == MVT::i8 || VT == MVT::i1)
20145         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
20146       if (VT == MVT::i16)
20147         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
20148       if (VT == MVT::i32 || !Subtarget->is64Bit())
20149         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
20150       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
20151     case 'f':  // FP Stack registers.
20152       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
20153       // value to the correct fpstack register class.
20154       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
20155         return std::make_pair(0U, &X86::RFP32RegClass);
20156       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
20157         return std::make_pair(0U, &X86::RFP64RegClass);
20158       return std::make_pair(0U, &X86::RFP80RegClass);
20159     case 'y':   // MMX_REGS if MMX allowed.
20160       if (!Subtarget->hasMMX()) break;
20161       return std::make_pair(0U, &X86::VR64RegClass);
20162     case 'Y':   // SSE_REGS if SSE2 allowed
20163       if (!Subtarget->hasSSE2()) break;
20164       // FALL THROUGH.
20165     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
20166       if (!Subtarget->hasSSE1()) break;
20167
20168       switch (VT.SimpleTy) {
20169       default: break;
20170       // Scalar SSE types.
20171       case MVT::f32:
20172       case MVT::i32:
20173         return std::make_pair(0U, &X86::FR32RegClass);
20174       case MVT::f64:
20175       case MVT::i64:
20176         return std::make_pair(0U, &X86::FR64RegClass);
20177       // Vector types.
20178       case MVT::v16i8:
20179       case MVT::v8i16:
20180       case MVT::v4i32:
20181       case MVT::v2i64:
20182       case MVT::v4f32:
20183       case MVT::v2f64:
20184         return std::make_pair(0U, &X86::VR128RegClass);
20185       // AVX types.
20186       case MVT::v32i8:
20187       case MVT::v16i16:
20188       case MVT::v8i32:
20189       case MVT::v4i64:
20190       case MVT::v8f32:
20191       case MVT::v4f64:
20192         return std::make_pair(0U, &X86::VR256RegClass);
20193       case MVT::v8f64:
20194       case MVT::v16f32:
20195       case MVT::v16i32:
20196       case MVT::v8i64:
20197         return std::make_pair(0U, &X86::VR512RegClass);
20198       }
20199       break;
20200     }
20201   }
20202
20203   // Use the default implementation in TargetLowering to convert the register
20204   // constraint into a member of a register class.
20205   std::pair<unsigned, const TargetRegisterClass*> Res;
20206   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
20207
20208   // Not found as a standard register?
20209   if (Res.second == 0) {
20210     // Map st(0) -> st(7) -> ST0
20211     if (Constraint.size() == 7 && Constraint[0] == '{' &&
20212         tolower(Constraint[1]) == 's' &&
20213         tolower(Constraint[2]) == 't' &&
20214         Constraint[3] == '(' &&
20215         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
20216         Constraint[5] == ')' &&
20217         Constraint[6] == '}') {
20218
20219       Res.first = X86::ST0+Constraint[4]-'0';
20220       Res.second = &X86::RFP80RegClass;
20221       return Res;
20222     }
20223
20224     // GCC allows "st(0)" to be called just plain "st".
20225     if (StringRef("{st}").equals_lower(Constraint)) {
20226       Res.first = X86::ST0;
20227       Res.second = &X86::RFP80RegClass;
20228       return Res;
20229     }
20230
20231     // flags -> EFLAGS
20232     if (StringRef("{flags}").equals_lower(Constraint)) {
20233       Res.first = X86::EFLAGS;
20234       Res.second = &X86::CCRRegClass;
20235       return Res;
20236     }
20237
20238     // 'A' means EAX + EDX.
20239     if (Constraint == "A") {
20240       Res.first = X86::EAX;
20241       Res.second = &X86::GR32_ADRegClass;
20242       return Res;
20243     }
20244     return Res;
20245   }
20246
20247   // Otherwise, check to see if this is a register class of the wrong value
20248   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
20249   // turn into {ax},{dx}.
20250   if (Res.second->hasType(VT))
20251     return Res;   // Correct type already, nothing to do.
20252
20253   // All of the single-register GCC register classes map their values onto
20254   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
20255   // really want an 8-bit or 32-bit register, map to the appropriate register
20256   // class and return the appropriate register.
20257   if (Res.second == &X86::GR16RegClass) {
20258     if (VT == MVT::i8 || VT == MVT::i1) {
20259       unsigned DestReg = 0;
20260       switch (Res.first) {
20261       default: break;
20262       case X86::AX: DestReg = X86::AL; break;
20263       case X86::DX: DestReg = X86::DL; break;
20264       case X86::CX: DestReg = X86::CL; break;
20265       case X86::BX: DestReg = X86::BL; break;
20266       }
20267       if (DestReg) {
20268         Res.first = DestReg;
20269         Res.second = &X86::GR8RegClass;
20270       }
20271     } else if (VT == MVT::i32 || VT == MVT::f32) {
20272       unsigned DestReg = 0;
20273       switch (Res.first) {
20274       default: break;
20275       case X86::AX: DestReg = X86::EAX; break;
20276       case X86::DX: DestReg = X86::EDX; break;
20277       case X86::CX: DestReg = X86::ECX; break;
20278       case X86::BX: DestReg = X86::EBX; break;
20279       case X86::SI: DestReg = X86::ESI; break;
20280       case X86::DI: DestReg = X86::EDI; break;
20281       case X86::BP: DestReg = X86::EBP; break;
20282       case X86::SP: DestReg = X86::ESP; break;
20283       }
20284       if (DestReg) {
20285         Res.first = DestReg;
20286         Res.second = &X86::GR32RegClass;
20287       }
20288     } else if (VT == MVT::i64 || VT == MVT::f64) {
20289       unsigned DestReg = 0;
20290       switch (Res.first) {
20291       default: break;
20292       case X86::AX: DestReg = X86::RAX; break;
20293       case X86::DX: DestReg = X86::RDX; break;
20294       case X86::CX: DestReg = X86::RCX; break;
20295       case X86::BX: DestReg = X86::RBX; break;
20296       case X86::SI: DestReg = X86::RSI; break;
20297       case X86::DI: DestReg = X86::RDI; break;
20298       case X86::BP: DestReg = X86::RBP; break;
20299       case X86::SP: DestReg = X86::RSP; break;
20300       }
20301       if (DestReg) {
20302         Res.first = DestReg;
20303         Res.second = &X86::GR64RegClass;
20304       }
20305     }
20306   } else if (Res.second == &X86::FR32RegClass ||
20307              Res.second == &X86::FR64RegClass ||
20308              Res.second == &X86::VR128RegClass ||
20309              Res.second == &X86::VR256RegClass ||
20310              Res.second == &X86::FR32XRegClass ||
20311              Res.second == &X86::FR64XRegClass ||
20312              Res.second == &X86::VR128XRegClass ||
20313              Res.second == &X86::VR256XRegClass ||
20314              Res.second == &X86::VR512RegClass) {
20315     // Handle references to XMM physical registers that got mapped into the
20316     // wrong class.  This can happen with constraints like {xmm0} where the
20317     // target independent register mapper will just pick the first match it can
20318     // find, ignoring the required type.
20319
20320     if (VT == MVT::f32 || VT == MVT::i32)
20321       Res.second = &X86::FR32RegClass;
20322     else if (VT == MVT::f64 || VT == MVT::i64)
20323       Res.second = &X86::FR64RegClass;
20324     else if (X86::VR128RegClass.hasType(VT))
20325       Res.second = &X86::VR128RegClass;
20326     else if (X86::VR256RegClass.hasType(VT))
20327       Res.second = &X86::VR256RegClass;
20328     else if (X86::VR512RegClass.hasType(VT))
20329       Res.second = &X86::VR512RegClass;
20330   }
20331
20332   return Res;
20333 }