WinCOFF: Transform IR expressions featuring __ImageBase into image relative relocations
[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, bool *Fast) const {
1675   if (Fast)
1676     *Fast = Subtarget->isUnalignedMemAccessFast();
1677   return true;
1678 }
1679
1680 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1681 /// current function.  The returned value is a member of the
1682 /// MachineJumpTableInfo::JTEntryKind enum.
1683 unsigned X86TargetLowering::getJumpTableEncoding() const {
1684   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1685   // symbol.
1686   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1687       Subtarget->isPICStyleGOT())
1688     return MachineJumpTableInfo::EK_Custom32;
1689
1690   // Otherwise, use the normal jump table encoding heuristics.
1691   return TargetLowering::getJumpTableEncoding();
1692 }
1693
1694 const MCExpr *
1695 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1696                                              const MachineBasicBlock *MBB,
1697                                              unsigned uid,MCContext &Ctx) const{
1698   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1699          Subtarget->isPICStyleGOT());
1700   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1701   // entries.
1702   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1703                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1704 }
1705
1706 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1707 /// jumptable.
1708 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1709                                                     SelectionDAG &DAG) const {
1710   if (!Subtarget->is64Bit())
1711     // This doesn't have SDLoc associated with it, but is not really the
1712     // same as a Register.
1713     return DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy());
1714   return Table;
1715 }
1716
1717 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1718 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1719 /// MCExpr.
1720 const MCExpr *X86TargetLowering::
1721 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1722                              MCContext &Ctx) const {
1723   // X86-64 uses RIP relative addressing based on the jump table label.
1724   if (Subtarget->isPICStyleRIPRel())
1725     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1726
1727   // Otherwise, the reference is relative to the PIC base.
1728   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1729 }
1730
1731 // FIXME: Why this routine is here? Move to RegInfo!
1732 std::pair<const TargetRegisterClass*, uint8_t>
1733 X86TargetLowering::findRepresentativeClass(MVT VT) const{
1734   const TargetRegisterClass *RRC = 0;
1735   uint8_t Cost = 1;
1736   switch (VT.SimpleTy) {
1737   default:
1738     return TargetLowering::findRepresentativeClass(VT);
1739   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1740     RRC = Subtarget->is64Bit() ?
1741       (const TargetRegisterClass*)&X86::GR64RegClass :
1742       (const TargetRegisterClass*)&X86::GR32RegClass;
1743     break;
1744   case MVT::x86mmx:
1745     RRC = &X86::VR64RegClass;
1746     break;
1747   case MVT::f32: case MVT::f64:
1748   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1749   case MVT::v4f32: case MVT::v2f64:
1750   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1751   case MVT::v4f64:
1752     RRC = &X86::VR128RegClass;
1753     break;
1754   }
1755   return std::make_pair(RRC, Cost);
1756 }
1757
1758 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1759                                                unsigned &Offset) const {
1760   if (!Subtarget->isTargetLinux())
1761     return false;
1762
1763   if (Subtarget->is64Bit()) {
1764     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1765     Offset = 0x28;
1766     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1767       AddressSpace = 256;
1768     else
1769       AddressSpace = 257;
1770   } else {
1771     // %gs:0x14 on i386
1772     Offset = 0x14;
1773     AddressSpace = 256;
1774   }
1775   return true;
1776 }
1777
1778 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1779                                             unsigned DestAS) const {
1780   assert(SrcAS != DestAS && "Expected different address spaces!");
1781
1782   return SrcAS < 256 && DestAS < 256;
1783 }
1784
1785 //===----------------------------------------------------------------------===//
1786 //               Return Value Calling Convention Implementation
1787 //===----------------------------------------------------------------------===//
1788
1789 #include "X86GenCallingConv.inc"
1790
1791 bool
1792 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1793                                   MachineFunction &MF, bool isVarArg,
1794                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1795                         LLVMContext &Context) const {
1796   SmallVector<CCValAssign, 16> RVLocs;
1797   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1798                  RVLocs, Context);
1799   return CCInfo.CheckReturn(Outs, RetCC_X86);
1800 }
1801
1802 const uint16_t *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1803   static const uint16_t ScratchRegs[] = { X86::R11, 0 };
1804   return ScratchRegs;
1805 }
1806
1807 SDValue
1808 X86TargetLowering::LowerReturn(SDValue Chain,
1809                                CallingConv::ID CallConv, bool isVarArg,
1810                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1811                                const SmallVectorImpl<SDValue> &OutVals,
1812                                SDLoc dl, SelectionDAG &DAG) const {
1813   MachineFunction &MF = DAG.getMachineFunction();
1814   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1815
1816   SmallVector<CCValAssign, 16> RVLocs;
1817   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1818                  RVLocs, *DAG.getContext());
1819   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1820
1821   SDValue Flag;
1822   SmallVector<SDValue, 6> RetOps;
1823   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1824   // Operand #1 = Bytes To Pop
1825   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1826                    MVT::i16));
1827
1828   // Copy the result values into the output registers.
1829   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1830     CCValAssign &VA = RVLocs[i];
1831     assert(VA.isRegLoc() && "Can only return in registers!");
1832     SDValue ValToCopy = OutVals[i];
1833     EVT ValVT = ValToCopy.getValueType();
1834
1835     // Promote values to the appropriate types
1836     if (VA.getLocInfo() == CCValAssign::SExt)
1837       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1838     else if (VA.getLocInfo() == CCValAssign::ZExt)
1839       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1840     else if (VA.getLocInfo() == CCValAssign::AExt)
1841       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1842     else if (VA.getLocInfo() == CCValAssign::BCvt)
1843       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1844
1845     assert(VA.getLocInfo() != CCValAssign::FPExt &&
1846            "Unexpected FP-extend for return value.");  
1847
1848     // If this is x86-64, and we disabled SSE, we can't return FP values,
1849     // or SSE or MMX vectors.
1850     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1851          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1852           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1853       report_fatal_error("SSE register return with SSE disabled");
1854     }
1855     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1856     // llvm-gcc has never done it right and no one has noticed, so this
1857     // should be OK for now.
1858     if (ValVT == MVT::f64 &&
1859         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1860       report_fatal_error("SSE2 register return with SSE2 disabled");
1861
1862     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1863     // the RET instruction and handled by the FP Stackifier.
1864     if (VA.getLocReg() == X86::ST0 ||
1865         VA.getLocReg() == X86::ST1) {
1866       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1867       // change the value to the FP stack register class.
1868       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1869         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1870       RetOps.push_back(ValToCopy);
1871       // Don't emit a copytoreg.
1872       continue;
1873     }
1874
1875     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1876     // which is returned in RAX / RDX.
1877     if (Subtarget->is64Bit()) {
1878       if (ValVT == MVT::x86mmx) {
1879         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1880           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1881           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1882                                   ValToCopy);
1883           // If we don't have SSE2 available, convert to v4f32 so the generated
1884           // register is legal.
1885           if (!Subtarget->hasSSE2())
1886             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1887         }
1888       }
1889     }
1890
1891     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1892     Flag = Chain.getValue(1);
1893     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
1894   }
1895
1896   // The x86-64 ABIs require that for returning structs by value we copy
1897   // the sret argument into %rax/%eax (depending on ABI) for the return.
1898   // Win32 requires us to put the sret argument to %eax as well.
1899   // We saved the argument into a virtual register in the entry block,
1900   // so now we copy the value out and into %rax/%eax.
1901   if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1902       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
1903     MachineFunction &MF = DAG.getMachineFunction();
1904     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1905     unsigned Reg = FuncInfo->getSRetReturnReg();
1906     assert(Reg &&
1907            "SRetReturnReg should have been set in LowerFormalArguments().");
1908     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1909
1910     unsigned RetValReg
1911         = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1912           X86::RAX : X86::EAX;
1913     Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
1914     Flag = Chain.getValue(1);
1915
1916     // RAX/EAX now acts like a return value.
1917     RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
1918   }
1919
1920   RetOps[0] = Chain;  // Update chain.
1921
1922   // Add the flag if we have it.
1923   if (Flag.getNode())
1924     RetOps.push_back(Flag);
1925
1926   return DAG.getNode(X86ISD::RET_FLAG, dl,
1927                      MVT::Other, &RetOps[0], RetOps.size());
1928 }
1929
1930 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1931   if (N->getNumValues() != 1)
1932     return false;
1933   if (!N->hasNUsesOfValue(1, 0))
1934     return false;
1935
1936   SDValue TCChain = Chain;
1937   SDNode *Copy = *N->use_begin();
1938   if (Copy->getOpcode() == ISD::CopyToReg) {
1939     // If the copy has a glue operand, we conservatively assume it isn't safe to
1940     // perform a tail call.
1941     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1942       return false;
1943     TCChain = Copy->getOperand(0);
1944   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1945     return false;
1946
1947   bool HasRet = false;
1948   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1949        UI != UE; ++UI) {
1950     if (UI->getOpcode() != X86ISD::RET_FLAG)
1951       return false;
1952     HasRet = true;
1953   }
1954
1955   if (!HasRet)
1956     return false;
1957
1958   Chain = TCChain;
1959   return true;
1960 }
1961
1962 MVT
1963 X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
1964                                             ISD::NodeType ExtendKind) const {
1965   MVT ReturnMVT;
1966   // TODO: Is this also valid on 32-bit?
1967   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1968     ReturnMVT = MVT::i8;
1969   else
1970     ReturnMVT = MVT::i32;
1971
1972   MVT MinVT = getRegisterType(ReturnMVT);
1973   return VT.bitsLT(MinVT) ? MinVT : VT;
1974 }
1975
1976 /// LowerCallResult - Lower the result values of a call into the
1977 /// appropriate copies out of appropriate physical registers.
1978 ///
1979 SDValue
1980 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1981                                    CallingConv::ID CallConv, bool isVarArg,
1982                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1983                                    SDLoc dl, SelectionDAG &DAG,
1984                                    SmallVectorImpl<SDValue> &InVals) const {
1985
1986   // Assign locations to each value returned by this call.
1987   SmallVector<CCValAssign, 16> RVLocs;
1988   bool Is64Bit = Subtarget->is64Bit();
1989   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1990                  getTargetMachine(), RVLocs, *DAG.getContext());
1991   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1992
1993   // Copy all of the result registers out of their specified physreg.
1994   for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
1995     CCValAssign &VA = RVLocs[i];
1996     EVT CopyVT = VA.getValVT();
1997
1998     // If this is x86-64, and we disabled SSE, we can't return FP values
1999     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
2000         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
2001       report_fatal_error("SSE register return with SSE disabled");
2002     }
2003
2004     SDValue Val;
2005
2006     // If this is a call to a function that returns an fp value on the floating
2007     // point stack, we must guarantee the value is popped from the stack, so
2008     // a CopyFromReg is not good enough - the copy instruction may be eliminated
2009     // if the return value is not used. We use the FpPOP_RETVAL instruction
2010     // instead.
2011     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
2012       // If we prefer to use the value in xmm registers, copy it out as f80 and
2013       // use a truncate to move it from fp stack reg to xmm reg.
2014       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
2015       SDValue Ops[] = { Chain, InFlag };
2016       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
2017                                          MVT::Other, MVT::Glue, Ops), 1);
2018       Val = Chain.getValue(0);
2019
2020       // Round the f80 to the right size, which also moves it to the appropriate
2021       // xmm register.
2022       if (CopyVT != VA.getValVT())
2023         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2024                           // This truncation won't change the value.
2025                           DAG.getIntPtrConstant(1));
2026     } else {
2027       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2028                                  CopyVT, InFlag).getValue(1);
2029       Val = Chain.getValue(0);
2030     }
2031     InFlag = Chain.getValue(2);
2032     InVals.push_back(Val);
2033   }
2034
2035   return Chain;
2036 }
2037
2038 //===----------------------------------------------------------------------===//
2039 //                C & StdCall & Fast Calling Convention implementation
2040 //===----------------------------------------------------------------------===//
2041 //  StdCall calling convention seems to be standard for many Windows' API
2042 //  routines and around. It differs from C calling convention just a little:
2043 //  callee should clean up the stack, not caller. Symbols should be also
2044 //  decorated in some fancy way :) It doesn't support any vector arguments.
2045 //  For info on fast calling convention see Fast Calling Convention (tail call)
2046 //  implementation LowerX86_32FastCCCallTo.
2047
2048 /// CallIsStructReturn - Determines whether a call uses struct return
2049 /// semantics.
2050 enum StructReturnType {
2051   NotStructReturn,
2052   RegStructReturn,
2053   StackStructReturn
2054 };
2055 static StructReturnType
2056 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
2057   if (Outs.empty())
2058     return NotStructReturn;
2059
2060   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2061   if (!Flags.isSRet())
2062     return NotStructReturn;
2063   if (Flags.isInReg())
2064     return RegStructReturn;
2065   return StackStructReturn;
2066 }
2067
2068 /// ArgsAreStructReturn - Determines whether a function uses struct
2069 /// return semantics.
2070 static StructReturnType
2071 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
2072   if (Ins.empty())
2073     return NotStructReturn;
2074
2075   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2076   if (!Flags.isSRet())
2077     return NotStructReturn;
2078   if (Flags.isInReg())
2079     return RegStructReturn;
2080   return StackStructReturn;
2081 }
2082
2083 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2084 /// by "Src" to address "Dst" with size and alignment information specified by
2085 /// the specific parameter attribute. The copy will be passed as a byval
2086 /// function parameter.
2087 static SDValue
2088 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
2089                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
2090                           SDLoc dl) {
2091   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
2092
2093   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
2094                        /*isVolatile*/false, /*AlwaysInline=*/true,
2095                        MachinePointerInfo(), MachinePointerInfo());
2096 }
2097
2098 /// IsTailCallConvention - Return true if the calling convention is one that
2099 /// supports tail call optimization.
2100 static bool IsTailCallConvention(CallingConv::ID CC) {
2101   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2102           CC == CallingConv::HiPE);
2103 }
2104
2105 /// \brief Return true if the calling convention is a C calling convention.
2106 static bool IsCCallConvention(CallingConv::ID CC) {
2107   return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2108           CC == CallingConv::X86_64_SysV);
2109 }
2110
2111 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
2112   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
2113     return false;
2114
2115   CallSite CS(CI);
2116   CallingConv::ID CalleeCC = CS.getCallingConv();
2117   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
2118     return false;
2119
2120   return true;
2121 }
2122
2123 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
2124 /// a tailcall target by changing its ABI.
2125 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2126                                    bool GuaranteedTailCallOpt) {
2127   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
2128 }
2129
2130 SDValue
2131 X86TargetLowering::LowerMemArgument(SDValue Chain,
2132                                     CallingConv::ID CallConv,
2133                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2134                                     SDLoc dl, SelectionDAG &DAG,
2135                                     const CCValAssign &VA,
2136                                     MachineFrameInfo *MFI,
2137                                     unsigned i) const {
2138   // Create the nodes corresponding to a load from this parameter slot.
2139   ISD::ArgFlagsTy Flags = Ins[i].Flags;
2140   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2141                               getTargetMachine().Options.GuaranteedTailCallOpt);
2142   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
2143   EVT ValVT;
2144
2145   // If value is passed by pointer we have address passed instead of the value
2146   // itself.
2147   if (VA.getLocInfo() == CCValAssign::Indirect)
2148     ValVT = VA.getLocVT();
2149   else
2150     ValVT = VA.getValVT();
2151
2152   // FIXME: For now, all byval parameter objects are marked mutable. This can be
2153   // changed with more analysis.
2154   // In case of tail call optimization mark all arguments mutable. Since they
2155   // could be overwritten by lowering of arguments in case of a tail call.
2156   if (Flags.isByVal()) {
2157     unsigned Bytes = Flags.getByValSize();
2158     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2159     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
2160     return DAG.getFrameIndex(FI, getPointerTy());
2161   } else {
2162     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
2163                                     VA.getLocMemOffset(), isImmutable);
2164     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2165     return DAG.getLoad(ValVT, dl, Chain, FIN,
2166                        MachinePointerInfo::getFixedStack(FI),
2167                        false, false, false, 0);
2168   }
2169 }
2170
2171 SDValue
2172 X86TargetLowering::LowerFormalArguments(SDValue Chain,
2173                                         CallingConv::ID CallConv,
2174                                         bool isVarArg,
2175                                       const SmallVectorImpl<ISD::InputArg> &Ins,
2176                                         SDLoc dl,
2177                                         SelectionDAG &DAG,
2178                                         SmallVectorImpl<SDValue> &InVals)
2179                                           const {
2180   MachineFunction &MF = DAG.getMachineFunction();
2181   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2182
2183   const Function* Fn = MF.getFunction();
2184   if (Fn->hasExternalLinkage() &&
2185       Subtarget->isTargetCygMing() &&
2186       Fn->getName() == "main")
2187     FuncInfo->setForceFramePointer(true);
2188
2189   MachineFrameInfo *MFI = MF.getFrameInfo();
2190   bool Is64Bit = Subtarget->is64Bit();
2191   bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
2192
2193   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2194          "Var args not supported with calling convention fastcc, ghc or hipe");
2195
2196   // Assign locations to all of the incoming arguments.
2197   SmallVector<CCValAssign, 16> ArgLocs;
2198   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2199                  ArgLocs, *DAG.getContext());
2200
2201   // Allocate shadow area for Win64
2202   if (IsWin64)
2203     CCInfo.AllocateStack(32, 8);
2204
2205   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
2206
2207   unsigned LastVal = ~0U;
2208   SDValue ArgValue;
2209   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2210     CCValAssign &VA = ArgLocs[i];
2211     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2212     // places.
2213     assert(VA.getValNo() != LastVal &&
2214            "Don't support value assigned to multiple locs yet");
2215     (void)LastVal;
2216     LastVal = VA.getValNo();
2217
2218     if (VA.isRegLoc()) {
2219       EVT RegVT = VA.getLocVT();
2220       const TargetRegisterClass *RC;
2221       if (RegVT == MVT::i32)
2222         RC = &X86::GR32RegClass;
2223       else if (Is64Bit && RegVT == MVT::i64)
2224         RC = &X86::GR64RegClass;
2225       else if (RegVT == MVT::f32)
2226         RC = &X86::FR32RegClass;
2227       else if (RegVT == MVT::f64)
2228         RC = &X86::FR64RegClass;
2229       else if (RegVT.is512BitVector())
2230         RC = &X86::VR512RegClass;
2231       else if (RegVT.is256BitVector())
2232         RC = &X86::VR256RegClass;
2233       else if (RegVT.is128BitVector())
2234         RC = &X86::VR128RegClass;
2235       else if (RegVT == MVT::x86mmx)
2236         RC = &X86::VR64RegClass;
2237       else if (RegVT == MVT::i1)
2238         RC = &X86::VK1RegClass;
2239       else if (RegVT == MVT::v8i1)
2240         RC = &X86::VK8RegClass;
2241       else if (RegVT == MVT::v16i1)
2242         RC = &X86::VK16RegClass;
2243       else
2244         llvm_unreachable("Unknown argument type!");
2245
2246       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
2247       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
2248
2249       // If this is an 8 or 16-bit value, it is really passed promoted to 32
2250       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
2251       // right size.
2252       if (VA.getLocInfo() == CCValAssign::SExt)
2253         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
2254                                DAG.getValueType(VA.getValVT()));
2255       else if (VA.getLocInfo() == CCValAssign::ZExt)
2256         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
2257                                DAG.getValueType(VA.getValVT()));
2258       else if (VA.getLocInfo() == CCValAssign::BCvt)
2259         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
2260
2261       if (VA.isExtInLoc()) {
2262         // Handle MMX values passed in XMM regs.
2263         if (RegVT.isVector())
2264           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2265         else
2266           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
2267       }
2268     } else {
2269       assert(VA.isMemLoc());
2270       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
2271     }
2272
2273     // If value is passed via pointer - do a load.
2274     if (VA.getLocInfo() == CCValAssign::Indirect)
2275       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
2276                              MachinePointerInfo(), false, false, false, 0);
2277
2278     InVals.push_back(ArgValue);
2279   }
2280
2281   // The x86-64 ABIs require that for returning structs by value we copy
2282   // the sret argument into %rax/%eax (depending on ABI) for the return.
2283   // Win32 requires us to put the sret argument to %eax as well.
2284   // Save the argument into a virtual register so that we can access it
2285   // from the return points.
2286   if (MF.getFunction()->hasStructRetAttr() &&
2287       (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
2288     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2289     unsigned Reg = FuncInfo->getSRetReturnReg();
2290     if (!Reg) {
2291       MVT PtrTy = getPointerTy();
2292       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
2293       FuncInfo->setSRetReturnReg(Reg);
2294     }
2295     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2296     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2297   }
2298
2299   unsigned StackSize = CCInfo.getNextStackOffset();
2300   // Align stack specially for tail calls.
2301   if (FuncIsMadeTailCallSafe(CallConv,
2302                              MF.getTarget().Options.GuaranteedTailCallOpt))
2303     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2304
2305   // If the function takes variable number of arguments, make a frame index for
2306   // the start of the first vararg value... for expansion of llvm.va_start.
2307   if (isVarArg) {
2308     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2309                     CallConv != CallingConv::X86_ThisCall)) {
2310       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2311     }
2312     if (Is64Bit) {
2313       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2314
2315       // FIXME: We should really autogenerate these arrays
2316       static const uint16_t GPR64ArgRegsWin64[] = {
2317         X86::RCX, X86::RDX, X86::R8,  X86::R9
2318       };
2319       static const uint16_t GPR64ArgRegs64Bit[] = {
2320         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2321       };
2322       static const uint16_t XMMArgRegs64Bit[] = {
2323         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2324         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2325       };
2326       const uint16_t *GPR64ArgRegs;
2327       unsigned NumXMMRegs = 0;
2328
2329       if (IsWin64) {
2330         // The XMM registers which might contain var arg parameters are shadowed
2331         // in their paired GPR.  So we only need to save the GPR to their home
2332         // slots.
2333         TotalNumIntRegs = 4;
2334         GPR64ArgRegs = GPR64ArgRegsWin64;
2335       } else {
2336         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2337         GPR64ArgRegs = GPR64ArgRegs64Bit;
2338
2339         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2340                                                 TotalNumXMMRegs);
2341       }
2342       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2343                                                        TotalNumIntRegs);
2344
2345       bool NoImplicitFloatOps = Fn->getAttributes().
2346         hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
2347       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2348              "SSE register cannot be used when SSE is disabled!");
2349       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2350                NoImplicitFloatOps) &&
2351              "SSE register cannot be used when SSE is disabled!");
2352       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2353           !Subtarget->hasSSE1())
2354         // Kernel mode asks for SSE to be disabled, so don't push them
2355         // on the stack.
2356         TotalNumXMMRegs = 0;
2357
2358       if (IsWin64) {
2359         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2360         // Get to the caller-allocated home save location.  Add 8 to account
2361         // for the return address.
2362         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2363         FuncInfo->setRegSaveFrameIndex(
2364           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2365         // Fixup to set vararg frame on shadow area (4 x i64).
2366         if (NumIntRegs < 4)
2367           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2368       } else {
2369         // For X86-64, if there are vararg parameters that are passed via
2370         // registers, then we must store them to their spots on the stack so
2371         // they may be loaded by deferencing the result of va_next.
2372         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2373         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2374         FuncInfo->setRegSaveFrameIndex(
2375           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2376                                false));
2377       }
2378
2379       // Store the integer parameter registers.
2380       SmallVector<SDValue, 8> MemOps;
2381       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2382                                         getPointerTy());
2383       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2384       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2385         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2386                                   DAG.getIntPtrConstant(Offset));
2387         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2388                                      &X86::GR64RegClass);
2389         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2390         SDValue Store =
2391           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2392                        MachinePointerInfo::getFixedStack(
2393                          FuncInfo->getRegSaveFrameIndex(), Offset),
2394                        false, false, 0);
2395         MemOps.push_back(Store);
2396         Offset += 8;
2397       }
2398
2399       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2400         // Now store the XMM (fp + vector) parameter registers.
2401         SmallVector<SDValue, 11> SaveXMMOps;
2402         SaveXMMOps.push_back(Chain);
2403
2404         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2405         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2406         SaveXMMOps.push_back(ALVal);
2407
2408         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2409                                FuncInfo->getRegSaveFrameIndex()));
2410         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2411                                FuncInfo->getVarArgsFPOffset()));
2412
2413         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2414           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2415                                        &X86::VR128RegClass);
2416           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2417           SaveXMMOps.push_back(Val);
2418         }
2419         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2420                                      MVT::Other,
2421                                      &SaveXMMOps[0], SaveXMMOps.size()));
2422       }
2423
2424       if (!MemOps.empty())
2425         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2426                             &MemOps[0], MemOps.size());
2427     }
2428   }
2429
2430   // Some CCs need callee pop.
2431   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2432                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2433     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2434   } else {
2435     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2436     // If this is an sret function, the return should pop the hidden pointer.
2437     if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2438         !Subtarget->getTargetTriple().isOSMSVCRT() &&
2439         argsAreStructReturn(Ins) == StackStructReturn)
2440       FuncInfo->setBytesToPopOnReturn(4);
2441   }
2442
2443   if (!Is64Bit) {
2444     // RegSaveFrameIndex is X86-64 only.
2445     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2446     if (CallConv == CallingConv::X86_FastCall ||
2447         CallConv == CallingConv::X86_ThisCall)
2448       // fastcc functions can't have varargs.
2449       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2450   }
2451
2452   FuncInfo->setArgumentStackSize(StackSize);
2453
2454   return Chain;
2455 }
2456
2457 SDValue
2458 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2459                                     SDValue StackPtr, SDValue Arg,
2460                                     SDLoc dl, SelectionDAG &DAG,
2461                                     const CCValAssign &VA,
2462                                     ISD::ArgFlagsTy Flags) const {
2463   unsigned LocMemOffset = VA.getLocMemOffset();
2464   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2465   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2466   if (Flags.isByVal())
2467     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2468
2469   return DAG.getStore(Chain, dl, Arg, PtrOff,
2470                       MachinePointerInfo::getStack(LocMemOffset),
2471                       false, false, 0);
2472 }
2473
2474 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2475 /// optimization is performed and it is required.
2476 SDValue
2477 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2478                                            SDValue &OutRetAddr, SDValue Chain,
2479                                            bool IsTailCall, bool Is64Bit,
2480                                            int FPDiff, SDLoc dl) const {
2481   // Adjust the Return address stack slot.
2482   EVT VT = getPointerTy();
2483   OutRetAddr = getReturnAddressFrameIndex(DAG);
2484
2485   // Load the "old" Return address.
2486   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2487                            false, false, false, 0);
2488   return SDValue(OutRetAddr.getNode(), 1);
2489 }
2490
2491 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2492 /// optimization is performed and it is required (FPDiff!=0).
2493 static SDValue
2494 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2495                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2496                          unsigned SlotSize, int FPDiff, SDLoc dl) {
2497   // Store the return address to the appropriate stack slot.
2498   if (!FPDiff) return Chain;
2499   // Calculate the new stack slot for the return address.
2500   int NewReturnAddrFI =
2501     MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2502                                          false);
2503   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2504   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2505                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2506                        false, false, 0);
2507   return Chain;
2508 }
2509
2510 SDValue
2511 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2512                              SmallVectorImpl<SDValue> &InVals) const {
2513   SelectionDAG &DAG                     = CLI.DAG;
2514   SDLoc &dl                             = CLI.DL;
2515   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2516   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
2517   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
2518   SDValue Chain                         = CLI.Chain;
2519   SDValue Callee                        = CLI.Callee;
2520   CallingConv::ID CallConv              = CLI.CallConv;
2521   bool &isTailCall                      = CLI.IsTailCall;
2522   bool isVarArg                         = CLI.IsVarArg;
2523
2524   MachineFunction &MF = DAG.getMachineFunction();
2525   bool Is64Bit        = Subtarget->is64Bit();
2526   bool IsWin64        = Subtarget->isCallingConvWin64(CallConv);
2527   StructReturnType SR = callIsStructReturn(Outs);
2528   bool IsSibcall      = false;
2529
2530   if (MF.getTarget().Options.DisableTailCalls)
2531     isTailCall = false;
2532
2533   if (isTailCall) {
2534     // Check if it's really possible to do a tail call.
2535     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2536                     isVarArg, SR != NotStructReturn,
2537                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2538                     Outs, OutVals, Ins, DAG);
2539
2540     // Sibcalls are automatically detected tailcalls which do not require
2541     // ABI changes.
2542     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2543       IsSibcall = true;
2544
2545     if (isTailCall)
2546       ++NumTailCalls;
2547   }
2548
2549   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2550          "Var args not supported with calling convention fastcc, ghc or hipe");
2551
2552   // Analyze operands of the call, assigning locations to each operand.
2553   SmallVector<CCValAssign, 16> ArgLocs;
2554   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2555                  ArgLocs, *DAG.getContext());
2556
2557   // Allocate shadow area for Win64
2558   if (IsWin64)
2559     CCInfo.AllocateStack(32, 8);
2560
2561   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2562
2563   // Get a count of how many bytes are to be pushed on the stack.
2564   unsigned NumBytes = CCInfo.getNextStackOffset();
2565   if (IsSibcall)
2566     // This is a sibcall. The memory operands are available in caller's
2567     // own caller's stack.
2568     NumBytes = 0;
2569   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2570            IsTailCallConvention(CallConv))
2571     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2572
2573   int FPDiff = 0;
2574   if (isTailCall && !IsSibcall) {
2575     // Lower arguments at fp - stackoffset + fpdiff.
2576     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2577     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2578
2579     FPDiff = NumBytesCallerPushed - NumBytes;
2580
2581     // Set the delta of movement of the returnaddr stackslot.
2582     // But only set if delta is greater than previous delta.
2583     if (FPDiff < X86Info->getTCReturnAddrDelta())
2584       X86Info->setTCReturnAddrDelta(FPDiff);
2585   }
2586
2587   if (!IsSibcall)
2588     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2589                                  dl);
2590
2591   SDValue RetAddrFrIdx;
2592   // Load return address for tail calls.
2593   if (isTailCall && FPDiff)
2594     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2595                                     Is64Bit, FPDiff, dl);
2596
2597   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2598   SmallVector<SDValue, 8> MemOpChains;
2599   SDValue StackPtr;
2600
2601   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2602   // of tail call optimization arguments are handle later.
2603   const X86RegisterInfo *RegInfo =
2604     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
2605   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2606     CCValAssign &VA = ArgLocs[i];
2607     EVT RegVT = VA.getLocVT();
2608     SDValue Arg = OutVals[i];
2609     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2610     bool isByVal = Flags.isByVal();
2611
2612     // Promote the value if needed.
2613     switch (VA.getLocInfo()) {
2614     default: llvm_unreachable("Unknown loc info!");
2615     case CCValAssign::Full: break;
2616     case CCValAssign::SExt:
2617       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2618       break;
2619     case CCValAssign::ZExt:
2620       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2621       break;
2622     case CCValAssign::AExt:
2623       if (RegVT.is128BitVector()) {
2624         // Special case: passing MMX values in XMM registers.
2625         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2626         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2627         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2628       } else
2629         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2630       break;
2631     case CCValAssign::BCvt:
2632       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2633       break;
2634     case CCValAssign::Indirect: {
2635       // Store the argument.
2636       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2637       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2638       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2639                            MachinePointerInfo::getFixedStack(FI),
2640                            false, false, 0);
2641       Arg = SpillSlot;
2642       break;
2643     }
2644     }
2645
2646     if (VA.isRegLoc()) {
2647       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2648       if (isVarArg && IsWin64) {
2649         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2650         // shadow reg if callee is a varargs function.
2651         unsigned ShadowReg = 0;
2652         switch (VA.getLocReg()) {
2653         case X86::XMM0: ShadowReg = X86::RCX; break;
2654         case X86::XMM1: ShadowReg = X86::RDX; break;
2655         case X86::XMM2: ShadowReg = X86::R8; break;
2656         case X86::XMM3: ShadowReg = X86::R9; break;
2657         }
2658         if (ShadowReg)
2659           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2660       }
2661     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2662       assert(VA.isMemLoc());
2663       if (StackPtr.getNode() == 0)
2664         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2665                                       getPointerTy());
2666       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2667                                              dl, DAG, VA, Flags));
2668     }
2669   }
2670
2671   if (!MemOpChains.empty())
2672     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2673                         &MemOpChains[0], MemOpChains.size());
2674
2675   if (Subtarget->isPICStyleGOT()) {
2676     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2677     // GOT pointer.
2678     if (!isTailCall) {
2679       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2680                DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
2681     } else {
2682       // If we are tail calling and generating PIC/GOT style code load the
2683       // address of the callee into ECX. The value in ecx is used as target of
2684       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2685       // for tail calls on PIC/GOT architectures. Normally we would just put the
2686       // address of GOT into ebx and then call target@PLT. But for tail calls
2687       // ebx would be restored (since ebx is callee saved) before jumping to the
2688       // target@PLT.
2689
2690       // Note: The actual moving to ECX is done further down.
2691       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2692       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2693           !G->getGlobal()->hasProtectedVisibility())
2694         Callee = LowerGlobalAddress(Callee, DAG);
2695       else if (isa<ExternalSymbolSDNode>(Callee))
2696         Callee = LowerExternalSymbol(Callee, DAG);
2697     }
2698   }
2699
2700   if (Is64Bit && isVarArg && !IsWin64) {
2701     // From AMD64 ABI document:
2702     // For calls that may call functions that use varargs or stdargs
2703     // (prototype-less calls or calls to functions containing ellipsis (...) in
2704     // the declaration) %al is used as hidden argument to specify the number
2705     // of SSE registers used. The contents of %al do not need to match exactly
2706     // the number of registers, but must be an ubound on the number of SSE
2707     // registers used and is in the range 0 - 8 inclusive.
2708
2709     // Count the number of XMM registers allocated.
2710     static const uint16_t XMMArgRegs[] = {
2711       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2712       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2713     };
2714     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2715     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2716            && "SSE registers cannot be used when SSE is disabled");
2717
2718     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2719                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2720   }
2721
2722   // For tail calls lower the arguments to the 'real' stack slot.
2723   if (isTailCall) {
2724     // Force all the incoming stack arguments to be loaded from the stack
2725     // before any new outgoing arguments are stored to the stack, because the
2726     // outgoing stack slots may alias the incoming argument stack slots, and
2727     // the alias isn't otherwise explicit. This is slightly more conservative
2728     // than necessary, because it means that each store effectively depends
2729     // on every argument instead of just those arguments it would clobber.
2730     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2731
2732     SmallVector<SDValue, 8> MemOpChains2;
2733     SDValue FIN;
2734     int FI = 0;
2735     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2736       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2737         CCValAssign &VA = ArgLocs[i];
2738         if (VA.isRegLoc())
2739           continue;
2740         assert(VA.isMemLoc());
2741         SDValue Arg = OutVals[i];
2742         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2743         // Create frame index.
2744         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2745         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2746         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2747         FIN = DAG.getFrameIndex(FI, getPointerTy());
2748
2749         if (Flags.isByVal()) {
2750           // Copy relative to framepointer.
2751           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2752           if (StackPtr.getNode() == 0)
2753             StackPtr = DAG.getCopyFromReg(Chain, dl,
2754                                           RegInfo->getStackRegister(),
2755                                           getPointerTy());
2756           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2757
2758           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2759                                                            ArgChain,
2760                                                            Flags, DAG, dl));
2761         } else {
2762           // Store relative to framepointer.
2763           MemOpChains2.push_back(
2764             DAG.getStore(ArgChain, dl, Arg, FIN,
2765                          MachinePointerInfo::getFixedStack(FI),
2766                          false, false, 0));
2767         }
2768       }
2769     }
2770
2771     if (!MemOpChains2.empty())
2772       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2773                           &MemOpChains2[0], MemOpChains2.size());
2774
2775     // Store the return address to the appropriate stack slot.
2776     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2777                                      getPointerTy(), RegInfo->getSlotSize(),
2778                                      FPDiff, dl);
2779   }
2780
2781   // Build a sequence of copy-to-reg nodes chained together with token chain
2782   // and flag operands which copy the outgoing args into registers.
2783   SDValue InFlag;
2784   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2785     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2786                              RegsToPass[i].second, InFlag);
2787     InFlag = Chain.getValue(1);
2788   }
2789
2790   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2791     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2792     // In the 64-bit large code model, we have to make all calls
2793     // through a register, since the call instruction's 32-bit
2794     // pc-relative offset may not be large enough to hold the whole
2795     // address.
2796   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2797     // If the callee is a GlobalAddress node (quite common, every direct call
2798     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2799     // it.
2800
2801     // We should use extra load for direct calls to dllimported functions in
2802     // non-JIT mode.
2803     const GlobalValue *GV = G->getGlobal();
2804     if (!GV->hasDLLImportStorageClass()) {
2805       unsigned char OpFlags = 0;
2806       bool ExtraLoad = false;
2807       unsigned WrapperKind = ISD::DELETED_NODE;
2808
2809       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2810       // external symbols most go through the PLT in PIC mode.  If the symbol
2811       // has hidden or protected visibility, or if it is static or local, then
2812       // we don't need to use the PLT - we can directly call it.
2813       if (Subtarget->isTargetELF() &&
2814           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2815           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2816         OpFlags = X86II::MO_PLT;
2817       } else if (Subtarget->isPICStyleStubAny() &&
2818                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2819                  (!Subtarget->getTargetTriple().isMacOSX() ||
2820                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2821         // PC-relative references to external symbols should go through $stub,
2822         // unless we're building with the leopard linker or later, which
2823         // automatically synthesizes these stubs.
2824         OpFlags = X86II::MO_DARWIN_STUB;
2825       } else if (Subtarget->isPICStyleRIPRel() &&
2826                  isa<Function>(GV) &&
2827                  cast<Function>(GV)->getAttributes().
2828                    hasAttribute(AttributeSet::FunctionIndex,
2829                                 Attribute::NonLazyBind)) {
2830         // If the function is marked as non-lazy, generate an indirect call
2831         // which loads from the GOT directly. This avoids runtime overhead
2832         // at the cost of eager binding (and one extra byte of encoding).
2833         OpFlags = X86II::MO_GOTPCREL;
2834         WrapperKind = X86ISD::WrapperRIP;
2835         ExtraLoad = true;
2836       }
2837
2838       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2839                                           G->getOffset(), OpFlags);
2840
2841       // Add a wrapper if needed.
2842       if (WrapperKind != ISD::DELETED_NODE)
2843         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2844       // Add extra indirection if needed.
2845       if (ExtraLoad)
2846         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2847                              MachinePointerInfo::getGOT(),
2848                              false, false, false, 0);
2849     }
2850   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2851     unsigned char OpFlags = 0;
2852
2853     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2854     // external symbols should go through the PLT.
2855     if (Subtarget->isTargetELF() &&
2856         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2857       OpFlags = X86II::MO_PLT;
2858     } else if (Subtarget->isPICStyleStubAny() &&
2859                (!Subtarget->getTargetTriple().isMacOSX() ||
2860                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2861       // PC-relative references to external symbols should go through $stub,
2862       // unless we're building with the leopard linker or later, which
2863       // automatically synthesizes these stubs.
2864       OpFlags = X86II::MO_DARWIN_STUB;
2865     }
2866
2867     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2868                                          OpFlags);
2869   }
2870
2871   // Returns a chain & a flag for retval copy to use.
2872   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2873   SmallVector<SDValue, 8> Ops;
2874
2875   if (!IsSibcall && isTailCall) {
2876     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2877                            DAG.getIntPtrConstant(0, true), InFlag, dl);
2878     InFlag = Chain.getValue(1);
2879   }
2880
2881   Ops.push_back(Chain);
2882   Ops.push_back(Callee);
2883
2884   if (isTailCall)
2885     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2886
2887   // Add argument registers to the end of the list so that they are known live
2888   // into the call.
2889   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2890     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2891                                   RegsToPass[i].second.getValueType()));
2892
2893   // Add a register mask operand representing the call-preserved registers.
2894   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2895   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2896   assert(Mask && "Missing call preserved mask for calling convention");
2897   Ops.push_back(DAG.getRegisterMask(Mask));
2898
2899   if (InFlag.getNode())
2900     Ops.push_back(InFlag);
2901
2902   if (isTailCall) {
2903     // We used to do:
2904     //// If this is the first return lowered for this function, add the regs
2905     //// to the liveout set for the function.
2906     // This isn't right, although it's probably harmless on x86; liveouts
2907     // should be computed from returns not tail calls.  Consider a void
2908     // function making a tail call to a function returning int.
2909     return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
2910   }
2911
2912   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2913   InFlag = Chain.getValue(1);
2914
2915   // Create the CALLSEQ_END node.
2916   unsigned NumBytesForCalleeToPush;
2917   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2918                        getTargetMachine().Options.GuaranteedTailCallOpt))
2919     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2920   else if (!Is64Bit && !IsTailCallConvention(CallConv) &&
2921            !Subtarget->getTargetTriple().isOSMSVCRT() &&
2922            SR == StackStructReturn)
2923     // If this is a call to a struct-return function, the callee
2924     // pops the hidden struct pointer, so we have to push it back.
2925     // This is common for Darwin/X86, Linux & Mingw32 targets.
2926     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2927     NumBytesForCalleeToPush = 4;
2928   else
2929     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2930
2931   // Returns a flag for retval copy to use.
2932   if (!IsSibcall) {
2933     Chain = DAG.getCALLSEQ_END(Chain,
2934                                DAG.getIntPtrConstant(NumBytes, true),
2935                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2936                                                      true),
2937                                InFlag, dl);
2938     InFlag = Chain.getValue(1);
2939   }
2940
2941   // Handle result values, copying them out of physregs into vregs that we
2942   // return.
2943   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2944                          Ins, dl, DAG, InVals);
2945 }
2946
2947 //===----------------------------------------------------------------------===//
2948 //                Fast Calling Convention (tail call) implementation
2949 //===----------------------------------------------------------------------===//
2950
2951 //  Like std call, callee cleans arguments, convention except that ECX is
2952 //  reserved for storing the tail called function address. Only 2 registers are
2953 //  free for argument passing (inreg). Tail call optimization is performed
2954 //  provided:
2955 //                * tailcallopt is enabled
2956 //                * caller/callee are fastcc
2957 //  On X86_64 architecture with GOT-style position independent code only local
2958 //  (within module) calls are supported at the moment.
2959 //  To keep the stack aligned according to platform abi the function
2960 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2961 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2962 //  If a tail called function callee has more arguments than the caller the
2963 //  caller needs to make sure that there is room to move the RETADDR to. This is
2964 //  achieved by reserving an area the size of the argument delta right after the
2965 //  original REtADDR, but before the saved framepointer or the spilled registers
2966 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2967 //  stack layout:
2968 //    arg1
2969 //    arg2
2970 //    RETADDR
2971 //    [ new RETADDR
2972 //      move area ]
2973 //    (possible EBP)
2974 //    ESI
2975 //    EDI
2976 //    local1 ..
2977
2978 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2979 /// for a 16 byte align requirement.
2980 unsigned
2981 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2982                                                SelectionDAG& DAG) const {
2983   MachineFunction &MF = DAG.getMachineFunction();
2984   const TargetMachine &TM = MF.getTarget();
2985   const X86RegisterInfo *RegInfo =
2986     static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
2987   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2988   unsigned StackAlignment = TFI.getStackAlignment();
2989   uint64_t AlignMask = StackAlignment - 1;
2990   int64_t Offset = StackSize;
2991   unsigned SlotSize = RegInfo->getSlotSize();
2992   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2993     // Number smaller than 12 so just add the difference.
2994     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2995   } else {
2996     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2997     Offset = ((~AlignMask) & Offset) + StackAlignment +
2998       (StackAlignment-SlotSize);
2999   }
3000   return Offset;
3001 }
3002
3003 /// MatchingStackOffset - Return true if the given stack call argument is
3004 /// already available in the same position (relatively) of the caller's
3005 /// incoming argument stack.
3006 static
3007 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
3008                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
3009                          const X86InstrInfo *TII) {
3010   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
3011   int FI = INT_MAX;
3012   if (Arg.getOpcode() == ISD::CopyFromReg) {
3013     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
3014     if (!TargetRegisterInfo::isVirtualRegister(VR))
3015       return false;
3016     MachineInstr *Def = MRI->getVRegDef(VR);
3017     if (!Def)
3018       return false;
3019     if (!Flags.isByVal()) {
3020       if (!TII->isLoadFromStackSlot(Def, FI))
3021         return false;
3022     } else {
3023       unsigned Opcode = Def->getOpcode();
3024       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3025           Def->getOperand(1).isFI()) {
3026         FI = Def->getOperand(1).getIndex();
3027         Bytes = Flags.getByValSize();
3028       } else
3029         return false;
3030     }
3031   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3032     if (Flags.isByVal())
3033       // ByVal argument is passed in as a pointer but it's now being
3034       // dereferenced. e.g.
3035       // define @foo(%struct.X* %A) {
3036       //   tail call @bar(%struct.X* byval %A)
3037       // }
3038       return false;
3039     SDValue Ptr = Ld->getBasePtr();
3040     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3041     if (!FINode)
3042       return false;
3043     FI = FINode->getIndex();
3044   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
3045     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
3046     FI = FINode->getIndex();
3047     Bytes = Flags.getByValSize();
3048   } else
3049     return false;
3050
3051   assert(FI != INT_MAX);
3052   if (!MFI->isFixedObjectIndex(FI))
3053     return false;
3054   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
3055 }
3056
3057 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
3058 /// for tail call optimization. Targets which want to do tail call
3059 /// optimization should implement this function.
3060 bool
3061 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
3062                                                      CallingConv::ID CalleeCC,
3063                                                      bool isVarArg,
3064                                                      bool isCalleeStructRet,
3065                                                      bool isCallerStructRet,
3066                                                      Type *RetTy,
3067                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
3068                                     const SmallVectorImpl<SDValue> &OutVals,
3069                                     const SmallVectorImpl<ISD::InputArg> &Ins,
3070                                                      SelectionDAG &DAG) const {
3071   if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
3072     return false;
3073
3074   // If -tailcallopt is specified, make fastcc functions tail-callable.
3075   const MachineFunction &MF = DAG.getMachineFunction();
3076   const Function *CallerF = MF.getFunction();
3077
3078   // If the function return type is x86_fp80 and the callee return type is not,
3079   // then the FP_EXTEND of the call result is not a nop. It's not safe to
3080   // perform a tailcall optimization here.
3081   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3082     return false;
3083
3084   CallingConv::ID CallerCC = CallerF->getCallingConv();
3085   bool CCMatch = CallerCC == CalleeCC;
3086   bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3087   bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
3088
3089   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
3090     if (IsTailCallConvention(CalleeCC) && CCMatch)
3091       return true;
3092     return false;
3093   }
3094
3095   // Look for obvious safe cases to perform tail call optimization that do not
3096   // require ABI changes. This is what gcc calls sibcall.
3097
3098   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3099   // emit a special epilogue.
3100   const X86RegisterInfo *RegInfo =
3101     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3102   if (RegInfo->needsStackRealignment(MF))
3103     return false;
3104
3105   // Also avoid sibcall optimization if either caller or callee uses struct
3106   // return semantics.
3107   if (isCalleeStructRet || isCallerStructRet)
3108     return false;
3109
3110   // An stdcall/thiscall caller is expected to clean up its arguments; the
3111   // callee isn't going to do that.
3112   // FIXME: this is more restrictive than needed. We could produce a tailcall
3113   // when the stack adjustment matches. For example, with a thiscall that takes
3114   // only one argument.
3115   if (!CCMatch && (CallerCC == CallingConv::X86_StdCall ||
3116                    CallerCC == CallingConv::X86_ThisCall))
3117     return false;
3118
3119   // Do not sibcall optimize vararg calls unless all arguments are passed via
3120   // registers.
3121   if (isVarArg && !Outs.empty()) {
3122
3123     // Optimizing for varargs on Win64 is unlikely to be safe without
3124     // additional testing.
3125     if (IsCalleeWin64 || IsCallerWin64)
3126       return false;
3127
3128     SmallVector<CCValAssign, 16> ArgLocs;
3129     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3130                    getTargetMachine(), ArgLocs, *DAG.getContext());
3131
3132     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3133     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3134       if (!ArgLocs[i].isRegLoc())
3135         return false;
3136   }
3137
3138   // If the call result is in ST0 / ST1, it needs to be popped off the x87
3139   // stack.  Therefore, if it's not used by the call it is not safe to optimize
3140   // this into a sibcall.
3141   bool Unused = false;
3142   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3143     if (!Ins[i].Used) {
3144       Unused = true;
3145       break;
3146     }
3147   }
3148   if (Unused) {
3149     SmallVector<CCValAssign, 16> RVLocs;
3150     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
3151                    getTargetMachine(), RVLocs, *DAG.getContext());
3152     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
3153     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
3154       CCValAssign &VA = RVLocs[i];
3155       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3156         return false;
3157     }
3158   }
3159
3160   // If the calling conventions do not match, then we'd better make sure the
3161   // results are returned in the same way as what the caller expects.
3162   if (!CCMatch) {
3163     SmallVector<CCValAssign, 16> RVLocs1;
3164     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
3165                     getTargetMachine(), RVLocs1, *DAG.getContext());
3166     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3167
3168     SmallVector<CCValAssign, 16> RVLocs2;
3169     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
3170                     getTargetMachine(), RVLocs2, *DAG.getContext());
3171     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3172
3173     if (RVLocs1.size() != RVLocs2.size())
3174       return false;
3175     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3176       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3177         return false;
3178       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3179         return false;
3180       if (RVLocs1[i].isRegLoc()) {
3181         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3182           return false;
3183       } else {
3184         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3185           return false;
3186       }
3187     }
3188   }
3189
3190   // If the callee takes no arguments then go on to check the results of the
3191   // call.
3192   if (!Outs.empty()) {
3193     // Check if stack adjustment is needed. For now, do not do this if any
3194     // argument is passed on the stack.
3195     SmallVector<CCValAssign, 16> ArgLocs;
3196     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
3197                    getTargetMachine(), ArgLocs, *DAG.getContext());
3198
3199     // Allocate shadow area for Win64
3200     if (IsCalleeWin64)
3201       CCInfo.AllocateStack(32, 8);
3202
3203     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3204     if (CCInfo.getNextStackOffset()) {
3205       MachineFunction &MF = DAG.getMachineFunction();
3206       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3207         return false;
3208
3209       // Check if the arguments are already laid out in the right way as
3210       // the caller's fixed stack objects.
3211       MachineFrameInfo *MFI = MF.getFrameInfo();
3212       const MachineRegisterInfo *MRI = &MF.getRegInfo();
3213       const X86InstrInfo *TII =
3214         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
3215       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3216         CCValAssign &VA = ArgLocs[i];
3217         SDValue Arg = OutVals[i];
3218         ISD::ArgFlagsTy Flags = Outs[i].Flags;
3219         if (VA.getLocInfo() == CCValAssign::Indirect)
3220           return false;
3221         if (!VA.isRegLoc()) {
3222           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3223                                    MFI, MRI, TII))
3224             return false;
3225         }
3226       }
3227     }
3228
3229     // If the tailcall address may be in a register, then make sure it's
3230     // possible to register allocate for it. In 32-bit, the call address can
3231     // only target EAX, EDX, or ECX since the tail call must be scheduled after
3232     // callee-saved registers are restored. These happen to be the same
3233     // registers used to pass 'inreg' arguments so watch out for those.
3234     if (!Subtarget->is64Bit() &&
3235         ((!isa<GlobalAddressSDNode>(Callee) &&
3236           !isa<ExternalSymbolSDNode>(Callee)) ||
3237          getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
3238       unsigned NumInRegs = 0;
3239       // In PIC we need an extra register to formulate the address computation
3240       // for the callee.
3241       unsigned MaxInRegs =
3242           (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3243
3244       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3245         CCValAssign &VA = ArgLocs[i];
3246         if (!VA.isRegLoc())
3247           continue;
3248         unsigned Reg = VA.getLocReg();
3249         switch (Reg) {
3250         default: break;
3251         case X86::EAX: case X86::EDX: case X86::ECX:
3252           if (++NumInRegs == MaxInRegs)
3253             return false;
3254           break;
3255         }
3256       }
3257     }
3258   }
3259
3260   return true;
3261 }
3262
3263 FastISel *
3264 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3265                                   const TargetLibraryInfo *libInfo) const {
3266   return X86::createFastISel(funcInfo, libInfo);
3267 }
3268
3269 //===----------------------------------------------------------------------===//
3270 //                           Other Lowering Hooks
3271 //===----------------------------------------------------------------------===//
3272
3273 static bool MayFoldLoad(SDValue Op) {
3274   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3275 }
3276
3277 static bool MayFoldIntoStore(SDValue Op) {
3278   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3279 }
3280
3281 static bool isTargetShuffle(unsigned Opcode) {
3282   switch(Opcode) {
3283   default: return false;
3284   case X86ISD::PSHUFD:
3285   case X86ISD::PSHUFHW:
3286   case X86ISD::PSHUFLW:
3287   case X86ISD::SHUFP:
3288   case X86ISD::PALIGNR:
3289   case X86ISD::MOVLHPS:
3290   case X86ISD::MOVLHPD:
3291   case X86ISD::MOVHLPS:
3292   case X86ISD::MOVLPS:
3293   case X86ISD::MOVLPD:
3294   case X86ISD::MOVSHDUP:
3295   case X86ISD::MOVSLDUP:
3296   case X86ISD::MOVDDUP:
3297   case X86ISD::MOVSS:
3298   case X86ISD::MOVSD:
3299   case X86ISD::UNPCKL:
3300   case X86ISD::UNPCKH:
3301   case X86ISD::VPERMILP:
3302   case X86ISD::VPERM2X128:
3303   case X86ISD::VPERMI:
3304     return true;
3305   }
3306 }
3307
3308 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3309                                     SDValue V1, SelectionDAG &DAG) {
3310   switch(Opc) {
3311   default: llvm_unreachable("Unknown x86 shuffle node");
3312   case X86ISD::MOVSHDUP:
3313   case X86ISD::MOVSLDUP:
3314   case X86ISD::MOVDDUP:
3315     return DAG.getNode(Opc, dl, VT, V1);
3316   }
3317 }
3318
3319 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3320                                     SDValue V1, unsigned TargetMask,
3321                                     SelectionDAG &DAG) {
3322   switch(Opc) {
3323   default: llvm_unreachable("Unknown x86 shuffle node");
3324   case X86ISD::PSHUFD:
3325   case X86ISD::PSHUFHW:
3326   case X86ISD::PSHUFLW:
3327   case X86ISD::VPERMILP:
3328   case X86ISD::VPERMI:
3329     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3330   }
3331 }
3332
3333 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3334                                     SDValue V1, SDValue V2, unsigned TargetMask,
3335                                     SelectionDAG &DAG) {
3336   switch(Opc) {
3337   default: llvm_unreachable("Unknown x86 shuffle node");
3338   case X86ISD::PALIGNR:
3339   case X86ISD::SHUFP:
3340   case X86ISD::VPERM2X128:
3341     return DAG.getNode(Opc, dl, VT, V1, V2,
3342                        DAG.getConstant(TargetMask, MVT::i8));
3343   }
3344 }
3345
3346 static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
3347                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3348   switch(Opc) {
3349   default: llvm_unreachable("Unknown x86 shuffle node");
3350   case X86ISD::MOVLHPS:
3351   case X86ISD::MOVLHPD:
3352   case X86ISD::MOVHLPS:
3353   case X86ISD::MOVLPS:
3354   case X86ISD::MOVLPD:
3355   case X86ISD::MOVSS:
3356   case X86ISD::MOVSD:
3357   case X86ISD::UNPCKL:
3358   case X86ISD::UNPCKH:
3359     return DAG.getNode(Opc, dl, VT, V1, V2);
3360   }
3361 }
3362
3363 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3364   MachineFunction &MF = DAG.getMachineFunction();
3365   const X86RegisterInfo *RegInfo =
3366     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
3367   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3368   int ReturnAddrIndex = FuncInfo->getRAIndex();
3369
3370   if (ReturnAddrIndex == 0) {
3371     // Set up a frame object for the return address.
3372     unsigned SlotSize = RegInfo->getSlotSize();
3373     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3374                                                            -(int64_t)SlotSize,
3375                                                            false);
3376     FuncInfo->setRAIndex(ReturnAddrIndex);
3377   }
3378
3379   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3380 }
3381
3382 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3383                                        bool hasSymbolicDisplacement) {
3384   // Offset should fit into 32 bit immediate field.
3385   if (!isInt<32>(Offset))
3386     return false;
3387
3388   // If we don't have a symbolic displacement - we don't have any extra
3389   // restrictions.
3390   if (!hasSymbolicDisplacement)
3391     return true;
3392
3393   // FIXME: Some tweaks might be needed for medium code model.
3394   if (M != CodeModel::Small && M != CodeModel::Kernel)
3395     return false;
3396
3397   // For small code model we assume that latest object is 16MB before end of 31
3398   // bits boundary. We may also accept pretty large negative constants knowing
3399   // that all objects are in the positive half of address space.
3400   if (M == CodeModel::Small && Offset < 16*1024*1024)
3401     return true;
3402
3403   // For kernel code model we know that all object resist in the negative half
3404   // of 32bits address space. We may not accept negative offsets, since they may
3405   // be just off and we may accept pretty large positive ones.
3406   if (M == CodeModel::Kernel && Offset > 0)
3407     return true;
3408
3409   return false;
3410 }
3411
3412 /// isCalleePop - Determines whether the callee is required to pop its
3413 /// own arguments. Callee pop is necessary to support tail calls.
3414 bool X86::isCalleePop(CallingConv::ID CallingConv,
3415                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3416   if (IsVarArg)
3417     return false;
3418
3419   switch (CallingConv) {
3420   default:
3421     return false;
3422   case CallingConv::X86_StdCall:
3423     return !is64Bit;
3424   case CallingConv::X86_FastCall:
3425     return !is64Bit;
3426   case CallingConv::X86_ThisCall:
3427     return !is64Bit;
3428   case CallingConv::Fast:
3429     return TailCallOpt;
3430   case CallingConv::GHC:
3431     return TailCallOpt;
3432   case CallingConv::HiPE:
3433     return TailCallOpt;
3434   }
3435 }
3436
3437 /// \brief Return true if the condition is an unsigned comparison operation.
3438 static bool isX86CCUnsigned(unsigned X86CC) {
3439   switch (X86CC) {
3440   default: llvm_unreachable("Invalid integer condition!");
3441   case X86::COND_E:     return true;
3442   case X86::COND_G:     return false;
3443   case X86::COND_GE:    return false;
3444   case X86::COND_L:     return false;
3445   case X86::COND_LE:    return false;
3446   case X86::COND_NE:    return true;
3447   case X86::COND_B:     return true;
3448   case X86::COND_A:     return true;
3449   case X86::COND_BE:    return true;
3450   case X86::COND_AE:    return true;
3451   }
3452   llvm_unreachable("covered switch fell through?!");
3453 }
3454
3455 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3456 /// specific condition code, returning the condition code and the LHS/RHS of the
3457 /// comparison to make.
3458 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3459                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3460   if (!isFP) {
3461     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3462       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3463         // X > -1   -> X == 0, jump !sign.
3464         RHS = DAG.getConstant(0, RHS.getValueType());
3465         return X86::COND_NS;
3466       }
3467       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3468         // X < 0   -> X == 0, jump on sign.
3469         return X86::COND_S;
3470       }
3471       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3472         // X < 1   -> X <= 0
3473         RHS = DAG.getConstant(0, RHS.getValueType());
3474         return X86::COND_LE;
3475       }
3476     }
3477
3478     switch (SetCCOpcode) {
3479     default: llvm_unreachable("Invalid integer condition!");
3480     case ISD::SETEQ:  return X86::COND_E;
3481     case ISD::SETGT:  return X86::COND_G;
3482     case ISD::SETGE:  return X86::COND_GE;
3483     case ISD::SETLT:  return X86::COND_L;
3484     case ISD::SETLE:  return X86::COND_LE;
3485     case ISD::SETNE:  return X86::COND_NE;
3486     case ISD::SETULT: return X86::COND_B;
3487     case ISD::SETUGT: return X86::COND_A;
3488     case ISD::SETULE: return X86::COND_BE;
3489     case ISD::SETUGE: return X86::COND_AE;
3490     }
3491   }
3492
3493   // First determine if it is required or is profitable to flip the operands.
3494
3495   // If LHS is a foldable load, but RHS is not, flip the condition.
3496   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3497       !ISD::isNON_EXTLoad(RHS.getNode())) {
3498     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3499     std::swap(LHS, RHS);
3500   }
3501
3502   switch (SetCCOpcode) {
3503   default: break;
3504   case ISD::SETOLT:
3505   case ISD::SETOLE:
3506   case ISD::SETUGT:
3507   case ISD::SETUGE:
3508     std::swap(LHS, RHS);
3509     break;
3510   }
3511
3512   // On a floating point condition, the flags are set as follows:
3513   // ZF  PF  CF   op
3514   //  0 | 0 | 0 | X > Y
3515   //  0 | 0 | 1 | X < Y
3516   //  1 | 0 | 0 | X == Y
3517   //  1 | 1 | 1 | unordered
3518   switch (SetCCOpcode) {
3519   default: llvm_unreachable("Condcode should be pre-legalized away");
3520   case ISD::SETUEQ:
3521   case ISD::SETEQ:   return X86::COND_E;
3522   case ISD::SETOLT:              // flipped
3523   case ISD::SETOGT:
3524   case ISD::SETGT:   return X86::COND_A;
3525   case ISD::SETOLE:              // flipped
3526   case ISD::SETOGE:
3527   case ISD::SETGE:   return X86::COND_AE;
3528   case ISD::SETUGT:              // flipped
3529   case ISD::SETULT:
3530   case ISD::SETLT:   return X86::COND_B;
3531   case ISD::SETUGE:              // flipped
3532   case ISD::SETULE:
3533   case ISD::SETLE:   return X86::COND_BE;
3534   case ISD::SETONE:
3535   case ISD::SETNE:   return X86::COND_NE;
3536   case ISD::SETUO:   return X86::COND_P;
3537   case ISD::SETO:    return X86::COND_NP;
3538   case ISD::SETOEQ:
3539   case ISD::SETUNE:  return X86::COND_INVALID;
3540   }
3541 }
3542
3543 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3544 /// code. Current x86 isa includes the following FP cmov instructions:
3545 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3546 static bool hasFPCMov(unsigned X86CC) {
3547   switch (X86CC) {
3548   default:
3549     return false;
3550   case X86::COND_B:
3551   case X86::COND_BE:
3552   case X86::COND_E:
3553   case X86::COND_P:
3554   case X86::COND_A:
3555   case X86::COND_AE:
3556   case X86::COND_NE:
3557   case X86::COND_NP:
3558     return true;
3559   }
3560 }
3561
3562 /// isFPImmLegal - Returns true if the target can instruction select the
3563 /// specified FP immediate natively. If false, the legalizer will
3564 /// materialize the FP immediate as a load from a constant pool.
3565 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3566   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3567     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3568       return true;
3569   }
3570   return false;
3571 }
3572
3573 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3574 /// the specified range (L, H].
3575 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3576   return (Val < 0) || (Val >= Low && Val < Hi);
3577 }
3578
3579 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3580 /// specified value.
3581 static bool isUndefOrEqual(int Val, int CmpVal) {
3582   return (Val < 0 || Val == CmpVal);
3583 }
3584
3585 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3586 /// from position Pos and ending in Pos+Size, falls within the specified
3587 /// sequential range (L, L+Pos]. or is undef.
3588 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3589                                        unsigned Pos, unsigned Size, int Low) {
3590   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3591     if (!isUndefOrEqual(Mask[i], Low))
3592       return false;
3593   return true;
3594 }
3595
3596 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3597 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3598 /// the second operand.
3599 static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
3600   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3601     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3602   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3603     return (Mask[0] < 2 && Mask[1] < 2);
3604   return false;
3605 }
3606
3607 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3608 /// is suitable for input to PSHUFHW.
3609 static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3610   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3611     return false;
3612
3613   // Lower quadword copied in order or undef.
3614   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3615     return false;
3616
3617   // Upper quadword shuffled.
3618   for (unsigned i = 4; i != 8; ++i)
3619     if (!isUndefOrInRange(Mask[i], 4, 8))
3620       return false;
3621
3622   if (VT == MVT::v16i16) {
3623     // Lower quadword copied in order or undef.
3624     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3625       return false;
3626
3627     // Upper quadword shuffled.
3628     for (unsigned i = 12; i != 16; ++i)
3629       if (!isUndefOrInRange(Mask[i], 12, 16))
3630         return false;
3631   }
3632
3633   return true;
3634 }
3635
3636 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3637 /// is suitable for input to PSHUFLW.
3638 static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
3639   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3640     return false;
3641
3642   // Upper quadword copied in order.
3643   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3644     return false;
3645
3646   // Lower quadword shuffled.
3647   for (unsigned i = 0; i != 4; ++i)
3648     if (!isUndefOrInRange(Mask[i], 0, 4))
3649       return false;
3650
3651   if (VT == MVT::v16i16) {
3652     // Upper quadword copied in order.
3653     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3654       return false;
3655
3656     // Lower quadword shuffled.
3657     for (unsigned i = 8; i != 12; ++i)
3658       if (!isUndefOrInRange(Mask[i], 8, 12))
3659         return false;
3660   }
3661
3662   return true;
3663 }
3664
3665 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3666 /// is suitable for input to PALIGNR.
3667 static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
3668                           const X86Subtarget *Subtarget) {
3669   if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3670       (VT.is256BitVector() && !Subtarget->hasInt256()))
3671     return false;
3672
3673   unsigned NumElts = VT.getVectorNumElements();
3674   unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
3675   unsigned NumLaneElts = NumElts/NumLanes;
3676
3677   // Do not handle 64-bit element shuffles with palignr.
3678   if (NumLaneElts == 2)
3679     return false;
3680
3681   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3682     unsigned i;
3683     for (i = 0; i != NumLaneElts; ++i) {
3684       if (Mask[i+l] >= 0)
3685         break;
3686     }
3687
3688     // Lane is all undef, go to next lane
3689     if (i == NumLaneElts)
3690       continue;
3691
3692     int Start = Mask[i+l];
3693
3694     // Make sure its in this lane in one of the sources
3695     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3696         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3697       return false;
3698
3699     // If not lane 0, then we must match lane 0
3700     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3701       return false;
3702
3703     // Correct second source to be contiguous with first source
3704     if (Start >= (int)NumElts)
3705       Start -= NumElts - NumLaneElts;
3706
3707     // Make sure we're shifting in the right direction.
3708     if (Start <= (int)(i+l))
3709       return false;
3710
3711     Start -= i;
3712
3713     // Check the rest of the elements to see if they are consecutive.
3714     for (++i; i != NumLaneElts; ++i) {
3715       int Idx = Mask[i+l];
3716
3717       // Make sure its in this lane
3718       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3719           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3720         return false;
3721
3722       // If not lane 0, then we must match lane 0
3723       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3724         return false;
3725
3726       if (Idx >= (int)NumElts)
3727         Idx -= NumElts - NumLaneElts;
3728
3729       if (!isUndefOrEqual(Idx, Start+i))
3730         return false;
3731
3732     }
3733   }
3734
3735   return true;
3736 }
3737
3738 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3739 /// the two vector operands have swapped position.
3740 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3741                                      unsigned NumElems) {
3742   for (unsigned i = 0; i != NumElems; ++i) {
3743     int idx = Mask[i];
3744     if (idx < 0)
3745       continue;
3746     else if (idx < (int)NumElems)
3747       Mask[i] = idx + NumElems;
3748     else
3749       Mask[i] = idx - NumElems;
3750   }
3751 }
3752
3753 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3754 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3755 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3756 /// reverse of what x86 shuffles want.
3757 static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
3758
3759   unsigned NumElems = VT.getVectorNumElements();
3760   unsigned NumLanes = VT.getSizeInBits()/128;
3761   unsigned NumLaneElems = NumElems/NumLanes;
3762
3763   if (NumLaneElems != 2 && NumLaneElems != 4)
3764     return false;
3765
3766   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3767   bool symetricMaskRequired =
3768     (VT.getSizeInBits() >= 256) && (EltSize == 32);
3769
3770   // VSHUFPSY divides the resulting vector into 4 chunks.
3771   // The sources are also splitted into 4 chunks, and each destination
3772   // chunk must come from a different source chunk.
3773   //
3774   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3775   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3776   //
3777   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3778   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3779   //
3780   // VSHUFPDY divides the resulting vector into 4 chunks.
3781   // The sources are also splitted into 4 chunks, and each destination
3782   // chunk must come from a different source chunk.
3783   //
3784   //  SRC1 =>      X3       X2       X1       X0
3785   //  SRC2 =>      Y3       Y2       Y1       Y0
3786   //
3787   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3788   //
3789   SmallVector<int, 4> MaskVal(NumLaneElems, -1);
3790   unsigned HalfLaneElems = NumLaneElems/2;
3791   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3792     for (unsigned i = 0; i != NumLaneElems; ++i) {
3793       int Idx = Mask[i+l];
3794       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3795       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3796         return false;
3797       // For VSHUFPSY, the mask of the second half must be the same as the
3798       // first but with the appropriate offsets. This works in the same way as
3799       // VPERMILPS works with masks.
3800       if (!symetricMaskRequired || Idx < 0)
3801         continue;
3802       if (MaskVal[i] < 0) {
3803         MaskVal[i] = Idx - l;
3804         continue;
3805       }
3806       if ((signed)(Idx - l) != MaskVal[i])
3807         return false;
3808     }
3809   }
3810
3811   return true;
3812 }
3813
3814 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3815 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3816 static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
3817   if (!VT.is128BitVector())
3818     return false;
3819
3820   unsigned NumElems = VT.getVectorNumElements();
3821
3822   if (NumElems != 4)
3823     return false;
3824
3825   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3826   return isUndefOrEqual(Mask[0], 6) &&
3827          isUndefOrEqual(Mask[1], 7) &&
3828          isUndefOrEqual(Mask[2], 2) &&
3829          isUndefOrEqual(Mask[3], 3);
3830 }
3831
3832 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3833 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3834 /// <2, 3, 2, 3>
3835 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
3836   if (!VT.is128BitVector())
3837     return false;
3838
3839   unsigned NumElems = VT.getVectorNumElements();
3840
3841   if (NumElems != 4)
3842     return false;
3843
3844   return isUndefOrEqual(Mask[0], 2) &&
3845          isUndefOrEqual(Mask[1], 3) &&
3846          isUndefOrEqual(Mask[2], 2) &&
3847          isUndefOrEqual(Mask[3], 3);
3848 }
3849
3850 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3851 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3852 static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
3853   if (!VT.is128BitVector())
3854     return false;
3855
3856   unsigned NumElems = VT.getVectorNumElements();
3857
3858   if (NumElems != 2 && NumElems != 4)
3859     return false;
3860
3861   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3862     if (!isUndefOrEqual(Mask[i], i + NumElems))
3863       return false;
3864
3865   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3866     if (!isUndefOrEqual(Mask[i], i))
3867       return false;
3868
3869   return true;
3870 }
3871
3872 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3873 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3874 static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
3875   if (!VT.is128BitVector())
3876     return false;
3877
3878   unsigned NumElems = VT.getVectorNumElements();
3879
3880   if (NumElems != 2 && NumElems != 4)
3881     return false;
3882
3883   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3884     if (!isUndefOrEqual(Mask[i], i))
3885       return false;
3886
3887   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3888     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3889       return false;
3890
3891   return true;
3892 }
3893
3894 //
3895 // Some special combinations that can be optimized.
3896 //
3897 static
3898 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3899                                SelectionDAG &DAG) {
3900   MVT VT = SVOp->getSimpleValueType(0);
3901   SDLoc dl(SVOp);
3902
3903   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3904     return SDValue();
3905
3906   ArrayRef<int> Mask = SVOp->getMask();
3907
3908   // These are the special masks that may be optimized.
3909   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3910   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3911   bool MatchEvenMask = true;
3912   bool MatchOddMask  = true;
3913   for (int i=0; i<8; ++i) {
3914     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3915       MatchEvenMask = false;
3916     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3917       MatchOddMask = false;
3918   }
3919
3920   if (!MatchEvenMask && !MatchOddMask)
3921     return SDValue();
3922
3923   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3924
3925   SDValue Op0 = SVOp->getOperand(0);
3926   SDValue Op1 = SVOp->getOperand(1);
3927
3928   if (MatchEvenMask) {
3929     // Shift the second operand right to 32 bits.
3930     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3931     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3932   } else {
3933     // Shift the first operand left to 32 bits.
3934     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3935     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3936   }
3937   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3938   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3939 }
3940
3941 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3942 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3943 static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
3944                          bool HasInt256, bool V2IsSplat = false) {
3945
3946   assert(VT.getSizeInBits() >= 128 &&
3947          "Unsupported vector type for unpckl");
3948
3949   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3950   unsigned NumLanes;
3951   unsigned NumOf256BitLanes;
3952   unsigned NumElts = VT.getVectorNumElements();
3953   if (VT.is256BitVector()) {
3954     if (NumElts != 4 && NumElts != 8 &&
3955         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3956     return false;
3957     NumLanes = 2;
3958     NumOf256BitLanes = 1;
3959   } else if (VT.is512BitVector()) {
3960     assert(VT.getScalarType().getSizeInBits() >= 32 &&
3961            "Unsupported vector type for unpckh");
3962     NumLanes = 2;
3963     NumOf256BitLanes = 2;
3964   } else {
3965     NumLanes = 1;
3966     NumOf256BitLanes = 1;
3967   }
3968
3969   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3970   unsigned NumLaneElts = NumEltsInStride/NumLanes;
3971
3972   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3973     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3974       for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3975         int BitI  = Mask[l256*NumEltsInStride+l+i];
3976         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3977         if (!isUndefOrEqual(BitI, j+l256*NumElts))
3978           return false;
3979         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3980           return false;
3981         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
3982           return false;
3983       }
3984     }
3985   }
3986   return true;
3987 }
3988
3989 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3990 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3991 static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
3992                          bool HasInt256, bool V2IsSplat = false) {
3993   assert(VT.getSizeInBits() >= 128 &&
3994          "Unsupported vector type for unpckh");
3995
3996   // AVX defines UNPCK* to operate independently on 128-bit lanes.
3997   unsigned NumLanes;
3998   unsigned NumOf256BitLanes;
3999   unsigned NumElts = VT.getVectorNumElements();
4000   if (VT.is256BitVector()) {
4001     if (NumElts != 4 && NumElts != 8 &&
4002         (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4003     return false;
4004     NumLanes = 2;
4005     NumOf256BitLanes = 1;
4006   } else if (VT.is512BitVector()) {
4007     assert(VT.getScalarType().getSizeInBits() >= 32 &&
4008            "Unsupported vector type for unpckh");
4009     NumLanes = 2;
4010     NumOf256BitLanes = 2;
4011   } else {
4012     NumLanes = 1;
4013     NumOf256BitLanes = 1;
4014   }
4015
4016   unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
4017   unsigned NumLaneElts = NumEltsInStride/NumLanes;
4018
4019   for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
4020     for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
4021       for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4022         int BitI  = Mask[l256*NumEltsInStride+l+i];
4023         int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
4024         if (!isUndefOrEqual(BitI, j+l256*NumElts))
4025           return false;
4026         if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
4027           return false;
4028         if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
4029           return false;
4030       }
4031     }
4032   }
4033   return true;
4034 }
4035
4036 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4037 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4038 /// <0, 0, 1, 1>
4039 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4040   unsigned NumElts = VT.getVectorNumElements();
4041   bool Is256BitVec = VT.is256BitVector();
4042
4043   if (VT.is512BitVector())
4044     return false;
4045   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4046          "Unsupported vector type for unpckh");
4047
4048   if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
4049       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4050     return false;
4051
4052   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4053   // FIXME: Need a better way to get rid of this, there's no latency difference
4054   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4055   // the former later. We should also remove the "_undef" special mask.
4056   if (NumElts == 4 && Is256BitVec)
4057     return false;
4058
4059   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4060   // independently on 128-bit lanes.
4061   unsigned NumLanes = VT.getSizeInBits()/128;
4062   unsigned NumLaneElts = NumElts/NumLanes;
4063
4064   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4065     for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4066       int BitI  = Mask[l+i];
4067       int BitI1 = Mask[l+i+1];
4068
4069       if (!isUndefOrEqual(BitI, j))
4070         return false;
4071       if (!isUndefOrEqual(BitI1, j))
4072         return false;
4073     }
4074   }
4075
4076   return true;
4077 }
4078
4079 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4080 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4081 /// <2, 2, 3, 3>
4082 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
4083   unsigned NumElts = VT.getVectorNumElements();
4084
4085   if (VT.is512BitVector())
4086     return false;
4087
4088   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4089          "Unsupported vector type for unpckh");
4090
4091   if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
4092       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
4093     return false;
4094
4095   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4096   // independently on 128-bit lanes.
4097   unsigned NumLanes = VT.getSizeInBits()/128;
4098   unsigned NumLaneElts = NumElts/NumLanes;
4099
4100   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4101     for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4102       int BitI  = Mask[l+i];
4103       int BitI1 = Mask[l+i+1];
4104       if (!isUndefOrEqual(BitI, j))
4105         return false;
4106       if (!isUndefOrEqual(BitI1, j))
4107         return false;
4108     }
4109   }
4110   return true;
4111 }
4112
4113 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4114 /// specifies a shuffle of elements that is suitable for input to MOVSS,
4115 /// MOVSD, and MOVD, i.e. setting the lowest element.
4116 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
4117   if (VT.getVectorElementType().getSizeInBits() < 32)
4118     return false;
4119   if (!VT.is128BitVector())
4120     return false;
4121
4122   unsigned NumElts = VT.getVectorNumElements();
4123
4124   if (!isUndefOrEqual(Mask[0], NumElts))
4125     return false;
4126
4127   for (unsigned i = 1; i != NumElts; ++i)
4128     if (!isUndefOrEqual(Mask[i], i))
4129       return false;
4130
4131   return true;
4132 }
4133
4134 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
4135 /// as permutations between 128-bit chunks or halves. As an example: this
4136 /// shuffle bellow:
4137 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4138 /// The first half comes from the second half of V1 and the second half from the
4139 /// the second half of V2.
4140 static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4141   if (!HasFp256 || !VT.is256BitVector())
4142     return false;
4143
4144   // The shuffle result is divided into half A and half B. In total the two
4145   // sources have 4 halves, namely: C, D, E, F. The final values of A and
4146   // B must come from C, D, E or F.
4147   unsigned HalfSize = VT.getVectorNumElements()/2;
4148   bool MatchA = false, MatchB = false;
4149
4150   // Check if A comes from one of C, D, E, F.
4151   for (unsigned Half = 0; Half != 4; ++Half) {
4152     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4153       MatchA = true;
4154       break;
4155     }
4156   }
4157
4158   // Check if B comes from one of C, D, E, F.
4159   for (unsigned Half = 0; Half != 4; ++Half) {
4160     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4161       MatchB = true;
4162       break;
4163     }
4164   }
4165
4166   return MatchA && MatchB;
4167 }
4168
4169 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4170 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
4171 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
4172   MVT VT = SVOp->getSimpleValueType(0);
4173
4174   unsigned HalfSize = VT.getVectorNumElements()/2;
4175
4176   unsigned FstHalf = 0, SndHalf = 0;
4177   for (unsigned i = 0; i < HalfSize; ++i) {
4178     if (SVOp->getMaskElt(i) > 0) {
4179       FstHalf = SVOp->getMaskElt(i)/HalfSize;
4180       break;
4181     }
4182   }
4183   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
4184     if (SVOp->getMaskElt(i) > 0) {
4185       SndHalf = SVOp->getMaskElt(i)/HalfSize;
4186       break;
4187     }
4188   }
4189
4190   return (FstHalf | (SndHalf << 4));
4191 }
4192
4193 // Symetric in-lane mask. Each lane has 4 elements (for imm8)
4194 static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
4195   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4196   if (EltSize < 32)
4197     return false;
4198
4199   unsigned NumElts = VT.getVectorNumElements();
4200   Imm8 = 0;
4201   if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4202     for (unsigned i = 0; i != NumElts; ++i) {
4203       if (Mask[i] < 0)
4204         continue;
4205       Imm8 |= Mask[i] << (i*2);
4206     }
4207     return true;
4208   }
4209
4210   unsigned LaneSize = 4;
4211   SmallVector<int, 4> MaskVal(LaneSize, -1);
4212
4213   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4214     for (unsigned i = 0; i != LaneSize; ++i) {
4215       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4216         return false;
4217       if (Mask[i+l] < 0)
4218         continue;
4219       if (MaskVal[i] < 0) {
4220         MaskVal[i] = Mask[i+l] - l;
4221         Imm8 |= MaskVal[i] << (i*2);
4222         continue;
4223       }
4224       if (Mask[i+l] != (signed)(MaskVal[i]+l))
4225         return false;
4226     }
4227   }
4228   return true;
4229 }
4230
4231 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
4232 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4233 /// Note that VPERMIL mask matching is different depending whether theunderlying
4234 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4235 /// to the same elements of the low, but to the higher half of the source.
4236 /// In VPERMILPD the two lanes could be shuffled independently of each other
4237 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
4238 static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4239   unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4240   if (VT.getSizeInBits() < 256 || EltSize < 32)
4241     return false;
4242   bool symetricMaskRequired = (EltSize == 32);
4243   unsigned NumElts = VT.getVectorNumElements();
4244
4245   unsigned NumLanes = VT.getSizeInBits()/128;
4246   unsigned LaneSize = NumElts/NumLanes;
4247   // 2 or 4 elements in one lane
4248
4249   SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
4250   for (unsigned l = 0; l != NumElts; l += LaneSize) {
4251     for (unsigned i = 0; i != LaneSize; ++i) {
4252       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4253         return false;
4254       if (symetricMaskRequired) {
4255         if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4256           ExpectedMaskVal[i] = Mask[i+l] - l;
4257           continue;
4258         }
4259         if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4260           return false;
4261       }
4262     }
4263   }
4264   return true;
4265 }
4266
4267 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
4268 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
4269 /// element of vector 2 and the other elements to come from vector 1 in order.
4270 static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
4271                                bool V2IsSplat = false, bool V2IsUndef = false) {
4272   if (!VT.is128BitVector())
4273     return false;
4274
4275   unsigned NumOps = VT.getVectorNumElements();
4276   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
4277     return false;
4278
4279   if (!isUndefOrEqual(Mask[0], 0))
4280     return false;
4281
4282   for (unsigned i = 1; i != NumOps; ++i)
4283     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4284           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4285           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
4286       return false;
4287
4288   return true;
4289 }
4290
4291 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4292 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4293 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4294 static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
4295                            const X86Subtarget *Subtarget) {
4296   if (!Subtarget->hasSSE3())
4297     return false;
4298
4299   unsigned NumElems = VT.getVectorNumElements();
4300
4301   if ((VT.is128BitVector() && NumElems != 4) ||
4302       (VT.is256BitVector() && NumElems != 8) ||
4303       (VT.is512BitVector() && NumElems != 16))
4304     return false;
4305
4306   // "i+1" is the value the indexed mask element must have
4307   for (unsigned i = 0; i != NumElems; i += 2)
4308     if (!isUndefOrEqual(Mask[i], i+1) ||
4309         !isUndefOrEqual(Mask[i+1], i+1))
4310       return false;
4311
4312   return true;
4313 }
4314
4315 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4316 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4317 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4318 static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
4319                            const X86Subtarget *Subtarget) {
4320   if (!Subtarget->hasSSE3())
4321     return false;
4322
4323   unsigned NumElems = VT.getVectorNumElements();
4324
4325   if ((VT.is128BitVector() && NumElems != 4) ||
4326       (VT.is256BitVector() && NumElems != 8) ||
4327       (VT.is512BitVector() && NumElems != 16))
4328     return false;
4329
4330   // "i" is the value the indexed mask element must have
4331   for (unsigned i = 0; i != NumElems; i += 2)
4332     if (!isUndefOrEqual(Mask[i], i) ||
4333         !isUndefOrEqual(Mask[i+1], i))
4334       return false;
4335
4336   return true;
4337 }
4338
4339 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4340 /// specifies a shuffle of elements that is suitable for input to 256-bit
4341 /// version of MOVDDUP.
4342 static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
4343   if (!HasFp256 || !VT.is256BitVector())
4344     return false;
4345
4346   unsigned NumElts = VT.getVectorNumElements();
4347   if (NumElts != 4)
4348     return false;
4349
4350   for (unsigned i = 0; i != NumElts/2; ++i)
4351     if (!isUndefOrEqual(Mask[i], 0))
4352       return false;
4353   for (unsigned i = NumElts/2; i != NumElts; ++i)
4354     if (!isUndefOrEqual(Mask[i], NumElts/2))
4355       return false;
4356   return true;
4357 }
4358
4359 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4360 /// specifies a shuffle of elements that is suitable for input to 128-bit
4361 /// version of MOVDDUP.
4362 static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
4363   if (!VT.is128BitVector())
4364     return false;
4365
4366   unsigned e = VT.getVectorNumElements() / 2;
4367   for (unsigned i = 0; i != e; ++i)
4368     if (!isUndefOrEqual(Mask[i], i))
4369       return false;
4370   for (unsigned i = 0; i != e; ++i)
4371     if (!isUndefOrEqual(Mask[e+i], i))
4372       return false;
4373   return true;
4374 }
4375
4376 /// isVEXTRACTIndex - Return true if the specified
4377 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4378 /// suitable for instruction that extract 128 or 256 bit vectors
4379 static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4380   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4381   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4382     return false;
4383
4384   // The index should be aligned on a vecWidth-bit boundary.
4385   uint64_t Index =
4386     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4387
4388   MVT VT = N->getSimpleValueType(0);
4389   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4390   bool Result = (Index * ElSize) % vecWidth == 0;
4391
4392   return Result;
4393 }
4394
4395 /// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
4396 /// operand specifies a subvector insert that is suitable for input to
4397 /// insertion of 128 or 256-bit subvectors
4398 static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4399   assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
4400   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4401     return false;
4402   // The index should be aligned on a vecWidth-bit boundary.
4403   uint64_t Index =
4404     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4405
4406   MVT VT = N->getSimpleValueType(0);
4407   unsigned ElSize = VT.getVectorElementType().getSizeInBits();
4408   bool Result = (Index * ElSize) % vecWidth == 0;
4409
4410   return Result;
4411 }
4412
4413 bool X86::isVINSERT128Index(SDNode *N) {
4414   return isVINSERTIndex(N, 128);
4415 }
4416
4417 bool X86::isVINSERT256Index(SDNode *N) {
4418   return isVINSERTIndex(N, 256);
4419 }
4420
4421 bool X86::isVEXTRACT128Index(SDNode *N) {
4422   return isVEXTRACTIndex(N, 128);
4423 }
4424
4425 bool X86::isVEXTRACT256Index(SDNode *N) {
4426   return isVEXTRACTIndex(N, 256);
4427 }
4428
4429 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4430 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4431 /// Handles 128-bit and 256-bit.
4432 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4433   MVT VT = N->getSimpleValueType(0);
4434
4435   assert((VT.getSizeInBits() >= 128) &&
4436          "Unsupported vector type for PSHUF/SHUFP");
4437
4438   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4439   // independently on 128-bit lanes.
4440   unsigned NumElts = VT.getVectorNumElements();
4441   unsigned NumLanes = VT.getSizeInBits()/128;
4442   unsigned NumLaneElts = NumElts/NumLanes;
4443
4444   assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4445          "Only supports 2, 4 or 8 elements per lane");
4446
4447   unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
4448   unsigned Mask = 0;
4449   for (unsigned i = 0; i != NumElts; ++i) {
4450     int Elt = N->getMaskElt(i);
4451     if (Elt < 0) continue;
4452     Elt &= NumLaneElts - 1;
4453     unsigned ShAmt = (i << Shift) % 8;
4454     Mask |= Elt << ShAmt;
4455   }
4456
4457   return Mask;
4458 }
4459
4460 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4461 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4462 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4463   MVT VT = N->getSimpleValueType(0);
4464
4465   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4466          "Unsupported vector type for PSHUFHW");
4467
4468   unsigned NumElts = VT.getVectorNumElements();
4469
4470   unsigned Mask = 0;
4471   for (unsigned l = 0; l != NumElts; l += 8) {
4472     // 8 nodes per lane, but we only care about the last 4.
4473     for (unsigned i = 0; i < 4; ++i) {
4474       int Elt = N->getMaskElt(l+i+4);
4475       if (Elt < 0) continue;
4476       Elt &= 0x3; // only 2-bits.
4477       Mask |= Elt << (i * 2);
4478     }
4479   }
4480
4481   return Mask;
4482 }
4483
4484 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4485 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4486 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4487   MVT VT = N->getSimpleValueType(0);
4488
4489   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4490          "Unsupported vector type for PSHUFHW");
4491
4492   unsigned NumElts = VT.getVectorNumElements();
4493
4494   unsigned Mask = 0;
4495   for (unsigned l = 0; l != NumElts; l += 8) {
4496     // 8 nodes per lane, but we only care about the first 4.
4497     for (unsigned i = 0; i < 4; ++i) {
4498       int Elt = N->getMaskElt(l+i);
4499       if (Elt < 0) continue;
4500       Elt &= 0x3; // only 2-bits
4501       Mask |= Elt << (i * 2);
4502     }
4503   }
4504
4505   return Mask;
4506 }
4507
4508 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4509 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4510 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4511   MVT VT = SVOp->getSimpleValueType(0);
4512   unsigned EltSize = VT.is512BitVector() ? 1 :
4513     VT.getVectorElementType().getSizeInBits() >> 3;
4514
4515   unsigned NumElts = VT.getVectorNumElements();
4516   unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
4517   unsigned NumLaneElts = NumElts/NumLanes;
4518
4519   int Val = 0;
4520   unsigned i;
4521   for (i = 0; i != NumElts; ++i) {
4522     Val = SVOp->getMaskElt(i);
4523     if (Val >= 0)
4524       break;
4525   }
4526   if (Val >= (int)NumElts)
4527     Val -= NumElts - NumLaneElts;
4528
4529   assert(Val - i > 0 && "PALIGNR imm should be positive");
4530   return (Val - i) * EltSize;
4531 }
4532
4533 static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4534   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4535   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4536     llvm_unreachable("Illegal extract subvector for VEXTRACT");
4537
4538   uint64_t Index =
4539     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4540
4541   MVT VecVT = N->getOperand(0).getSimpleValueType();
4542   MVT ElVT = VecVT.getVectorElementType();
4543
4544   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4545   return Index / NumElemsPerChunk;
4546 }
4547
4548 static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4549   assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
4550   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4551     llvm_unreachable("Illegal insert subvector for VINSERT");
4552
4553   uint64_t Index =
4554     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4555
4556   MVT VecVT = N->getSimpleValueType(0);
4557   MVT ElVT = VecVT.getVectorElementType();
4558
4559   unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
4560   return Index / NumElemsPerChunk;
4561 }
4562
4563 /// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4564 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4565 /// and VINSERTI128 instructions.
4566 unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4567   return getExtractVEXTRACTImmediate(N, 128);
4568 }
4569
4570 /// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4571 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4572 /// and VINSERTI64x4 instructions.
4573 unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4574   return getExtractVEXTRACTImmediate(N, 256);
4575 }
4576
4577 /// getInsertVINSERT128Immediate - Return the appropriate immediate
4578 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4579 /// and VINSERTI128 instructions.
4580 unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4581   return getInsertVINSERTImmediate(N, 128);
4582 }
4583
4584 /// getInsertVINSERT256Immediate - Return the appropriate immediate
4585 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4586 /// and VINSERTI64x4 instructions.
4587 unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4588   return getInsertVINSERTImmediate(N, 256);
4589 }
4590
4591 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4592 /// constant +0.0.
4593 bool X86::isZeroNode(SDValue Elt) {
4594   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4595     return CN->isNullValue();
4596   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4597     return CFP->getValueAPF().isPosZero();
4598   return false;
4599 }
4600
4601 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4602 /// their permute mask.
4603 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4604                                     SelectionDAG &DAG) {
4605   MVT VT = SVOp->getSimpleValueType(0);
4606   unsigned NumElems = VT.getVectorNumElements();
4607   SmallVector<int, 8> MaskVec;
4608
4609   for (unsigned i = 0; i != NumElems; ++i) {
4610     int Idx = SVOp->getMaskElt(i);
4611     if (Idx >= 0) {
4612       if (Idx < (int)NumElems)
4613         Idx += NumElems;
4614       else
4615         Idx -= NumElems;
4616     }
4617     MaskVec.push_back(Idx);
4618   }
4619   return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
4620                               SVOp->getOperand(0), &MaskVec[0]);
4621 }
4622
4623 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4624 /// match movhlps. The lower half elements should come from upper half of
4625 /// V1 (and in order), and the upper half elements should come from the upper
4626 /// half of V2 (and in order).
4627 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
4628   if (!VT.is128BitVector())
4629     return false;
4630   if (VT.getVectorNumElements() != 4)
4631     return false;
4632   for (unsigned i = 0, e = 2; i != e; ++i)
4633     if (!isUndefOrEqual(Mask[i], i+2))
4634       return false;
4635   for (unsigned i = 2; i != 4; ++i)
4636     if (!isUndefOrEqual(Mask[i], i+4))
4637       return false;
4638   return true;
4639 }
4640
4641 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4642 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4643 /// required.
4644 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4645   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4646     return false;
4647   N = N->getOperand(0).getNode();
4648   if (!ISD::isNON_EXTLoad(N))
4649     return false;
4650   if (LD)
4651     *LD = cast<LoadSDNode>(N);
4652   return true;
4653 }
4654
4655 // Test whether the given value is a vector value which will be legalized
4656 // into a load.
4657 static bool WillBeConstantPoolLoad(SDNode *N) {
4658   if (N->getOpcode() != ISD::BUILD_VECTOR)
4659     return false;
4660
4661   // Check for any non-constant elements.
4662   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4663     switch (N->getOperand(i).getNode()->getOpcode()) {
4664     case ISD::UNDEF:
4665     case ISD::ConstantFP:
4666     case ISD::Constant:
4667       break;
4668     default:
4669       return false;
4670     }
4671
4672   // Vectors of all-zeros and all-ones are materialized with special
4673   // instructions rather than being loaded.
4674   return !ISD::isBuildVectorAllZeros(N) &&
4675          !ISD::isBuildVectorAllOnes(N);
4676 }
4677
4678 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4679 /// match movlp{s|d}. The lower half elements should come from lower half of
4680 /// V1 (and in order), and the upper half elements should come from the upper
4681 /// half of V2 (and in order). And since V1 will become the source of the
4682 /// MOVLP, it must be either a vector load or a scalar load to vector.
4683 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4684                                ArrayRef<int> Mask, MVT VT) {
4685   if (!VT.is128BitVector())
4686     return false;
4687
4688   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4689     return false;
4690   // Is V2 is a vector load, don't do this transformation. We will try to use
4691   // load folding shufps op.
4692   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4693     return false;
4694
4695   unsigned NumElems = VT.getVectorNumElements();
4696
4697   if (NumElems != 2 && NumElems != 4)
4698     return false;
4699   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4700     if (!isUndefOrEqual(Mask[i], i))
4701       return false;
4702   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4703     if (!isUndefOrEqual(Mask[i], i+NumElems))
4704       return false;
4705   return true;
4706 }
4707
4708 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4709 /// all the same.
4710 static bool isSplatVector(SDNode *N) {
4711   if (N->getOpcode() != ISD::BUILD_VECTOR)
4712     return false;
4713
4714   SDValue SplatValue = N->getOperand(0);
4715   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4716     if (N->getOperand(i) != SplatValue)
4717       return false;
4718   return true;
4719 }
4720
4721 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4722 /// to an zero vector.
4723 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4724 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4725   SDValue V1 = N->getOperand(0);
4726   SDValue V2 = N->getOperand(1);
4727   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4728   for (unsigned i = 0; i != NumElems; ++i) {
4729     int Idx = N->getMaskElt(i);
4730     if (Idx >= (int)NumElems) {
4731       unsigned Opc = V2.getOpcode();
4732       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4733         continue;
4734       if (Opc != ISD::BUILD_VECTOR ||
4735           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4736         return false;
4737     } else if (Idx >= 0) {
4738       unsigned Opc = V1.getOpcode();
4739       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4740         continue;
4741       if (Opc != ISD::BUILD_VECTOR ||
4742           !X86::isZeroNode(V1.getOperand(Idx)))
4743         return false;
4744     }
4745   }
4746   return true;
4747 }
4748
4749 /// getZeroVector - Returns a vector of specified type with all zero elements.
4750 ///
4751 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4752                              SelectionDAG &DAG, SDLoc dl) {
4753   assert(VT.isVector() && "Expected a vector type");
4754
4755   // Always build SSE zero vectors as <4 x i32> bitcasted
4756   // to their dest type. This ensures they get CSE'd.
4757   SDValue Vec;
4758   if (VT.is128BitVector()) {  // SSE
4759     if (Subtarget->hasSSE2()) {  // SSE2
4760       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4761       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4762     } else { // SSE1
4763       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4764       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4765     }
4766   } else if (VT.is256BitVector()) { // AVX
4767     if (Subtarget->hasInt256()) { // AVX2
4768       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4769       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4770       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4771                         array_lengthof(Ops));
4772     } else {
4773       // 256-bit logic and arithmetic instructions in AVX are all
4774       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4775       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4776       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4777       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4778                         array_lengthof(Ops));
4779     }
4780   } else if (VT.is512BitVector()) { // AVX-512
4781       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4782       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4783                         Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4784       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
4785   } else
4786     llvm_unreachable("Unexpected vector type");
4787
4788   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4789 }
4790
4791 /// getOnesVector - Returns a vector of specified type with all bits set.
4792 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4793 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4794 /// Then bitcast to their original type, ensuring they get CSE'd.
4795 static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
4796                              SDLoc dl) {
4797   assert(VT.isVector() && "Expected a vector type");
4798
4799   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4800   SDValue Vec;
4801   if (VT.is256BitVector()) {
4802     if (HasInt256) { // AVX2
4803       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4804       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4805                         array_lengthof(Ops));
4806     } else { // AVX
4807       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4808       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4809     }
4810   } else if (VT.is128BitVector()) {
4811     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4812   } else
4813     llvm_unreachable("Unexpected vector type");
4814
4815   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4816 }
4817
4818 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4819 /// that point to V2 points to its first element.
4820 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4821   for (unsigned i = 0; i != NumElems; ++i) {
4822     if (Mask[i] > (int)NumElems) {
4823       Mask[i] = NumElems;
4824     }
4825   }
4826 }
4827
4828 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4829 /// operation of specified width.
4830 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
4831                        SDValue V2) {
4832   unsigned NumElems = VT.getVectorNumElements();
4833   SmallVector<int, 8> Mask;
4834   Mask.push_back(NumElems);
4835   for (unsigned i = 1; i != NumElems; ++i)
4836     Mask.push_back(i);
4837   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4838 }
4839
4840 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4841 static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4842                           SDValue V2) {
4843   unsigned NumElems = VT.getVectorNumElements();
4844   SmallVector<int, 8> Mask;
4845   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4846     Mask.push_back(i);
4847     Mask.push_back(i + NumElems);
4848   }
4849   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4850 }
4851
4852 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4853 static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
4854                           SDValue V2) {
4855   unsigned NumElems = VT.getVectorNumElements();
4856   SmallVector<int, 8> Mask;
4857   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4858     Mask.push_back(i + Half);
4859     Mask.push_back(i + NumElems + Half);
4860   }
4861   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4862 }
4863
4864 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4865 // a generic shuffle instruction because the target has no such instructions.
4866 // Generate shuffles which repeat i16 and i8 several times until they can be
4867 // represented by v4f32 and then be manipulated by target suported shuffles.
4868 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4869   MVT VT = V.getSimpleValueType();
4870   int NumElems = VT.getVectorNumElements();
4871   SDLoc dl(V);
4872
4873   while (NumElems > 4) {
4874     if (EltNo < NumElems/2) {
4875       V = getUnpackl(DAG, dl, VT, V, V);
4876     } else {
4877       V = getUnpackh(DAG, dl, VT, V, V);
4878       EltNo -= NumElems/2;
4879     }
4880     NumElems >>= 1;
4881   }
4882   return V;
4883 }
4884
4885 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4886 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4887   MVT VT = V.getSimpleValueType();
4888   SDLoc dl(V);
4889
4890   if (VT.is128BitVector()) {
4891     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4892     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4893     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4894                              &SplatMask[0]);
4895   } else if (VT.is256BitVector()) {
4896     // To use VPERMILPS to splat scalars, the second half of indicies must
4897     // refer to the higher part, which is a duplication of the lower one,
4898     // because VPERMILPS can only handle in-lane permutations.
4899     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4900                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4901
4902     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4903     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4904                              &SplatMask[0]);
4905   } else
4906     llvm_unreachable("Vector size not supported");
4907
4908   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4909 }
4910
4911 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4912 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4913   MVT SrcVT = SV->getSimpleValueType(0);
4914   SDValue V1 = SV->getOperand(0);
4915   SDLoc dl(SV);
4916
4917   int EltNo = SV->getSplatIndex();
4918   int NumElems = SrcVT.getVectorNumElements();
4919   bool Is256BitVec = SrcVT.is256BitVector();
4920
4921   assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4922          "Unknown how to promote splat for type");
4923
4924   // Extract the 128-bit part containing the splat element and update
4925   // the splat element index when it refers to the higher register.
4926   if (Is256BitVec) {
4927     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4928     if (EltNo >= NumElems/2)
4929       EltNo -= NumElems/2;
4930   }
4931
4932   // All i16 and i8 vector types can't be used directly by a generic shuffle
4933   // instruction because the target has no such instruction. Generate shuffles
4934   // which repeat i16 and i8 several times until they fit in i32, and then can
4935   // be manipulated by target suported shuffles.
4936   MVT EltVT = SrcVT.getVectorElementType();
4937   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4938     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4939
4940   // Recreate the 256-bit vector and place the same 128-bit vector
4941   // into the low and high part. This is necessary because we want
4942   // to use VPERM* to shuffle the vectors
4943   if (Is256BitVec) {
4944     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4945   }
4946
4947   return getLegalSplat(DAG, V1, EltNo);
4948 }
4949
4950 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4951 /// vector of zero or undef vector.  This produces a shuffle where the low
4952 /// element of V2 is swizzled into the zero/undef vector, landing at element
4953 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4954 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4955                                            bool IsZero,
4956                                            const X86Subtarget *Subtarget,
4957                                            SelectionDAG &DAG) {
4958   MVT VT = V2.getSimpleValueType();
4959   SDValue V1 = IsZero
4960     ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
4961   unsigned NumElems = VT.getVectorNumElements();
4962   SmallVector<int, 16> MaskVec;
4963   for (unsigned i = 0; i != NumElems; ++i)
4964     // If this is the insertion idx, put the low elt of V2 here.
4965     MaskVec.push_back(i == Idx ? NumElems : i);
4966   return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
4967 }
4968
4969 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4970 /// target specific opcode. Returns true if the Mask could be calculated.
4971 /// Sets IsUnary to true if only uses one source.
4972 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4973                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4974   unsigned NumElems = VT.getVectorNumElements();
4975   SDValue ImmN;
4976
4977   IsUnary = false;
4978   switch(N->getOpcode()) {
4979   case X86ISD::SHUFP:
4980     ImmN = N->getOperand(N->getNumOperands()-1);
4981     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4982     break;
4983   case X86ISD::UNPCKH:
4984     DecodeUNPCKHMask(VT, Mask);
4985     break;
4986   case X86ISD::UNPCKL:
4987     DecodeUNPCKLMask(VT, Mask);
4988     break;
4989   case X86ISD::MOVHLPS:
4990     DecodeMOVHLPSMask(NumElems, Mask);
4991     break;
4992   case X86ISD::MOVLHPS:
4993     DecodeMOVLHPSMask(NumElems, Mask);
4994     break;
4995   case X86ISD::PALIGNR:
4996     ImmN = N->getOperand(N->getNumOperands()-1);
4997     DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4998     break;
4999   case X86ISD::PSHUFD:
5000   case X86ISD::VPERMILP:
5001     ImmN = N->getOperand(N->getNumOperands()-1);
5002     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5003     IsUnary = true;
5004     break;
5005   case X86ISD::PSHUFHW:
5006     ImmN = N->getOperand(N->getNumOperands()-1);
5007     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5008     IsUnary = true;
5009     break;
5010   case X86ISD::PSHUFLW:
5011     ImmN = N->getOperand(N->getNumOperands()-1);
5012     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5013     IsUnary = true;
5014     break;
5015   case X86ISD::VPERMI:
5016     ImmN = N->getOperand(N->getNumOperands()-1);
5017     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5018     IsUnary = true;
5019     break;
5020   case X86ISD::MOVSS:
5021   case X86ISD::MOVSD: {
5022     // The index 0 always comes from the first element of the second source,
5023     // this is why MOVSS and MOVSD are used in the first place. The other
5024     // elements come from the other positions of the first source vector
5025     Mask.push_back(NumElems);
5026     for (unsigned i = 1; i != NumElems; ++i) {
5027       Mask.push_back(i);
5028     }
5029     break;
5030   }
5031   case X86ISD::VPERM2X128:
5032     ImmN = N->getOperand(N->getNumOperands()-1);
5033     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
5034     if (Mask.empty()) return false;
5035     break;
5036   case X86ISD::MOVDDUP:
5037   case X86ISD::MOVLHPD:
5038   case X86ISD::MOVLPD:
5039   case X86ISD::MOVLPS:
5040   case X86ISD::MOVSHDUP:
5041   case X86ISD::MOVSLDUP:
5042     // Not yet implemented
5043     return false;
5044   default: llvm_unreachable("unknown target shuffle node");
5045   }
5046
5047   return true;
5048 }
5049
5050 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
5051 /// element of the result of the vector shuffle.
5052 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
5053                                    unsigned Depth) {
5054   if (Depth == 6)
5055     return SDValue();  // Limit search depth.
5056
5057   SDValue V = SDValue(N, 0);
5058   EVT VT = V.getValueType();
5059   unsigned Opcode = V.getOpcode();
5060
5061   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5062   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
5063     int Elt = SV->getMaskElt(Index);
5064
5065     if (Elt < 0)
5066       return DAG.getUNDEF(VT.getVectorElementType());
5067
5068     unsigned NumElems = VT.getVectorNumElements();
5069     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5070                                          : SV->getOperand(1);
5071     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
5072   }
5073
5074   // Recurse into target specific vector shuffles to find scalars.
5075   if (isTargetShuffle(Opcode)) {
5076     MVT ShufVT = V.getSimpleValueType();
5077     unsigned NumElems = ShufVT.getVectorNumElements();
5078     SmallVector<int, 16> ShuffleMask;
5079     bool IsUnary;
5080
5081     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
5082       return SDValue();
5083
5084     int Elt = ShuffleMask[Index];
5085     if (Elt < 0)
5086       return DAG.getUNDEF(ShufVT.getVectorElementType());
5087
5088     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
5089                                          : N->getOperand(1);
5090     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
5091                                Depth+1);
5092   }
5093
5094   // Actual nodes that may contain scalar elements
5095   if (Opcode == ISD::BITCAST) {
5096     V = V.getOperand(0);
5097     EVT SrcVT = V.getValueType();
5098     unsigned NumElems = VT.getVectorNumElements();
5099
5100     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
5101       return SDValue();
5102   }
5103
5104   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5105     return (Index == 0) ? V.getOperand(0)
5106                         : DAG.getUNDEF(VT.getVectorElementType());
5107
5108   if (V.getOpcode() == ISD::BUILD_VECTOR)
5109     return V.getOperand(Index);
5110
5111   return SDValue();
5112 }
5113
5114 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
5115 /// shuffle operation which come from a consecutively from a zero. The
5116 /// search can start in two different directions, from left or right.
5117 /// We count undefs as zeros until PreferredNum is reached.
5118 static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5119                                          unsigned NumElems, bool ZerosFromLeft,
5120                                          SelectionDAG &DAG,
5121                                          unsigned PreferredNum = -1U) {
5122   unsigned NumZeros = 0;
5123   for (unsigned i = 0; i != NumElems; ++i) {
5124     unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
5125     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
5126     if (!Elt.getNode())
5127       break;
5128
5129     if (X86::isZeroNode(Elt))
5130       ++NumZeros;
5131     else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5132       NumZeros = std::min(NumZeros + 1, PreferredNum);
5133     else
5134       break;
5135   }
5136
5137   return NumZeros;
5138 }
5139
5140 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5141 /// correspond consecutively to elements from one of the vector operands,
5142 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
5143 static
5144 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5145                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5146                               unsigned NumElems, unsigned &OpNum) {
5147   bool SeenV1 = false;
5148   bool SeenV2 = false;
5149
5150   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
5151     int Idx = SVOp->getMaskElt(i);
5152     // Ignore undef indicies
5153     if (Idx < 0)
5154       continue;
5155
5156     if (Idx < (int)NumElems)
5157       SeenV1 = true;
5158     else
5159       SeenV2 = true;
5160
5161     // Only accept consecutive elements from the same vector
5162     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5163       return false;
5164   }
5165
5166   OpNum = SeenV1 ? 0 : 1;
5167   return true;
5168 }
5169
5170 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5171 /// logical left shift of a vector.
5172 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5173                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5174   unsigned NumElems =
5175     SVOp->getSimpleValueType(0).getVectorNumElements();
5176   unsigned NumZeros = getNumOfConsecutiveZeros(
5177       SVOp, NumElems, false /* check zeros from right */, DAG,
5178       SVOp->getMaskElt(0));
5179   unsigned OpSrc;
5180
5181   if (!NumZeros)
5182     return false;
5183
5184   // Considering the elements in the mask that are not consecutive zeros,
5185   // check if they consecutively come from only one of the source vectors.
5186   //
5187   //               V1 = {X, A, B, C}     0
5188   //                         \  \  \    /
5189   //   vector_shuffle V1, V2 <1, 2, 3, X>
5190   //
5191   if (!isShuffleMaskConsecutive(SVOp,
5192             0,                   // Mask Start Index
5193             NumElems-NumZeros,   // Mask End Index(exclusive)
5194             NumZeros,            // Where to start looking in the src vector
5195             NumElems,            // Number of elements in vector
5196             OpSrc))              // Which source operand ?
5197     return false;
5198
5199   isLeft = false;
5200   ShAmt = NumZeros;
5201   ShVal = SVOp->getOperand(OpSrc);
5202   return true;
5203 }
5204
5205 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5206 /// logical left shift of a vector.
5207 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5208                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5209   unsigned NumElems =
5210     SVOp->getSimpleValueType(0).getVectorNumElements();
5211   unsigned NumZeros = getNumOfConsecutiveZeros(
5212       SVOp, NumElems, true /* check zeros from left */, DAG,
5213       NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
5214   unsigned OpSrc;
5215
5216   if (!NumZeros)
5217     return false;
5218
5219   // Considering the elements in the mask that are not consecutive zeros,
5220   // check if they consecutively come from only one of the source vectors.
5221   //
5222   //                           0    { A, B, X, X } = V2
5223   //                          / \    /  /
5224   //   vector_shuffle V1, V2 <X, X, 4, 5>
5225   //
5226   if (!isShuffleMaskConsecutive(SVOp,
5227             NumZeros,     // Mask Start Index
5228             NumElems,     // Mask End Index(exclusive)
5229             0,            // Where to start looking in the src vector
5230             NumElems,     // Number of elements in vector
5231             OpSrc))       // Which source operand ?
5232     return false;
5233
5234   isLeft = true;
5235   ShAmt = NumZeros;
5236   ShVal = SVOp->getOperand(OpSrc);
5237   return true;
5238 }
5239
5240 /// isVectorShift - Returns true if the shuffle can be implemented as a
5241 /// logical left or right shift of a vector.
5242 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5243                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
5244   // Although the logic below support any bitwidth size, there are no
5245   // shift instructions which handle more than 128-bit vectors.
5246   if (!SVOp->getSimpleValueType(0).is128BitVector())
5247     return false;
5248
5249   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5250       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5251     return true;
5252
5253   return false;
5254 }
5255
5256 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5257 ///
5258 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
5259                                        unsigned NumNonZero, unsigned NumZero,
5260                                        SelectionDAG &DAG,
5261                                        const X86Subtarget* Subtarget,
5262                                        const TargetLowering &TLI) {
5263   if (NumNonZero > 8)
5264     return SDValue();
5265
5266   SDLoc dl(Op);
5267   SDValue V(0, 0);
5268   bool First = true;
5269   for (unsigned i = 0; i < 16; ++i) {
5270     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5271     if (ThisIsNonZero && First) {
5272       if (NumZero)
5273         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5274       else
5275         V = DAG.getUNDEF(MVT::v8i16);
5276       First = false;
5277     }
5278
5279     if ((i & 1) != 0) {
5280       SDValue ThisElt(0, 0), LastElt(0, 0);
5281       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5282       if (LastIsNonZero) {
5283         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
5284                               MVT::i16, Op.getOperand(i-1));
5285       }
5286       if (ThisIsNonZero) {
5287         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5288         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5289                               ThisElt, DAG.getConstant(8, MVT::i8));
5290         if (LastIsNonZero)
5291           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
5292       } else
5293         ThisElt = LastElt;
5294
5295       if (ThisElt.getNode())
5296         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
5297                         DAG.getIntPtrConstant(i/2));
5298     }
5299   }
5300
5301   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
5302 }
5303
5304 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
5305 ///
5306 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
5307                                      unsigned NumNonZero, unsigned NumZero,
5308                                      SelectionDAG &DAG,
5309                                      const X86Subtarget* Subtarget,
5310                                      const TargetLowering &TLI) {
5311   if (NumNonZero > 4)
5312     return SDValue();
5313
5314   SDLoc dl(Op);
5315   SDValue V(0, 0);
5316   bool First = true;
5317   for (unsigned i = 0; i < 8; ++i) {
5318     bool isNonZero = (NonZeros & (1 << i)) != 0;
5319     if (isNonZero) {
5320       if (First) {
5321         if (NumZero)
5322           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
5323         else
5324           V = DAG.getUNDEF(MVT::v8i16);
5325         First = false;
5326       }
5327       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
5328                       MVT::v8i16, V, Op.getOperand(i),
5329                       DAG.getIntPtrConstant(i));
5330     }
5331   }
5332
5333   return V;
5334 }
5335
5336 /// getVShift - Return a vector logical shift node.
5337 ///
5338 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5339                          unsigned NumBits, SelectionDAG &DAG,
5340                          const TargetLowering &TLI, SDLoc dl) {
5341   assert(VT.is128BitVector() && "Unknown type for VShift");
5342   EVT ShVT = MVT::v2i64;
5343   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
5344   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5345   return DAG.getNode(ISD::BITCAST, dl, VT,
5346                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5347                              DAG.getConstant(NumBits,
5348                                   TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
5349 }
5350
5351 static SDValue
5352 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
5353
5354   // Check if the scalar load can be widened into a vector load. And if
5355   // the address is "base + cst" see if the cst can be "absorbed" into
5356   // the shuffle mask.
5357   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5358     SDValue Ptr = LD->getBasePtr();
5359     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5360       return SDValue();
5361     EVT PVT = LD->getValueType(0);
5362     if (PVT != MVT::i32 && PVT != MVT::f32)
5363       return SDValue();
5364
5365     int FI = -1;
5366     int64_t Offset = 0;
5367     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5368       FI = FINode->getIndex();
5369       Offset = 0;
5370     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5371                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5372       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5373       Offset = Ptr.getConstantOperandVal(1);
5374       Ptr = Ptr.getOperand(0);
5375     } else {
5376       return SDValue();
5377     }
5378
5379     // FIXME: 256-bit vector instructions don't require a strict alignment,
5380     // improve this code to support it better.
5381     unsigned RequiredAlign = VT.getSizeInBits()/8;
5382     SDValue Chain = LD->getChain();
5383     // Make sure the stack object alignment is at least 16 or 32.
5384     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5385     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5386       if (MFI->isFixedObjectIndex(FI)) {
5387         // Can't change the alignment. FIXME: It's possible to compute
5388         // the exact stack offset and reference FI + adjust offset instead.
5389         // If someone *really* cares about this. That's the way to implement it.
5390         return SDValue();
5391       } else {
5392         MFI->setObjectAlignment(FI, RequiredAlign);
5393       }
5394     }
5395
5396     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5397     // Ptr + (Offset & ~15).
5398     if (Offset < 0)
5399       return SDValue();
5400     if ((Offset % RequiredAlign) & 3)
5401       return SDValue();
5402     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5403     if (StartOffset)
5404       Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
5405                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5406
5407     int EltNo = (Offset - StartOffset) >> 2;
5408     unsigned NumElems = VT.getVectorNumElements();
5409
5410     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5411     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5412                              LD->getPointerInfo().getWithOffset(StartOffset),
5413                              false, false, false, 0);
5414
5415     SmallVector<int, 8> Mask;
5416     for (unsigned i = 0; i != NumElems; ++i)
5417       Mask.push_back(EltNo);
5418
5419     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
5420   }
5421
5422   return SDValue();
5423 }
5424
5425 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5426 /// vector of type 'VT', see if the elements can be replaced by a single large
5427 /// load which has the same value as a build_vector whose operands are 'elts'.
5428 ///
5429 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5430 ///
5431 /// FIXME: we'd also like to handle the case where the last elements are zero
5432 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5433 /// There's even a handy isZeroNode for that purpose.
5434 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5435                                         SDLoc &DL, SelectionDAG &DAG,
5436                                         bool isAfterLegalize) {
5437   EVT EltVT = VT.getVectorElementType();
5438   unsigned NumElems = Elts.size();
5439
5440   LoadSDNode *LDBase = NULL;
5441   unsigned LastLoadedElt = -1U;
5442
5443   // For each element in the initializer, see if we've found a load or an undef.
5444   // If we don't find an initial load element, or later load elements are
5445   // non-consecutive, bail out.
5446   for (unsigned i = 0; i < NumElems; ++i) {
5447     SDValue Elt = Elts[i];
5448
5449     if (!Elt.getNode() ||
5450         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5451       return SDValue();
5452     if (!LDBase) {
5453       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5454         return SDValue();
5455       LDBase = cast<LoadSDNode>(Elt.getNode());
5456       LastLoadedElt = i;
5457       continue;
5458     }
5459     if (Elt.getOpcode() == ISD::UNDEF)
5460       continue;
5461
5462     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5463     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5464       return SDValue();
5465     LastLoadedElt = i;
5466   }
5467
5468   // If we have found an entire vector of loads and undefs, then return a large
5469   // load of the entire vector width starting at the base pointer.  If we found
5470   // consecutive loads for the low half, generate a vzext_load node.
5471   if (LastLoadedElt == NumElems - 1) {
5472
5473     if (isAfterLegalize &&
5474         !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5475       return SDValue();
5476
5477     SDValue NewLd = SDValue();
5478
5479     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5480       NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5481                           LDBase->getPointerInfo(),
5482                           LDBase->isVolatile(), LDBase->isNonTemporal(),
5483                           LDBase->isInvariant(), 0);
5484     NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5485                         LDBase->getPointerInfo(),
5486                         LDBase->isVolatile(), LDBase->isNonTemporal(),
5487                         LDBase->isInvariant(), LDBase->getAlignment());
5488
5489     if (LDBase->hasAnyUseOfValue(1)) {
5490       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5491                                      SDValue(LDBase, 1),
5492                                      SDValue(NewLd.getNode(), 1));
5493       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5494       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5495                              SDValue(NewLd.getNode(), 1));
5496     }
5497
5498     return NewLd;
5499   }
5500   if (NumElems == 4 && LastLoadedElt == 1 &&
5501       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5502     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5503     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5504     SDValue ResNode =
5505         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5506                                 array_lengthof(Ops), MVT::i64,
5507                                 LDBase->getPointerInfo(),
5508                                 LDBase->getAlignment(),
5509                                 false/*isVolatile*/, true/*ReadMem*/,
5510                                 false/*WriteMem*/);
5511
5512     // Make sure the newly-created LOAD is in the same position as LDBase in
5513     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5514     // update uses of LDBase's output chain to use the TokenFactor.
5515     if (LDBase->hasAnyUseOfValue(1)) {
5516       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5517                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5518       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5519       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5520                              SDValue(ResNode.getNode(), 1));
5521     }
5522
5523     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5524   }
5525   return SDValue();
5526 }
5527
5528 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5529 /// to generate a splat value for the following cases:
5530 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5531 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5532 /// a scalar load, or a constant.
5533 /// The VBROADCAST node is returned when a pattern is found,
5534 /// or SDValue() otherwise.
5535 static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5536                                     SelectionDAG &DAG) {
5537   if (!Subtarget->hasFp256())
5538     return SDValue();
5539
5540   MVT VT = Op.getSimpleValueType();
5541   SDLoc dl(Op);
5542
5543   assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
5544          "Unsupported vector type for broadcast.");
5545
5546   SDValue Ld;
5547   bool ConstSplatVal;
5548
5549   switch (Op.getOpcode()) {
5550     default:
5551       // Unknown pattern found.
5552       return SDValue();
5553
5554     case ISD::BUILD_VECTOR: {
5555       // The BUILD_VECTOR node must be a splat.
5556       if (!isSplatVector(Op.getNode()))
5557         return SDValue();
5558
5559       Ld = Op.getOperand(0);
5560       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5561                      Ld.getOpcode() == ISD::ConstantFP);
5562
5563       // The suspected load node has several users. Make sure that all
5564       // of its users are from the BUILD_VECTOR node.
5565       // Constants may have multiple users.
5566       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5567         return SDValue();
5568       break;
5569     }
5570
5571     case ISD::VECTOR_SHUFFLE: {
5572       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5573
5574       // Shuffles must have a splat mask where the first element is
5575       // broadcasted.
5576       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5577         return SDValue();
5578
5579       SDValue Sc = Op.getOperand(0);
5580       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5581           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5582
5583         if (!Subtarget->hasInt256())
5584           return SDValue();
5585
5586         // Use the register form of the broadcast instruction available on AVX2.
5587         if (VT.getSizeInBits() >= 256)
5588           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5589         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5590       }
5591
5592       Ld = Sc.getOperand(0);
5593       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5594                        Ld.getOpcode() == ISD::ConstantFP);
5595
5596       // The scalar_to_vector node and the suspected
5597       // load node must have exactly one user.
5598       // Constants may have multiple users.
5599
5600       // AVX-512 has register version of the broadcast
5601       bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5602         Ld.getValueType().getSizeInBits() >= 32;
5603       if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5604           !hasRegVer))
5605         return SDValue();
5606       break;
5607     }
5608   }
5609
5610   bool IsGE256 = (VT.getSizeInBits() >= 256);
5611
5612   // Handle the broadcasting a single constant scalar from the constant pool
5613   // into a vector. On Sandybridge it is still better to load a constant vector
5614   // from the constant pool and not to broadcast it from a scalar.
5615   if (ConstSplatVal && Subtarget->hasInt256()) {
5616     EVT CVT = Ld.getValueType();
5617     assert(!CVT.isVector() && "Must not broadcast a vector type");
5618     unsigned ScalarSize = CVT.getSizeInBits();
5619
5620     if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
5621       const Constant *C = 0;
5622       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5623         C = CI->getConstantIntValue();
5624       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5625         C = CF->getConstantFPValue();
5626
5627       assert(C && "Invalid constant type");
5628
5629       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5630       SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
5631       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5632       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5633                        MachinePointerInfo::getConstantPool(),
5634                        false, false, false, Alignment);
5635
5636       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5637     }
5638   }
5639
5640   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5641   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5642
5643   // Handle AVX2 in-register broadcasts.
5644   if (!IsLoad && Subtarget->hasInt256() &&
5645       (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
5646     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5647
5648   // The scalar source must be a normal load.
5649   if (!IsLoad)
5650     return SDValue();
5651
5652   if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
5653     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5654
5655   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5656   // double since there is no vbroadcastsd xmm
5657   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5658     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5659       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5660   }
5661
5662   // Unsupported broadcast.
5663   return SDValue();
5664 }
5665
5666 static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
5667   MVT VT = Op.getSimpleValueType();
5668
5669   // Skip if insert_vec_elt is not supported.
5670   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5671   if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5672     return SDValue();
5673
5674   SDLoc DL(Op);
5675   unsigned NumElems = Op.getNumOperands();
5676
5677   SDValue VecIn1;
5678   SDValue VecIn2;
5679   SmallVector<unsigned, 4> InsertIndices;
5680   SmallVector<int, 8> Mask(NumElems, -1);
5681
5682   for (unsigned i = 0; i != NumElems; ++i) {
5683     unsigned Opc = Op.getOperand(i).getOpcode();
5684
5685     if (Opc == ISD::UNDEF)
5686       continue;
5687
5688     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5689       // Quit if more than 1 elements need inserting.
5690       if (InsertIndices.size() > 1)
5691         return SDValue();
5692
5693       InsertIndices.push_back(i);
5694       continue;
5695     }
5696
5697     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5698     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5699
5700     // Quit if extracted from vector of different type.
5701     if (ExtractedFromVec.getValueType() != VT)
5702       return SDValue();
5703
5704     // Quit if non-constant index.
5705     if (!isa<ConstantSDNode>(ExtIdx))
5706       return SDValue();
5707
5708     if (VecIn1.getNode() == 0)
5709       VecIn1 = ExtractedFromVec;
5710     else if (VecIn1 != ExtractedFromVec) {
5711       if (VecIn2.getNode() == 0)
5712         VecIn2 = ExtractedFromVec;
5713       else if (VecIn2 != ExtractedFromVec)
5714         // Quit if more than 2 vectors to shuffle
5715         return SDValue();
5716     }
5717
5718     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5719
5720     if (ExtractedFromVec == VecIn1)
5721       Mask[i] = Idx;
5722     else if (ExtractedFromVec == VecIn2)
5723       Mask[i] = Idx + NumElems;
5724   }
5725
5726   if (VecIn1.getNode() == 0)
5727     return SDValue();
5728
5729   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5730   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5731   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5732     unsigned Idx = InsertIndices[i];
5733     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5734                      DAG.getIntPtrConstant(Idx));
5735   }
5736
5737   return NV;
5738 }
5739
5740 // Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5741 SDValue
5742 X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5743
5744   MVT VT = Op.getSimpleValueType();
5745   assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5746          "Unexpected type in LowerBUILD_VECTORvXi1!");
5747
5748   SDLoc dl(Op);
5749   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5750     SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5751     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5752                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5753     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5754                        Ops, VT.getVectorNumElements());
5755   }
5756
5757   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5758     SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5759     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5760                       Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5761     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5762                        Ops, VT.getVectorNumElements());
5763   }
5764
5765   bool AllContants = true;
5766   uint64_t Immediate = 0;
5767   for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5768     SDValue In = Op.getOperand(idx);
5769     if (In.getOpcode() == ISD::UNDEF)
5770       continue;
5771     if (!isa<ConstantSDNode>(In)) {
5772       AllContants = false;
5773       break;
5774     }
5775     if (cast<ConstantSDNode>(In)->getZExtValue())
5776       Immediate |= (1ULL << idx);
5777   }
5778
5779   if (AllContants) {
5780     SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5781       DAG.getConstant(Immediate, MVT::i16));
5782     return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
5783                        DAG.getIntPtrConstant(0));
5784   }
5785
5786   // Splat vector (with undefs)
5787   SDValue In = Op.getOperand(0);
5788   for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5789     if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5790       llvm_unreachable("Unsupported predicate operation");
5791   }
5792
5793   SDValue EFLAGS, X86CC;
5794   if (In.getOpcode() == ISD::SETCC) {
5795     SDValue Op0 = In.getOperand(0);
5796     SDValue Op1 = In.getOperand(1);
5797     ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5798     bool isFP = Op1.getValueType().isFloatingPoint();
5799     unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5800
5801     assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5802
5803     X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5804     EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5805     EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5806   } else if (In.getOpcode() == X86ISD::SETCC) {
5807     X86CC = In.getOperand(0);
5808     EFLAGS = In.getOperand(1);
5809   } else {
5810     // The algorithm:
5811     //   Bit1 = In & 0x1
5812     //   if (Bit1 != 0)
5813     //     ZF = 0
5814     //   else
5815     //     ZF = 1
5816     //   if (ZF == 0)
5817     //     res = allOnes ### CMOVNE -1, %res
5818     //   else
5819     //     res = allZero
5820     MVT InVT = In.getSimpleValueType();
5821     SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5822     EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5823     X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5824   }
5825
5826   if (VT == MVT::v16i1) {
5827     SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5828     SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5829     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5830           Cst0, Cst1, X86CC, EFLAGS);
5831     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5832   }
5833
5834   if (VT == MVT::v8i1) {
5835     SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5836     SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5837     SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5838           Cst0, Cst1, X86CC, EFLAGS);
5839     CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5840     return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5841   }
5842   llvm_unreachable("Unsupported predicate operation");
5843 }
5844
5845 SDValue
5846 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5847   SDLoc dl(Op);
5848
5849   MVT VT = Op.getSimpleValueType();
5850   MVT ExtVT = VT.getVectorElementType();
5851   unsigned NumElems = Op.getNumOperands();
5852
5853   // Generate vectors for predicate vectors.
5854   if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5855     return LowerBUILD_VECTORvXi1(Op, DAG);
5856
5857   // Vectors containing all zeros can be matched by pxor and xorps later
5858   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5859     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5860     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5861     if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
5862       return Op;
5863
5864     return getZeroVector(VT, Subtarget, DAG, dl);
5865   }
5866
5867   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5868   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5869   // vpcmpeqd on 256-bit vectors.
5870   if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
5871     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5872       return Op;
5873
5874     if (!VT.is512BitVector())
5875       return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5876   }
5877
5878   SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
5879   if (Broadcast.getNode())
5880     return Broadcast;
5881
5882   unsigned EVTBits = ExtVT.getSizeInBits();
5883
5884   unsigned NumZero  = 0;
5885   unsigned NumNonZero = 0;
5886   unsigned NonZeros = 0;
5887   bool IsAllConstants = true;
5888   SmallSet<SDValue, 8> Values;
5889   for (unsigned i = 0; i < NumElems; ++i) {
5890     SDValue Elt = Op.getOperand(i);
5891     if (Elt.getOpcode() == ISD::UNDEF)
5892       continue;
5893     Values.insert(Elt);
5894     if (Elt.getOpcode() != ISD::Constant &&
5895         Elt.getOpcode() != ISD::ConstantFP)
5896       IsAllConstants = false;
5897     if (X86::isZeroNode(Elt))
5898       NumZero++;
5899     else {
5900       NonZeros |= (1 << i);
5901       NumNonZero++;
5902     }
5903   }
5904
5905   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5906   if (NumNonZero == 0)
5907     return DAG.getUNDEF(VT);
5908
5909   // Special case for single non-zero, non-undef, element.
5910   if (NumNonZero == 1) {
5911     unsigned Idx = countTrailingZeros(NonZeros);
5912     SDValue Item = Op.getOperand(Idx);
5913
5914     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5915     // the value are obviously zero, truncate the value to i32 and do the
5916     // insertion that way.  Only do this if the value is non-constant or if the
5917     // value is a constant being inserted into element 0.  It is cheaper to do
5918     // a constant pool load than it is to do a movd + shuffle.
5919     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5920         (!IsAllConstants || Idx == 0)) {
5921       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5922         // Handle SSE only.
5923         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5924         EVT VecVT = MVT::v4i32;
5925         unsigned VecElts = 4;
5926
5927         // Truncate the value (which may itself be a constant) to i32, and
5928         // convert it to a vector with movd (S2V+shuffle to zero extend).
5929         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5930         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5931         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5932
5933         // Now we have our 32-bit value zero extended in the low element of
5934         // a vector.  If Idx != 0, swizzle it into place.
5935         if (Idx != 0) {
5936           SmallVector<int, 4> Mask;
5937           Mask.push_back(Idx);
5938           for (unsigned i = 1; i != VecElts; ++i)
5939             Mask.push_back(i);
5940           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5941                                       &Mask[0]);
5942         }
5943         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5944       }
5945     }
5946
5947     // If we have a constant or non-constant insertion into the low element of
5948     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5949     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5950     // depending on what the source datatype is.
5951     if (Idx == 0) {
5952       if (NumZero == 0)
5953         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5954
5955       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5956           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5957         if (VT.is256BitVector() || VT.is512BitVector()) {
5958           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5959           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5960                              Item, DAG.getIntPtrConstant(0));
5961         }
5962         assert(VT.is128BitVector() && "Expected an SSE value type!");
5963         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5964         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5965         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5966       }
5967
5968       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5969         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5970         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5971         if (VT.is256BitVector()) {
5972           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5973           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5974         } else {
5975           assert(VT.is128BitVector() && "Expected an SSE value type!");
5976           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5977         }
5978         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5979       }
5980     }
5981
5982     // Is it a vector logical left shift?
5983     if (NumElems == 2 && Idx == 1 &&
5984         X86::isZeroNode(Op.getOperand(0)) &&
5985         !X86::isZeroNode(Op.getOperand(1))) {
5986       unsigned NumBits = VT.getSizeInBits();
5987       return getVShift(true, VT,
5988                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5989                                    VT, Op.getOperand(1)),
5990                        NumBits/2, DAG, *this, dl);
5991     }
5992
5993     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5994       return SDValue();
5995
5996     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5997     // is a non-constant being inserted into an element other than the low one,
5998     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5999     // movd/movss) to move this into the low element, then shuffle it into
6000     // place.
6001     if (EVTBits == 32) {
6002       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
6003
6004       // Turn it into a shuffle of zero and zero-extended scalar to vector.
6005       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
6006       SmallVector<int, 8> MaskVec;
6007       for (unsigned i = 0; i != NumElems; ++i)
6008         MaskVec.push_back(i == Idx ? 0 : 1);
6009       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
6010     }
6011   }
6012
6013   // Splat is obviously ok. Let legalizer expand it to a shuffle.
6014   if (Values.size() == 1) {
6015     if (EVTBits == 32) {
6016       // Instead of a shuffle like this:
6017       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
6018       // Check if it's possible to issue this instead.
6019       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
6020       unsigned Idx = countTrailingZeros(NonZeros);
6021       SDValue Item = Op.getOperand(Idx);
6022       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
6023         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
6024     }
6025     return SDValue();
6026   }
6027
6028   // A vector full of immediates; various special cases are already
6029   // handled, so this is best done with a single constant-pool load.
6030   if (IsAllConstants)
6031     return SDValue();
6032
6033   // For AVX-length vectors, build the individual 128-bit pieces and use
6034   // shuffles to put them in place.
6035   if (VT.is256BitVector()) {
6036     SmallVector<SDValue, 32> V;
6037     for (unsigned i = 0; i != NumElems; ++i)
6038       V.push_back(Op.getOperand(i));
6039
6040     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6041
6042     // Build both the lower and upper subvector.
6043     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
6044     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
6045                                 NumElems/2);
6046
6047     // Recreate the wider vector with the lower and upper part.
6048     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
6049   }
6050
6051   // Let legalizer expand 2-wide build_vectors.
6052   if (EVTBits == 64) {
6053     if (NumNonZero == 1) {
6054       // One half is zero or undef.
6055       unsigned Idx = countTrailingZeros(NonZeros);
6056       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
6057                                  Op.getOperand(Idx));
6058       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
6059     }
6060     return SDValue();
6061   }
6062
6063   // If element VT is < 32 bits, convert it to inserts into a zero vector.
6064   if (EVTBits == 8 && NumElems == 16) {
6065     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
6066                                         Subtarget, *this);
6067     if (V.getNode()) return V;
6068   }
6069
6070   if (EVTBits == 16 && NumElems == 8) {
6071     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
6072                                       Subtarget, *this);
6073     if (V.getNode()) return V;
6074   }
6075
6076   // If element VT is == 32 bits, turn it into a number of shuffles.
6077   SmallVector<SDValue, 8> V(NumElems);
6078   if (NumElems == 4 && NumZero > 0) {
6079     for (unsigned i = 0; i < 4; ++i) {
6080       bool isZero = !(NonZeros & (1 << i));
6081       if (isZero)
6082         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
6083       else
6084         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6085     }
6086
6087     for (unsigned i = 0; i < 2; ++i) {
6088       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6089         default: break;
6090         case 0:
6091           V[i] = V[i*2];  // Must be a zero vector.
6092           break;
6093         case 1:
6094           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
6095           break;
6096         case 2:
6097           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
6098           break;
6099         case 3:
6100           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
6101           break;
6102       }
6103     }
6104
6105     bool Reverse1 = (NonZeros & 0x3) == 2;
6106     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6107     int MaskVec[] = {
6108       Reverse1 ? 1 : 0,
6109       Reverse1 ? 0 : 1,
6110       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6111       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
6112     };
6113     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
6114   }
6115
6116   if (Values.size() > 1 && VT.is128BitVector()) {
6117     // Check for a build vector of consecutive loads.
6118     for (unsigned i = 0; i < NumElems; ++i)
6119       V[i] = Op.getOperand(i);
6120
6121     // Check for elements which are consecutive loads.
6122     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
6123     if (LD.getNode())
6124       return LD;
6125
6126     // Check for a build vector from mostly shuffle plus few inserting.
6127     SDValue Sh = buildFromShuffleMostly(Op, DAG);
6128     if (Sh.getNode())
6129       return Sh;
6130
6131     // For SSE 4.1, use insertps to put the high elements into the low element.
6132     if (getSubtarget()->hasSSE41()) {
6133       SDValue Result;
6134       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6135         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6136       else
6137         Result = DAG.getUNDEF(VT);
6138
6139       for (unsigned i = 1; i < NumElems; ++i) {
6140         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6141         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
6142                              Op.getOperand(i), DAG.getIntPtrConstant(i));
6143       }
6144       return Result;
6145     }
6146
6147     // Otherwise, expand into a number of unpckl*, start by extending each of
6148     // our (non-undef) elements to the full vector width with the element in the
6149     // bottom slot of the vector (which generates no code for SSE).
6150     for (unsigned i = 0; i < NumElems; ++i) {
6151       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6152         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6153       else
6154         V[i] = DAG.getUNDEF(VT);
6155     }
6156
6157     // Next, we iteratively mix elements, e.g. for v4f32:
6158     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6159     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6160     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
6161     unsigned EltStride = NumElems >> 1;
6162     while (EltStride != 0) {
6163       for (unsigned i = 0; i < EltStride; ++i) {
6164         // If V[i+EltStride] is undef and this is the first round of mixing,
6165         // then it is safe to just drop this shuffle: V[i] is already in the
6166         // right place, the one element (since it's the first round) being
6167         // inserted as undef can be dropped.  This isn't safe for successive
6168         // rounds because they will permute elements within both vectors.
6169         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6170             EltStride == NumElems/2)
6171           continue;
6172
6173         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
6174       }
6175       EltStride >>= 1;
6176     }
6177     return V[0];
6178   }
6179   return SDValue();
6180 }
6181
6182 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6183 // to create 256-bit vectors from two other 128-bit ones.
6184 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6185   SDLoc dl(Op);
6186   MVT ResVT = Op.getSimpleValueType();
6187
6188   assert((ResVT.is256BitVector() ||
6189           ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
6190
6191   SDValue V1 = Op.getOperand(0);
6192   SDValue V2 = Op.getOperand(1);
6193   unsigned NumElems = ResVT.getVectorNumElements();
6194   if(ResVT.is256BitVector())
6195     return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6196
6197   if (Op.getNumOperands() == 4) {
6198     MVT HalfVT = MVT::getVectorVT(ResVT.getScalarType(),
6199                                 ResVT.getVectorNumElements()/2);
6200     SDValue V3 = Op.getOperand(2);
6201     SDValue V4 = Op.getOperand(3);
6202     return Concat256BitVectors(Concat128BitVectors(V1, V2, HalfVT, NumElems/2, DAG, dl),
6203       Concat128BitVectors(V3, V4, HalfVT, NumElems/2, DAG, dl), ResVT, NumElems, DAG, dl);
6204   }
6205   return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
6206 }
6207
6208 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
6209   MVT LLVM_ATTRIBUTE_UNUSED VT = Op.getSimpleValueType();
6210   assert((VT.is256BitVector() && Op.getNumOperands() == 2) ||
6211          (VT.is512BitVector() && (Op.getNumOperands() == 2 ||
6212           Op.getNumOperands() == 4)));
6213
6214   // AVX can use the vinsertf128 instruction to create 256-bit vectors
6215   // from two other 128-bit ones.
6216
6217   // 512-bit vector may contain 2 256-bit vectors or 4 128-bit vectors
6218   return LowerAVXCONCAT_VECTORS(Op, DAG);
6219 }
6220
6221 // Try to lower a shuffle node into a simple blend instruction.
6222 static SDValue
6223 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6224                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
6225   SDValue V1 = SVOp->getOperand(0);
6226   SDValue V2 = SVOp->getOperand(1);
6227   SDLoc dl(SVOp);
6228   MVT VT = SVOp->getSimpleValueType(0);
6229   MVT EltVT = VT.getVectorElementType();
6230   unsigned NumElems = VT.getVectorNumElements();
6231
6232   // There is no blend with immediate in AVX-512.
6233   if (VT.is512BitVector())
6234     return SDValue();
6235
6236   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6237     return SDValue();
6238   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
6239     return SDValue();
6240
6241   // Check the mask for BLEND and build the value.
6242   unsigned MaskValue = 0;
6243   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
6244   unsigned NumLanes = (NumElems-1)/8 + 1;
6245   unsigned NumElemsInLane = NumElems / NumLanes;
6246
6247   // Blend for v16i16 should be symetric for the both lanes.
6248   for (unsigned i = 0; i < NumElemsInLane; ++i) {
6249
6250     int SndLaneEltIdx = (NumLanes == 2) ?
6251       SVOp->getMaskElt(i + NumElemsInLane) : -1;
6252     int EltIdx = SVOp->getMaskElt(i);
6253
6254     if ((EltIdx < 0 || EltIdx == (int)i) &&
6255         (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
6256       continue;
6257
6258     if (((unsigned)EltIdx == (i + NumElems)) &&
6259         (SndLaneEltIdx < 0 ||
6260          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6261       MaskValue |= (1<<i);
6262     else
6263       return SDValue();
6264   }
6265
6266   // Convert i32 vectors to floating point if it is not AVX2.
6267   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
6268   MVT BlendVT = VT;
6269   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
6270     BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6271                                NumElems);
6272     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6273     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6274   }
6275
6276   SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6277                             DAG.getConstant(MaskValue, MVT::i32));
6278   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
6279 }
6280
6281 // v8i16 shuffles - Prefer shuffles in the following order:
6282 // 1. [all]   pshuflw, pshufhw, optional move
6283 // 2. [ssse3] 1 x pshufb
6284 // 3. [ssse3] 2 x pshufb + 1 x por
6285 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
6286 static SDValue
6287 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6288                          SelectionDAG &DAG) {
6289   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6290   SDValue V1 = SVOp->getOperand(0);
6291   SDValue V2 = SVOp->getOperand(1);
6292   SDLoc dl(SVOp);
6293   SmallVector<int, 8> MaskVals;
6294
6295   // Determine if more than 1 of the words in each of the low and high quadwords
6296   // of the result come from the same quadword of one of the two inputs.  Undef
6297   // mask values count as coming from any quadword, for better codegen.
6298   unsigned LoQuad[] = { 0, 0, 0, 0 };
6299   unsigned HiQuad[] = { 0, 0, 0, 0 };
6300   std::bitset<4> InputQuads;
6301   for (unsigned i = 0; i < 8; ++i) {
6302     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
6303     int EltIdx = SVOp->getMaskElt(i);
6304     MaskVals.push_back(EltIdx);
6305     if (EltIdx < 0) {
6306       ++Quad[0];
6307       ++Quad[1];
6308       ++Quad[2];
6309       ++Quad[3];
6310       continue;
6311     }
6312     ++Quad[EltIdx / 4];
6313     InputQuads.set(EltIdx / 4);
6314   }
6315
6316   int BestLoQuad = -1;
6317   unsigned MaxQuad = 1;
6318   for (unsigned i = 0; i < 4; ++i) {
6319     if (LoQuad[i] > MaxQuad) {
6320       BestLoQuad = i;
6321       MaxQuad = LoQuad[i];
6322     }
6323   }
6324
6325   int BestHiQuad = -1;
6326   MaxQuad = 1;
6327   for (unsigned i = 0; i < 4; ++i) {
6328     if (HiQuad[i] > MaxQuad) {
6329       BestHiQuad = i;
6330       MaxQuad = HiQuad[i];
6331     }
6332   }
6333
6334   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
6335   // of the two input vectors, shuffle them into one input vector so only a
6336   // single pshufb instruction is necessary. If There are more than 2 input
6337   // quads, disable the next transformation since it does not help SSSE3.
6338   bool V1Used = InputQuads[0] || InputQuads[1];
6339   bool V2Used = InputQuads[2] || InputQuads[3];
6340   if (Subtarget->hasSSSE3()) {
6341     if (InputQuads.count() == 2 && V1Used && V2Used) {
6342       BestLoQuad = InputQuads[0] ? 0 : 1;
6343       BestHiQuad = InputQuads[2] ? 2 : 3;
6344     }
6345     if (InputQuads.count() > 2) {
6346       BestLoQuad = -1;
6347       BestHiQuad = -1;
6348     }
6349   }
6350
6351   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6352   // the shuffle mask.  If a quad is scored as -1, that means that it contains
6353   // words from all 4 input quadwords.
6354   SDValue NewV;
6355   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
6356     int MaskV[] = {
6357       BestLoQuad < 0 ? 0 : BestLoQuad,
6358       BestHiQuad < 0 ? 1 : BestHiQuad
6359     };
6360     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
6361                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6362                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6363     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
6364
6365     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6366     // source words for the shuffle, to aid later transformations.
6367     bool AllWordsInNewV = true;
6368     bool InOrder[2] = { true, true };
6369     for (unsigned i = 0; i != 8; ++i) {
6370       int idx = MaskVals[i];
6371       if (idx != (int)i)
6372         InOrder[i/4] = false;
6373       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
6374         continue;
6375       AllWordsInNewV = false;
6376       break;
6377     }
6378
6379     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6380     if (AllWordsInNewV) {
6381       for (int i = 0; i != 8; ++i) {
6382         int idx = MaskVals[i];
6383         if (idx < 0)
6384           continue;
6385         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
6386         if ((idx != i) && idx < 4)
6387           pshufhw = false;
6388         if ((idx != i) && idx > 3)
6389           pshuflw = false;
6390       }
6391       V1 = NewV;
6392       V2Used = false;
6393       BestLoQuad = 0;
6394       BestHiQuad = 1;
6395     }
6396
6397     // If we've eliminated the use of V2, and the new mask is a pshuflw or
6398     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
6399     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
6400       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6401       unsigned TargetMask = 0;
6402       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
6403                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
6404       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6405       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6406                              getShufflePSHUFLWImmediate(SVOp);
6407       V1 = NewV.getOperand(0);
6408       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
6409     }
6410   }
6411
6412   // Promote splats to a larger type which usually leads to more efficient code.
6413   // FIXME: Is this true if pshufb is available?
6414   if (SVOp->isSplat())
6415     return PromoteSplat(SVOp, DAG);
6416
6417   // If we have SSSE3, and all words of the result are from 1 input vector,
6418   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
6419   // is present, fall back to case 4.
6420   if (Subtarget->hasSSSE3()) {
6421     SmallVector<SDValue,16> pshufbMask;
6422
6423     // If we have elements from both input vectors, set the high bit of the
6424     // shuffle mask element to zero out elements that come from V2 in the V1
6425     // mask, and elements that come from V1 in the V2 mask, so that the two
6426     // results can be OR'd together.
6427     bool TwoInputs = V1Used && V2Used;
6428     for (unsigned i = 0; i != 8; ++i) {
6429       int EltIdx = MaskVals[i] * 2;
6430       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6431       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
6432       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6433       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6434     }
6435     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
6436     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6437                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6438                                  MVT::v16i8, &pshufbMask[0], 16));
6439     if (!TwoInputs)
6440       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6441
6442     // Calculate the shuffle mask for the second input, shuffle it, and
6443     // OR it with the first shuffled input.
6444     pshufbMask.clear();
6445     for (unsigned i = 0; i != 8; ++i) {
6446       int EltIdx = MaskVals[i] * 2;
6447       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6448       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6449       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6450       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
6451     }
6452     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
6453     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6454                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6455                                  MVT::v16i8, &pshufbMask[0], 16));
6456     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6457     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6458   }
6459
6460   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6461   // and update MaskVals with new element order.
6462   std::bitset<8> InOrder;
6463   if (BestLoQuad >= 0) {
6464     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
6465     for (int i = 0; i != 4; ++i) {
6466       int idx = MaskVals[i];
6467       if (idx < 0) {
6468         InOrder.set(i);
6469       } else if ((idx / 4) == BestLoQuad) {
6470         MaskV[i] = idx & 3;
6471         InOrder.set(i);
6472       }
6473     }
6474     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6475                                 &MaskV[0]);
6476
6477     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6478       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6479       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
6480                                   NewV.getOperand(0),
6481                                   getShufflePSHUFLWImmediate(SVOp), DAG);
6482     }
6483   }
6484
6485   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6486   // and update MaskVals with the new element order.
6487   if (BestHiQuad >= 0) {
6488     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
6489     for (unsigned i = 4; i != 8; ++i) {
6490       int idx = MaskVals[i];
6491       if (idx < 0) {
6492         InOrder.set(i);
6493       } else if ((idx / 4) == BestHiQuad) {
6494         MaskV[i] = (idx & 3) + 4;
6495         InOrder.set(i);
6496       }
6497     }
6498     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
6499                                 &MaskV[0]);
6500
6501     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6502       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6503       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
6504                                   NewV.getOperand(0),
6505                                   getShufflePSHUFHWImmediate(SVOp), DAG);
6506     }
6507   }
6508
6509   // In case BestHi & BestLo were both -1, which means each quadword has a word
6510   // from each of the four input quadwords, calculate the InOrder bitvector now
6511   // before falling through to the insert/extract cleanup.
6512   if (BestLoQuad == -1 && BestHiQuad == -1) {
6513     NewV = V1;
6514     for (int i = 0; i != 8; ++i)
6515       if (MaskVals[i] < 0 || MaskVals[i] == i)
6516         InOrder.set(i);
6517   }
6518
6519   // The other elements are put in the right place using pextrw and pinsrw.
6520   for (unsigned i = 0; i != 8; ++i) {
6521     if (InOrder[i])
6522       continue;
6523     int EltIdx = MaskVals[i];
6524     if (EltIdx < 0)
6525       continue;
6526     SDValue ExtOp = (EltIdx < 8) ?
6527       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6528                   DAG.getIntPtrConstant(EltIdx)) :
6529       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
6530                   DAG.getIntPtrConstant(EltIdx - 8));
6531     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
6532                        DAG.getIntPtrConstant(i));
6533   }
6534   return NewV;
6535 }
6536
6537 // v16i8 shuffles - Prefer shuffles in the following order:
6538 // 1. [ssse3] 1 x pshufb
6539 // 2. [ssse3] 2 x pshufb + 1 x por
6540 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
6541 static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6542                                         const X86Subtarget* Subtarget,
6543                                         SelectionDAG &DAG) {
6544   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6545   SDValue V1 = SVOp->getOperand(0);
6546   SDValue V2 = SVOp->getOperand(1);
6547   SDLoc dl(SVOp);
6548   ArrayRef<int> MaskVals = SVOp->getMask();
6549
6550   // Promote splats to a larger type which usually leads to more efficient code.
6551   // FIXME: Is this true if pshufb is available?
6552   if (SVOp->isSplat())
6553     return PromoteSplat(SVOp, DAG);
6554
6555   // If we have SSSE3, case 1 is generated when all result bytes come from
6556   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
6557   // present, fall back to case 3.
6558
6559   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
6560   if (Subtarget->hasSSSE3()) {
6561     SmallVector<SDValue,16> pshufbMask;
6562
6563     // If all result elements are from one input vector, then only translate
6564     // undef mask values to 0x80 (zero out result) in the pshufb mask.
6565     //
6566     // Otherwise, we have elements from both input vectors, and must zero out
6567     // elements that come from V2 in the first mask, and V1 in the second mask
6568     // so that we can OR them together.
6569     for (unsigned i = 0; i != 16; ++i) {
6570       int EltIdx = MaskVals[i];
6571       if (EltIdx < 0 || EltIdx >= 16)
6572         EltIdx = 0x80;
6573       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6574     }
6575     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
6576                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6577                                  MVT::v16i8, &pshufbMask[0], 16));
6578
6579     // As PSHUFB will zero elements with negative indices, it's safe to ignore
6580     // the 2nd operand if it's undefined or zero.
6581     if (V2.getOpcode() == ISD::UNDEF ||
6582         ISD::isBuildVectorAllZeros(V2.getNode()))
6583       return V1;
6584
6585     // Calculate the shuffle mask for the second input, shuffle it, and
6586     // OR it with the first shuffled input.
6587     pshufbMask.clear();
6588     for (unsigned i = 0; i != 16; ++i) {
6589       int EltIdx = MaskVals[i];
6590       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6591       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6592     }
6593     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
6594                      DAG.getNode(ISD::BUILD_VECTOR, dl,
6595                                  MVT::v16i8, &pshufbMask[0], 16));
6596     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
6597   }
6598
6599   // No SSSE3 - Calculate in place words and then fix all out of place words
6600   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6601   // the 16 different words that comprise the two doublequadword input vectors.
6602   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6603   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6604   SDValue NewV = V1;
6605   for (int i = 0; i != 8; ++i) {
6606     int Elt0 = MaskVals[i*2];
6607     int Elt1 = MaskVals[i*2+1];
6608
6609     // This word of the result is all undef, skip it.
6610     if (Elt0 < 0 && Elt1 < 0)
6611       continue;
6612
6613     // This word of the result is already in the correct place, skip it.
6614     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6615       continue;
6616
6617     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6618     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6619     SDValue InsElt;
6620
6621     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6622     // using a single extract together, load it and store it.
6623     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6624       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6625                            DAG.getIntPtrConstant(Elt1 / 2));
6626       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6627                         DAG.getIntPtrConstant(i));
6628       continue;
6629     }
6630
6631     // If Elt1 is defined, extract it from the appropriate source.  If the
6632     // source byte is not also odd, shift the extracted word left 8 bits
6633     // otherwise clear the bottom 8 bits if we need to do an or.
6634     if (Elt1 >= 0) {
6635       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6636                            DAG.getIntPtrConstant(Elt1 / 2));
6637       if ((Elt1 & 1) == 0)
6638         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6639                              DAG.getConstant(8,
6640                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6641       else if (Elt0 >= 0)
6642         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6643                              DAG.getConstant(0xFF00, MVT::i16));
6644     }
6645     // If Elt0 is defined, extract it from the appropriate source.  If the
6646     // source byte is not also even, shift the extracted word right 8 bits. If
6647     // Elt1 was also defined, OR the extracted values together before
6648     // inserting them in the result.
6649     if (Elt0 >= 0) {
6650       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6651                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6652       if ((Elt0 & 1) != 0)
6653         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6654                               DAG.getConstant(8,
6655                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6656       else if (Elt1 >= 0)
6657         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6658                              DAG.getConstant(0x00FF, MVT::i16));
6659       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6660                          : InsElt0;
6661     }
6662     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6663                        DAG.getIntPtrConstant(i));
6664   }
6665   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6666 }
6667
6668 // v32i8 shuffles - Translate to VPSHUFB if possible.
6669 static
6670 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6671                                  const X86Subtarget *Subtarget,
6672                                  SelectionDAG &DAG) {
6673   MVT VT = SVOp->getSimpleValueType(0);
6674   SDValue V1 = SVOp->getOperand(0);
6675   SDValue V2 = SVOp->getOperand(1);
6676   SDLoc dl(SVOp);
6677   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6678
6679   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6680   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6681   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6682
6683   // VPSHUFB may be generated if
6684   // (1) one of input vector is undefined or zeroinitializer.
6685   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6686   // And (2) the mask indexes don't cross the 128-bit lane.
6687   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6688       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6689     return SDValue();
6690
6691   if (V1IsAllZero && !V2IsAllZero) {
6692     CommuteVectorShuffleMask(MaskVals, 32);
6693     V1 = V2;
6694   }
6695   SmallVector<SDValue, 32> pshufbMask;
6696   for (unsigned i = 0; i != 32; i++) {
6697     int EltIdx = MaskVals[i];
6698     if (EltIdx < 0 || EltIdx >= 32)
6699       EltIdx = 0x80;
6700     else {
6701       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6702         // Cross lane is not allowed.
6703         return SDValue();
6704       EltIdx &= 0xf;
6705     }
6706     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6707   }
6708   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6709                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6710                                   MVT::v32i8, &pshufbMask[0], 32));
6711 }
6712
6713 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6714 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6715 /// done when every pair / quad of shuffle mask elements point to elements in
6716 /// the right sequence. e.g.
6717 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6718 static
6719 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6720                                  SelectionDAG &DAG) {
6721   MVT VT = SVOp->getSimpleValueType(0);
6722   SDLoc dl(SVOp);
6723   unsigned NumElems = VT.getVectorNumElements();
6724   MVT NewVT;
6725   unsigned Scale;
6726   switch (VT.SimpleTy) {
6727   default: llvm_unreachable("Unexpected!");
6728   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6729   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6730   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6731   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6732   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6733   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6734   }
6735
6736   SmallVector<int, 8> MaskVec;
6737   for (unsigned i = 0; i != NumElems; i += Scale) {
6738     int StartIdx = -1;
6739     for (unsigned j = 0; j != Scale; ++j) {
6740       int EltIdx = SVOp->getMaskElt(i+j);
6741       if (EltIdx < 0)
6742         continue;
6743       if (StartIdx < 0)
6744         StartIdx = (EltIdx / Scale);
6745       if (EltIdx != (int)(StartIdx*Scale + j))
6746         return SDValue();
6747     }
6748     MaskVec.push_back(StartIdx);
6749   }
6750
6751   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6752   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6753   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6754 }
6755
6756 /// getVZextMovL - Return a zero-extending vector move low node.
6757 ///
6758 static SDValue getVZextMovL(MVT VT, MVT OpVT,
6759                             SDValue SrcOp, SelectionDAG &DAG,
6760                             const X86Subtarget *Subtarget, SDLoc dl) {
6761   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6762     LoadSDNode *LD = NULL;
6763     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6764       LD = dyn_cast<LoadSDNode>(SrcOp);
6765     if (!LD) {
6766       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6767       // instead.
6768       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6769       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6770           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6771           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6772           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6773         // PR2108
6774         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6775         return DAG.getNode(ISD::BITCAST, dl, VT,
6776                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6777                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6778                                                    OpVT,
6779                                                    SrcOp.getOperand(0)
6780                                                           .getOperand(0))));
6781       }
6782     }
6783   }
6784
6785   return DAG.getNode(ISD::BITCAST, dl, VT,
6786                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6787                                  DAG.getNode(ISD::BITCAST, dl,
6788                                              OpVT, SrcOp)));
6789 }
6790
6791 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6792 /// which could not be matched by any known target speficic shuffle
6793 static SDValue
6794 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6795
6796   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6797   if (NewOp.getNode())
6798     return NewOp;
6799
6800   MVT VT = SVOp->getSimpleValueType(0);
6801
6802   unsigned NumElems = VT.getVectorNumElements();
6803   unsigned NumLaneElems = NumElems / 2;
6804
6805   SDLoc dl(SVOp);
6806   MVT EltVT = VT.getVectorElementType();
6807   MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6808   SDValue Output[2];
6809
6810   SmallVector<int, 16> Mask;
6811   for (unsigned l = 0; l < 2; ++l) {
6812     // Build a shuffle mask for the output, discovering on the fly which
6813     // input vectors to use as shuffle operands (recorded in InputUsed).
6814     // If building a suitable shuffle vector proves too hard, then bail
6815     // out with UseBuildVector set.
6816     bool UseBuildVector = false;
6817     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6818     unsigned LaneStart = l * NumLaneElems;
6819     for (unsigned i = 0; i != NumLaneElems; ++i) {
6820       // The mask element.  This indexes into the input.
6821       int Idx = SVOp->getMaskElt(i+LaneStart);
6822       if (Idx < 0) {
6823         // the mask element does not index into any input vector.
6824         Mask.push_back(-1);
6825         continue;
6826       }
6827
6828       // The input vector this mask element indexes into.
6829       int Input = Idx / NumLaneElems;
6830
6831       // Turn the index into an offset from the start of the input vector.
6832       Idx -= Input * NumLaneElems;
6833
6834       // Find or create a shuffle vector operand to hold this input.
6835       unsigned OpNo;
6836       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6837         if (InputUsed[OpNo] == Input)
6838           // This input vector is already an operand.
6839           break;
6840         if (InputUsed[OpNo] < 0) {
6841           // Create a new operand for this input vector.
6842           InputUsed[OpNo] = Input;
6843           break;
6844         }
6845       }
6846
6847       if (OpNo >= array_lengthof(InputUsed)) {
6848         // More than two input vectors used!  Give up on trying to create a
6849         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6850         UseBuildVector = true;
6851         break;
6852       }
6853
6854       // Add the mask index for the new shuffle vector.
6855       Mask.push_back(Idx + OpNo * NumLaneElems);
6856     }
6857
6858     if (UseBuildVector) {
6859       SmallVector<SDValue, 16> SVOps;
6860       for (unsigned i = 0; i != NumLaneElems; ++i) {
6861         // The mask element.  This indexes into the input.
6862         int Idx = SVOp->getMaskElt(i+LaneStart);
6863         if (Idx < 0) {
6864           SVOps.push_back(DAG.getUNDEF(EltVT));
6865           continue;
6866         }
6867
6868         // The input vector this mask element indexes into.
6869         int Input = Idx / NumElems;
6870
6871         // Turn the index into an offset from the start of the input vector.
6872         Idx -= Input * NumElems;
6873
6874         // Extract the vector element by hand.
6875         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6876                                     SVOp->getOperand(Input),
6877                                     DAG.getIntPtrConstant(Idx)));
6878       }
6879
6880       // Construct the output using a BUILD_VECTOR.
6881       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6882                               SVOps.size());
6883     } else if (InputUsed[0] < 0) {
6884       // No input vectors were used! The result is undefined.
6885       Output[l] = DAG.getUNDEF(NVT);
6886     } else {
6887       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6888                                         (InputUsed[0] % 2) * NumLaneElems,
6889                                         DAG, dl);
6890       // If only one input was used, use an undefined vector for the other.
6891       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6892         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6893                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6894       // At least one input vector was used. Create a new shuffle vector.
6895       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6896     }
6897
6898     Mask.clear();
6899   }
6900
6901   // Concatenate the result back
6902   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6903 }
6904
6905 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6906 /// 4 elements, and match them with several different shuffle types.
6907 static SDValue
6908 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6909   SDValue V1 = SVOp->getOperand(0);
6910   SDValue V2 = SVOp->getOperand(1);
6911   SDLoc dl(SVOp);
6912   MVT VT = SVOp->getSimpleValueType(0);
6913
6914   assert(VT.is128BitVector() && "Unsupported vector size");
6915
6916   std::pair<int, int> Locs[4];
6917   int Mask1[] = { -1, -1, -1, -1 };
6918   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6919
6920   unsigned NumHi = 0;
6921   unsigned NumLo = 0;
6922   for (unsigned i = 0; i != 4; ++i) {
6923     int Idx = PermMask[i];
6924     if (Idx < 0) {
6925       Locs[i] = std::make_pair(-1, -1);
6926     } else {
6927       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6928       if (Idx < 4) {
6929         Locs[i] = std::make_pair(0, NumLo);
6930         Mask1[NumLo] = Idx;
6931         NumLo++;
6932       } else {
6933         Locs[i] = std::make_pair(1, NumHi);
6934         if (2+NumHi < 4)
6935           Mask1[2+NumHi] = Idx;
6936         NumHi++;
6937       }
6938     }
6939   }
6940
6941   if (NumLo <= 2 && NumHi <= 2) {
6942     // If no more than two elements come from either vector. This can be
6943     // implemented with two shuffles. First shuffle gather the elements.
6944     // The second shuffle, which takes the first shuffle as both of its
6945     // vector operands, put the elements into the right order.
6946     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6947
6948     int Mask2[] = { -1, -1, -1, -1 };
6949
6950     for (unsigned i = 0; i != 4; ++i)
6951       if (Locs[i].first != -1) {
6952         unsigned Idx = (i < 2) ? 0 : 4;
6953         Idx += Locs[i].first * 2 + Locs[i].second;
6954         Mask2[i] = Idx;
6955       }
6956
6957     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6958   }
6959
6960   if (NumLo == 3 || NumHi == 3) {
6961     // Otherwise, we must have three elements from one vector, call it X, and
6962     // one element from the other, call it Y.  First, use a shufps to build an
6963     // intermediate vector with the one element from Y and the element from X
6964     // that will be in the same half in the final destination (the indexes don't
6965     // matter). Then, use a shufps to build the final vector, taking the half
6966     // containing the element from Y from the intermediate, and the other half
6967     // from X.
6968     if (NumHi == 3) {
6969       // Normalize it so the 3 elements come from V1.
6970       CommuteVectorShuffleMask(PermMask, 4);
6971       std::swap(V1, V2);
6972     }
6973
6974     // Find the element from V2.
6975     unsigned HiIndex;
6976     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6977       int Val = PermMask[HiIndex];
6978       if (Val < 0)
6979         continue;
6980       if (Val >= 4)
6981         break;
6982     }
6983
6984     Mask1[0] = PermMask[HiIndex];
6985     Mask1[1] = -1;
6986     Mask1[2] = PermMask[HiIndex^1];
6987     Mask1[3] = -1;
6988     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6989
6990     if (HiIndex >= 2) {
6991       Mask1[0] = PermMask[0];
6992       Mask1[1] = PermMask[1];
6993       Mask1[2] = HiIndex & 1 ? 6 : 4;
6994       Mask1[3] = HiIndex & 1 ? 4 : 6;
6995       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6996     }
6997
6998     Mask1[0] = HiIndex & 1 ? 2 : 0;
6999     Mask1[1] = HiIndex & 1 ? 0 : 2;
7000     Mask1[2] = PermMask[2];
7001     Mask1[3] = PermMask[3];
7002     if (Mask1[2] >= 0)
7003       Mask1[2] += 4;
7004     if (Mask1[3] >= 0)
7005       Mask1[3] += 4;
7006     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
7007   }
7008
7009   // Break it into (shuffle shuffle_hi, shuffle_lo).
7010   int LoMask[] = { -1, -1, -1, -1 };
7011   int HiMask[] = { -1, -1, -1, -1 };
7012
7013   int *MaskPtr = LoMask;
7014   unsigned MaskIdx = 0;
7015   unsigned LoIdx = 0;
7016   unsigned HiIdx = 2;
7017   for (unsigned i = 0; i != 4; ++i) {
7018     if (i == 2) {
7019       MaskPtr = HiMask;
7020       MaskIdx = 1;
7021       LoIdx = 0;
7022       HiIdx = 2;
7023     }
7024     int Idx = PermMask[i];
7025     if (Idx < 0) {
7026       Locs[i] = std::make_pair(-1, -1);
7027     } else if (Idx < 4) {
7028       Locs[i] = std::make_pair(MaskIdx, LoIdx);
7029       MaskPtr[LoIdx] = Idx;
7030       LoIdx++;
7031     } else {
7032       Locs[i] = std::make_pair(MaskIdx, HiIdx);
7033       MaskPtr[HiIdx] = Idx;
7034       HiIdx++;
7035     }
7036   }
7037
7038   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
7039   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
7040   int MaskOps[] = { -1, -1, -1, -1 };
7041   for (unsigned i = 0; i != 4; ++i)
7042     if (Locs[i].first != -1)
7043       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
7044   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
7045 }
7046
7047 static bool MayFoldVectorLoad(SDValue V) {
7048   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
7049     V = V.getOperand(0);
7050
7051   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
7052     V = V.getOperand(0);
7053   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
7054       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
7055     // BUILD_VECTOR (load), undef
7056     V = V.getOperand(0);
7057
7058   return MayFoldLoad(V);
7059 }
7060
7061 static
7062 SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
7063   MVT VT = Op.getSimpleValueType();
7064
7065   // Canonizalize to v2f64.
7066   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7067   return DAG.getNode(ISD::BITCAST, dl, VT,
7068                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7069                                           V1, DAG));
7070 }
7071
7072 static
7073 SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
7074                         bool HasSSE2) {
7075   SDValue V1 = Op.getOperand(0);
7076   SDValue V2 = Op.getOperand(1);
7077   MVT VT = Op.getSimpleValueType();
7078
7079   assert(VT != MVT::v2i64 && "unsupported shuffle type");
7080
7081   if (HasSSE2 && VT == MVT::v2f64)
7082     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7083
7084   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7085   return DAG.getNode(ISD::BITCAST, dl, VT,
7086                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7087                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7088                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
7089 }
7090
7091 static
7092 SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
7093   SDValue V1 = Op.getOperand(0);
7094   SDValue V2 = Op.getOperand(1);
7095   MVT VT = Op.getSimpleValueType();
7096
7097   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7098          "unsupported shuffle type");
7099
7100   if (V2.getOpcode() == ISD::UNDEF)
7101     V2 = V1;
7102
7103   // v4i32 or v4f32
7104   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7105 }
7106
7107 static
7108 SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
7109   SDValue V1 = Op.getOperand(0);
7110   SDValue V2 = Op.getOperand(1);
7111   MVT VT = Op.getSimpleValueType();
7112   unsigned NumElems = VT.getVectorNumElements();
7113
7114   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7115   // operand of these instructions is only memory, so check if there's a
7116   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7117   // same masks.
7118   bool CanFoldLoad = false;
7119
7120   // Trivial case, when V2 comes from a load.
7121   if (MayFoldVectorLoad(V2))
7122     CanFoldLoad = true;
7123
7124   // When V1 is a load, it can be folded later into a store in isel, example:
7125   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7126   //    turns into:
7127   //  (MOVLPSmr addr:$src1, VR128:$src2)
7128   // So, recognize this potential and also use MOVLPS or MOVLPD
7129   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
7130     CanFoldLoad = true;
7131
7132   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7133   if (CanFoldLoad) {
7134     if (HasSSE2 && NumElems == 2)
7135       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7136
7137     if (NumElems == 4)
7138       // If we don't care about the second element, proceed to use movss.
7139       if (SVOp->getMaskElt(1) != -1)
7140         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
7141   }
7142
7143   // movl and movlp will both match v2i64, but v2i64 is never matched by
7144   // movl earlier because we make it strict to avoid messing with the movlp load
7145   // folding logic (see the code above getMOVLP call). Match it here then,
7146   // this is horrible, but will stay like this until we move all shuffle
7147   // matching to x86 specific nodes. Note that for the 1st condition all
7148   // types are matched with movsd.
7149   if (HasSSE2) {
7150     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7151     // as to remove this logic from here, as much as possible
7152     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
7153       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7154     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7155   }
7156
7157   assert(VT != MVT::v4i32 && "unsupported shuffle type");
7158
7159   // Invert the operand order and use SHUFPS to match it.
7160   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
7161                               getShuffleSHUFImmediate(SVOp), DAG);
7162 }
7163
7164 // Reduce a vector shuffle to zext.
7165 static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7166                                     SelectionDAG &DAG) {
7167   // PMOVZX is only available from SSE41.
7168   if (!Subtarget->hasSSE41())
7169     return SDValue();
7170
7171   MVT VT = Op.getSimpleValueType();
7172
7173   // Only AVX2 support 256-bit vector integer extending.
7174   if (!Subtarget->hasInt256() && VT.is256BitVector())
7175     return SDValue();
7176
7177   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7178   SDLoc DL(Op);
7179   SDValue V1 = Op.getOperand(0);
7180   SDValue V2 = Op.getOperand(1);
7181   unsigned NumElems = VT.getVectorNumElements();
7182
7183   // Extending is an unary operation and the element type of the source vector
7184   // won't be equal to or larger than i64.
7185   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7186       VT.getVectorElementType() == MVT::i64)
7187     return SDValue();
7188
7189   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7190   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
7191   while ((1U << Shift) < NumElems) {
7192     if (SVOp->getMaskElt(1U << Shift) == 1)
7193       break;
7194     Shift += 1;
7195     // The maximal ratio is 8, i.e. from i8 to i64.
7196     if (Shift > 3)
7197       return SDValue();
7198   }
7199
7200   // Check the shuffle mask.
7201   unsigned Mask = (1U << Shift) - 1;
7202   for (unsigned i = 0; i != NumElems; ++i) {
7203     int EltIdx = SVOp->getMaskElt(i);
7204     if ((i & Mask) != 0 && EltIdx != -1)
7205       return SDValue();
7206     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
7207       return SDValue();
7208   }
7209
7210   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
7211   MVT NeVT = MVT::getIntegerVT(NBits);
7212   MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
7213
7214   if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
7215     return SDValue();
7216
7217   // Simplify the operand as it's prepared to be fed into shuffle.
7218   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7219   if (V1.getOpcode() == ISD::BITCAST &&
7220       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7221       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
7222       V1.getOperand(0).getOperand(0)
7223         .getSimpleValueType().getSizeInBits() == SignificantBits) {
7224     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7225     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
7226     ConstantSDNode *CIdx =
7227       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
7228     // If it's foldable, i.e. normal load with single use, we will let code
7229     // selection to fold it. Otherwise, we will short the conversion sequence.
7230     if (CIdx && CIdx->getZExtValue() == 0 &&
7231         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
7232       MVT FullVT = V.getSimpleValueType();
7233       MVT V1VT = V1.getSimpleValueType();
7234       if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
7235         // The "ext_vec_elt" node is wider than the result node.
7236         // In this case we should extract subvector from V.
7237         // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
7238         unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7239         MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
7240                                         FullVT.getVectorNumElements()/Ratio);
7241         V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
7242                         DAG.getIntPtrConstant(0));
7243       }
7244       V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
7245     }
7246   }
7247
7248   return DAG.getNode(ISD::BITCAST, DL, VT,
7249                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7250 }
7251
7252 static SDValue
7253 NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7254                        SelectionDAG &DAG) {
7255   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7256   MVT VT = Op.getSimpleValueType();
7257   SDLoc dl(Op);
7258   SDValue V1 = Op.getOperand(0);
7259   SDValue V2 = Op.getOperand(1);
7260
7261   if (isZeroShuffle(SVOp))
7262     return getZeroVector(VT, Subtarget, DAG, dl);
7263
7264   // Handle splat operations
7265   if (SVOp->isSplat()) {
7266     // Use vbroadcast whenever the splat comes from a foldable load
7267     SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
7268     if (Broadcast.getNode())
7269       return Broadcast;
7270   }
7271
7272   // Check integer expanding shuffles.
7273   SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
7274   if (NewOp.getNode())
7275     return NewOp;
7276
7277   // If the shuffle can be profitably rewritten as a narrower shuffle, then
7278   // do it!
7279   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
7280       VT == MVT::v16i16 || VT == MVT::v32i8) {
7281     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7282     if (NewOp.getNode())
7283       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
7284   } else if ((VT == MVT::v4i32 ||
7285              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
7286     // FIXME: Figure out a cleaner way to do this.
7287     // Try to make use of movq to zero out the top part.
7288     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
7289       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7290       if (NewOp.getNode()) {
7291         MVT NewVT = NewOp.getSimpleValueType();
7292         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7293                                NewVT, true, false))
7294           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
7295                               DAG, Subtarget, dl);
7296       }
7297     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
7298       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
7299       if (NewOp.getNode()) {
7300         MVT NewVT = NewOp.getSimpleValueType();
7301         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7302           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7303                               DAG, Subtarget, dl);
7304       }
7305     }
7306   }
7307   return SDValue();
7308 }
7309
7310 SDValue
7311 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
7312   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
7313   SDValue V1 = Op.getOperand(0);
7314   SDValue V2 = Op.getOperand(1);
7315   MVT VT = Op.getSimpleValueType();
7316   SDLoc dl(Op);
7317   unsigned NumElems = VT.getVectorNumElements();
7318   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
7319   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
7320   bool V1IsSplat = false;
7321   bool V2IsSplat = false;
7322   bool HasSSE2 = Subtarget->hasSSE2();
7323   bool HasFp256    = Subtarget->hasFp256();
7324   bool HasInt256   = Subtarget->hasInt256();
7325   MachineFunction &MF = DAG.getMachineFunction();
7326   bool OptForSize = MF.getFunction()->getAttributes().
7327     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
7328
7329   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
7330
7331   if (V1IsUndef && V2IsUndef)
7332     return DAG.getUNDEF(VT);
7333
7334   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
7335
7336   // Vector shuffle lowering takes 3 steps:
7337   //
7338   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7339   //    narrowing and commutation of operands should be handled.
7340   // 2) Matching of shuffles with known shuffle masks to x86 target specific
7341   //    shuffle nodes.
7342   // 3) Rewriting of unmatched masks into new generic shuffle operations,
7343   //    so the shuffle can be broken into other shuffles and the legalizer can
7344   //    try the lowering again.
7345   //
7346   // The general idea is that no vector_shuffle operation should be left to
7347   // be matched during isel, all of them must be converted to a target specific
7348   // node here.
7349
7350   // Normalize the input vectors. Here splats, zeroed vectors, profitable
7351   // narrowing and commutation of operands should be handled. The actual code
7352   // doesn't include all of those, work in progress...
7353   SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
7354   if (NewOp.getNode())
7355     return NewOp;
7356
7357   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7358
7359   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7360   // unpckh_undef). Only use pshufd if speed is more important than size.
7361   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7362     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7363   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7364     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7365
7366   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
7367       V2IsUndef && MayFoldVectorLoad(V1))
7368     return getMOVDDup(Op, dl, V1, DAG);
7369
7370   if (isMOVHLPS_v_undef_Mask(M, VT))
7371     return getMOVHighToLow(Op, dl, DAG);
7372
7373   // Use to match splats
7374   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
7375       (VT == MVT::v2f64 || VT == MVT::v2i64))
7376     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7377
7378   if (isPSHUFDMask(M, VT)) {
7379     // The actual implementation will match the mask in the if above and then
7380     // during isel it can match several different instructions, not only pshufd
7381     // as its name says, sad but true, emulate the behavior for now...
7382     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7383       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
7384
7385     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
7386
7387     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
7388       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7389
7390     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7391       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7392                                   DAG);
7393
7394     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
7395                                 TargetMask, DAG);
7396   }
7397
7398   if (isPALIGNRMask(M, VT, Subtarget))
7399     return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7400                                 getShufflePALIGNRImmediate(SVOp),
7401                                 DAG);
7402
7403   // Check if this can be converted into a logical shift.
7404   bool isLeft = false;
7405   unsigned ShAmt = 0;
7406   SDValue ShVal;
7407   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
7408   if (isShift && ShVal.hasOneUse()) {
7409     // If the shifted value has multiple uses, it may be cheaper to use
7410     // v_set0 + movlhps or movhlps, etc.
7411     MVT EltVT = VT.getVectorElementType();
7412     ShAmt *= EltVT.getSizeInBits();
7413     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7414   }
7415
7416   if (isMOVLMask(M, VT)) {
7417     if (ISD::isBuildVectorAllZeros(V1.getNode()))
7418       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
7419     if (!isMOVLPMask(M, VT)) {
7420       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
7421         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7422
7423       if (VT == MVT::v4i32 || VT == MVT::v4f32)
7424         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7425     }
7426   }
7427
7428   // FIXME: fold these into legal mask.
7429   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
7430     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
7431
7432   if (isMOVHLPSMask(M, VT))
7433     return getMOVHighToLow(Op, dl, DAG);
7434
7435   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
7436     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
7437
7438   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
7439     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
7440
7441   if (isMOVLPMask(M, VT))
7442     return getMOVLP(Op, dl, DAG, HasSSE2);
7443
7444   if (ShouldXformToMOVHLPS(M, VT) ||
7445       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
7446     return CommuteVectorShuffle(SVOp, DAG);
7447
7448   if (isShift) {
7449     // No better options. Use a vshldq / vsrldq.
7450     MVT EltVT = VT.getVectorElementType();
7451     ShAmt *= EltVT.getSizeInBits();
7452     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
7453   }
7454
7455   bool Commuted = false;
7456   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
7457   // 1,1,1,1 -> v8i16 though.
7458   V1IsSplat = isSplatVector(V1.getNode());
7459   V2IsSplat = isSplatVector(V2.getNode());
7460
7461   // Canonicalize the splat or undef, if present, to be on the RHS.
7462   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7463     CommuteVectorShuffleMask(M, NumElems);
7464     std::swap(V1, V2);
7465     std::swap(V1IsSplat, V2IsSplat);
7466     Commuted = true;
7467   }
7468
7469   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
7470     // Shuffling low element of v1 into undef, just return v1.
7471     if (V2IsUndef)
7472       return V1;
7473     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7474     // the instruction selector will not match, so get a canonical MOVL with
7475     // swapped operands to undo the commute.
7476     return getMOVL(DAG, dl, VT, V2, V1);
7477   }
7478
7479   if (isUNPCKLMask(M, VT, HasInt256))
7480     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7481
7482   if (isUNPCKHMask(M, VT, HasInt256))
7483     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7484
7485   if (V2IsSplat) {
7486     // Normalize mask so all entries that point to V2 points to its first
7487     // element then try to match unpck{h|l} again. If match, return a
7488     // new vector_shuffle with the corrected mask.p
7489     SmallVector<int, 8> NewMask(M.begin(), M.end());
7490     NormalizeMask(NewMask, NumElems);
7491     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
7492       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7493     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
7494       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7495   }
7496
7497   if (Commuted) {
7498     // Commute is back and try unpck* again.
7499     // FIXME: this seems wrong.
7500     CommuteVectorShuffleMask(M, NumElems);
7501     std::swap(V1, V2);
7502     std::swap(V1IsSplat, V2IsSplat);
7503     Commuted = false;
7504
7505     if (isUNPCKLMask(M, VT, HasInt256))
7506       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
7507
7508     if (isUNPCKHMask(M, VT, HasInt256))
7509       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
7510   }
7511
7512   // Normalize the node to match x86 shuffle ops if needed
7513   if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
7514     return CommuteVectorShuffle(SVOp, DAG);
7515
7516   // The checks below are all present in isShuffleMaskLegal, but they are
7517   // inlined here right now to enable us to directly emit target specific
7518   // nodes, and remove one by one until they don't return Op anymore.
7519
7520   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7521       SVOp->getSplatIndex() == 0 && V2IsUndef) {
7522     if (VT == MVT::v2f64 || VT == MVT::v2i64)
7523       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7524   }
7525
7526   if (isPSHUFHWMask(M, VT, HasInt256))
7527     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
7528                                 getShufflePSHUFHWImmediate(SVOp),
7529                                 DAG);
7530
7531   if (isPSHUFLWMask(M, VT, HasInt256))
7532     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
7533                                 getShufflePSHUFLWImmediate(SVOp),
7534                                 DAG);
7535
7536   if (isSHUFPMask(M, VT))
7537     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
7538                                 getShuffleSHUFImmediate(SVOp), DAG);
7539
7540   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
7541     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
7542   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
7543     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
7544
7545   //===--------------------------------------------------------------------===//
7546   // Generate target specific nodes for 128 or 256-bit shuffles only
7547   // supported in the AVX instruction set.
7548   //
7549
7550   // Handle VMOVDDUPY permutations
7551   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
7552     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7553
7554   // Handle VPERMILPS/D* permutations
7555   if (isVPERMILPMask(M, VT)) {
7556     if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
7557       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
7558                                   getShuffleSHUFImmediate(SVOp), DAG);
7559     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
7560                                 getShuffleSHUFImmediate(SVOp), DAG);
7561   }
7562
7563   // Handle VPERM2F128/VPERM2I128 permutations
7564   if (isVPERM2X128Mask(M, VT, HasFp256))
7565     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
7566                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
7567
7568   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
7569   if (BlendOp.getNode())
7570     return BlendOp;
7571
7572   unsigned Imm8;
7573   if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7574     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
7575
7576   if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7577       VT.is512BitVector()) {
7578     MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7579     MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
7580     SmallVector<SDValue, 16> permclMask;
7581     for (unsigned i = 0; i != NumElems; ++i) {
7582       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7583     }
7584
7585     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7586                                 &permclMask[0], NumElems);
7587     if (V2IsUndef)
7588       // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7589       return DAG.getNode(X86ISD::VPERMV, dl, VT,
7590                           DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7591     return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7592                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7593   }
7594
7595   //===--------------------------------------------------------------------===//
7596   // Since no target specific shuffle was selected for this generic one,
7597   // lower it into other known shuffles. FIXME: this isn't true yet, but
7598   // this is the plan.
7599   //
7600
7601   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7602   if (VT == MVT::v8i16) {
7603     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7604     if (NewOp.getNode())
7605       return NewOp;
7606   }
7607
7608   if (VT == MVT::v16i8) {
7609     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
7610     if (NewOp.getNode())
7611       return NewOp;
7612   }
7613
7614   if (VT == MVT::v32i8) {
7615     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7616     if (NewOp.getNode())
7617       return NewOp;
7618   }
7619
7620   // Handle all 128-bit wide vectors with 4 elements, and match them with
7621   // several different shuffle types.
7622   if (NumElems == 4 && VT.is128BitVector())
7623     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7624
7625   // Handle general 256-bit shuffles
7626   if (VT.is256BitVector())
7627     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7628
7629   return SDValue();
7630 }
7631
7632 static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7633   MVT VT = Op.getSimpleValueType();
7634   SDLoc dl(Op);
7635
7636   if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
7637     return SDValue();
7638
7639   if (VT.getSizeInBits() == 8) {
7640     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7641                                   Op.getOperand(0), Op.getOperand(1));
7642     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7643                                   DAG.getValueType(VT));
7644     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7645   }
7646
7647   if (VT.getSizeInBits() == 16) {
7648     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7649     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7650     if (Idx == 0)
7651       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7652                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7653                                      DAG.getNode(ISD::BITCAST, dl,
7654                                                  MVT::v4i32,
7655                                                  Op.getOperand(0)),
7656                                      Op.getOperand(1)));
7657     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7658                                   Op.getOperand(0), Op.getOperand(1));
7659     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7660                                   DAG.getValueType(VT));
7661     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7662   }
7663
7664   if (VT == MVT::f32) {
7665     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7666     // the result back to FR32 register. It's only worth matching if the
7667     // result has a single use which is a store or a bitcast to i32.  And in
7668     // the case of a store, it's not worth it if the index is a constant 0,
7669     // because a MOVSSmr can be used instead, which is smaller and faster.
7670     if (!Op.hasOneUse())
7671       return SDValue();
7672     SDNode *User = *Op.getNode()->use_begin();
7673     if ((User->getOpcode() != ISD::STORE ||
7674          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7675           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7676         (User->getOpcode() != ISD::BITCAST ||
7677          User->getValueType(0) != MVT::i32))
7678       return SDValue();
7679     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7680                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7681                                               Op.getOperand(0)),
7682                                               Op.getOperand(1));
7683     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7684   }
7685
7686   if (VT == MVT::i32 || VT == MVT::i64) {
7687     // ExtractPS/pextrq works with constant index.
7688     if (isa<ConstantSDNode>(Op.getOperand(1)))
7689       return Op;
7690   }
7691   return SDValue();
7692 }
7693
7694 /// Extract one bit from mask vector, like v16i1 or v8i1.
7695 /// AVX-512 feature.
7696 static SDValue ExtractBitFromMaskVector(SDValue Op, SelectionDAG &DAG) {
7697   SDValue Vec = Op.getOperand(0);
7698   SDLoc dl(Vec);
7699   MVT VecVT = Vec.getSimpleValueType();
7700   SDValue Idx = Op.getOperand(1);
7701   MVT EltVT = Op.getSimpleValueType();
7702
7703   assert((EltVT == MVT::i1) && "Unexpected operands in ExtractBitFromMaskVector");
7704
7705   // variable index can't be handled in mask registers,
7706   // extend vector to VR512
7707   if (!isa<ConstantSDNode>(Idx)) {
7708     MVT ExtVT = (VecVT == MVT::v8i1 ?  MVT::v8i64 : MVT::v16i32);
7709     SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
7710     SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
7711                               ExtVT.getVectorElementType(), Ext, Idx);
7712     return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
7713   }
7714
7715   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7716   if (IdxVal) {
7717     unsigned MaxSift = VecVT.getSizeInBits() - 1;
7718     Vec = DAG.getNode(X86ISD::VSHLI, dl, VecVT, Vec,
7719                       DAG.getConstant(MaxSift - IdxVal, MVT::i8));
7720     Vec = DAG.getNode(X86ISD::VSRLI, dl, VecVT, Vec,
7721                       DAG.getConstant(MaxSift, MVT::i8));
7722   }
7723   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i1, Vec,
7724                        DAG.getIntPtrConstant(0));
7725 }
7726
7727 SDValue
7728 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7729                                            SelectionDAG &DAG) const {
7730   SDLoc dl(Op);
7731   SDValue Vec = Op.getOperand(0);
7732   MVT VecVT = Vec.getSimpleValueType();
7733   SDValue Idx = Op.getOperand(1);
7734
7735   if (Op.getSimpleValueType() == MVT::i1)
7736     return ExtractBitFromMaskVector(Op, DAG);
7737
7738   if (!isa<ConstantSDNode>(Idx)) {
7739     if (VecVT.is512BitVector() ||
7740         (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7741          VecVT.getVectorElementType().getSizeInBits() == 32)) {
7742
7743       MVT MaskEltVT =
7744         MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7745       MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7746                                     MaskEltVT.getSizeInBits());
7747
7748       Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
7749       SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7750                                 getZeroVector(MaskVT, Subtarget, DAG, dl),
7751                                 Idx, DAG.getConstant(0, getPointerTy()));
7752       SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7753       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7754                         Perm, DAG.getConstant(0, getPointerTy()));
7755     }
7756     return SDValue();
7757   }
7758
7759   // If this is a 256-bit vector result, first extract the 128-bit vector and
7760   // then extract the element from the 128-bit vector.
7761   if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
7762
7763     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7764     // Get the 128-bit vector.
7765     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7766     MVT EltVT = VecVT.getVectorElementType();
7767
7768     unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7769
7770     //if (IdxVal >= NumElems/2)
7771     //  IdxVal -= NumElems/2;
7772     IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
7773     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7774                        DAG.getConstant(IdxVal, MVT::i32));
7775   }
7776
7777   assert(VecVT.is128BitVector() && "Unexpected vector length");
7778
7779   if (Subtarget->hasSSE41()) {
7780     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7781     if (Res.getNode())
7782       return Res;
7783   }
7784
7785   MVT VT = Op.getSimpleValueType();
7786   // TODO: handle v16i8.
7787   if (VT.getSizeInBits() == 16) {
7788     SDValue Vec = Op.getOperand(0);
7789     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7790     if (Idx == 0)
7791       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7792                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7793                                      DAG.getNode(ISD::BITCAST, dl,
7794                                                  MVT::v4i32, Vec),
7795                                      Op.getOperand(1)));
7796     // Transform it so it match pextrw which produces a 32-bit result.
7797     MVT EltVT = MVT::i32;
7798     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7799                                   Op.getOperand(0), Op.getOperand(1));
7800     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7801                                   DAG.getValueType(VT));
7802     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7803   }
7804
7805   if (VT.getSizeInBits() == 32) {
7806     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7807     if (Idx == 0)
7808       return Op;
7809
7810     // SHUFPS the element to the lowest double word, then movss.
7811     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7812     MVT VVT = Op.getOperand(0).getSimpleValueType();
7813     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7814                                        DAG.getUNDEF(VVT), Mask);
7815     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7816                        DAG.getIntPtrConstant(0));
7817   }
7818
7819   if (VT.getSizeInBits() == 64) {
7820     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7821     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7822     //        to match extract_elt for f64.
7823     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7824     if (Idx == 0)
7825       return Op;
7826
7827     // UNPCKHPD the element to the lowest double word, then movsd.
7828     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7829     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7830     int Mask[2] = { 1, -1 };
7831     MVT VVT = Op.getOperand(0).getSimpleValueType();
7832     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7833                                        DAG.getUNDEF(VVT), Mask);
7834     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7835                        DAG.getIntPtrConstant(0));
7836   }
7837
7838   return SDValue();
7839 }
7840
7841 static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
7842   MVT VT = Op.getSimpleValueType();
7843   MVT EltVT = VT.getVectorElementType();
7844   SDLoc dl(Op);
7845
7846   SDValue N0 = Op.getOperand(0);
7847   SDValue N1 = Op.getOperand(1);
7848   SDValue N2 = Op.getOperand(2);
7849
7850   if (!VT.is128BitVector())
7851     return SDValue();
7852
7853   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7854       isa<ConstantSDNode>(N2)) {
7855     unsigned Opc;
7856     if (VT == MVT::v8i16)
7857       Opc = X86ISD::PINSRW;
7858     else if (VT == MVT::v16i8)
7859       Opc = X86ISD::PINSRB;
7860     else
7861       Opc = X86ISD::PINSRB;
7862
7863     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7864     // argument.
7865     if (N1.getValueType() != MVT::i32)
7866       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7867     if (N2.getValueType() != MVT::i32)
7868       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7869     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7870   }
7871
7872   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7873     // Bits [7:6] of the constant are the source select.  This will always be
7874     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7875     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7876     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7877     // Bits [5:4] of the constant are the destination select.  This is the
7878     //  value of the incoming immediate.
7879     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7880     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7881     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7882     // Create this as a scalar to vector..
7883     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7884     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7885   }
7886
7887   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7888     // PINSR* works with constant index.
7889     return Op;
7890   }
7891   return SDValue();
7892 }
7893
7894 SDValue
7895 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7896   MVT VT = Op.getSimpleValueType();
7897   MVT EltVT = VT.getVectorElementType();
7898
7899   SDLoc dl(Op);
7900   SDValue N0 = Op.getOperand(0);
7901   SDValue N1 = Op.getOperand(1);
7902   SDValue N2 = Op.getOperand(2);
7903
7904   // If this is a 256-bit vector result, first extract the 128-bit vector,
7905   // insert the element into the extracted half and then place it back.
7906   if (VT.is256BitVector() || VT.is512BitVector()) {
7907     if (!isa<ConstantSDNode>(N2))
7908       return SDValue();
7909
7910     // Get the desired 128-bit vector half.
7911     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7912     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7913
7914     // Insert the element into the desired half.
7915     unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7916     unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7917
7918     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7919                     DAG.getConstant(IdxIn128, MVT::i32));
7920
7921     // Insert the changed part back to the 256-bit vector
7922     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7923   }
7924
7925   if (Subtarget->hasSSE41())
7926     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7927
7928   if (EltVT == MVT::i8)
7929     return SDValue();
7930
7931   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7932     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7933     // as its second argument.
7934     if (N1.getValueType() != MVT::i32)
7935       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7936     if (N2.getValueType() != MVT::i32)
7937       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7938     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7939   }
7940   return SDValue();
7941 }
7942
7943 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7944   SDLoc dl(Op);
7945   MVT OpVT = Op.getSimpleValueType();
7946
7947   // If this is a 256-bit vector result, first insert into a 128-bit
7948   // vector and then insert into the 256-bit vector.
7949   if (!OpVT.is128BitVector()) {
7950     // Insert into a 128-bit vector.
7951     unsigned SizeFactor = OpVT.getSizeInBits()/128;
7952     MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
7953                                  OpVT.getVectorNumElements() / SizeFactor);
7954
7955     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7956
7957     // Insert the 128-bit vector.
7958     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7959   }
7960
7961   if (OpVT == MVT::v1i64 &&
7962       Op.getOperand(0).getValueType() == MVT::i64)
7963     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7964
7965   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7966   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7967   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7968                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7969 }
7970
7971 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7972 // a simple subregister reference or explicit instructions to grab
7973 // upper bits of a vector.
7974 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7975                                       SelectionDAG &DAG) {
7976   SDLoc dl(Op);
7977   SDValue In =  Op.getOperand(0);
7978   SDValue Idx = Op.getOperand(1);
7979   unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7980   MVT ResVT   = Op.getSimpleValueType();
7981   MVT InVT    = In.getSimpleValueType();
7982
7983   if (Subtarget->hasFp256()) {
7984     if (ResVT.is128BitVector() &&
7985         (InVT.is256BitVector() || InVT.is512BitVector()) &&
7986         isa<ConstantSDNode>(Idx)) {
7987       return Extract128BitVector(In, IdxVal, DAG, dl);
7988     }
7989     if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7990         isa<ConstantSDNode>(Idx)) {
7991       return Extract256BitVector(In, IdxVal, DAG, dl);
7992     }
7993   }
7994   return SDValue();
7995 }
7996
7997 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7998 // simple superregister reference or explicit instructions to insert
7999 // the upper bits of a vector.
8000 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
8001                                      SelectionDAG &DAG) {
8002   if (Subtarget->hasFp256()) {
8003     SDLoc dl(Op.getNode());
8004     SDValue Vec = Op.getNode()->getOperand(0);
8005     SDValue SubVec = Op.getNode()->getOperand(1);
8006     SDValue Idx = Op.getNode()->getOperand(2);
8007
8008     if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
8009          Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
8010         SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
8011         isa<ConstantSDNode>(Idx)) {
8012       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8013       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
8014     }
8015
8016     if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
8017         SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
8018         isa<ConstantSDNode>(Idx)) {
8019       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
8020       return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
8021     }
8022   }
8023   return SDValue();
8024 }
8025
8026 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
8027 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
8028 // one of the above mentioned nodes. It has to be wrapped because otherwise
8029 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
8030 // be used to form addressing mode. These wrapped nodes will be selected
8031 // into MOV32ri.
8032 SDValue
8033 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
8034   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
8035
8036   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8037   // global base reg.
8038   unsigned char OpFlag = 0;
8039   unsigned WrapperKind = X86ISD::Wrapper;
8040   CodeModel::Model M = getTargetMachine().getCodeModel();
8041
8042   if (Subtarget->isPICStyleRIPRel() &&
8043       (M == CodeModel::Small || M == CodeModel::Kernel))
8044     WrapperKind = X86ISD::WrapperRIP;
8045   else if (Subtarget->isPICStyleGOT())
8046     OpFlag = X86II::MO_GOTOFF;
8047   else if (Subtarget->isPICStyleStubPIC())
8048     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8049
8050   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
8051                                              CP->getAlignment(),
8052                                              CP->getOffset(), OpFlag);
8053   SDLoc DL(CP);
8054   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8055   // With PIC, the address is actually $g + Offset.
8056   if (OpFlag) {
8057     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8058                          DAG.getNode(X86ISD::GlobalBaseReg,
8059                                      SDLoc(), getPointerTy()),
8060                          Result);
8061   }
8062
8063   return Result;
8064 }
8065
8066 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
8067   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
8068
8069   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8070   // global base reg.
8071   unsigned char OpFlag = 0;
8072   unsigned WrapperKind = X86ISD::Wrapper;
8073   CodeModel::Model M = getTargetMachine().getCodeModel();
8074
8075   if (Subtarget->isPICStyleRIPRel() &&
8076       (M == CodeModel::Small || M == CodeModel::Kernel))
8077     WrapperKind = X86ISD::WrapperRIP;
8078   else if (Subtarget->isPICStyleGOT())
8079     OpFlag = X86II::MO_GOTOFF;
8080   else if (Subtarget->isPICStyleStubPIC())
8081     OpFlag = X86II::MO_PIC_BASE_OFFSET;
8082
8083   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
8084                                           OpFlag);
8085   SDLoc DL(JT);
8086   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8087
8088   // With PIC, the address is actually $g + Offset.
8089   if (OpFlag)
8090     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8091                          DAG.getNode(X86ISD::GlobalBaseReg,
8092                                      SDLoc(), getPointerTy()),
8093                          Result);
8094
8095   return Result;
8096 }
8097
8098 SDValue
8099 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
8100   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
8101
8102   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8103   // global base reg.
8104   unsigned char OpFlag = 0;
8105   unsigned WrapperKind = X86ISD::Wrapper;
8106   CodeModel::Model M = getTargetMachine().getCodeModel();
8107
8108   if (Subtarget->isPICStyleRIPRel() &&
8109       (M == CodeModel::Small || M == CodeModel::Kernel)) {
8110     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8111       OpFlag = X86II::MO_GOTPCREL;
8112     WrapperKind = X86ISD::WrapperRIP;
8113   } else if (Subtarget->isPICStyleGOT()) {
8114     OpFlag = X86II::MO_GOT;
8115   } else if (Subtarget->isPICStyleStubPIC()) {
8116     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8117   } else if (Subtarget->isPICStyleStubNoDynamic()) {
8118     OpFlag = X86II::MO_DARWIN_NONLAZY;
8119   }
8120
8121   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
8122
8123   SDLoc DL(Op);
8124   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8125
8126   // With PIC, the address is actually $g + Offset.
8127   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
8128       !Subtarget->is64Bit()) {
8129     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8130                          DAG.getNode(X86ISD::GlobalBaseReg,
8131                                      SDLoc(), getPointerTy()),
8132                          Result);
8133   }
8134
8135   // For symbols that require a load from a stub to get the address, emit the
8136   // load.
8137   if (isGlobalStubReference(OpFlag))
8138     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
8139                          MachinePointerInfo::getGOT(), false, false, false, 0);
8140
8141   return Result;
8142 }
8143
8144 SDValue
8145 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
8146   // Create the TargetBlockAddressAddress node.
8147   unsigned char OpFlags =
8148     Subtarget->ClassifyBlockAddressReference();
8149   CodeModel::Model M = getTargetMachine().getCodeModel();
8150   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
8151   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
8152   SDLoc dl(Op);
8153   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8154                                              OpFlags);
8155
8156   if (Subtarget->isPICStyleRIPRel() &&
8157       (M == CodeModel::Small || M == CodeModel::Kernel))
8158     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8159   else
8160     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8161
8162   // With PIC, the address is actually $g + Offset.
8163   if (isGlobalRelativeToPICBase(OpFlags)) {
8164     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8165                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8166                          Result);
8167   }
8168
8169   return Result;
8170 }
8171
8172 SDValue
8173 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
8174                                       int64_t Offset, SelectionDAG &DAG) const {
8175   // Create the TargetGlobalAddress node, folding in the constant
8176   // offset if it is legal.
8177   unsigned char OpFlags =
8178     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
8179   CodeModel::Model M = getTargetMachine().getCodeModel();
8180   SDValue Result;
8181   if (OpFlags == X86II::MO_NO_FLAG &&
8182       X86::isOffsetSuitableForCodeModel(Offset, M)) {
8183     // A direct static reference to a global.
8184     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
8185     Offset = 0;
8186   } else {
8187     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
8188   }
8189
8190   if (Subtarget->isPICStyleRIPRel() &&
8191       (M == CodeModel::Small || M == CodeModel::Kernel))
8192     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8193   else
8194     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
8195
8196   // With PIC, the address is actually $g + Offset.
8197   if (isGlobalRelativeToPICBase(OpFlags)) {
8198     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8199                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8200                          Result);
8201   }
8202
8203   // For globals that require a load from a stub to get the address, emit the
8204   // load.
8205   if (isGlobalStubReference(OpFlags))
8206     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
8207                          MachinePointerInfo::getGOT(), false, false, false, 0);
8208
8209   // If there was a non-zero offset that we didn't fold, create an explicit
8210   // addition for it.
8211   if (Offset != 0)
8212     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
8213                          DAG.getConstant(Offset, getPointerTy()));
8214
8215   return Result;
8216 }
8217
8218 SDValue
8219 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
8220   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
8221   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
8222   return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
8223 }
8224
8225 static SDValue
8226 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
8227            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
8228            unsigned char OperandFlags, bool LocalDynamic = false) {
8229   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8230   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8231   SDLoc dl(GA);
8232   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8233                                            GA->getValueType(0),
8234                                            GA->getOffset(),
8235                                            OperandFlags);
8236
8237   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8238                                            : X86ISD::TLSADDR;
8239
8240   if (InFlag) {
8241     SDValue Ops[] = { Chain,  TGA, *InFlag };
8242     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8243   } else {
8244     SDValue Ops[]  = { Chain, TGA };
8245     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
8246   }
8247
8248   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
8249   MFI->setAdjustsStack(true);
8250
8251   SDValue Flag = Chain.getValue(1);
8252   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
8253 }
8254
8255 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
8256 static SDValue
8257 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8258                                 const EVT PtrVT) {
8259   SDValue InFlag;
8260   SDLoc dl(GA);  // ? function entry point might be better
8261   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8262                                    DAG.getNode(X86ISD::GlobalBaseReg,
8263                                                SDLoc(), PtrVT), InFlag);
8264   InFlag = Chain.getValue(1);
8265
8266   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
8267 }
8268
8269 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
8270 static SDValue
8271 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8272                                 const EVT PtrVT) {
8273   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8274                     X86::RAX, X86II::MO_TLSGD);
8275 }
8276
8277 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8278                                            SelectionDAG &DAG,
8279                                            const EVT PtrVT,
8280                                            bool is64Bit) {
8281   SDLoc dl(GA);
8282
8283   // Get the start address of the TLS block for this module.
8284   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8285       .getInfo<X86MachineFunctionInfo>();
8286   MFI->incNumLocalDynamicTLSAccesses();
8287
8288   SDValue Base;
8289   if (is64Bit) {
8290     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8291                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
8292   } else {
8293     SDValue InFlag;
8294     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
8295         DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
8296     InFlag = Chain.getValue(1);
8297     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8298                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8299   }
8300
8301   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8302   // of Base.
8303
8304   // Build x@dtpoff.
8305   unsigned char OperandFlags = X86II::MO_DTPOFF;
8306   unsigned WrapperKind = X86ISD::Wrapper;
8307   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8308                                            GA->getValueType(0),
8309                                            GA->getOffset(), OperandFlags);
8310   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8311
8312   // Add x@dtpoff with the base.
8313   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8314 }
8315
8316 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
8317 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
8318                                    const EVT PtrVT, TLSModel::Model model,
8319                                    bool is64Bit, bool isPIC) {
8320   SDLoc dl(GA);
8321
8322   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8323   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8324                                                          is64Bit ? 257 : 256));
8325
8326   SDValue ThreadPointer =
8327       DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8328                   MachinePointerInfo(Ptr), false, false, false, 0);
8329
8330   unsigned char OperandFlags = 0;
8331   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
8332   // initialexec.
8333   unsigned WrapperKind = X86ISD::Wrapper;
8334   if (model == TLSModel::LocalExec) {
8335     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
8336   } else if (model == TLSModel::InitialExec) {
8337     if (is64Bit) {
8338       OperandFlags = X86II::MO_GOTTPOFF;
8339       WrapperKind = X86ISD::WrapperRIP;
8340     } else {
8341       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8342     }
8343   } else {
8344     llvm_unreachable("Unexpected model");
8345   }
8346
8347   // emit "addl x@ntpoff,%eax" (local exec)
8348   // or "addl x@indntpoff,%eax" (initial exec)
8349   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
8350   SDValue TGA =
8351       DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8352                                  GA->getOffset(), OperandFlags);
8353   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8354
8355   if (model == TLSModel::InitialExec) {
8356     if (isPIC && !is64Bit) {
8357       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
8358                            DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
8359                            Offset);
8360     }
8361
8362     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
8363                          MachinePointerInfo::getGOT(), false, false, false, 0);
8364   }
8365
8366   // The address of the thread local variable is the add of the thread
8367   // pointer with the offset of the variable.
8368   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
8369 }
8370
8371 SDValue
8372 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
8373
8374   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
8375   const GlobalValue *GV = GA->getGlobal();
8376
8377   if (Subtarget->isTargetELF()) {
8378     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
8379
8380     switch (model) {
8381       case TLSModel::GeneralDynamic:
8382         if (Subtarget->is64Bit())
8383           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8384         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
8385       case TLSModel::LocalDynamic:
8386         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8387                                            Subtarget->is64Bit());
8388       case TLSModel::InitialExec:
8389       case TLSModel::LocalExec:
8390         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
8391                                    Subtarget->is64Bit(),
8392                         getTargetMachine().getRelocationModel() == Reloc::PIC_);
8393     }
8394     llvm_unreachable("Unknown TLS model.");
8395   }
8396
8397   if (Subtarget->isTargetDarwin()) {
8398     // Darwin only has one model of TLS.  Lower to that.
8399     unsigned char OpFlag = 0;
8400     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8401                            X86ISD::WrapperRIP : X86ISD::Wrapper;
8402
8403     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8404     // global base reg.
8405     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8406                   !Subtarget->is64Bit();
8407     if (PIC32)
8408       OpFlag = X86II::MO_TLVP_PIC_BASE;
8409     else
8410       OpFlag = X86II::MO_TLVP;
8411     SDLoc DL(Op);
8412     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
8413                                                 GA->getValueType(0),
8414                                                 GA->getOffset(), OpFlag);
8415     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
8416
8417     // With PIC32, the address is actually $g + Offset.
8418     if (PIC32)
8419       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8420                            DAG.getNode(X86ISD::GlobalBaseReg,
8421                                        SDLoc(), getPointerTy()),
8422                            Offset);
8423
8424     // Lowering the machine isd will make sure everything is in the right
8425     // location.
8426     SDValue Chain = DAG.getEntryNode();
8427     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8428     SDValue Args[] = { Chain, Offset };
8429     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
8430
8431     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8432     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8433     MFI->setAdjustsStack(true);
8434
8435     // And our return value (tls address) is in the standard call return value
8436     // location.
8437     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
8438     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8439                               Chain.getValue(1));
8440   }
8441
8442   if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
8443     // Just use the implicit TLS architecture
8444     // Need to generate someting similar to:
8445     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8446     //                                  ; from TEB
8447     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
8448     //   mov     rcx, qword [rdx+rcx*8]
8449     //   mov     eax, .tls$:tlsvar
8450     //   [rax+rcx] contains the address
8451     // Windows 64bit: gs:0x58
8452     // Windows 32bit: fs:__tls_array
8453
8454     // If GV is an alias then use the aliasee for determining
8455     // thread-localness.
8456     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8457       GV = GA->resolveAliasedGlobal(false);
8458     SDLoc dl(GA);
8459     SDValue Chain = DAG.getEntryNode();
8460
8461     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
8462     // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8463     // use its literal value of 0x2C.
8464     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8465                                         ? Type::getInt8PtrTy(*DAG.getContext(),
8466                                                              256)
8467                                         : Type::getInt32PtrTy(*DAG.getContext(),
8468                                                               257));
8469
8470     SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8471       (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8472         DAG.getExternalSymbol("_tls_array", getPointerTy()));
8473
8474     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
8475                                         MachinePointerInfo(Ptr),
8476                                         false, false, false, 0);
8477
8478     // Load the _tls_index variable
8479     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8480     if (Subtarget->is64Bit())
8481       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8482                            IDX, MachinePointerInfo(), MVT::i32,
8483                            false, false, 0);
8484     else
8485       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8486                         false, false, false, 0);
8487
8488     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
8489                                     getPointerTy());
8490     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8491
8492     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8493     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8494                       false, false, false, 0);
8495
8496     // Get the offset of start of .tls section
8497     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8498                                              GA->getValueType(0),
8499                                              GA->getOffset(), X86II::MO_SECREL);
8500     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8501
8502     // The address of the thread local variable is the add of the thread
8503     // pointer with the offset of the variable.
8504     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
8505   }
8506
8507   llvm_unreachable("TLS not implemented for this target.");
8508 }
8509
8510 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8511 /// and take a 2 x i32 value to shift plus a shift amount.
8512 static SDValue LowerShiftParts(SDValue Op, SelectionDAG &DAG) {
8513   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
8514   MVT VT = Op.getSimpleValueType();
8515   unsigned VTBits = VT.getSizeInBits();
8516   SDLoc dl(Op);
8517   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
8518   SDValue ShOpLo = Op.getOperand(0);
8519   SDValue ShOpHi = Op.getOperand(1);
8520   SDValue ShAmt  = Op.getOperand(2);
8521   // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
8522   // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
8523   // during isel.
8524   SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8525                                   DAG.getConstant(VTBits - 1, MVT::i8));
8526   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
8527                                      DAG.getConstant(VTBits - 1, MVT::i8))
8528                        : DAG.getConstant(0, VT);
8529
8530   SDValue Tmp2, Tmp3;
8531   if (Op.getOpcode() == ISD::SHL_PARTS) {
8532     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
8533     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
8534   } else {
8535     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
8536     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
8537   }
8538
8539   // If the shift amount is larger or equal than the width of a part we can't
8540   // rely on the results of shld/shrd. Insert a test and select the appropriate
8541   // values for large shift amounts.
8542   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8543                                 DAG.getConstant(VTBits, MVT::i8));
8544   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8545                              AndNode, DAG.getConstant(0, MVT::i8));
8546
8547   SDValue Hi, Lo;
8548   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8549   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8550   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
8551
8552   if (Op.getOpcode() == ISD::SHL_PARTS) {
8553     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8554     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8555   } else {
8556     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8557     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
8558   }
8559
8560   SDValue Ops[2] = { Lo, Hi };
8561   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
8562 }
8563
8564 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8565                                            SelectionDAG &DAG) const {
8566   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
8567
8568   if (SrcVT.isVector())
8569     return SDValue();
8570
8571   assert(SrcVT <= MVT::i64 && SrcVT >= MVT::i16 &&
8572          "Unknown SINT_TO_FP to lower!");
8573
8574   // These are really Legal; return the operand so the caller accepts it as
8575   // Legal.
8576   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
8577     return Op;
8578   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
8579       Subtarget->is64Bit()) {
8580     return Op;
8581   }
8582
8583   SDLoc dl(Op);
8584   unsigned Size = SrcVT.getSizeInBits()/8;
8585   MachineFunction &MF = DAG.getMachineFunction();
8586   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
8587   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8588   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8589                                StackSlot,
8590                                MachinePointerInfo::getFixedStack(SSFI),
8591                                false, false, 0);
8592   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8593 }
8594
8595 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
8596                                      SDValue StackSlot,
8597                                      SelectionDAG &DAG) const {
8598   // Build the FILD
8599   SDLoc DL(Op);
8600   SDVTList Tys;
8601   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
8602   if (useSSE)
8603     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
8604   else
8605     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
8606
8607   unsigned ByteSize = SrcVT.getSizeInBits()/8;
8608
8609   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8610   MachineMemOperand *MMO;
8611   if (FI) {
8612     int SSFI = FI->getIndex();
8613     MMO =
8614       DAG.getMachineFunction()
8615       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8616                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
8617   } else {
8618     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8619     StackSlot = StackSlot.getOperand(1);
8620   }
8621   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
8622   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8623                                            X86ISD::FILD, DL,
8624                                            Tys, Ops, array_lengthof(Ops),
8625                                            SrcVT, MMO);
8626
8627   if (useSSE) {
8628     Chain = Result.getValue(1);
8629     SDValue InFlag = Result.getValue(2);
8630
8631     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8632     // shouldn't be necessary except that RFP cannot be live across
8633     // multiple blocks. When stackifier is fixed, they can be uncoupled.
8634     MachineFunction &MF = DAG.getMachineFunction();
8635     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8636     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
8637     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8638     Tys = DAG.getVTList(MVT::Other);
8639     SDValue Ops[] = {
8640       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8641     };
8642     MachineMemOperand *MMO =
8643       DAG.getMachineFunction()
8644       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8645                             MachineMemOperand::MOStore, SSFISize, SSFISize);
8646
8647     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8648                                     Ops, array_lengthof(Ops),
8649                                     Op.getValueType(), MMO);
8650     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
8651                          MachinePointerInfo::getFixedStack(SSFI),
8652                          false, false, false, 0);
8653   }
8654
8655   return Result;
8656 }
8657
8658 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
8659 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8660                                                SelectionDAG &DAG) const {
8661   // This algorithm is not obvious. Here it is what we're trying to output:
8662   /*
8663      movq       %rax,  %xmm0
8664      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8665      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8666      #ifdef __SSE3__
8667        haddpd   %xmm0, %xmm0
8668      #else
8669        pshufd   $0x4e, %xmm0, %xmm1
8670        addpd    %xmm1, %xmm0
8671      #endif
8672   */
8673
8674   SDLoc dl(Op);
8675   LLVMContext *Context = DAG.getContext();
8676
8677   // Build some magic constants.
8678   static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8679   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8680   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8681
8682   SmallVector<Constant*,2> CV1;
8683   CV1.push_back(
8684     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8685                                       APInt(64, 0x4330000000000000ULL))));
8686   CV1.push_back(
8687     ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8688                                       APInt(64, 0x4530000000000000ULL))));
8689   Constant *C1 = ConstantVector::get(CV1);
8690   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8691
8692   // Load the 64-bit value into an XMM register.
8693   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8694                             Op.getOperand(0));
8695   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8696                               MachinePointerInfo::getConstantPool(),
8697                               false, false, false, 16);
8698   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8699                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8700                               CLod0);
8701
8702   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8703                               MachinePointerInfo::getConstantPool(),
8704                               false, false, false, 16);
8705   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8706   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8707   SDValue Result;
8708
8709   if (Subtarget->hasSSE3()) {
8710     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8711     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8712   } else {
8713     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8714     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8715                                            S2F, 0x4E, DAG);
8716     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8717                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8718                          Sub);
8719   }
8720
8721   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8722                      DAG.getIntPtrConstant(0));
8723 }
8724
8725 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8726 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8727                                                SelectionDAG &DAG) const {
8728   SDLoc dl(Op);
8729   // FP constant to bias correct the final result.
8730   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8731                                    MVT::f64);
8732
8733   // Load the 32-bit value into an XMM register.
8734   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8735                              Op.getOperand(0));
8736
8737   // Zero out the upper parts of the register.
8738   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8739
8740   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8741                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8742                      DAG.getIntPtrConstant(0));
8743
8744   // Or the load with the bias.
8745   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8746                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8747                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8748                                                    MVT::v2f64, Load)),
8749                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8750                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8751                                                    MVT::v2f64, Bias)));
8752   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8753                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8754                    DAG.getIntPtrConstant(0));
8755
8756   // Subtract the bias.
8757   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8758
8759   // Handle final rounding.
8760   EVT DestVT = Op.getValueType();
8761
8762   if (DestVT.bitsLT(MVT::f64))
8763     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8764                        DAG.getIntPtrConstant(0));
8765   if (DestVT.bitsGT(MVT::f64))
8766     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8767
8768   // Handle final rounding.
8769   return Sub;
8770 }
8771
8772 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8773                                                SelectionDAG &DAG) const {
8774   SDValue N0 = Op.getOperand(0);
8775   MVT SVT = N0.getSimpleValueType();
8776   SDLoc dl(Op);
8777
8778   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8779           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8780          "Custom UINT_TO_FP is not supported!");
8781
8782   MVT NVT = MVT::getVectorVT(MVT::i32, SVT.getVectorNumElements());
8783   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8784                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8785 }
8786
8787 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8788                                            SelectionDAG &DAG) const {
8789   SDValue N0 = Op.getOperand(0);
8790   SDLoc dl(Op);
8791
8792   if (Op.getValueType().isVector())
8793     return lowerUINT_TO_FP_vec(Op, DAG);
8794
8795   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8796   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8797   // the optimization here.
8798   if (DAG.SignBitIsZero(N0))
8799     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8800
8801   MVT SrcVT = N0.getSimpleValueType();
8802   MVT DstVT = Op.getSimpleValueType();
8803   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8804     return LowerUINT_TO_FP_i64(Op, DAG);
8805   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8806     return LowerUINT_TO_FP_i32(Op, DAG);
8807   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8808     return SDValue();
8809
8810   // Make a 64-bit buffer, and use it to build an FILD.
8811   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8812   if (SrcVT == MVT::i32) {
8813     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8814     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8815                                      getPointerTy(), StackSlot, WordOff);
8816     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8817                                   StackSlot, MachinePointerInfo(),
8818                                   false, false, 0);
8819     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8820                                   OffsetSlot, MachinePointerInfo(),
8821                                   false, false, 0);
8822     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8823     return Fild;
8824   }
8825
8826   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8827   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8828                                StackSlot, MachinePointerInfo(),
8829                                false, false, 0);
8830   // For i64 source, we need to add the appropriate power of 2 if the input
8831   // was negative.  This is the same as the optimization in
8832   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8833   // we must be careful to do the computation in x87 extended precision, not
8834   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8835   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8836   MachineMemOperand *MMO =
8837     DAG.getMachineFunction()
8838     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8839                           MachineMemOperand::MOLoad, 8, 8);
8840
8841   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8842   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8843   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8844                                          array_lengthof(Ops), MVT::i64, MMO);
8845
8846   APInt FF(32, 0x5F800000ULL);
8847
8848   // Check whether the sign bit is set.
8849   SDValue SignSet = DAG.getSetCC(dl,
8850                                  getSetCCResultType(*DAG.getContext(), MVT::i64),
8851                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8852                                  ISD::SETLT);
8853
8854   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8855   SDValue FudgePtr = DAG.getConstantPool(
8856                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8857                                          getPointerTy());
8858
8859   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8860   SDValue Zero = DAG.getIntPtrConstant(0);
8861   SDValue Four = DAG.getIntPtrConstant(4);
8862   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8863                                Zero, Four);
8864   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8865
8866   // Load the value out, extending it from f32 to f80.
8867   // FIXME: Avoid the extend by constructing the right constant pool?
8868   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8869                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8870                                  MVT::f32, false, false, 4);
8871   // Extend everything to 80 bits to force it to be done on x87.
8872   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8873   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8874 }
8875
8876 std::pair<SDValue,SDValue>
8877 X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8878                                     bool IsSigned, bool IsReplace) const {
8879   SDLoc DL(Op);
8880
8881   EVT DstTy = Op.getValueType();
8882
8883   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8884     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8885     DstTy = MVT::i64;
8886   }
8887
8888   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8889          DstTy.getSimpleVT() >= MVT::i16 &&
8890          "Unknown FP_TO_INT to lower!");
8891
8892   // These are really Legal.
8893   if (DstTy == MVT::i32 &&
8894       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8895     return std::make_pair(SDValue(), SDValue());
8896   if (Subtarget->is64Bit() &&
8897       DstTy == MVT::i64 &&
8898       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8899     return std::make_pair(SDValue(), SDValue());
8900
8901   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8902   // stack slot, or into the FTOL runtime function.
8903   MachineFunction &MF = DAG.getMachineFunction();
8904   unsigned MemSize = DstTy.getSizeInBits()/8;
8905   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8906   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8907
8908   unsigned Opc;
8909   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8910     Opc = X86ISD::WIN_FTOL;
8911   else
8912     switch (DstTy.getSimpleVT().SimpleTy) {
8913     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8914     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8915     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8916     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8917     }
8918
8919   SDValue Chain = DAG.getEntryNode();
8920   SDValue Value = Op.getOperand(0);
8921   EVT TheVT = Op.getOperand(0).getValueType();
8922   // FIXME This causes a redundant load/store if the SSE-class value is already
8923   // in memory, such as if it is on the callstack.
8924   if (isScalarFPTypeInSSEReg(TheVT)) {
8925     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8926     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8927                          MachinePointerInfo::getFixedStack(SSFI),
8928                          false, false, 0);
8929     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8930     SDValue Ops[] = {
8931       Chain, StackSlot, DAG.getValueType(TheVT)
8932     };
8933
8934     MachineMemOperand *MMO =
8935       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8936                               MachineMemOperand::MOLoad, MemSize, MemSize);
8937     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8938                                     array_lengthof(Ops), DstTy, MMO);
8939     Chain = Value.getValue(1);
8940     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8941     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8942   }
8943
8944   MachineMemOperand *MMO =
8945     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8946                             MachineMemOperand::MOStore, MemSize, MemSize);
8947
8948   if (Opc != X86ISD::WIN_FTOL) {
8949     // Build the FP_TO_INT*_IN_MEM
8950     SDValue Ops[] = { Chain, Value, StackSlot };
8951     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8952                                            Ops, array_lengthof(Ops), DstTy,
8953                                            MMO);
8954     return std::make_pair(FIST, StackSlot);
8955   } else {
8956     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8957       DAG.getVTList(MVT::Other, MVT::Glue),
8958       Chain, Value);
8959     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8960       MVT::i32, ftol.getValue(1));
8961     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8962       MVT::i32, eax.getValue(2));
8963     SDValue Ops[] = { eax, edx };
8964     SDValue pair = IsReplace
8965       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8966       : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
8967     return std::make_pair(pair, SDValue());
8968   }
8969 }
8970
8971 static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8972                               const X86Subtarget *Subtarget) {
8973   MVT VT = Op->getSimpleValueType(0);
8974   SDValue In = Op->getOperand(0);
8975   MVT InVT = In.getSimpleValueType();
8976   SDLoc dl(Op);
8977
8978   // Optimize vectors in AVX mode:
8979   //
8980   //   v8i16 -> v8i32
8981   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
8982   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
8983   //   Concat upper and lower parts.
8984   //
8985   //   v4i32 -> v4i64
8986   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
8987   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
8988   //   Concat upper and lower parts.
8989   //
8990
8991   if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8992       ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
8993       ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8994     return SDValue();
8995
8996   if (Subtarget->hasInt256())
8997     return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8998
8999   SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
9000   SDValue Undef = DAG.getUNDEF(InVT);
9001   bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
9002   SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9003   SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
9004
9005   MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
9006                              VT.getVectorNumElements()/2);
9007
9008   OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
9009   OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
9010
9011   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
9012 }
9013
9014 static  SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
9015                                         SelectionDAG &DAG) {
9016   MVT VT = Op->getSimpleValueType(0);
9017   SDValue In = Op->getOperand(0);
9018   MVT InVT = In.getSimpleValueType();
9019   SDLoc DL(Op);
9020   unsigned int NumElts = VT.getVectorNumElements();
9021   if (NumElts != 8 && NumElts != 16)
9022     return SDValue();
9023
9024   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
9025     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
9026
9027   EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
9028   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9029   // Now we have only mask extension
9030   assert(InVT.getVectorElementType() == MVT::i1);
9031   SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
9032   const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9033   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
9034   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9035   SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9036                            MachinePointerInfo::getConstantPool(),
9037                            false, false, false, Alignment);
9038
9039   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
9040   if (VT.is512BitVector())
9041     return Brcst;
9042   return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
9043 }
9044
9045 static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9046                                SelectionDAG &DAG) {
9047   if (Subtarget->hasFp256()) {
9048     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9049     if (Res.getNode())
9050       return Res;
9051   }
9052
9053   return SDValue();
9054 }
9055
9056 static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
9057                                 SelectionDAG &DAG) {
9058   SDLoc DL(Op);
9059   MVT VT = Op.getSimpleValueType();
9060   SDValue In = Op.getOperand(0);
9061   MVT SVT = In.getSimpleValueType();
9062
9063   if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
9064     return LowerZERO_EXTEND_AVX512(Op, DAG);
9065
9066   if (Subtarget->hasFp256()) {
9067     SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
9068     if (Res.getNode())
9069       return Res;
9070   }
9071
9072   assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
9073          VT.getVectorNumElements() != SVT.getVectorNumElements());
9074   return SDValue();
9075 }
9076
9077 SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
9078   SDLoc DL(Op);
9079   MVT VT = Op.getSimpleValueType();
9080   SDValue In = Op.getOperand(0);
9081   MVT InVT = In.getSimpleValueType();
9082
9083   if (VT == MVT::i1) {
9084     assert((InVT.isInteger() && (InVT.getSizeInBits() <= 64)) &&
9085            "Invalid scalar TRUNCATE operation");
9086     if (InVT == MVT::i32)
9087       return SDValue();
9088     if (InVT.getSizeInBits() == 64)
9089       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::i32, In);
9090     else if (InVT.getSizeInBits() < 32)
9091       In = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, In);
9092     return DAG.getNode(ISD::TRUNCATE, DL, VT, In);
9093   }
9094   assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
9095          "Invalid TRUNCATE operation");
9096
9097   if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
9098     if (VT.getVectorElementType().getSizeInBits() >=8)
9099       return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
9100
9101     assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
9102     unsigned NumElts = InVT.getVectorNumElements();
9103     assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
9104     if (InVT.getSizeInBits() < 512) {
9105       MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
9106       In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
9107       InVT = ExtVT;
9108     }
9109     SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
9110     const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9111     SDValue CP = DAG.getConstantPool(C, getPointerTy());
9112     unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9113     SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9114                            MachinePointerInfo::getConstantPool(),
9115                            false, false, false, Alignment);
9116     SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
9117     SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9118     return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9119   }
9120
9121   if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
9122     // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9123     if (Subtarget->hasInt256()) {
9124       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9125       In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9126       In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9127                                 ShufMask);
9128       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9129                          DAG.getIntPtrConstant(0));
9130     }
9131
9132     // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9133     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9134                                DAG.getIntPtrConstant(0));
9135     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9136                                DAG.getIntPtrConstant(2));
9137
9138     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9139     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9140
9141     // The PSHUFD mask:
9142     static const int ShufMask1[] = {0, 2, 0, 0};
9143     SDValue Undef = DAG.getUNDEF(VT);
9144     OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9145     OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9146
9147     // The MOVLHPS mask:
9148     static const int ShufMask2[] = {0, 1, 4, 5};
9149     return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9150   }
9151
9152   if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
9153     // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9154     if (Subtarget->hasInt256()) {
9155       In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9156
9157       SmallVector<SDValue,32> pshufbMask;
9158       for (unsigned i = 0; i < 2; ++i) {
9159         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9160         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9161         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9162         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9163         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9164         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9165         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9166         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9167         for (unsigned j = 0; j < 8; ++j)
9168           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9169       }
9170       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9171                                &pshufbMask[0], 32);
9172       In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9173       In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9174
9175       static const int ShufMask[] = {0,  2,  -1,  -1};
9176       In = DAG.getVectorShuffle(MVT::v4i64, DL,  In, DAG.getUNDEF(MVT::v4i64),
9177                                 &ShufMask[0]);
9178       In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9179                        DAG.getIntPtrConstant(0));
9180       return DAG.getNode(ISD::BITCAST, DL, VT, In);
9181     }
9182
9183     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9184                                DAG.getIntPtrConstant(0));
9185
9186     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9187                                DAG.getIntPtrConstant(4));
9188
9189     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9190     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9191
9192     // The PSHUFB mask:
9193     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
9194                                    -1, -1, -1, -1, -1, -1, -1, -1};
9195
9196     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9197     OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9198     OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9199
9200     OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9201     OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9202
9203     // The MOVLHPS Mask:
9204     static const int ShufMask2[] = {0, 1, 4, 5};
9205     SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9206     return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9207   }
9208
9209   // Handle truncation of V256 to V128 using shuffles.
9210   if (!VT.is128BitVector() || !InVT.is256BitVector())
9211     return SDValue();
9212
9213   assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
9214
9215   unsigned NumElems = VT.getVectorNumElements();
9216   MVT NVT = MVT::getVectorVT(VT.getVectorElementType(), NumElems * 2);
9217
9218   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9219   // Prepare truncation shuffle mask
9220   for (unsigned i = 0; i != NumElems; ++i)
9221     MaskVec[i] = i * 2;
9222   SDValue V = DAG.getVectorShuffle(NVT, DL,
9223                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
9224                                    DAG.getUNDEF(NVT), &MaskVec[0]);
9225   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9226                      DAG.getIntPtrConstant(0));
9227 }
9228
9229 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9230                                            SelectionDAG &DAG) const {
9231   MVT VT = Op.getSimpleValueType();
9232   if (VT.isVector()) {
9233     if (VT == MVT::v8i16)
9234       return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9235                          DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
9236                                      MVT::v8i32, Op.getOperand(0)));
9237     return SDValue();
9238   }
9239
9240   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9241     /*IsSigned=*/ true, /*IsReplace=*/ false);
9242   SDValue FIST = Vals.first, StackSlot = Vals.second;
9243   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9244   if (FIST.getNode() == 0) return Op;
9245
9246   if (StackSlot.getNode())
9247     // Load the result.
9248     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9249                        FIST, StackSlot, MachinePointerInfo(),
9250                        false, false, false, 0);
9251
9252   // The node is the result.
9253   return FIST;
9254 }
9255
9256 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9257                                            SelectionDAG &DAG) const {
9258   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9259     /*IsSigned=*/ false, /*IsReplace=*/ false);
9260   SDValue FIST = Vals.first, StackSlot = Vals.second;
9261   assert(FIST.getNode() && "Unexpected failure");
9262
9263   if (StackSlot.getNode())
9264     // Load the result.
9265     return DAG.getLoad(Op.getValueType(), SDLoc(Op),
9266                        FIST, StackSlot, MachinePointerInfo(),
9267                        false, false, false, 0);
9268
9269   // The node is the result.
9270   return FIST;
9271 }
9272
9273 static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
9274   SDLoc DL(Op);
9275   MVT VT = Op.getSimpleValueType();
9276   SDValue In = Op.getOperand(0);
9277   MVT SVT = In.getSimpleValueType();
9278
9279   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9280
9281   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9282                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9283                                  In, DAG.getUNDEF(SVT)));
9284 }
9285
9286 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG) {
9287   LLVMContext *Context = DAG.getContext();
9288   SDLoc dl(Op);
9289   MVT VT = Op.getSimpleValueType();
9290   MVT EltVT = VT;
9291   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9292   if (VT.isVector()) {
9293     EltVT = VT.getVectorElementType();
9294     NumElts = VT.getVectorNumElements();
9295   }
9296   Constant *C;
9297   if (EltVT == MVT::f64)
9298     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9299                                           APInt(64, ~(1ULL << 63))));
9300   else
9301     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9302                                           APInt(32, ~(1U << 31))));
9303   C = ConstantVector::getSplat(NumElts, C);
9304   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9305   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9306   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9307   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9308                              MachinePointerInfo::getConstantPool(),
9309                              false, false, false, Alignment);
9310   if (VT.isVector()) {
9311     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9312     return DAG.getNode(ISD::BITCAST, dl, VT,
9313                        DAG.getNode(ISD::AND, dl, ANDVT,
9314                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
9315                                                Op.getOperand(0)),
9316                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9317   }
9318   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
9319 }
9320
9321 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG) {
9322   LLVMContext *Context = DAG.getContext();
9323   SDLoc dl(Op);
9324   MVT VT = Op.getSimpleValueType();
9325   MVT EltVT = VT;
9326   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9327   if (VT.isVector()) {
9328     EltVT = VT.getVectorElementType();
9329     NumElts = VT.getVectorNumElements();
9330   }
9331   Constant *C;
9332   if (EltVT == MVT::f64)
9333     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9334                                           APInt(64, 1ULL << 63)));
9335   else
9336     C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9337                                           APInt(32, 1U << 31)));
9338   C = ConstantVector::getSplat(NumElts, C);
9339   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9340   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy());
9341   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9342   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9343                              MachinePointerInfo::getConstantPool(),
9344                              false, false, false, Alignment);
9345   if (VT.isVector()) {
9346     MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
9347     return DAG.getNode(ISD::BITCAST, dl, VT,
9348                        DAG.getNode(ISD::XOR, dl, XORVT,
9349                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
9350                                                Op.getOperand(0)),
9351                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
9352   }
9353
9354   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
9355 }
9356
9357 static SDValue LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
9358   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9359   LLVMContext *Context = DAG.getContext();
9360   SDValue Op0 = Op.getOperand(0);
9361   SDValue Op1 = Op.getOperand(1);
9362   SDLoc dl(Op);
9363   MVT VT = Op.getSimpleValueType();
9364   MVT SrcVT = Op1.getSimpleValueType();
9365
9366   // If second operand is smaller, extend it first.
9367   if (SrcVT.bitsLT(VT)) {
9368     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
9369     SrcVT = VT;
9370   }
9371   // And if it is bigger, shrink it first.
9372   if (SrcVT.bitsGT(VT)) {
9373     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
9374     SrcVT = VT;
9375   }
9376
9377   // At this point the operands and the result should have the same
9378   // type, and that won't be f80 since that is not custom lowered.
9379
9380   // First get the sign bit of second operand.
9381   SmallVector<Constant*,4> CV;
9382   if (SrcVT == MVT::f64) {
9383     const fltSemantics &Sem = APFloat::IEEEdouble;
9384     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9385     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9386   } else {
9387     const fltSemantics &Sem = APFloat::IEEEsingle;
9388     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9389     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9390     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9391     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9392   }
9393   Constant *C = ConstantVector::get(CV);
9394   SDValue CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9395   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
9396                               MachinePointerInfo::getConstantPool(),
9397                               false, false, false, 16);
9398   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
9399
9400   // Shift sign bit right or left if the two operands have different types.
9401   if (SrcVT.bitsGT(VT)) {
9402     // Op0 is MVT::f32, Op1 is MVT::f64.
9403     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9404     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9405                           DAG.getConstant(32, MVT::i32));
9406     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
9407     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
9408                           DAG.getIntPtrConstant(0));
9409   }
9410
9411   // Clear first operand sign bit.
9412   CV.clear();
9413   if (VT == MVT::f64) {
9414     const fltSemantics &Sem = APFloat::IEEEdouble;
9415     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9416                                                    APInt(64, ~(1ULL << 63)))));
9417     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
9418   } else {
9419     const fltSemantics &Sem = APFloat::IEEEsingle;
9420     CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9421                                                    APInt(32, ~(1U << 31)))));
9422     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9423     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9424     CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9425   }
9426   C = ConstantVector::get(CV);
9427   CPIdx = DAG.getConstantPool(C, TLI.getPointerTy(), 16);
9428   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9429                               MachinePointerInfo::getConstantPool(),
9430                               false, false, false, 16);
9431   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
9432
9433   // Or the value with the sign bit.
9434   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
9435 }
9436
9437 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
9438   SDValue N0 = Op.getOperand(0);
9439   SDLoc dl(Op);
9440   MVT VT = Op.getSimpleValueType();
9441
9442   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9443   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9444                                   DAG.getConstant(1, VT));
9445   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9446 }
9447
9448 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9449 //
9450 static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9451                                       SelectionDAG &DAG) {
9452   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9453
9454   if (!Subtarget->hasSSE41())
9455     return SDValue();
9456
9457   if (!Op->hasOneUse())
9458     return SDValue();
9459
9460   SDNode *N = Op.getNode();
9461   SDLoc DL(N);
9462
9463   SmallVector<SDValue, 8> Opnds;
9464   DenseMap<SDValue, unsigned> VecInMap;
9465   EVT VT = MVT::Other;
9466
9467   // Recognize a special case where a vector is casted into wide integer to
9468   // test all 0s.
9469   Opnds.push_back(N->getOperand(0));
9470   Opnds.push_back(N->getOperand(1));
9471
9472   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
9473     SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
9474     // BFS traverse all OR'd operands.
9475     if (I->getOpcode() == ISD::OR) {
9476       Opnds.push_back(I->getOperand(0));
9477       Opnds.push_back(I->getOperand(1));
9478       // Re-evaluate the number of nodes to be traversed.
9479       e += 2; // 2 more nodes (LHS and RHS) are pushed.
9480       continue;
9481     }
9482
9483     // Quit if a non-EXTRACT_VECTOR_ELT
9484     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9485       return SDValue();
9486
9487     // Quit if without a constant index.
9488     SDValue Idx = I->getOperand(1);
9489     if (!isa<ConstantSDNode>(Idx))
9490       return SDValue();
9491
9492     SDValue ExtractedFromVec = I->getOperand(0);
9493     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9494     if (M == VecInMap.end()) {
9495       VT = ExtractedFromVec.getValueType();
9496       // Quit if not 128/256-bit vector.
9497       if (!VT.is128BitVector() && !VT.is256BitVector())
9498         return SDValue();
9499       // Quit if not the same type.
9500       if (VecInMap.begin() != VecInMap.end() &&
9501           VT != VecInMap.begin()->first.getValueType())
9502         return SDValue();
9503       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9504     }
9505     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9506   }
9507
9508   assert((VT.is128BitVector() || VT.is256BitVector()) &&
9509          "Not extracted from 128-/256-bit vector.");
9510
9511   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9512   SmallVector<SDValue, 8> VecIns;
9513
9514   for (DenseMap<SDValue, unsigned>::const_iterator
9515         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9516     // Quit if not all elements are used.
9517     if (I->second != FullMask)
9518       return SDValue();
9519     VecIns.push_back(I->first);
9520   }
9521
9522   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9523
9524   // Cast all vectors into TestVT for PTEST.
9525   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9526     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9527
9528   // If more than one full vectors are evaluated, OR them first before PTEST.
9529   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9530     // Each iteration will OR 2 nodes and append the result until there is only
9531     // 1 node left, i.e. the final OR'd value of all vectors.
9532     SDValue LHS = VecIns[Slot];
9533     SDValue RHS = VecIns[Slot + 1];
9534     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9535   }
9536
9537   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9538                      VecIns.back(), VecIns.back());
9539 }
9540
9541 /// Emit nodes that will be selected as "test Op0,Op0", or something
9542 /// equivalent.
9543 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
9544                                     SelectionDAG &DAG) const {
9545   SDLoc dl(Op);
9546
9547   // CF and OF aren't always set the way we want. Determine which
9548   // of these we need.
9549   bool NeedCF = false;
9550   bool NeedOF = false;
9551   switch (X86CC) {
9552   default: break;
9553   case X86::COND_A: case X86::COND_AE:
9554   case X86::COND_B: case X86::COND_BE:
9555     NeedCF = true;
9556     break;
9557   case X86::COND_G: case X86::COND_GE:
9558   case X86::COND_L: case X86::COND_LE:
9559   case X86::COND_O: case X86::COND_NO:
9560     NeedOF = true;
9561     break;
9562   }
9563
9564   // See if we can use the EFLAGS value from the operand instead of
9565   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9566   // we prove that the arithmetic won't overflow, we can't use OF or CF.
9567   if (Op.getResNo() != 0 || NeedOF || NeedCF) {
9568     // Emit a CMP with 0, which is the TEST pattern.
9569     if (Op.getValueType() == MVT::i1)
9570       return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op,
9571                          DAG.getConstant(0, MVT::i1));
9572     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9573                        DAG.getConstant(0, Op.getValueType()));
9574   }
9575   unsigned Opcode = 0;
9576   unsigned NumOperands = 0;
9577
9578   // Truncate operations may prevent the merge of the SETCC instruction
9579   // and the arithmetic instruction before it. Attempt to truncate the operands
9580   // of the arithmetic instruction and use a reduced bit-width instruction.
9581   bool NeedTruncation = false;
9582   SDValue ArithOp = Op;
9583   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9584     SDValue Arith = Op->getOperand(0);
9585     // Both the trunc and the arithmetic op need to have one user each.
9586     if (Arith->hasOneUse())
9587       switch (Arith.getOpcode()) {
9588         default: break;
9589         case ISD::ADD:
9590         case ISD::SUB:
9591         case ISD::AND:
9592         case ISD::OR:
9593         case ISD::XOR: {
9594           NeedTruncation = true;
9595           ArithOp = Arith;
9596         }
9597       }
9598   }
9599
9600   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9601   // which may be the result of a CAST.  We use the variable 'Op', which is the
9602   // non-casted variable when we check for possible users.
9603   switch (ArithOp.getOpcode()) {
9604   case ISD::ADD:
9605     // Due to an isel shortcoming, be conservative if this add is likely to be
9606     // selected as part of a load-modify-store instruction. When the root node
9607     // in a match is a store, isel doesn't know how to remap non-chain non-flag
9608     // uses of other nodes in the match, such as the ADD in this case. This
9609     // leads to the ADD being left around and reselected, with the result being
9610     // two adds in the output.  Alas, even if none our users are stores, that
9611     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
9612     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
9613     // climbing the DAG back to the root, and it doesn't seem to be worth the
9614     // effort.
9615     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9616          UE = Op.getNode()->use_end(); UI != UE; ++UI)
9617       if (UI->getOpcode() != ISD::CopyToReg &&
9618           UI->getOpcode() != ISD::SETCC &&
9619           UI->getOpcode() != ISD::STORE)
9620         goto default_case;
9621
9622     if (ConstantSDNode *C =
9623         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
9624       // An add of one will be selected as an INC.
9625       if (C->getAPIntValue() == 1) {
9626         Opcode = X86ISD::INC;
9627         NumOperands = 1;
9628         break;
9629       }
9630
9631       // An add of negative one (subtract of one) will be selected as a DEC.
9632       if (C->getAPIntValue().isAllOnesValue()) {
9633         Opcode = X86ISD::DEC;
9634         NumOperands = 1;
9635         break;
9636       }
9637     }
9638
9639     // Otherwise use a regular EFLAGS-setting add.
9640     Opcode = X86ISD::ADD;
9641     NumOperands = 2;
9642     break;
9643   case ISD::AND: {
9644     // If the primary and result isn't used, don't bother using X86ISD::AND,
9645     // because a TEST instruction will be better.
9646     bool NonFlagUse = false;
9647     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9648            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9649       SDNode *User = *UI;
9650       unsigned UOpNo = UI.getOperandNo();
9651       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9652         // Look pass truncate.
9653         UOpNo = User->use_begin().getOperandNo();
9654         User = *User->use_begin();
9655       }
9656
9657       if (User->getOpcode() != ISD::BRCOND &&
9658           User->getOpcode() != ISD::SETCC &&
9659           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
9660         NonFlagUse = true;
9661         break;
9662       }
9663     }
9664
9665     if (!NonFlagUse)
9666       break;
9667   }
9668     // FALL THROUGH
9669   case ISD::SUB:
9670   case ISD::OR:
9671   case ISD::XOR:
9672     // Due to the ISEL shortcoming noted above, be conservative if this op is
9673     // likely to be selected as part of a load-modify-store instruction.
9674     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9675            UE = Op.getNode()->use_end(); UI != UE; ++UI)
9676       if (UI->getOpcode() == ISD::STORE)
9677         goto default_case;
9678
9679     // Otherwise use a regular EFLAGS-setting instruction.
9680     switch (ArithOp.getOpcode()) {
9681     default: llvm_unreachable("unexpected operator!");
9682     case ISD::SUB: Opcode = X86ISD::SUB; break;
9683     case ISD::XOR: Opcode = X86ISD::XOR; break;
9684     case ISD::AND: Opcode = X86ISD::AND; break;
9685     case ISD::OR: {
9686       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
9687         SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
9688         if (EFLAGS.getNode())
9689           return EFLAGS;
9690       }
9691       Opcode = X86ISD::OR;
9692       break;
9693     }
9694     }
9695
9696     NumOperands = 2;
9697     break;
9698   case X86ISD::ADD:
9699   case X86ISD::SUB:
9700   case X86ISD::INC:
9701   case X86ISD::DEC:
9702   case X86ISD::OR:
9703   case X86ISD::XOR:
9704   case X86ISD::AND:
9705     return SDValue(Op.getNode(), 1);
9706   default:
9707   default_case:
9708     break;
9709   }
9710
9711   // If we found that truncation is beneficial, perform the truncation and
9712   // update 'Op'.
9713   if (NeedTruncation) {
9714     EVT VT = Op.getValueType();
9715     SDValue WideVal = Op->getOperand(0);
9716     EVT WideVT = WideVal.getValueType();
9717     unsigned ConvertedOp = 0;
9718     // Use a target machine opcode to prevent further DAGCombine
9719     // optimizations that may separate the arithmetic operations
9720     // from the setcc node.
9721     switch (WideVal.getOpcode()) {
9722       default: break;
9723       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9724       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9725       case ISD::AND: ConvertedOp = X86ISD::AND; break;
9726       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
9727       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9728     }
9729
9730     if (ConvertedOp) {
9731       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9732       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9733         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9734         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9735         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9736       }
9737     }
9738   }
9739
9740   if (Opcode == 0)
9741     // Emit a CMP with 0, which is the TEST pattern.
9742     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9743                        DAG.getConstant(0, Op.getValueType()));
9744
9745   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9746   SmallVector<SDValue, 4> Ops;
9747   for (unsigned i = 0; i != NumOperands; ++i)
9748     Ops.push_back(Op.getOperand(i));
9749
9750   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9751   DAG.ReplaceAllUsesWith(Op, New);
9752   return SDValue(New.getNode(), 1);
9753 }
9754
9755 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
9756 /// equivalent.
9757 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
9758                                    SelectionDAG &DAG) const {
9759   SDLoc dl(Op0);
9760   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1)) {
9761     if (C->getAPIntValue() == 0)
9762       return EmitTest(Op0, X86CC, DAG);
9763
9764      if (Op0.getValueType() == MVT::i1) {
9765       Op0 = DAG.getNode(ISD::XOR, dl, MVT::i1, Op0,
9766                         DAG.getConstant(-1, MVT::i1));
9767       return DAG.getNode(X86ISD::CMP, dl, MVT::i1, Op0,
9768                          DAG.getConstant(0, MVT::i1));
9769      }
9770   }
9771  
9772   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9773        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9774     // Do the comparison at i32 if it's smaller. This avoids subregister
9775     // aliasing issues. Keep the smaller reference if we're optimizing for
9776     // size, however, as that'll allow better folding of memory operations.
9777     if (Op0.getValueType() != MVT::i32 && Op0.getValueType() != MVT::i64 &&
9778         !DAG.getMachineFunction().getFunction()->getAttributes().hasAttribute(
9779              AttributeSet::FunctionIndex, Attribute::MinSize)) {
9780       unsigned ExtendOp =
9781           isX86CCUnsigned(X86CC) ? ISD::ZERO_EXTEND : ISD::SIGN_EXTEND;
9782       Op0 = DAG.getNode(ExtendOp, dl, MVT::i32, Op0);
9783       Op1 = DAG.getNode(ExtendOp, dl, MVT::i32, Op1);
9784     }
9785     // Use SUB instead of CMP to enable CSE between SUB and CMP.
9786     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9787     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9788                               Op0, Op1);
9789     return SDValue(Sub.getNode(), 1);
9790   }
9791   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
9792 }
9793
9794 /// Convert a comparison if required by the subtarget.
9795 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9796                                                  SelectionDAG &DAG) const {
9797   // If the subtarget does not support the FUCOMI instruction, floating-point
9798   // comparisons have to be converted.
9799   if (Subtarget->hasCMov() ||
9800       Cmp.getOpcode() != X86ISD::CMP ||
9801       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9802       !Cmp.getOperand(1).getValueType().isFloatingPoint())
9803     return Cmp;
9804
9805   // The instruction selector will select an FUCOM instruction instead of
9806   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9807   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9808   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
9809   SDLoc dl(Cmp);
9810   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9811   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9812   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9813                             DAG.getConstant(8, MVT::i8));
9814   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9815   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9816 }
9817
9818 static bool isAllOnes(SDValue V) {
9819   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9820   return C && C->isAllOnesValue();
9821 }
9822
9823 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9824 /// if it's possible.
9825 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
9826                                      SDLoc dl, SelectionDAG &DAG) const {
9827   SDValue Op0 = And.getOperand(0);
9828   SDValue Op1 = And.getOperand(1);
9829   if (Op0.getOpcode() == ISD::TRUNCATE)
9830     Op0 = Op0.getOperand(0);
9831   if (Op1.getOpcode() == ISD::TRUNCATE)
9832     Op1 = Op1.getOperand(0);
9833
9834   SDValue LHS, RHS;
9835   if (Op1.getOpcode() == ISD::SHL)
9836     std::swap(Op0, Op1);
9837   if (Op0.getOpcode() == ISD::SHL) {
9838     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9839       if (And00C->getZExtValue() == 1) {
9840         // If we looked past a truncate, check that it's only truncating away
9841         // known zeros.
9842         unsigned BitWidth = Op0.getValueSizeInBits();
9843         unsigned AndBitWidth = And.getValueSizeInBits();
9844         if (BitWidth > AndBitWidth) {
9845           APInt Zeros, Ones;
9846           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
9847           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9848             return SDValue();
9849         }
9850         LHS = Op1;
9851         RHS = Op0.getOperand(1);
9852       }
9853   } else if (Op1.getOpcode() == ISD::Constant) {
9854     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
9855     uint64_t AndRHSVal = AndRHS->getZExtValue();
9856     SDValue AndLHS = Op0;
9857
9858     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
9859       LHS = AndLHS.getOperand(0);
9860       RHS = AndLHS.getOperand(1);
9861     }
9862
9863     // Use BT if the immediate can't be encoded in a TEST instruction.
9864     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9865       LHS = AndLHS;
9866       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9867     }
9868   }
9869
9870   if (LHS.getNode()) {
9871     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
9872     // instruction.  Since the shift amount is in-range-or-undefined, we know
9873     // that doing a bittest on the i32 value is ok.  We extend to i32 because
9874     // the encoding for the i16 version is larger than the i32 version.
9875     // Also promote i16 to i32 for performance / code size reason.
9876     if (LHS.getValueType() == MVT::i8 ||
9877         LHS.getValueType() == MVT::i16)
9878       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
9879
9880     // If the operand types disagree, extend the shift amount to match.  Since
9881     // BT ignores high bits (like shifts) we can use anyextend.
9882     if (LHS.getValueType() != RHS.getValueType())
9883       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
9884
9885     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
9886     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
9887     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9888                        DAG.getConstant(Cond, MVT::i8), BT);
9889   }
9890
9891   return SDValue();
9892 }
9893
9894 /// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9895 /// mask CMPs.
9896 static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9897                               SDValue &Op1) {
9898   unsigned SSECC;
9899   bool Swap = false;
9900
9901   // SSE Condition code mapping:
9902   //  0 - EQ
9903   //  1 - LT
9904   //  2 - LE
9905   //  3 - UNORD
9906   //  4 - NEQ
9907   //  5 - NLT
9908   //  6 - NLE
9909   //  7 - ORD
9910   switch (SetCCOpcode) {
9911   default: llvm_unreachable("Unexpected SETCC condition");
9912   case ISD::SETOEQ:
9913   case ISD::SETEQ:  SSECC = 0; break;
9914   case ISD::SETOGT:
9915   case ISD::SETGT:  Swap = true; // Fallthrough
9916   case ISD::SETLT:
9917   case ISD::SETOLT: SSECC = 1; break;
9918   case ISD::SETOGE:
9919   case ISD::SETGE:  Swap = true; // Fallthrough
9920   case ISD::SETLE:
9921   case ISD::SETOLE: SSECC = 2; break;
9922   case ISD::SETUO:  SSECC = 3; break;
9923   case ISD::SETUNE:
9924   case ISD::SETNE:  SSECC = 4; break;
9925   case ISD::SETULE: Swap = true; // Fallthrough
9926   case ISD::SETUGE: SSECC = 5; break;
9927   case ISD::SETULT: Swap = true; // Fallthrough
9928   case ISD::SETUGT: SSECC = 6; break;
9929   case ISD::SETO:   SSECC = 7; break;
9930   case ISD::SETUEQ:
9931   case ISD::SETONE: SSECC = 8; break;
9932   }
9933   if (Swap)
9934     std::swap(Op0, Op1);
9935
9936   return SSECC;
9937 }
9938
9939 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9940 // ones, and then concatenate the result back.
9941 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9942   MVT VT = Op.getSimpleValueType();
9943
9944   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9945          "Unsupported value type for operation");
9946
9947   unsigned NumElems = VT.getVectorNumElements();
9948   SDLoc dl(Op);
9949   SDValue CC = Op.getOperand(2);
9950
9951   // Extract the LHS vectors
9952   SDValue LHS = Op.getOperand(0);
9953   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9954   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9955
9956   // Extract the RHS vectors
9957   SDValue RHS = Op.getOperand(1);
9958   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9959   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9960
9961   // Issue the operation on the smaller types and concatenate the result back
9962   MVT EltVT = VT.getVectorElementType();
9963   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9964   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9965                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9966                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9967 }
9968
9969 static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
9970   SDValue Op0 = Op.getOperand(0);
9971   SDValue Op1 = Op.getOperand(1);
9972   SDValue CC = Op.getOperand(2);
9973   MVT VT = Op.getSimpleValueType();
9974
9975   assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
9976          Op.getValueType().getScalarType() == MVT::i1 &&
9977          "Cannot set masked compare for this operation");
9978
9979   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9980   SDLoc dl(Op);
9981
9982   bool Unsigned = false;
9983   unsigned SSECC;
9984   switch (SetCCOpcode) {
9985   default: llvm_unreachable("Unexpected SETCC condition");
9986   case ISD::SETNE:  SSECC = 4; break;
9987   case ISD::SETEQ:  SSECC = 0; break;
9988   case ISD::SETUGT: Unsigned = true;
9989   case ISD::SETGT:  SSECC = 6; break; // NLE
9990   case ISD::SETULT: Unsigned = true;
9991   case ISD::SETLT:  SSECC = 1; break;
9992   case ISD::SETUGE: Unsigned = true;
9993   case ISD::SETGE:  SSECC = 5; break; // NLT
9994   case ISD::SETULE: Unsigned = true;
9995   case ISD::SETLE:  SSECC = 2; break;
9996   }
9997   unsigned  Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9998   return DAG.getNode(Opc, dl, VT, Op0, Op1,
9999                      DAG.getConstant(SSECC, MVT::i8));
10000
10001 }
10002
10003 static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
10004                            SelectionDAG &DAG) {
10005   SDValue Op0 = Op.getOperand(0);
10006   SDValue Op1 = Op.getOperand(1);
10007   SDValue CC = Op.getOperand(2);
10008   MVT VT = Op.getSimpleValueType();
10009   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
10010   bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
10011   SDLoc dl(Op);
10012
10013   if (isFP) {
10014 #ifndef NDEBUG
10015     MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
10016     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
10017 #endif
10018
10019     unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
10020     unsigned Opc = X86ISD::CMPP;
10021     if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
10022       assert(VT.getVectorNumElements() <= 16);
10023       Opc = X86ISD::CMPM;
10024     }
10025     // In the two special cases we can't handle, emit two comparisons.
10026     if (SSECC == 8) {
10027       unsigned CC0, CC1;
10028       unsigned CombineOpc;
10029       if (SetCCOpcode == ISD::SETUEQ) {
10030         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
10031       } else {
10032         assert(SetCCOpcode == ISD::SETONE);
10033         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
10034       }
10035
10036       SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10037                                  DAG.getConstant(CC0, MVT::i8));
10038       SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
10039                                  DAG.getConstant(CC1, MVT::i8));
10040       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
10041     }
10042     // Handle all other FP comparisons here.
10043     return DAG.getNode(Opc, dl, VT, Op0, Op1,
10044                        DAG.getConstant(SSECC, MVT::i8));
10045   }
10046
10047   // Break 256-bit integer vector compare into smaller ones.
10048   if (VT.is256BitVector() && !Subtarget->hasInt256())
10049     return Lower256IntVSETCC(Op, DAG);
10050
10051   bool MaskResult = (VT.getVectorElementType() == MVT::i1);
10052   EVT OpVT = Op1.getValueType();
10053   if (Subtarget->hasAVX512()) {
10054     if (Op1.getValueType().is512BitVector() ||
10055         (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
10056       return LowerIntVSETCC_AVX512(Op, DAG);
10057
10058     // In AVX-512 architecture setcc returns mask with i1 elements,
10059     // But there is no compare instruction for i8 and i16 elements.
10060     // We are not talking about 512-bit operands in this case, these
10061     // types are illegal.
10062     if (MaskResult &&
10063         (OpVT.getVectorElementType().getSizeInBits() < 32 &&
10064          OpVT.getVectorElementType().getSizeInBits() >= 8))
10065       return DAG.getNode(ISD::TRUNCATE, dl, VT,
10066                          DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
10067   }
10068
10069   // We are handling one of the integer comparisons here.  Since SSE only has
10070   // GT and EQ comparisons for integer, swapping operands and multiple
10071   // operations may be required for some comparisons.
10072   unsigned Opc;
10073   bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
10074
10075   switch (SetCCOpcode) {
10076   default: llvm_unreachable("Unexpected SETCC condition");
10077   case ISD::SETNE:  Invert = true;
10078   case ISD::SETEQ:  Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
10079   case ISD::SETLT:  Swap = true;
10080   case ISD::SETGT:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
10081   case ISD::SETGE:  Swap = true;
10082   case ISD::SETLE:  Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10083                     Invert = true; break;
10084   case ISD::SETULT: Swap = true;
10085   case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10086                     FlipSigns = true; break;
10087   case ISD::SETUGE: Swap = true;
10088   case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
10089                     FlipSigns = true; Invert = true; break;
10090   }
10091
10092   // Special case: Use min/max operations for SETULE/SETUGE
10093   MVT VET = VT.getVectorElementType();
10094   bool hasMinMax =
10095        (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
10096     || (Subtarget->hasSSE2()  && (VET == MVT::i8));
10097
10098   if (hasMinMax) {
10099     switch (SetCCOpcode) {
10100     default: break;
10101     case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
10102     case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
10103     }
10104
10105     if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
10106   }
10107
10108   if (Swap)
10109     std::swap(Op0, Op1);
10110
10111   // Check that the operation in question is available (most are plain SSE2,
10112   // but PCMPGTQ and PCMPEQQ have different requirements).
10113   if (VT == MVT::v2i64) {
10114     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
10115       assert(Subtarget->hasSSE2() && "Don't know how to lower!");
10116
10117       // First cast everything to the right type.
10118       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10119       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10120
10121       // Since SSE has no unsigned integer comparisons, we need to flip the sign
10122       // bits of the inputs before performing those operations. The lower
10123       // compare is always unsigned.
10124       SDValue SB;
10125       if (FlipSigns) {
10126         SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10127       } else {
10128         SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10129         SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10130         SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10131                          Sign, Zero, Sign, Zero);
10132       }
10133       Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10134       Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
10135
10136       // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10137       SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10138       SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10139
10140       // Create masks for only the low parts/high parts of the 64 bit integers.
10141       static const int MaskHi[] = { 1, 1, 3, 3 };
10142       static const int MaskLo[] = { 0, 0, 2, 2 };
10143       SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10144       SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10145       SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10146
10147       SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10148       Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10149
10150       if (Invert)
10151         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10152
10153       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10154     }
10155
10156     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10157       // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
10158       // pcmpeqd + pshufd + pand.
10159       assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10160
10161       // First cast everything to the right type.
10162       Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10163       Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10164
10165       // Do the compare.
10166       SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10167
10168       // Make sure the lower and upper halves are both all-ones.
10169       static const int Mask[] = { 1, 0, 3, 2 };
10170       SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10171       Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
10172
10173       if (Invert)
10174         Result = DAG.getNOT(dl, Result, MVT::v4i32);
10175
10176       return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10177     }
10178   }
10179
10180   // Since SSE has no unsigned integer comparisons, we need to flip the sign
10181   // bits of the inputs before performing those operations.
10182   if (FlipSigns) {
10183     EVT EltVT = VT.getVectorElementType();
10184     SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10185     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10186     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10187   }
10188
10189   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
10190
10191   // If the logical-not of the result is required, perform that now.
10192   if (Invert)
10193     Result = DAG.getNOT(dl, Result, VT);
10194
10195   if (MinMax)
10196     Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
10197
10198   return Result;
10199 }
10200
10201 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10202
10203   MVT VT = Op.getSimpleValueType();
10204
10205   if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10206
10207   assert(((!Subtarget->hasAVX512() && VT == MVT::i8) || (VT == MVT::i1))
10208          && "SetCC type must be 8-bit or 1-bit integer");
10209   SDValue Op0 = Op.getOperand(0);
10210   SDValue Op1 = Op.getOperand(1);
10211   SDLoc dl(Op);
10212   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10213
10214   // Optimize to BT if possible.
10215   // Lower (X & (1 << N)) == 0 to BT(X, N).
10216   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10217   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10218   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10219       Op1.getOpcode() == ISD::Constant &&
10220       cast<ConstantSDNode>(Op1)->isNullValue() &&
10221       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10222     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10223     if (NewSetCC.getNode())
10224       return NewSetCC;
10225   }
10226
10227   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
10228   // these.
10229   if (Op1.getOpcode() == ISD::Constant &&
10230       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10231        cast<ConstantSDNode>(Op1)->isNullValue()) &&
10232       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10233
10234     // If the input is a setcc, then reuse the input setcc or use a new one with
10235     // the inverted condition.
10236     if (Op0.getOpcode() == X86ISD::SETCC) {
10237       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10238       bool Invert = (CC == ISD::SETNE) ^
10239         cast<ConstantSDNode>(Op1)->isNullValue();
10240       if (!Invert)
10241         return Op0;
10242
10243       CCode = X86::GetOppositeBranchCondition(CCode);
10244       SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10245                                   DAG.getConstant(CCode, MVT::i8),
10246                                   Op0.getOperand(1));
10247       if (VT == MVT::i1)
10248         return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10249       return SetCC;
10250     }
10251   }
10252
10253   bool isFP = Op1.getSimpleValueType().isFloatingPoint();
10254   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10255   if (X86CC == X86::COND_INVALID)
10256     return SDValue();
10257
10258   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10259   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10260   SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10261                               DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10262   if (VT == MVT::i1)
10263     return DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, SetCC);
10264   return SetCC;
10265 }
10266
10267 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
10268 static bool isX86LogicalCmp(SDValue Op) {
10269   unsigned Opc = Op.getNode()->getOpcode();
10270   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10271       Opc == X86ISD::SAHF)
10272     return true;
10273   if (Op.getResNo() == 1 &&
10274       (Opc == X86ISD::ADD ||
10275        Opc == X86ISD::SUB ||
10276        Opc == X86ISD::ADC ||
10277        Opc == X86ISD::SBB ||
10278        Opc == X86ISD::SMUL ||
10279        Opc == X86ISD::UMUL ||
10280        Opc == X86ISD::INC ||
10281        Opc == X86ISD::DEC ||
10282        Opc == X86ISD::OR ||
10283        Opc == X86ISD::XOR ||
10284        Opc == X86ISD::AND))
10285     return true;
10286
10287   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10288     return true;
10289
10290   return false;
10291 }
10292
10293 static bool isZero(SDValue V) {
10294   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10295   return C && C->isNullValue();
10296 }
10297
10298 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10299   if (V.getOpcode() != ISD::TRUNCATE)
10300     return false;
10301
10302   SDValue VOp0 = V.getOperand(0);
10303   unsigned InBits = VOp0.getValueSizeInBits();
10304   unsigned Bits = V.getValueSizeInBits();
10305   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10306 }
10307
10308 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
10309   bool addTest = true;
10310   SDValue Cond  = Op.getOperand(0);
10311   SDValue Op1 = Op.getOperand(1);
10312   SDValue Op2 = Op.getOperand(2);
10313   SDLoc DL(Op);
10314   EVT VT = Op1.getValueType();
10315   SDValue CC;
10316
10317   // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10318   // are available. Otherwise fp cmovs get lowered into a less efficient branch
10319   // sequence later on.
10320   if (Cond.getOpcode() == ISD::SETCC &&
10321       ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10322        (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10323       VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10324     SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10325     int SSECC = translateX86FSETCC(
10326         cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10327
10328     if (SSECC != 8) {
10329       if (Subtarget->hasAVX512()) {
10330         SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CondOp0, CondOp1,
10331                                   DAG.getConstant(SSECC, MVT::i8));
10332         return DAG.getNode(X86ISD::SELECT, DL, VT, Cmp, Op1, Op2);
10333       }
10334       SDValue Cmp = DAG.getNode(X86ISD::FSETCC, DL, VT, CondOp0, CondOp1,
10335                                 DAG.getConstant(SSECC, MVT::i8));
10336       SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10337       SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10338       return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10339     }
10340   }
10341
10342   if (Cond.getOpcode() == ISD::SETCC) {
10343     SDValue NewCond = LowerSETCC(Cond, DAG);
10344     if (NewCond.getNode())
10345       Cond = NewCond;
10346   }
10347
10348   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
10349   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
10350   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
10351   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
10352   if (Cond.getOpcode() == X86ISD::SETCC &&
10353       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10354       isZero(Cond.getOperand(1).getOperand(1))) {
10355     SDValue Cmp = Cond.getOperand(1);
10356
10357     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
10358
10359     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
10360         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10361       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
10362
10363       SDValue CmpOp0 = Cmp.getOperand(0);
10364       // Apply further optimizations for special cases
10365       // (select (x != 0), -1, 0) -> neg & sbb
10366       // (select (x == 0), 0, -1) -> neg & sbb
10367       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
10368         if (YC->isNullValue() &&
10369             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10370           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
10371           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10372                                     DAG.getConstant(0, CmpOp0.getValueType()),
10373                                     CmpOp0);
10374           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10375                                     DAG.getConstant(X86::COND_B, MVT::i8),
10376                                     SDValue(Neg.getNode(), 1));
10377           return Res;
10378         }
10379
10380       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10381                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
10382       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10383
10384       SDValue Res =   // Res = 0 or -1.
10385         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10386                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
10387
10388       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10389         Res = DAG.getNOT(DL, Res, Res.getValueType());
10390
10391       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
10392       if (N2C == 0 || !N2C->isNullValue())
10393         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10394       return Res;
10395     }
10396   }
10397
10398   // Look past (and (setcc_carry (cmp ...)), 1).
10399   if (Cond.getOpcode() == ISD::AND &&
10400       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10401     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10402     if (C && C->getAPIntValue() == 1)
10403       Cond = Cond.getOperand(0);
10404   }
10405
10406   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10407   // setting operand in place of the X86ISD::SETCC.
10408   unsigned CondOpcode = Cond.getOpcode();
10409   if (CondOpcode == X86ISD::SETCC ||
10410       CondOpcode == X86ISD::SETCC_CARRY) {
10411     CC = Cond.getOperand(0);
10412
10413     SDValue Cmp = Cond.getOperand(1);
10414     unsigned Opc = Cmp.getOpcode();
10415     MVT VT = Op.getSimpleValueType();
10416
10417     bool IllegalFPCMov = false;
10418     if (VT.isFloatingPoint() && !VT.isVector() &&
10419         !isScalarFPTypeInSSEReg(VT))  // FPStack?
10420       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
10421
10422     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10423         Opc == X86ISD::BT) { // FIXME
10424       Cond = Cmp;
10425       addTest = false;
10426     }
10427   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10428              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10429              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10430               Cond.getOperand(0).getValueType() != MVT::i8)) {
10431     SDValue LHS = Cond.getOperand(0);
10432     SDValue RHS = Cond.getOperand(1);
10433     unsigned X86Opcode;
10434     unsigned X86Cond;
10435     SDVTList VTs;
10436     switch (CondOpcode) {
10437     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10438     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10439     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10440     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10441     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10442     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10443     default: llvm_unreachable("unexpected overflowing operator");
10444     }
10445     if (CondOpcode == ISD::UMULO)
10446       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10447                           MVT::i32);
10448     else
10449       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10450
10451     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10452
10453     if (CondOpcode == ISD::UMULO)
10454       Cond = X86Op.getValue(2);
10455     else
10456       Cond = X86Op.getValue(1);
10457
10458     CC = DAG.getConstant(X86Cond, MVT::i8);
10459     addTest = false;
10460   }
10461
10462   if (addTest) {
10463     // Look pass the truncate if the high bits are known zero.
10464     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10465         Cond = Cond.getOperand(0);
10466
10467     // We know the result of AND is compared against zero. Try to match
10468     // it to BT.
10469     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10470       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
10471       if (NewSetCC.getNode()) {
10472         CC = NewSetCC.getOperand(0);
10473         Cond = NewSetCC.getOperand(1);
10474         addTest = false;
10475       }
10476     }
10477   }
10478
10479   if (addTest) {
10480     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10481     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10482   }
10483
10484   // a <  b ? -1 :  0 -> RES = ~setcc_carry
10485   // a <  b ?  0 : -1 -> RES = setcc_carry
10486   // a >= b ? -1 :  0 -> RES = setcc_carry
10487   // a >= b ?  0 : -1 -> RES = ~setcc_carry
10488   if (Cond.getOpcode() == X86ISD::SUB) {
10489     Cond = ConvertCmpIfNecessary(Cond, DAG);
10490     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10491
10492     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10493         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10494       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10495                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10496       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10497         return DAG.getNOT(DL, Res, Res.getValueType());
10498       return Res;
10499     }
10500   }
10501
10502   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10503   // widen the cmov and push the truncate through. This avoids introducing a new
10504   // branch during isel and doesn't add any extensions.
10505   if (Op.getValueType() == MVT::i8 &&
10506       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10507     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10508     if (T1.getValueType() == T2.getValueType() &&
10509         // Blacklist CopyFromReg to avoid partial register stalls.
10510         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10511       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
10512       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
10513       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10514     }
10515   }
10516
10517   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10518   // condition is true.
10519   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
10520   SDValue Ops[] = { Op2, Op1, CC, Cond };
10521   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
10522 }
10523
10524 static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10525   MVT VT = Op->getSimpleValueType(0);
10526   SDValue In = Op->getOperand(0);
10527   MVT InVT = In.getSimpleValueType();
10528   SDLoc dl(Op);
10529
10530   unsigned int NumElts = VT.getVectorNumElements();
10531   if (NumElts != 8 && NumElts != 16)
10532     return SDValue();
10533
10534   if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
10535     return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10536
10537   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10538   assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10539
10540   MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10541   Constant *C = ConstantInt::get(*DAG.getContext(),
10542     APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10543
10544   SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10545   unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10546   SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10547                           MachinePointerInfo::getConstantPool(),
10548                           false, false, false, Alignment);
10549   SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10550   if (VT.is512BitVector())
10551     return Brcst;
10552   return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
10553 }
10554
10555 static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10556                                 SelectionDAG &DAG) {
10557   MVT VT = Op->getSimpleValueType(0);
10558   SDValue In = Op->getOperand(0);
10559   MVT InVT = In.getSimpleValueType();
10560   SDLoc dl(Op);
10561
10562   if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10563     return LowerSIGN_EXTEND_AVX512(Op, DAG);
10564
10565   if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
10566       (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10567       (VT != MVT::v16i16 || InVT != MVT::v16i8))
10568     return SDValue();
10569
10570   if (Subtarget->hasInt256())
10571     return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
10572
10573   // Optimize vectors in AVX mode
10574   // Sign extend  v8i16 to v8i32 and
10575   //              v4i32 to v4i64
10576   //
10577   // Divide input vector into two parts
10578   // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10579   // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10580   // concat the vectors to original VT
10581
10582   unsigned NumElems = InVT.getVectorNumElements();
10583   SDValue Undef = DAG.getUNDEF(InVT);
10584
10585   SmallVector<int,8> ShufMask1(NumElems, -1);
10586   for (unsigned i = 0; i != NumElems/2; ++i)
10587     ShufMask1[i] = i;
10588
10589   SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
10590
10591   SmallVector<int,8> ShufMask2(NumElems, -1);
10592   for (unsigned i = 0; i != NumElems/2; ++i)
10593     ShufMask2[i] = i + NumElems/2;
10594
10595   SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
10596
10597   MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
10598                                 VT.getVectorNumElements()/2);
10599
10600   OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10601   OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
10602
10603   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
10604 }
10605
10606 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10607 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10608 // from the AND / OR.
10609 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10610   Opc = Op.getOpcode();
10611   if (Opc != ISD::OR && Opc != ISD::AND)
10612     return false;
10613   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10614           Op.getOperand(0).hasOneUse() &&
10615           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10616           Op.getOperand(1).hasOneUse());
10617 }
10618
10619 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10620 // 1 and that the SETCC node has a single use.
10621 static bool isXor1OfSetCC(SDValue Op) {
10622   if (Op.getOpcode() != ISD::XOR)
10623     return false;
10624   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10625   if (N1C && N1C->getAPIntValue() == 1) {
10626     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10627       Op.getOperand(0).hasOneUse();
10628   }
10629   return false;
10630 }
10631
10632 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
10633   bool addTest = true;
10634   SDValue Chain = Op.getOperand(0);
10635   SDValue Cond  = Op.getOperand(1);
10636   SDValue Dest  = Op.getOperand(2);
10637   SDLoc dl(Op);
10638   SDValue CC;
10639   bool Inverted = false;
10640
10641   if (Cond.getOpcode() == ISD::SETCC) {
10642     // Check for setcc([su]{add,sub,mul}o == 0).
10643     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10644         isa<ConstantSDNode>(Cond.getOperand(1)) &&
10645         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10646         Cond.getOperand(0).getResNo() == 1 &&
10647         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10648          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10649          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10650          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10651          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10652          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10653       Inverted = true;
10654       Cond = Cond.getOperand(0);
10655     } else {
10656       SDValue NewCond = LowerSETCC(Cond, DAG);
10657       if (NewCond.getNode())
10658         Cond = NewCond;
10659     }
10660   }
10661 #if 0
10662   // FIXME: LowerXALUO doesn't handle these!!
10663   else if (Cond.getOpcode() == X86ISD::ADD  ||
10664            Cond.getOpcode() == X86ISD::SUB  ||
10665            Cond.getOpcode() == X86ISD::SMUL ||
10666            Cond.getOpcode() == X86ISD::UMUL)
10667     Cond = LowerXALUO(Cond, DAG);
10668 #endif
10669
10670   // Look pass (and (setcc_carry (cmp ...)), 1).
10671   if (Cond.getOpcode() == ISD::AND &&
10672       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10673     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
10674     if (C && C->getAPIntValue() == 1)
10675       Cond = Cond.getOperand(0);
10676   }
10677
10678   // If condition flag is set by a X86ISD::CMP, then use it as the condition
10679   // setting operand in place of the X86ISD::SETCC.
10680   unsigned CondOpcode = Cond.getOpcode();
10681   if (CondOpcode == X86ISD::SETCC ||
10682       CondOpcode == X86ISD::SETCC_CARRY) {
10683     CC = Cond.getOperand(0);
10684
10685     SDValue Cmp = Cond.getOperand(1);
10686     unsigned Opc = Cmp.getOpcode();
10687     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
10688     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
10689       Cond = Cmp;
10690       addTest = false;
10691     } else {
10692       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
10693       default: break;
10694       case X86::COND_O:
10695       case X86::COND_B:
10696         // These can only come from an arithmetic instruction with overflow,
10697         // e.g. SADDO, UADDO.
10698         Cond = Cond.getNode()->getOperand(1);
10699         addTest = false;
10700         break;
10701       }
10702     }
10703   }
10704   CondOpcode = Cond.getOpcode();
10705   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10706       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10707       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10708        Cond.getOperand(0).getValueType() != MVT::i8)) {
10709     SDValue LHS = Cond.getOperand(0);
10710     SDValue RHS = Cond.getOperand(1);
10711     unsigned X86Opcode;
10712     unsigned X86Cond;
10713     SDVTList VTs;
10714     switch (CondOpcode) {
10715     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10716     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10717     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10718     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10719     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10720     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10721     default: llvm_unreachable("unexpected overflowing operator");
10722     }
10723     if (Inverted)
10724       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10725     if (CondOpcode == ISD::UMULO)
10726       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10727                           MVT::i32);
10728     else
10729       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10730
10731     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10732
10733     if (CondOpcode == ISD::UMULO)
10734       Cond = X86Op.getValue(2);
10735     else
10736       Cond = X86Op.getValue(1);
10737
10738     CC = DAG.getConstant(X86Cond, MVT::i8);
10739     addTest = false;
10740   } else {
10741     unsigned CondOpc;
10742     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10743       SDValue Cmp = Cond.getOperand(0).getOperand(1);
10744       if (CondOpc == ISD::OR) {
10745         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10746         // two branches instead of an explicit OR instruction with a
10747         // separate test.
10748         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10749             isX86LogicalCmp(Cmp)) {
10750           CC = Cond.getOperand(0).getOperand(0);
10751           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10752                               Chain, Dest, CC, Cmp);
10753           CC = Cond.getOperand(1).getOperand(0);
10754           Cond = Cmp;
10755           addTest = false;
10756         }
10757       } else { // ISD::AND
10758         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10759         // two branches instead of an explicit AND instruction with a
10760         // separate test. However, we only do this if this block doesn't
10761         // have a fall-through edge, because this requires an explicit
10762         // jmp when the condition is false.
10763         if (Cmp == Cond.getOperand(1).getOperand(1) &&
10764             isX86LogicalCmp(Cmp) &&
10765             Op.getNode()->hasOneUse()) {
10766           X86::CondCode CCode =
10767             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10768           CCode = X86::GetOppositeBranchCondition(CCode);
10769           CC = DAG.getConstant(CCode, MVT::i8);
10770           SDNode *User = *Op.getNode()->use_begin();
10771           // Look for an unconditional branch following this conditional branch.
10772           // We need this because we need to reverse the successors in order
10773           // to implement FCMP_OEQ.
10774           if (User->getOpcode() == ISD::BR) {
10775             SDValue FalseBB = User->getOperand(1);
10776             SDNode *NewBR =
10777               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10778             assert(NewBR == User);
10779             (void)NewBR;
10780             Dest = FalseBB;
10781
10782             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10783                                 Chain, Dest, CC, Cmp);
10784             X86::CondCode CCode =
10785               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10786             CCode = X86::GetOppositeBranchCondition(CCode);
10787             CC = DAG.getConstant(CCode, MVT::i8);
10788             Cond = Cmp;
10789             addTest = false;
10790           }
10791         }
10792       }
10793     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10794       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10795       // It should be transformed during dag combiner except when the condition
10796       // is set by a arithmetics with overflow node.
10797       X86::CondCode CCode =
10798         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10799       CCode = X86::GetOppositeBranchCondition(CCode);
10800       CC = DAG.getConstant(CCode, MVT::i8);
10801       Cond = Cond.getOperand(0).getOperand(1);
10802       addTest = false;
10803     } else if (Cond.getOpcode() == ISD::SETCC &&
10804                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10805       // For FCMP_OEQ, we can emit
10806       // two branches instead of an explicit AND instruction with a
10807       // separate test. However, we only do this if this block doesn't
10808       // have a fall-through edge, because this requires an explicit
10809       // jmp when the condition is false.
10810       if (Op.getNode()->hasOneUse()) {
10811         SDNode *User = *Op.getNode()->use_begin();
10812         // Look for an unconditional branch following this conditional branch.
10813         // We need this because we need to reverse the successors in order
10814         // to implement FCMP_OEQ.
10815         if (User->getOpcode() == ISD::BR) {
10816           SDValue FalseBB = User->getOperand(1);
10817           SDNode *NewBR =
10818             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10819           assert(NewBR == User);
10820           (void)NewBR;
10821           Dest = FalseBB;
10822
10823           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10824                                     Cond.getOperand(0), Cond.getOperand(1));
10825           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10826           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10827           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10828                               Chain, Dest, CC, Cmp);
10829           CC = DAG.getConstant(X86::COND_P, MVT::i8);
10830           Cond = Cmp;
10831           addTest = false;
10832         }
10833       }
10834     } else if (Cond.getOpcode() == ISD::SETCC &&
10835                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10836       // For FCMP_UNE, we can emit
10837       // two branches instead of an explicit AND instruction with a
10838       // separate test. However, we only do this if this block doesn't
10839       // have a fall-through edge, because this requires an explicit
10840       // jmp when the condition is false.
10841       if (Op.getNode()->hasOneUse()) {
10842         SDNode *User = *Op.getNode()->use_begin();
10843         // Look for an unconditional branch following this conditional branch.
10844         // We need this because we need to reverse the successors in order
10845         // to implement FCMP_UNE.
10846         if (User->getOpcode() == ISD::BR) {
10847           SDValue FalseBB = User->getOperand(1);
10848           SDNode *NewBR =
10849             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10850           assert(NewBR == User);
10851           (void)NewBR;
10852
10853           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10854                                     Cond.getOperand(0), Cond.getOperand(1));
10855           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
10856           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10857           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10858                               Chain, Dest, CC, Cmp);
10859           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10860           Cond = Cmp;
10861           addTest = false;
10862           Dest = FalseBB;
10863         }
10864       }
10865     }
10866   }
10867
10868   if (addTest) {
10869     // Look pass the truncate if the high bits are known zero.
10870     if (isTruncWithZeroHighBitsInput(Cond, DAG))
10871         Cond = Cond.getOperand(0);
10872
10873     // We know the result of AND is compared against zero. Try to match
10874     // it to BT.
10875     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
10876       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10877       if (NewSetCC.getNode()) {
10878         CC = NewSetCC.getOperand(0);
10879         Cond = NewSetCC.getOperand(1);
10880         addTest = false;
10881       }
10882     }
10883   }
10884
10885   if (addTest) {
10886     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10887     Cond = EmitTest(Cond, X86::COND_NE, DAG);
10888   }
10889   Cond = ConvertCmpIfNecessary(Cond, DAG);
10890   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10891                      Chain, Dest, CC, Cond);
10892 }
10893
10894 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10895 // Calls to _alloca is needed to probe the stack when allocating more than 4k
10896 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
10897 // that the guard pages used by the OS virtual memory manager are allocated in
10898 // correct sequence.
10899 SDValue
10900 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
10901                                            SelectionDAG &DAG) const {
10902   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
10903           getTargetMachine().Options.EnableSegmentedStacks) &&
10904          "This should be used only on Windows targets or when segmented stacks "
10905          "are being used");
10906   assert(!Subtarget->isTargetMacho() && "Not implemented");
10907   SDLoc dl(Op);
10908
10909   // Get the inputs.
10910   SDValue Chain = Op.getOperand(0);
10911   SDValue Size  = Op.getOperand(1);
10912   unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10913   EVT VT = Op.getNode()->getValueType(0);
10914
10915   bool Is64Bit = Subtarget->is64Bit();
10916   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
10917
10918   if (getTargetMachine().Options.EnableSegmentedStacks) {
10919     MachineFunction &MF = DAG.getMachineFunction();
10920     MachineRegisterInfo &MRI = MF.getRegInfo();
10921
10922     if (Is64Bit) {
10923       // The 64 bit implementation of segmented stacks needs to clobber both r10
10924       // r11. This makes it impossible to use it along with nested parameters.
10925       const Function *F = MF.getFunction();
10926
10927       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
10928            I != E; ++I)
10929         if (I->hasNestAttr())
10930           report_fatal_error("Cannot use segmented stacks with functions that "
10931                              "have nested arguments.");
10932     }
10933
10934     const TargetRegisterClass *AddrRegClass =
10935       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10936     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10937     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10938     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10939                                 DAG.getRegister(Vreg, SPTy));
10940     SDValue Ops1[2] = { Value, Chain };
10941     return DAG.getMergeValues(Ops1, 2, dl);
10942   } else {
10943     SDValue Flag;
10944     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
10945
10946     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10947     Flag = Chain.getValue(1);
10948     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
10949
10950     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
10951
10952     const X86RegisterInfo *RegInfo =
10953       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
10954     unsigned SPReg = RegInfo->getStackRegister();
10955     SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10956     Chain = SP.getValue(1);
10957
10958     if (Align) {
10959       SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10960                        DAG.getConstant(-(uint64_t)Align, VT));
10961       Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10962     }
10963
10964     SDValue Ops1[2] = { SP, Chain };
10965     return DAG.getMergeValues(Ops1, 2, dl);
10966   }
10967 }
10968
10969 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
10970   MachineFunction &MF = DAG.getMachineFunction();
10971   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10972
10973   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10974   SDLoc DL(Op);
10975
10976   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
10977     // vastart just stores the address of the VarArgsFrameIndex slot into the
10978     // memory location argument.
10979     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10980                                    getPointerTy());
10981     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10982                         MachinePointerInfo(SV), false, false, 0);
10983   }
10984
10985   // __va_list_tag:
10986   //   gp_offset         (0 - 6 * 8)
10987   //   fp_offset         (48 - 48 + 8 * 16)
10988   //   overflow_arg_area (point to parameters coming in memory).
10989   //   reg_save_area
10990   SmallVector<SDValue, 8> MemOps;
10991   SDValue FIN = Op.getOperand(1);
10992   // Store gp_offset
10993   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
10994                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10995                                                MVT::i32),
10996                                FIN, MachinePointerInfo(SV), false, false, 0);
10997   MemOps.push_back(Store);
10998
10999   // Store fp_offset
11000   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11001                     FIN, DAG.getIntPtrConstant(4));
11002   Store = DAG.getStore(Op.getOperand(0), DL,
11003                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
11004                                        MVT::i32),
11005                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
11006   MemOps.push_back(Store);
11007
11008   // Store ptr to overflow_arg_area
11009   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11010                     FIN, DAG.getIntPtrConstant(4));
11011   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
11012                                     getPointerTy());
11013   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
11014                        MachinePointerInfo(SV, 8),
11015                        false, false, 0);
11016   MemOps.push_back(Store);
11017
11018   // Store ptr to reg_save_area.
11019   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
11020                     FIN, DAG.getIntPtrConstant(8));
11021   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
11022                                     getPointerTy());
11023   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
11024                        MachinePointerInfo(SV, 16), false, false, 0);
11025   MemOps.push_back(Store);
11026   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
11027                      &MemOps[0], MemOps.size());
11028 }
11029
11030 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
11031   assert(Subtarget->is64Bit() &&
11032          "LowerVAARG only handles 64-bit va_arg!");
11033   assert((Subtarget->isTargetLinux() ||
11034           Subtarget->isTargetDarwin()) &&
11035           "Unhandled target in LowerVAARG");
11036   assert(Op.getNode()->getNumOperands() == 4);
11037   SDValue Chain = Op.getOperand(0);
11038   SDValue SrcPtr = Op.getOperand(1);
11039   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
11040   unsigned Align = Op.getConstantOperandVal(3);
11041   SDLoc dl(Op);
11042
11043   EVT ArgVT = Op.getNode()->getValueType(0);
11044   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
11045   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
11046   uint8_t ArgMode;
11047
11048   // Decide which area this value should be read from.
11049   // TODO: Implement the AMD64 ABI in its entirety. This simple
11050   // selection mechanism works only for the basic types.
11051   if (ArgVT == MVT::f80) {
11052     llvm_unreachable("va_arg for f80 not yet implemented");
11053   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
11054     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
11055   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
11056     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
11057   } else {
11058     llvm_unreachable("Unhandled argument type in LowerVAARG");
11059   }
11060
11061   if (ArgMode == 2) {
11062     // Sanity Check: Make sure using fp_offset makes sense.
11063     assert(!getTargetMachine().Options.UseSoftFloat &&
11064            !(DAG.getMachineFunction()
11065                 .getFunction()->getAttributes()
11066                 .hasAttribute(AttributeSet::FunctionIndex,
11067                               Attribute::NoImplicitFloat)) &&
11068            Subtarget->hasSSE1());
11069   }
11070
11071   // Insert VAARG_64 node into the DAG
11072   // VAARG_64 returns two values: Variable Argument Address, Chain
11073   SmallVector<SDValue, 11> InstOps;
11074   InstOps.push_back(Chain);
11075   InstOps.push_back(SrcPtr);
11076   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
11077   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
11078   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
11079   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
11080   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
11081                                           VTs, &InstOps[0], InstOps.size(),
11082                                           MVT::i64,
11083                                           MachinePointerInfo(SV),
11084                                           /*Align=*/0,
11085                                           /*Volatile=*/false,
11086                                           /*ReadMem=*/true,
11087                                           /*WriteMem=*/true);
11088   Chain = VAARG.getValue(1);
11089
11090   // Load the next argument and return it
11091   return DAG.getLoad(ArgVT, dl,
11092                      Chain,
11093                      VAARG,
11094                      MachinePointerInfo(),
11095                      false, false, false, 0);
11096 }
11097
11098 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
11099                            SelectionDAG &DAG) {
11100   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
11101   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
11102   SDValue Chain = Op.getOperand(0);
11103   SDValue DstPtr = Op.getOperand(1);
11104   SDValue SrcPtr = Op.getOperand(2);
11105   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
11106   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
11107   SDLoc DL(Op);
11108
11109   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
11110                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
11111                        false,
11112                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
11113 }
11114
11115 // getTargetVShiftByConstNode - Handle vector element shifts where the shift
11116 // amount is a constant. Takes immediate version of shift as input.
11117 static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, MVT VT,
11118                                           SDValue SrcOp, uint64_t ShiftAmt,
11119                                           SelectionDAG &DAG) {
11120   MVT ElementType = VT.getVectorElementType();
11121
11122   // Check for ShiftAmt >= element width
11123   if (ShiftAmt >= ElementType.getSizeInBits()) {
11124     if (Opc == X86ISD::VSRAI)
11125       ShiftAmt = ElementType.getSizeInBits() - 1;
11126     else
11127       return DAG.getConstant(0, VT);
11128   }
11129
11130   assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
11131          && "Unknown target vector shift-by-constant node");
11132
11133   // Fold this packed vector shift into a build vector if SrcOp is a
11134   // vector of Constants or UNDEFs, and SrcOp valuetype is the same as VT.
11135   if (VT == SrcOp.getSimpleValueType() &&
11136       ISD::isBuildVectorOfConstantSDNodes(SrcOp.getNode())) {
11137     SmallVector<SDValue, 8> Elts;
11138     unsigned NumElts = SrcOp->getNumOperands();
11139     ConstantSDNode *ND;
11140
11141     switch(Opc) {
11142     default: llvm_unreachable(0);
11143     case X86ISD::VSHLI:
11144       for (unsigned i=0; i!=NumElts; ++i) {
11145         SDValue CurrentOp = SrcOp->getOperand(i);
11146         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11147           Elts.push_back(CurrentOp);
11148           continue;
11149         }
11150         ND = cast<ConstantSDNode>(CurrentOp);
11151         const APInt &C = ND->getAPIntValue();
11152         Elts.push_back(DAG.getConstant(C.shl(ShiftAmt), ElementType));
11153       }
11154       break;
11155     case X86ISD::VSRLI:
11156       for (unsigned i=0; i!=NumElts; ++i) {
11157         SDValue CurrentOp = SrcOp->getOperand(i);
11158         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11159           Elts.push_back(CurrentOp);
11160           continue;
11161         }
11162         ND = cast<ConstantSDNode>(CurrentOp);
11163         const APInt &C = ND->getAPIntValue();
11164         Elts.push_back(DAG.getConstant(C.lshr(ShiftAmt), ElementType));
11165       }
11166       break;
11167     case X86ISD::VSRAI:
11168       for (unsigned i=0; i!=NumElts; ++i) {
11169         SDValue CurrentOp = SrcOp->getOperand(i);
11170         if (CurrentOp->getOpcode() == ISD::UNDEF) {
11171           Elts.push_back(CurrentOp);
11172           continue;
11173         }
11174         ND = cast<ConstantSDNode>(CurrentOp);
11175         const APInt &C = ND->getAPIntValue();
11176         Elts.push_back(DAG.getConstant(C.ashr(ShiftAmt), ElementType));
11177       }
11178       break;
11179     }
11180
11181     return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Elts[0], NumElts);
11182   }
11183
11184   return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
11185 }
11186
11187 // getTargetVShiftNode - Handle vector element shifts where the shift amount
11188 // may or may not be a constant. Takes immediate version of shift as input.
11189 static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, MVT VT,
11190                                    SDValue SrcOp, SDValue ShAmt,
11191                                    SelectionDAG &DAG) {
11192   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11193
11194   // Catch shift-by-constant.
11195   if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11196     return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11197                                       CShAmt->getZExtValue(), DAG);
11198
11199   // Change opcode to non-immediate version
11200   switch (Opc) {
11201     default: llvm_unreachable("Unknown target vector shift node");
11202     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11203     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11204     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11205   }
11206
11207   // Need to build a vector containing shift amount
11208   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11209   SDValue ShOps[4];
11210   ShOps[0] = ShAmt;
11211   ShOps[1] = DAG.getConstant(0, MVT::i32);
11212   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
11213   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
11214
11215   // The return type has to be a 128-bit type with the same element
11216   // type as the input type.
11217   MVT EltVT = VT.getVectorElementType();
11218   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11219
11220   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
11221   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11222 }
11223
11224 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
11225   SDLoc dl(Op);
11226   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
11227   switch (IntNo) {
11228   default: return SDValue();    // Don't custom lower most intrinsics.
11229   // Comparison intrinsics.
11230   case Intrinsic::x86_sse_comieq_ss:
11231   case Intrinsic::x86_sse_comilt_ss:
11232   case Intrinsic::x86_sse_comile_ss:
11233   case Intrinsic::x86_sse_comigt_ss:
11234   case Intrinsic::x86_sse_comige_ss:
11235   case Intrinsic::x86_sse_comineq_ss:
11236   case Intrinsic::x86_sse_ucomieq_ss:
11237   case Intrinsic::x86_sse_ucomilt_ss:
11238   case Intrinsic::x86_sse_ucomile_ss:
11239   case Intrinsic::x86_sse_ucomigt_ss:
11240   case Intrinsic::x86_sse_ucomige_ss:
11241   case Intrinsic::x86_sse_ucomineq_ss:
11242   case Intrinsic::x86_sse2_comieq_sd:
11243   case Intrinsic::x86_sse2_comilt_sd:
11244   case Intrinsic::x86_sse2_comile_sd:
11245   case Intrinsic::x86_sse2_comigt_sd:
11246   case Intrinsic::x86_sse2_comige_sd:
11247   case Intrinsic::x86_sse2_comineq_sd:
11248   case Intrinsic::x86_sse2_ucomieq_sd:
11249   case Intrinsic::x86_sse2_ucomilt_sd:
11250   case Intrinsic::x86_sse2_ucomile_sd:
11251   case Intrinsic::x86_sse2_ucomigt_sd:
11252   case Intrinsic::x86_sse2_ucomige_sd:
11253   case Intrinsic::x86_sse2_ucomineq_sd: {
11254     unsigned Opc;
11255     ISD::CondCode CC;
11256     switch (IntNo) {
11257     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11258     case Intrinsic::x86_sse_comieq_ss:
11259     case Intrinsic::x86_sse2_comieq_sd:
11260       Opc = X86ISD::COMI;
11261       CC = ISD::SETEQ;
11262       break;
11263     case Intrinsic::x86_sse_comilt_ss:
11264     case Intrinsic::x86_sse2_comilt_sd:
11265       Opc = X86ISD::COMI;
11266       CC = ISD::SETLT;
11267       break;
11268     case Intrinsic::x86_sse_comile_ss:
11269     case Intrinsic::x86_sse2_comile_sd:
11270       Opc = X86ISD::COMI;
11271       CC = ISD::SETLE;
11272       break;
11273     case Intrinsic::x86_sse_comigt_ss:
11274     case Intrinsic::x86_sse2_comigt_sd:
11275       Opc = X86ISD::COMI;
11276       CC = ISD::SETGT;
11277       break;
11278     case Intrinsic::x86_sse_comige_ss:
11279     case Intrinsic::x86_sse2_comige_sd:
11280       Opc = X86ISD::COMI;
11281       CC = ISD::SETGE;
11282       break;
11283     case Intrinsic::x86_sse_comineq_ss:
11284     case Intrinsic::x86_sse2_comineq_sd:
11285       Opc = X86ISD::COMI;
11286       CC = ISD::SETNE;
11287       break;
11288     case Intrinsic::x86_sse_ucomieq_ss:
11289     case Intrinsic::x86_sse2_ucomieq_sd:
11290       Opc = X86ISD::UCOMI;
11291       CC = ISD::SETEQ;
11292       break;
11293     case Intrinsic::x86_sse_ucomilt_ss:
11294     case Intrinsic::x86_sse2_ucomilt_sd:
11295       Opc = X86ISD::UCOMI;
11296       CC = ISD::SETLT;
11297       break;
11298     case Intrinsic::x86_sse_ucomile_ss:
11299     case Intrinsic::x86_sse2_ucomile_sd:
11300       Opc = X86ISD::UCOMI;
11301       CC = ISD::SETLE;
11302       break;
11303     case Intrinsic::x86_sse_ucomigt_ss:
11304     case Intrinsic::x86_sse2_ucomigt_sd:
11305       Opc = X86ISD::UCOMI;
11306       CC = ISD::SETGT;
11307       break;
11308     case Intrinsic::x86_sse_ucomige_ss:
11309     case Intrinsic::x86_sse2_ucomige_sd:
11310       Opc = X86ISD::UCOMI;
11311       CC = ISD::SETGE;
11312       break;
11313     case Intrinsic::x86_sse_ucomineq_ss:
11314     case Intrinsic::x86_sse2_ucomineq_sd:
11315       Opc = X86ISD::UCOMI;
11316       CC = ISD::SETNE;
11317       break;
11318     }
11319
11320     SDValue LHS = Op.getOperand(1);
11321     SDValue RHS = Op.getOperand(2);
11322     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
11323     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
11324     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11325     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11326                                 DAG.getConstant(X86CC, MVT::i8), Cond);
11327     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11328   }
11329
11330   // Arithmetic intrinsics.
11331   case Intrinsic::x86_sse2_pmulu_dq:
11332   case Intrinsic::x86_avx2_pmulu_dq:
11333     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11334                        Op.getOperand(1), Op.getOperand(2));
11335
11336   // SSE2/AVX2 sub with unsigned saturation intrinsics
11337   case Intrinsic::x86_sse2_psubus_b:
11338   case Intrinsic::x86_sse2_psubus_w:
11339   case Intrinsic::x86_avx2_psubus_b:
11340   case Intrinsic::x86_avx2_psubus_w:
11341     return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11342                        Op.getOperand(1), Op.getOperand(2));
11343
11344   // SSE3/AVX horizontal add/sub intrinsics
11345   case Intrinsic::x86_sse3_hadd_ps:
11346   case Intrinsic::x86_sse3_hadd_pd:
11347   case Intrinsic::x86_avx_hadd_ps_256:
11348   case Intrinsic::x86_avx_hadd_pd_256:
11349   case Intrinsic::x86_sse3_hsub_ps:
11350   case Intrinsic::x86_sse3_hsub_pd:
11351   case Intrinsic::x86_avx_hsub_ps_256:
11352   case Intrinsic::x86_avx_hsub_pd_256:
11353   case Intrinsic::x86_ssse3_phadd_w_128:
11354   case Intrinsic::x86_ssse3_phadd_d_128:
11355   case Intrinsic::x86_avx2_phadd_w:
11356   case Intrinsic::x86_avx2_phadd_d:
11357   case Intrinsic::x86_ssse3_phsub_w_128:
11358   case Intrinsic::x86_ssse3_phsub_d_128:
11359   case Intrinsic::x86_avx2_phsub_w:
11360   case Intrinsic::x86_avx2_phsub_d: {
11361     unsigned Opcode;
11362     switch (IntNo) {
11363     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11364     case Intrinsic::x86_sse3_hadd_ps:
11365     case Intrinsic::x86_sse3_hadd_pd:
11366     case Intrinsic::x86_avx_hadd_ps_256:
11367     case Intrinsic::x86_avx_hadd_pd_256:
11368       Opcode = X86ISD::FHADD;
11369       break;
11370     case Intrinsic::x86_sse3_hsub_ps:
11371     case Intrinsic::x86_sse3_hsub_pd:
11372     case Intrinsic::x86_avx_hsub_ps_256:
11373     case Intrinsic::x86_avx_hsub_pd_256:
11374       Opcode = X86ISD::FHSUB;
11375       break;
11376     case Intrinsic::x86_ssse3_phadd_w_128:
11377     case Intrinsic::x86_ssse3_phadd_d_128:
11378     case Intrinsic::x86_avx2_phadd_w:
11379     case Intrinsic::x86_avx2_phadd_d:
11380       Opcode = X86ISD::HADD;
11381       break;
11382     case Intrinsic::x86_ssse3_phsub_w_128:
11383     case Intrinsic::x86_ssse3_phsub_d_128:
11384     case Intrinsic::x86_avx2_phsub_w:
11385     case Intrinsic::x86_avx2_phsub_d:
11386       Opcode = X86ISD::HSUB;
11387       break;
11388     }
11389     return DAG.getNode(Opcode, dl, Op.getValueType(),
11390                        Op.getOperand(1), Op.getOperand(2));
11391   }
11392
11393   // SSE2/SSE41/AVX2 integer max/min intrinsics.
11394   case Intrinsic::x86_sse2_pmaxu_b:
11395   case Intrinsic::x86_sse41_pmaxuw:
11396   case Intrinsic::x86_sse41_pmaxud:
11397   case Intrinsic::x86_avx2_pmaxu_b:
11398   case Intrinsic::x86_avx2_pmaxu_w:
11399   case Intrinsic::x86_avx2_pmaxu_d:
11400   case Intrinsic::x86_sse2_pminu_b:
11401   case Intrinsic::x86_sse41_pminuw:
11402   case Intrinsic::x86_sse41_pminud:
11403   case Intrinsic::x86_avx2_pminu_b:
11404   case Intrinsic::x86_avx2_pminu_w:
11405   case Intrinsic::x86_avx2_pminu_d:
11406   case Intrinsic::x86_sse41_pmaxsb:
11407   case Intrinsic::x86_sse2_pmaxs_w:
11408   case Intrinsic::x86_sse41_pmaxsd:
11409   case Intrinsic::x86_avx2_pmaxs_b:
11410   case Intrinsic::x86_avx2_pmaxs_w:
11411   case Intrinsic::x86_avx2_pmaxs_d:
11412   case Intrinsic::x86_sse41_pminsb:
11413   case Intrinsic::x86_sse2_pmins_w:
11414   case Intrinsic::x86_sse41_pminsd:
11415   case Intrinsic::x86_avx2_pmins_b:
11416   case Intrinsic::x86_avx2_pmins_w:
11417   case Intrinsic::x86_avx2_pmins_d: {
11418     unsigned Opcode;
11419     switch (IntNo) {
11420     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11421     case Intrinsic::x86_sse2_pmaxu_b:
11422     case Intrinsic::x86_sse41_pmaxuw:
11423     case Intrinsic::x86_sse41_pmaxud:
11424     case Intrinsic::x86_avx2_pmaxu_b:
11425     case Intrinsic::x86_avx2_pmaxu_w:
11426     case Intrinsic::x86_avx2_pmaxu_d:
11427       Opcode = X86ISD::UMAX;
11428       break;
11429     case Intrinsic::x86_sse2_pminu_b:
11430     case Intrinsic::x86_sse41_pminuw:
11431     case Intrinsic::x86_sse41_pminud:
11432     case Intrinsic::x86_avx2_pminu_b:
11433     case Intrinsic::x86_avx2_pminu_w:
11434     case Intrinsic::x86_avx2_pminu_d:
11435       Opcode = X86ISD::UMIN;
11436       break;
11437     case Intrinsic::x86_sse41_pmaxsb:
11438     case Intrinsic::x86_sse2_pmaxs_w:
11439     case Intrinsic::x86_sse41_pmaxsd:
11440     case Intrinsic::x86_avx2_pmaxs_b:
11441     case Intrinsic::x86_avx2_pmaxs_w:
11442     case Intrinsic::x86_avx2_pmaxs_d:
11443       Opcode = X86ISD::SMAX;
11444       break;
11445     case Intrinsic::x86_sse41_pminsb:
11446     case Intrinsic::x86_sse2_pmins_w:
11447     case Intrinsic::x86_sse41_pminsd:
11448     case Intrinsic::x86_avx2_pmins_b:
11449     case Intrinsic::x86_avx2_pmins_w:
11450     case Intrinsic::x86_avx2_pmins_d:
11451       Opcode = X86ISD::SMIN;
11452       break;
11453     }
11454     return DAG.getNode(Opcode, dl, Op.getValueType(),
11455                        Op.getOperand(1), Op.getOperand(2));
11456   }
11457
11458   // SSE/SSE2/AVX floating point max/min intrinsics.
11459   case Intrinsic::x86_sse_max_ps:
11460   case Intrinsic::x86_sse2_max_pd:
11461   case Intrinsic::x86_avx_max_ps_256:
11462   case Intrinsic::x86_avx_max_pd_256:
11463   case Intrinsic::x86_sse_min_ps:
11464   case Intrinsic::x86_sse2_min_pd:
11465   case Intrinsic::x86_avx_min_ps_256:
11466   case Intrinsic::x86_avx_min_pd_256: {
11467     unsigned Opcode;
11468     switch (IntNo) {
11469     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11470     case Intrinsic::x86_sse_max_ps:
11471     case Intrinsic::x86_sse2_max_pd:
11472     case Intrinsic::x86_avx_max_ps_256:
11473     case Intrinsic::x86_avx_max_pd_256:
11474       Opcode = X86ISD::FMAX;
11475       break;
11476     case Intrinsic::x86_sse_min_ps:
11477     case Intrinsic::x86_sse2_min_pd:
11478     case Intrinsic::x86_avx_min_ps_256:
11479     case Intrinsic::x86_avx_min_pd_256:
11480       Opcode = X86ISD::FMIN;
11481       break;
11482     }
11483     return DAG.getNode(Opcode, dl, Op.getValueType(),
11484                        Op.getOperand(1), Op.getOperand(2));
11485   }
11486
11487   // AVX2 variable shift intrinsics
11488   case Intrinsic::x86_avx2_psllv_d:
11489   case Intrinsic::x86_avx2_psllv_q:
11490   case Intrinsic::x86_avx2_psllv_d_256:
11491   case Intrinsic::x86_avx2_psllv_q_256:
11492   case Intrinsic::x86_avx2_psrlv_d:
11493   case Intrinsic::x86_avx2_psrlv_q:
11494   case Intrinsic::x86_avx2_psrlv_d_256:
11495   case Intrinsic::x86_avx2_psrlv_q_256:
11496   case Intrinsic::x86_avx2_psrav_d:
11497   case Intrinsic::x86_avx2_psrav_d_256: {
11498     unsigned Opcode;
11499     switch (IntNo) {
11500     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11501     case Intrinsic::x86_avx2_psllv_d:
11502     case Intrinsic::x86_avx2_psllv_q:
11503     case Intrinsic::x86_avx2_psllv_d_256:
11504     case Intrinsic::x86_avx2_psllv_q_256:
11505       Opcode = ISD::SHL;
11506       break;
11507     case Intrinsic::x86_avx2_psrlv_d:
11508     case Intrinsic::x86_avx2_psrlv_q:
11509     case Intrinsic::x86_avx2_psrlv_d_256:
11510     case Intrinsic::x86_avx2_psrlv_q_256:
11511       Opcode = ISD::SRL;
11512       break;
11513     case Intrinsic::x86_avx2_psrav_d:
11514     case Intrinsic::x86_avx2_psrav_d_256:
11515       Opcode = ISD::SRA;
11516       break;
11517     }
11518     return DAG.getNode(Opcode, dl, Op.getValueType(),
11519                        Op.getOperand(1), Op.getOperand(2));
11520   }
11521
11522   case Intrinsic::x86_ssse3_pshuf_b_128:
11523   case Intrinsic::x86_avx2_pshuf_b:
11524     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11525                        Op.getOperand(1), Op.getOperand(2));
11526
11527   case Intrinsic::x86_ssse3_psign_b_128:
11528   case Intrinsic::x86_ssse3_psign_w_128:
11529   case Intrinsic::x86_ssse3_psign_d_128:
11530   case Intrinsic::x86_avx2_psign_b:
11531   case Intrinsic::x86_avx2_psign_w:
11532   case Intrinsic::x86_avx2_psign_d:
11533     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11534                        Op.getOperand(1), Op.getOperand(2));
11535
11536   case Intrinsic::x86_sse41_insertps:
11537     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11538                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11539
11540   case Intrinsic::x86_avx_vperm2f128_ps_256:
11541   case Intrinsic::x86_avx_vperm2f128_pd_256:
11542   case Intrinsic::x86_avx_vperm2f128_si_256:
11543   case Intrinsic::x86_avx2_vperm2i128:
11544     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11545                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
11546
11547   case Intrinsic::x86_avx2_permd:
11548   case Intrinsic::x86_avx2_permps:
11549     // Operands intentionally swapped. Mask is last operand to intrinsic,
11550     // but second operand for node/instruction.
11551     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11552                        Op.getOperand(2), Op.getOperand(1));
11553
11554   case Intrinsic::x86_sse_sqrt_ps:
11555   case Intrinsic::x86_sse2_sqrt_pd:
11556   case Intrinsic::x86_avx_sqrt_ps_256:
11557   case Intrinsic::x86_avx_sqrt_pd_256:
11558     return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11559
11560   // ptest and testp intrinsics. The intrinsic these come from are designed to
11561   // return an integer value, not just an instruction so lower it to the ptest
11562   // or testp pattern and a setcc for the result.
11563   case Intrinsic::x86_sse41_ptestz:
11564   case Intrinsic::x86_sse41_ptestc:
11565   case Intrinsic::x86_sse41_ptestnzc:
11566   case Intrinsic::x86_avx_ptestz_256:
11567   case Intrinsic::x86_avx_ptestc_256:
11568   case Intrinsic::x86_avx_ptestnzc_256:
11569   case Intrinsic::x86_avx_vtestz_ps:
11570   case Intrinsic::x86_avx_vtestc_ps:
11571   case Intrinsic::x86_avx_vtestnzc_ps:
11572   case Intrinsic::x86_avx_vtestz_pd:
11573   case Intrinsic::x86_avx_vtestc_pd:
11574   case Intrinsic::x86_avx_vtestnzc_pd:
11575   case Intrinsic::x86_avx_vtestz_ps_256:
11576   case Intrinsic::x86_avx_vtestc_ps_256:
11577   case Intrinsic::x86_avx_vtestnzc_ps_256:
11578   case Intrinsic::x86_avx_vtestz_pd_256:
11579   case Intrinsic::x86_avx_vtestc_pd_256:
11580   case Intrinsic::x86_avx_vtestnzc_pd_256: {
11581     bool IsTestPacked = false;
11582     unsigned X86CC;
11583     switch (IntNo) {
11584     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
11585     case Intrinsic::x86_avx_vtestz_ps:
11586     case Intrinsic::x86_avx_vtestz_pd:
11587     case Intrinsic::x86_avx_vtestz_ps_256:
11588     case Intrinsic::x86_avx_vtestz_pd_256:
11589       IsTestPacked = true; // Fallthrough
11590     case Intrinsic::x86_sse41_ptestz:
11591     case Intrinsic::x86_avx_ptestz_256:
11592       // ZF = 1
11593       X86CC = X86::COND_E;
11594       break;
11595     case Intrinsic::x86_avx_vtestc_ps:
11596     case Intrinsic::x86_avx_vtestc_pd:
11597     case Intrinsic::x86_avx_vtestc_ps_256:
11598     case Intrinsic::x86_avx_vtestc_pd_256:
11599       IsTestPacked = true; // Fallthrough
11600     case Intrinsic::x86_sse41_ptestc:
11601     case Intrinsic::x86_avx_ptestc_256:
11602       // CF = 1
11603       X86CC = X86::COND_B;
11604       break;
11605     case Intrinsic::x86_avx_vtestnzc_ps:
11606     case Intrinsic::x86_avx_vtestnzc_pd:
11607     case Intrinsic::x86_avx_vtestnzc_ps_256:
11608     case Intrinsic::x86_avx_vtestnzc_pd_256:
11609       IsTestPacked = true; // Fallthrough
11610     case Intrinsic::x86_sse41_ptestnzc:
11611     case Intrinsic::x86_avx_ptestnzc_256:
11612       // ZF and CF = 0
11613       X86CC = X86::COND_A;
11614       break;
11615     }
11616
11617     SDValue LHS = Op.getOperand(1);
11618     SDValue RHS = Op.getOperand(2);
11619     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11620     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
11621     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11622     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11623     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11624   }
11625   case Intrinsic::x86_avx512_kortestz_w:
11626   case Intrinsic::x86_avx512_kortestc_w: {
11627     unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz_w)? X86::COND_E: X86::COND_B;
11628     SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11629     SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11630     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11631     SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11632     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i1, CC, Test);
11633     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11634   }
11635
11636   // SSE/AVX shift intrinsics
11637   case Intrinsic::x86_sse2_psll_w:
11638   case Intrinsic::x86_sse2_psll_d:
11639   case Intrinsic::x86_sse2_psll_q:
11640   case Intrinsic::x86_avx2_psll_w:
11641   case Intrinsic::x86_avx2_psll_d:
11642   case Intrinsic::x86_avx2_psll_q:
11643   case Intrinsic::x86_sse2_psrl_w:
11644   case Intrinsic::x86_sse2_psrl_d:
11645   case Intrinsic::x86_sse2_psrl_q:
11646   case Intrinsic::x86_avx2_psrl_w:
11647   case Intrinsic::x86_avx2_psrl_d:
11648   case Intrinsic::x86_avx2_psrl_q:
11649   case Intrinsic::x86_sse2_psra_w:
11650   case Intrinsic::x86_sse2_psra_d:
11651   case Intrinsic::x86_avx2_psra_w:
11652   case Intrinsic::x86_avx2_psra_d: {
11653     unsigned Opcode;
11654     switch (IntNo) {
11655     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11656     case Intrinsic::x86_sse2_psll_w:
11657     case Intrinsic::x86_sse2_psll_d:
11658     case Intrinsic::x86_sse2_psll_q:
11659     case Intrinsic::x86_avx2_psll_w:
11660     case Intrinsic::x86_avx2_psll_d:
11661     case Intrinsic::x86_avx2_psll_q:
11662       Opcode = X86ISD::VSHL;
11663       break;
11664     case Intrinsic::x86_sse2_psrl_w:
11665     case Intrinsic::x86_sse2_psrl_d:
11666     case Intrinsic::x86_sse2_psrl_q:
11667     case Intrinsic::x86_avx2_psrl_w:
11668     case Intrinsic::x86_avx2_psrl_d:
11669     case Intrinsic::x86_avx2_psrl_q:
11670       Opcode = X86ISD::VSRL;
11671       break;
11672     case Intrinsic::x86_sse2_psra_w:
11673     case Intrinsic::x86_sse2_psra_d:
11674     case Intrinsic::x86_avx2_psra_w:
11675     case Intrinsic::x86_avx2_psra_d:
11676       Opcode = X86ISD::VSRA;
11677       break;
11678     }
11679     return DAG.getNode(Opcode, dl, Op.getValueType(),
11680                        Op.getOperand(1), Op.getOperand(2));
11681   }
11682
11683   // SSE/AVX immediate shift intrinsics
11684   case Intrinsic::x86_sse2_pslli_w:
11685   case Intrinsic::x86_sse2_pslli_d:
11686   case Intrinsic::x86_sse2_pslli_q:
11687   case Intrinsic::x86_avx2_pslli_w:
11688   case Intrinsic::x86_avx2_pslli_d:
11689   case Intrinsic::x86_avx2_pslli_q:
11690   case Intrinsic::x86_sse2_psrli_w:
11691   case Intrinsic::x86_sse2_psrli_d:
11692   case Intrinsic::x86_sse2_psrli_q:
11693   case Intrinsic::x86_avx2_psrli_w:
11694   case Intrinsic::x86_avx2_psrli_d:
11695   case Intrinsic::x86_avx2_psrli_q:
11696   case Intrinsic::x86_sse2_psrai_w:
11697   case Intrinsic::x86_sse2_psrai_d:
11698   case Intrinsic::x86_avx2_psrai_w:
11699   case Intrinsic::x86_avx2_psrai_d: {
11700     unsigned Opcode;
11701     switch (IntNo) {
11702     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11703     case Intrinsic::x86_sse2_pslli_w:
11704     case Intrinsic::x86_sse2_pslli_d:
11705     case Intrinsic::x86_sse2_pslli_q:
11706     case Intrinsic::x86_avx2_pslli_w:
11707     case Intrinsic::x86_avx2_pslli_d:
11708     case Intrinsic::x86_avx2_pslli_q:
11709       Opcode = X86ISD::VSHLI;
11710       break;
11711     case Intrinsic::x86_sse2_psrli_w:
11712     case Intrinsic::x86_sse2_psrli_d:
11713     case Intrinsic::x86_sse2_psrli_q:
11714     case Intrinsic::x86_avx2_psrli_w:
11715     case Intrinsic::x86_avx2_psrli_d:
11716     case Intrinsic::x86_avx2_psrli_q:
11717       Opcode = X86ISD::VSRLI;
11718       break;
11719     case Intrinsic::x86_sse2_psrai_w:
11720     case Intrinsic::x86_sse2_psrai_d:
11721     case Intrinsic::x86_avx2_psrai_w:
11722     case Intrinsic::x86_avx2_psrai_d:
11723       Opcode = X86ISD::VSRAI;
11724       break;
11725     }
11726     return getTargetVShiftNode(Opcode, dl, Op.getSimpleValueType(),
11727                                Op.getOperand(1), Op.getOperand(2), DAG);
11728   }
11729
11730   case Intrinsic::x86_sse42_pcmpistria128:
11731   case Intrinsic::x86_sse42_pcmpestria128:
11732   case Intrinsic::x86_sse42_pcmpistric128:
11733   case Intrinsic::x86_sse42_pcmpestric128:
11734   case Intrinsic::x86_sse42_pcmpistrio128:
11735   case Intrinsic::x86_sse42_pcmpestrio128:
11736   case Intrinsic::x86_sse42_pcmpistris128:
11737   case Intrinsic::x86_sse42_pcmpestris128:
11738   case Intrinsic::x86_sse42_pcmpistriz128:
11739   case Intrinsic::x86_sse42_pcmpestriz128: {
11740     unsigned Opcode;
11741     unsigned X86CC;
11742     switch (IntNo) {
11743     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11744     case Intrinsic::x86_sse42_pcmpistria128:
11745       Opcode = X86ISD::PCMPISTRI;
11746       X86CC = X86::COND_A;
11747       break;
11748     case Intrinsic::x86_sse42_pcmpestria128:
11749       Opcode = X86ISD::PCMPESTRI;
11750       X86CC = X86::COND_A;
11751       break;
11752     case Intrinsic::x86_sse42_pcmpistric128:
11753       Opcode = X86ISD::PCMPISTRI;
11754       X86CC = X86::COND_B;
11755       break;
11756     case Intrinsic::x86_sse42_pcmpestric128:
11757       Opcode = X86ISD::PCMPESTRI;
11758       X86CC = X86::COND_B;
11759       break;
11760     case Intrinsic::x86_sse42_pcmpistrio128:
11761       Opcode = X86ISD::PCMPISTRI;
11762       X86CC = X86::COND_O;
11763       break;
11764     case Intrinsic::x86_sse42_pcmpestrio128:
11765       Opcode = X86ISD::PCMPESTRI;
11766       X86CC = X86::COND_O;
11767       break;
11768     case Intrinsic::x86_sse42_pcmpistris128:
11769       Opcode = X86ISD::PCMPISTRI;
11770       X86CC = X86::COND_S;
11771       break;
11772     case Intrinsic::x86_sse42_pcmpestris128:
11773       Opcode = X86ISD::PCMPESTRI;
11774       X86CC = X86::COND_S;
11775       break;
11776     case Intrinsic::x86_sse42_pcmpistriz128:
11777       Opcode = X86ISD::PCMPISTRI;
11778       X86CC = X86::COND_E;
11779       break;
11780     case Intrinsic::x86_sse42_pcmpestriz128:
11781       Opcode = X86ISD::PCMPESTRI;
11782       X86CC = X86::COND_E;
11783       break;
11784     }
11785     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11786     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11787     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11788     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11789                                 DAG.getConstant(X86CC, MVT::i8),
11790                                 SDValue(PCMP.getNode(), 1));
11791     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11792   }
11793
11794   case Intrinsic::x86_sse42_pcmpistri128:
11795   case Intrinsic::x86_sse42_pcmpestri128: {
11796     unsigned Opcode;
11797     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11798       Opcode = X86ISD::PCMPISTRI;
11799     else
11800       Opcode = X86ISD::PCMPESTRI;
11801
11802     SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
11803     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11804     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11805   }
11806   case Intrinsic::x86_fma_vfmadd_ps:
11807   case Intrinsic::x86_fma_vfmadd_pd:
11808   case Intrinsic::x86_fma_vfmsub_ps:
11809   case Intrinsic::x86_fma_vfmsub_pd:
11810   case Intrinsic::x86_fma_vfnmadd_ps:
11811   case Intrinsic::x86_fma_vfnmadd_pd:
11812   case Intrinsic::x86_fma_vfnmsub_ps:
11813   case Intrinsic::x86_fma_vfnmsub_pd:
11814   case Intrinsic::x86_fma_vfmaddsub_ps:
11815   case Intrinsic::x86_fma_vfmaddsub_pd:
11816   case Intrinsic::x86_fma_vfmsubadd_ps:
11817   case Intrinsic::x86_fma_vfmsubadd_pd:
11818   case Intrinsic::x86_fma_vfmadd_ps_256:
11819   case Intrinsic::x86_fma_vfmadd_pd_256:
11820   case Intrinsic::x86_fma_vfmsub_ps_256:
11821   case Intrinsic::x86_fma_vfmsub_pd_256:
11822   case Intrinsic::x86_fma_vfnmadd_ps_256:
11823   case Intrinsic::x86_fma_vfnmadd_pd_256:
11824   case Intrinsic::x86_fma_vfnmsub_ps_256:
11825   case Intrinsic::x86_fma_vfnmsub_pd_256:
11826   case Intrinsic::x86_fma_vfmaddsub_ps_256:
11827   case Intrinsic::x86_fma_vfmaddsub_pd_256:
11828   case Intrinsic::x86_fma_vfmsubadd_ps_256:
11829   case Intrinsic::x86_fma_vfmsubadd_pd_256:
11830   case Intrinsic::x86_fma_vfmadd_ps_512:
11831   case Intrinsic::x86_fma_vfmadd_pd_512:
11832   case Intrinsic::x86_fma_vfmsub_ps_512:
11833   case Intrinsic::x86_fma_vfmsub_pd_512:
11834   case Intrinsic::x86_fma_vfnmadd_ps_512:
11835   case Intrinsic::x86_fma_vfnmadd_pd_512:
11836   case Intrinsic::x86_fma_vfnmsub_ps_512:
11837   case Intrinsic::x86_fma_vfnmsub_pd_512:
11838   case Intrinsic::x86_fma_vfmaddsub_ps_512:
11839   case Intrinsic::x86_fma_vfmaddsub_pd_512:
11840   case Intrinsic::x86_fma_vfmsubadd_ps_512:
11841   case Intrinsic::x86_fma_vfmsubadd_pd_512: {
11842     unsigned Opc;
11843     switch (IntNo) {
11844     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
11845     case Intrinsic::x86_fma_vfmadd_ps:
11846     case Intrinsic::x86_fma_vfmadd_pd:
11847     case Intrinsic::x86_fma_vfmadd_ps_256:
11848     case Intrinsic::x86_fma_vfmadd_pd_256:
11849     case Intrinsic::x86_fma_vfmadd_ps_512:
11850     case Intrinsic::x86_fma_vfmadd_pd_512:
11851       Opc = X86ISD::FMADD;
11852       break;
11853     case Intrinsic::x86_fma_vfmsub_ps:
11854     case Intrinsic::x86_fma_vfmsub_pd:
11855     case Intrinsic::x86_fma_vfmsub_ps_256:
11856     case Intrinsic::x86_fma_vfmsub_pd_256:
11857     case Intrinsic::x86_fma_vfmsub_ps_512:
11858     case Intrinsic::x86_fma_vfmsub_pd_512:
11859       Opc = X86ISD::FMSUB;
11860       break;
11861     case Intrinsic::x86_fma_vfnmadd_ps:
11862     case Intrinsic::x86_fma_vfnmadd_pd:
11863     case Intrinsic::x86_fma_vfnmadd_ps_256:
11864     case Intrinsic::x86_fma_vfnmadd_pd_256:
11865     case Intrinsic::x86_fma_vfnmadd_ps_512:
11866     case Intrinsic::x86_fma_vfnmadd_pd_512:
11867       Opc = X86ISD::FNMADD;
11868       break;
11869     case Intrinsic::x86_fma_vfnmsub_ps:
11870     case Intrinsic::x86_fma_vfnmsub_pd:
11871     case Intrinsic::x86_fma_vfnmsub_ps_256:
11872     case Intrinsic::x86_fma_vfnmsub_pd_256:
11873     case Intrinsic::x86_fma_vfnmsub_ps_512:
11874     case Intrinsic::x86_fma_vfnmsub_pd_512:
11875       Opc = X86ISD::FNMSUB;
11876       break;
11877     case Intrinsic::x86_fma_vfmaddsub_ps:
11878     case Intrinsic::x86_fma_vfmaddsub_pd:
11879     case Intrinsic::x86_fma_vfmaddsub_ps_256:
11880     case Intrinsic::x86_fma_vfmaddsub_pd_256:
11881     case Intrinsic::x86_fma_vfmaddsub_ps_512:
11882     case Intrinsic::x86_fma_vfmaddsub_pd_512:
11883       Opc = X86ISD::FMADDSUB;
11884       break;
11885     case Intrinsic::x86_fma_vfmsubadd_ps:
11886     case Intrinsic::x86_fma_vfmsubadd_pd:
11887     case Intrinsic::x86_fma_vfmsubadd_ps_256:
11888     case Intrinsic::x86_fma_vfmsubadd_pd_256:
11889     case Intrinsic::x86_fma_vfmsubadd_ps_512:
11890     case Intrinsic::x86_fma_vfmsubadd_pd_512:
11891       Opc = X86ISD::FMSUBADD;
11892       break;
11893     }
11894
11895     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11896                        Op.getOperand(2), Op.getOperand(3));
11897   }
11898   }
11899 }
11900
11901 static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11902                              SDValue Base, SDValue Index,
11903                              SDValue ScaleOp, SDValue Chain,
11904                              const X86Subtarget * Subtarget) {
11905   SDLoc dl(Op);
11906   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11907   assert(C && "Invalid scale type");
11908   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11909   SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11910   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11911                              Index.getSimpleValueType().getVectorNumElements());
11912   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11913   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11914   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11915   SDValue Segment = DAG.getRegister(0, MVT::i32);
11916   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11917   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11918   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11919   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11920 }
11921
11922 static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11923                               SDValue Src, SDValue Mask, SDValue Base,
11924                               SDValue Index, SDValue ScaleOp, SDValue Chain,
11925                               const X86Subtarget * Subtarget) {
11926   SDLoc dl(Op);
11927   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11928   assert(C && "Invalid scale type");
11929   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11930   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11931                              Index.getSimpleValueType().getVectorNumElements());
11932   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11933   SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11934   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11935   SDValue Segment = DAG.getRegister(0, MVT::i32);
11936   if (Src.getOpcode() == ISD::UNDEF)
11937     Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11938   SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11939   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11940   SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11941   return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11942 }
11943
11944 static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11945                               SDValue Src, SDValue Base, SDValue Index,
11946                               SDValue ScaleOp, SDValue Chain) {
11947   SDLoc dl(Op);
11948   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11949   assert(C && "Invalid scale type");
11950   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11951   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11952   SDValue Segment = DAG.getRegister(0, MVT::i32);
11953   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11954                              Index.getSimpleValueType().getVectorNumElements());
11955   SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11956   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11957   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11958   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11959   return SDValue(Res, 1);
11960 }
11961
11962 static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11963                                SDValue Src, SDValue Mask, SDValue Base,
11964                                SDValue Index, SDValue ScaleOp, SDValue Chain) {
11965   SDLoc dl(Op);
11966   ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11967   assert(C && "Invalid scale type");
11968   SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11969   SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11970   SDValue Segment = DAG.getRegister(0, MVT::i32);
11971   EVT MaskVT = MVT::getVectorVT(MVT::i1,
11972                              Index.getSimpleValueType().getVectorNumElements());
11973   SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11974   SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11975   SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11976   SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11977   return SDValue(Res, 1);
11978 }
11979
11980 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11981                                       SelectionDAG &DAG) {
11982   SDLoc dl(Op);
11983   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11984   switch (IntNo) {
11985   default: return SDValue();    // Don't custom lower most intrinsics.
11986
11987   // RDRAND/RDSEED intrinsics.
11988   case Intrinsic::x86_rdrand_16:
11989   case Intrinsic::x86_rdrand_32:
11990   case Intrinsic::x86_rdrand_64:
11991   case Intrinsic::x86_rdseed_16:
11992   case Intrinsic::x86_rdseed_32:
11993   case Intrinsic::x86_rdseed_64: {
11994     unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11995                        IntNo == Intrinsic::x86_rdseed_32 ||
11996                        IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11997                                                             X86ISD::RDRAND;
11998     // Emit the node with the right value type.
11999     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
12000     SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
12001
12002     // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
12003     // Otherwise return the value from Rand, which is always 0, casted to i32.
12004     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
12005                       DAG.getConstant(1, Op->getValueType(1)),
12006                       DAG.getConstant(X86::COND_B, MVT::i32),
12007                       SDValue(Result.getNode(), 1) };
12008     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
12009                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
12010                                   Ops, array_lengthof(Ops));
12011
12012     // Return { result, isValid, chain }.
12013     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
12014                        SDValue(Result.getNode(), 2));
12015   }
12016   //int_gather(index, base, scale);
12017   case Intrinsic::x86_avx512_gather_qpd_512:
12018   case Intrinsic::x86_avx512_gather_qps_512:
12019   case Intrinsic::x86_avx512_gather_dpd_512:
12020   case Intrinsic::x86_avx512_gather_qpi_512:
12021   case Intrinsic::x86_avx512_gather_qpq_512:
12022   case Intrinsic::x86_avx512_gather_dpq_512:
12023   case Intrinsic::x86_avx512_gather_dps_512:
12024   case Intrinsic::x86_avx512_gather_dpi_512: {
12025     unsigned Opc;
12026     switch (IntNo) {
12027     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12028     case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
12029     case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
12030     case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
12031     case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
12032     case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
12033     case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
12034     case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
12035     case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
12036     }
12037     SDValue Chain = Op.getOperand(0);
12038     SDValue Index = Op.getOperand(2);
12039     SDValue Base  = Op.getOperand(3);
12040     SDValue Scale = Op.getOperand(4);
12041     return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
12042   }
12043   //int_gather_mask(v1, mask, index, base, scale);
12044   case Intrinsic::x86_avx512_gather_qps_mask_512:
12045   case Intrinsic::x86_avx512_gather_qpd_mask_512:
12046   case Intrinsic::x86_avx512_gather_dpd_mask_512:
12047   case Intrinsic::x86_avx512_gather_dps_mask_512:
12048   case Intrinsic::x86_avx512_gather_qpi_mask_512:
12049   case Intrinsic::x86_avx512_gather_qpq_mask_512:
12050   case Intrinsic::x86_avx512_gather_dpi_mask_512:
12051   case Intrinsic::x86_avx512_gather_dpq_mask_512: {
12052     unsigned Opc;
12053     switch (IntNo) {
12054     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12055     case Intrinsic::x86_avx512_gather_qps_mask_512:
12056       Opc = X86::VGATHERQPSZrm; break;
12057     case Intrinsic::x86_avx512_gather_qpd_mask_512:
12058       Opc = X86::VGATHERQPDZrm; break;
12059     case Intrinsic::x86_avx512_gather_dpd_mask_512:
12060       Opc = X86::VGATHERDPDZrm; break;
12061     case Intrinsic::x86_avx512_gather_dps_mask_512:
12062       Opc = X86::VGATHERDPSZrm; break;
12063     case Intrinsic::x86_avx512_gather_qpi_mask_512:
12064       Opc = X86::VPGATHERQDZrm; break;
12065     case Intrinsic::x86_avx512_gather_qpq_mask_512:
12066       Opc = X86::VPGATHERQQZrm; break;
12067     case Intrinsic::x86_avx512_gather_dpi_mask_512:
12068       Opc = X86::VPGATHERDDZrm; break;
12069     case Intrinsic::x86_avx512_gather_dpq_mask_512:
12070       Opc = X86::VPGATHERDQZrm; break;
12071     }
12072     SDValue Chain = Op.getOperand(0);
12073     SDValue Src   = Op.getOperand(2);
12074     SDValue Mask  = Op.getOperand(3);
12075     SDValue Index = Op.getOperand(4);
12076     SDValue Base  = Op.getOperand(5);
12077     SDValue Scale = Op.getOperand(6);
12078     return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
12079                           Subtarget);
12080   }
12081   //int_scatter(base, index, v1, scale);
12082   case Intrinsic::x86_avx512_scatter_qpd_512:
12083   case Intrinsic::x86_avx512_scatter_qps_512:
12084   case Intrinsic::x86_avx512_scatter_dpd_512:
12085   case Intrinsic::x86_avx512_scatter_qpi_512:
12086   case Intrinsic::x86_avx512_scatter_qpq_512:
12087   case Intrinsic::x86_avx512_scatter_dpq_512:
12088   case Intrinsic::x86_avx512_scatter_dps_512:
12089   case Intrinsic::x86_avx512_scatter_dpi_512: {
12090     unsigned Opc;
12091     switch (IntNo) {
12092     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12093     case Intrinsic::x86_avx512_scatter_qpd_512:
12094       Opc = X86::VSCATTERQPDZmr; break;
12095     case Intrinsic::x86_avx512_scatter_qps_512:
12096       Opc = X86::VSCATTERQPSZmr; break;
12097     case Intrinsic::x86_avx512_scatter_dpd_512:
12098       Opc = X86::VSCATTERDPDZmr; break;
12099     case Intrinsic::x86_avx512_scatter_dps_512:
12100       Opc = X86::VSCATTERDPSZmr; break;
12101     case Intrinsic::x86_avx512_scatter_qpi_512:
12102       Opc = X86::VPSCATTERQDZmr; break;
12103     case Intrinsic::x86_avx512_scatter_qpq_512:
12104       Opc = X86::VPSCATTERQQZmr; break;
12105     case Intrinsic::x86_avx512_scatter_dpq_512:
12106       Opc = X86::VPSCATTERDQZmr; break;
12107     case Intrinsic::x86_avx512_scatter_dpi_512:
12108       Opc = X86::VPSCATTERDDZmr; break;
12109     }
12110     SDValue Chain = Op.getOperand(0);
12111     SDValue Base  = Op.getOperand(2);
12112     SDValue Index = Op.getOperand(3);
12113     SDValue Src   = Op.getOperand(4);
12114     SDValue Scale = Op.getOperand(5);
12115     return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
12116   }
12117   //int_scatter_mask(base, mask, index, v1, scale);
12118   case Intrinsic::x86_avx512_scatter_qps_mask_512:
12119   case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12120   case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12121   case Intrinsic::x86_avx512_scatter_dps_mask_512:
12122   case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12123   case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12124   case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12125   case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
12126     unsigned Opc;
12127     switch (IntNo) {
12128     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
12129     case Intrinsic::x86_avx512_scatter_qpd_mask_512:
12130       Opc = X86::VSCATTERQPDZmr; break;
12131     case Intrinsic::x86_avx512_scatter_qps_mask_512:
12132       Opc = X86::VSCATTERQPSZmr; break;
12133     case Intrinsic::x86_avx512_scatter_dpd_mask_512:
12134       Opc = X86::VSCATTERDPDZmr; break;
12135     case Intrinsic::x86_avx512_scatter_dps_mask_512:
12136       Opc = X86::VSCATTERDPSZmr; break;
12137     case Intrinsic::x86_avx512_scatter_qpi_mask_512:
12138       Opc = X86::VPSCATTERQDZmr; break;
12139     case Intrinsic::x86_avx512_scatter_qpq_mask_512:
12140       Opc = X86::VPSCATTERQQZmr; break;
12141     case Intrinsic::x86_avx512_scatter_dpq_mask_512:
12142       Opc = X86::VPSCATTERDQZmr; break;
12143     case Intrinsic::x86_avx512_scatter_dpi_mask_512:
12144       Opc = X86::VPSCATTERDDZmr; break;
12145     }
12146     SDValue Chain = Op.getOperand(0);
12147     SDValue Base  = Op.getOperand(2);
12148     SDValue Mask  = Op.getOperand(3);
12149     SDValue Index = Op.getOperand(4);
12150     SDValue Src   = Op.getOperand(5);
12151     SDValue Scale = Op.getOperand(6);
12152     return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
12153   }
12154   // XTEST intrinsics.
12155   case Intrinsic::x86_xtest: {
12156     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
12157     SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
12158     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
12159                                 DAG.getConstant(X86::COND_NE, MVT::i8),
12160                                 InTrans);
12161     SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
12162     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12163                        Ret, SDValue(InTrans.getNode(), 1));
12164   }
12165   }
12166 }
12167
12168 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12169                                            SelectionDAG &DAG) const {
12170   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12171   MFI->setReturnAddressIsTaken(true);
12172
12173   if (verifyReturnAddressArgumentIsConstant(Op, DAG))
12174     return SDValue();
12175
12176   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12177   SDLoc dl(Op);
12178   EVT PtrVT = getPointerTy();
12179
12180   if (Depth > 0) {
12181     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
12182     const X86RegisterInfo *RegInfo =
12183       static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12184     SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
12185     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12186                        DAG.getNode(ISD::ADD, dl, PtrVT,
12187                                    FrameAddr, Offset),
12188                        MachinePointerInfo(), false, false, false, 0);
12189   }
12190
12191   // Just load the return address.
12192   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
12193   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12194                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
12195 }
12196
12197 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
12198   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12199   MFI->setFrameAddressIsTaken(true);
12200
12201   EVT VT = Op.getValueType();
12202   SDLoc dl(Op);  // FIXME probably not meaningful
12203   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12204   const X86RegisterInfo *RegInfo =
12205     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12206   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12207   assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
12208           (FrameReg == X86::EBP && VT == MVT::i32)) &&
12209          "Invalid Frame Register!");
12210   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
12211   while (Depth--)
12212     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12213                             MachinePointerInfo(),
12214                             false, false, false, 0);
12215   return FrameAddr;
12216 }
12217
12218 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
12219                                                      SelectionDAG &DAG) const {
12220   const X86RegisterInfo *RegInfo =
12221     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12222   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
12223 }
12224
12225 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
12226   SDValue Chain     = Op.getOperand(0);
12227   SDValue Offset    = Op.getOperand(1);
12228   SDValue Handler   = Op.getOperand(2);
12229   SDLoc dl      (Op);
12230
12231   EVT PtrVT = getPointerTy();
12232   const X86RegisterInfo *RegInfo =
12233     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12234   unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12235   assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12236           (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12237          "Invalid Frame Register!");
12238   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12239   unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
12240
12241   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
12242                                  DAG.getIntPtrConstant(RegInfo->getSlotSize()));
12243   StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
12244   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12245                        false, false, 0);
12246   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
12247
12248   return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12249                      DAG.getRegister(StoreAddrReg, PtrVT));
12250 }
12251
12252 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12253                                                SelectionDAG &DAG) const {
12254   SDLoc DL(Op);
12255   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12256                      DAG.getVTList(MVT::i32, MVT::Other),
12257                      Op.getOperand(0), Op.getOperand(1));
12258 }
12259
12260 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12261                                                 SelectionDAG &DAG) const {
12262   SDLoc DL(Op);
12263   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12264                      Op.getOperand(0), Op.getOperand(1));
12265 }
12266
12267 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
12268   return Op.getOperand(0);
12269 }
12270
12271 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12272                                                 SelectionDAG &DAG) const {
12273   SDValue Root = Op.getOperand(0);
12274   SDValue Trmp = Op.getOperand(1); // trampoline
12275   SDValue FPtr = Op.getOperand(2); // nested function
12276   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
12277   SDLoc dl (Op);
12278
12279   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
12280   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12281
12282   if (Subtarget->is64Bit()) {
12283     SDValue OutChains[6];
12284
12285     // Large code-model.
12286     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
12287     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
12288
12289     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12290     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
12291
12292     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12293
12294     // Load the pointer to the nested function into R11.
12295     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
12296     SDValue Addr = Trmp;
12297     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12298                                 Addr, MachinePointerInfo(TrmpAddr),
12299                                 false, false, 0);
12300
12301     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12302                        DAG.getConstant(2, MVT::i64));
12303     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12304                                 MachinePointerInfo(TrmpAddr, 2),
12305                                 false, false, 2);
12306
12307     // Load the 'nest' parameter value into R10.
12308     // R10 is specified in X86CallingConv.td
12309     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
12310     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12311                        DAG.getConstant(10, MVT::i64));
12312     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12313                                 Addr, MachinePointerInfo(TrmpAddr, 10),
12314                                 false, false, 0);
12315
12316     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12317                        DAG.getConstant(12, MVT::i64));
12318     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12319                                 MachinePointerInfo(TrmpAddr, 12),
12320                                 false, false, 2);
12321
12322     // Jump to the nested function.
12323     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
12324     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12325                        DAG.getConstant(20, MVT::i64));
12326     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
12327                                 Addr, MachinePointerInfo(TrmpAddr, 20),
12328                                 false, false, 0);
12329
12330     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
12331     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12332                        DAG.getConstant(22, MVT::i64));
12333     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
12334                                 MachinePointerInfo(TrmpAddr, 22),
12335                                 false, false, 0);
12336
12337     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
12338   } else {
12339     const Function *Func =
12340       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
12341     CallingConv::ID CC = Func->getCallingConv();
12342     unsigned NestReg;
12343
12344     switch (CC) {
12345     default:
12346       llvm_unreachable("Unsupported calling convention");
12347     case CallingConv::C:
12348     case CallingConv::X86_StdCall: {
12349       // Pass 'nest' parameter in ECX.
12350       // Must be kept in sync with X86CallingConv.td
12351       NestReg = X86::ECX;
12352
12353       // Check that ECX wasn't needed by an 'inreg' parameter.
12354       FunctionType *FTy = Func->getFunctionType();
12355       const AttributeSet &Attrs = Func->getAttributes();
12356
12357       if (!Attrs.isEmpty() && !Func->isVarArg()) {
12358         unsigned InRegCount = 0;
12359         unsigned Idx = 1;
12360
12361         for (FunctionType::param_iterator I = FTy->param_begin(),
12362              E = FTy->param_end(); I != E; ++I, ++Idx)
12363           if (Attrs.hasAttribute(Idx, Attribute::InReg))
12364             // FIXME: should only count parameters that are lowered to integers.
12365             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
12366
12367         if (InRegCount > 2) {
12368           report_fatal_error("Nest register in use - reduce number of inreg"
12369                              " parameters!");
12370         }
12371       }
12372       break;
12373     }
12374     case CallingConv::X86_FastCall:
12375     case CallingConv::X86_ThisCall:
12376     case CallingConv::Fast:
12377       // Pass 'nest' parameter in EAX.
12378       // Must be kept in sync with X86CallingConv.td
12379       NestReg = X86::EAX;
12380       break;
12381     }
12382
12383     SDValue OutChains[4];
12384     SDValue Addr, Disp;
12385
12386     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12387                        DAG.getConstant(10, MVT::i32));
12388     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
12389
12390     // This is storing the opcode for MOV32ri.
12391     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
12392     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
12393     OutChains[0] = DAG.getStore(Root, dl,
12394                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
12395                                 Trmp, MachinePointerInfo(TrmpAddr),
12396                                 false, false, 0);
12397
12398     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12399                        DAG.getConstant(1, MVT::i32));
12400     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12401                                 MachinePointerInfo(TrmpAddr, 1),
12402                                 false, false, 1);
12403
12404     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
12405     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12406                        DAG.getConstant(5, MVT::i32));
12407     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
12408                                 MachinePointerInfo(TrmpAddr, 5),
12409                                 false, false, 1);
12410
12411     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12412                        DAG.getConstant(6, MVT::i32));
12413     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12414                                 MachinePointerInfo(TrmpAddr, 6),
12415                                 false, false, 1);
12416
12417     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
12418   }
12419 }
12420
12421 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12422                                             SelectionDAG &DAG) const {
12423   /*
12424    The rounding mode is in bits 11:10 of FPSR, and has the following
12425    settings:
12426      00 Round to nearest
12427      01 Round to -inf
12428      10 Round to +inf
12429      11 Round to 0
12430
12431   FLT_ROUNDS, on the other hand, expects the following:
12432     -1 Undefined
12433      0 Round to 0
12434      1 Round to nearest
12435      2 Round to +inf
12436      3 Round to -inf
12437
12438   To perform the conversion, we do:
12439     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12440   */
12441
12442   MachineFunction &MF = DAG.getMachineFunction();
12443   const TargetMachine &TM = MF.getTarget();
12444   const TargetFrameLowering &TFI = *TM.getFrameLowering();
12445   unsigned StackAlignment = TFI.getStackAlignment();
12446   MVT VT = Op.getSimpleValueType();
12447   SDLoc DL(Op);
12448
12449   // Save FP Control Word to stack slot
12450   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
12451   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
12452
12453   MachineMemOperand *MMO =
12454    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12455                            MachineMemOperand::MOStore, 2, 2);
12456
12457   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12458   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12459                                           DAG.getVTList(MVT::Other),
12460                                           Ops, array_lengthof(Ops), MVT::i16,
12461                                           MMO);
12462
12463   // Load FP Control Word from stack slot
12464   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
12465                             MachinePointerInfo(), false, false, false, 0);
12466
12467   // Transform as necessary
12468   SDValue CWD1 =
12469     DAG.getNode(ISD::SRL, DL, MVT::i16,
12470                 DAG.getNode(ISD::AND, DL, MVT::i16,
12471                             CWD, DAG.getConstant(0x800, MVT::i16)),
12472                 DAG.getConstant(11, MVT::i8));
12473   SDValue CWD2 =
12474     DAG.getNode(ISD::SRL, DL, MVT::i16,
12475                 DAG.getNode(ISD::AND, DL, MVT::i16,
12476                             CWD, DAG.getConstant(0x400, MVT::i16)),
12477                 DAG.getConstant(9, MVT::i8));
12478
12479   SDValue RetVal =
12480     DAG.getNode(ISD::AND, DL, MVT::i16,
12481                 DAG.getNode(ISD::ADD, DL, MVT::i16,
12482                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
12483                             DAG.getConstant(1, MVT::i16)),
12484                 DAG.getConstant(3, MVT::i16));
12485
12486   return DAG.getNode((VT.getSizeInBits() < 16 ?
12487                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
12488 }
12489
12490 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
12491   MVT VT = Op.getSimpleValueType();
12492   EVT OpVT = VT;
12493   unsigned NumBits = VT.getSizeInBits();
12494   SDLoc dl(Op);
12495
12496   Op = Op.getOperand(0);
12497   if (VT == MVT::i8) {
12498     // Zero extend to i32 since there is not an i8 bsr.
12499     OpVT = MVT::i32;
12500     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12501   }
12502
12503   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
12504   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12505   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12506
12507   // If src is zero (i.e. bsr sets ZF), returns NumBits.
12508   SDValue Ops[] = {
12509     Op,
12510     DAG.getConstant(NumBits+NumBits-1, OpVT),
12511     DAG.getConstant(X86::COND_E, MVT::i8),
12512     Op.getValue(1)
12513   };
12514   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
12515
12516   // Finally xor with NumBits-1.
12517   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12518
12519   if (VT == MVT::i8)
12520     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12521   return Op;
12522 }
12523
12524 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
12525   MVT VT = Op.getSimpleValueType();
12526   EVT OpVT = VT;
12527   unsigned NumBits = VT.getSizeInBits();
12528   SDLoc dl(Op);
12529
12530   Op = Op.getOperand(0);
12531   if (VT == MVT::i8) {
12532     // Zero extend to i32 since there is not an i8 bsr.
12533     OpVT = MVT::i32;
12534     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12535   }
12536
12537   // Issue a bsr (scan bits in reverse).
12538   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12539   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12540
12541   // And xor with NumBits-1.
12542   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12543
12544   if (VT == MVT::i8)
12545     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12546   return Op;
12547 }
12548
12549 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
12550   MVT VT = Op.getSimpleValueType();
12551   unsigned NumBits = VT.getSizeInBits();
12552   SDLoc dl(Op);
12553   Op = Op.getOperand(0);
12554
12555   // Issue a bsf (scan bits forward) which also sets EFLAGS.
12556   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
12557   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
12558
12559   // If src is zero (i.e. bsf sets ZF), returns NumBits.
12560   SDValue Ops[] = {
12561     Op,
12562     DAG.getConstant(NumBits, VT),
12563     DAG.getConstant(X86::COND_E, MVT::i8),
12564     Op.getValue(1)
12565   };
12566   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
12567 }
12568
12569 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12570 // ones, and then concatenate the result back.
12571 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
12572   MVT VT = Op.getSimpleValueType();
12573
12574   assert(VT.is256BitVector() && VT.isInteger() &&
12575          "Unsupported value type for operation");
12576
12577   unsigned NumElems = VT.getVectorNumElements();
12578   SDLoc dl(Op);
12579
12580   // Extract the LHS vectors
12581   SDValue LHS = Op.getOperand(0);
12582   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12583   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
12584
12585   // Extract the RHS vectors
12586   SDValue RHS = Op.getOperand(1);
12587   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12588   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
12589
12590   MVT EltVT = VT.getVectorElementType();
12591   MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12592
12593   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12594                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12595                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12596 }
12597
12598 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
12599   assert(Op.getSimpleValueType().is256BitVector() &&
12600          Op.getSimpleValueType().isInteger() &&
12601          "Only handle AVX 256-bit vector integer operation");
12602   return Lower256IntArith(Op, DAG);
12603 }
12604
12605 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
12606   assert(Op.getSimpleValueType().is256BitVector() &&
12607          Op.getSimpleValueType().isInteger() &&
12608          "Only handle AVX 256-bit vector integer operation");
12609   return Lower256IntArith(Op, DAG);
12610 }
12611
12612 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12613                         SelectionDAG &DAG) {
12614   SDLoc dl(Op);
12615   MVT VT = Op.getSimpleValueType();
12616
12617   // Decompose 256-bit ops into smaller 128-bit ops.
12618   if (VT.is256BitVector() && !Subtarget->hasInt256())
12619     return Lower256IntArith(Op, DAG);
12620
12621   SDValue A = Op.getOperand(0);
12622   SDValue B = Op.getOperand(1);
12623
12624   // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12625   if (VT == MVT::v4i32) {
12626     assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12627            "Should not custom lower when pmuldq is available!");
12628
12629     // Extract the odd parts.
12630     static const int UnpackMask[] = { 1, -1, 3, -1 };
12631     SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12632     SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12633
12634     // Multiply the even parts.
12635     SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12636     // Now multiply odd parts.
12637     SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12638
12639     Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12640     Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12641
12642     // Merge the two vectors back together with a shuffle. This expands into 2
12643     // shuffles.
12644     static const int ShufMask[] = { 0, 4, 2, 6 };
12645     return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12646   }
12647
12648   assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12649          "Only know how to lower V2I64/V4I64/V8I64 multiply");
12650
12651   //  Ahi = psrlqi(a, 32);
12652   //  Bhi = psrlqi(b, 32);
12653   //
12654   //  AloBlo = pmuludq(a, b);
12655   //  AloBhi = pmuludq(a, Bhi);
12656   //  AhiBlo = pmuludq(Ahi, b);
12657
12658   //  AloBhi = psllqi(AloBhi, 32);
12659   //  AhiBlo = psllqi(AhiBlo, 32);
12660   //  return AloBlo + AloBhi + AhiBlo;
12661
12662   SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12663   SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
12664
12665   // Bit cast to 32-bit vectors for MULUDQ
12666   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12667                                   (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
12668   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12669   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12670   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12671   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
12672
12673   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12674   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12675   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
12676
12677   AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12678   AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
12679
12680   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
12681   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
12682 }
12683
12684 static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
12685   MVT VT = Op.getSimpleValueType();
12686   MVT EltTy = VT.getVectorElementType();
12687   unsigned NumElts = VT.getVectorNumElements();
12688   SDValue N0 = Op.getOperand(0);
12689   SDLoc dl(Op);
12690
12691   // Lower sdiv X, pow2-const.
12692   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12693   if (!C)
12694     return SDValue();
12695
12696   APInt SplatValue, SplatUndef;
12697   unsigned SplatBitSize;
12698   bool HasAnyUndefs;
12699   if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12700                           HasAnyUndefs) ||
12701       EltTy.getSizeInBits() < SplatBitSize)
12702     return SDValue();
12703
12704   if ((SplatValue != 0) &&
12705       (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
12706     unsigned Lg2 = SplatValue.countTrailingZeros();
12707     // Splat the sign bit.
12708     SmallVector<SDValue, 16> Sz(NumElts,
12709                                 DAG.getConstant(EltTy.getSizeInBits() - 1,
12710                                                 EltTy));
12711     SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12712                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12713                                           NumElts));
12714     // Add (N0 < 0) ? abs2 - 1 : 0;
12715     SmallVector<SDValue, 16> Amt(NumElts,
12716                                  DAG.getConstant(EltTy.getSizeInBits() - Lg2,
12717                                                  EltTy));
12718     SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12719                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12720                                           NumElts));
12721     SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
12722     SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
12723     SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12724                               DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12725                                           NumElts));
12726
12727     // If we're dividing by a positive value, we're done.  Otherwise, we must
12728     // negate the result.
12729     if (SplatValue.isNonNegative())
12730       return SRA;
12731
12732     SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12733     SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12734     return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12735   }
12736   return SDValue();
12737 }
12738
12739 static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12740                                          const X86Subtarget *Subtarget) {
12741   MVT VT = Op.getSimpleValueType();
12742   SDLoc dl(Op);
12743   SDValue R = Op.getOperand(0);
12744   SDValue Amt = Op.getOperand(1);
12745
12746   // Optimize shl/srl/sra with constant shift amount.
12747   if (isSplatVector(Amt.getNode())) {
12748     SDValue SclrAmt = Amt->getOperand(0);
12749     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12750       uint64_t ShiftAmt = C->getZExtValue();
12751
12752       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
12753           (Subtarget->hasInt256() &&
12754            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12755           (Subtarget->hasAVX512() &&
12756            (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12757         if (Op.getOpcode() == ISD::SHL)
12758           return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12759                                             DAG);
12760         if (Op.getOpcode() == ISD::SRL)
12761           return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12762                                             DAG);
12763         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
12764           return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12765                                             DAG);
12766       }
12767
12768       if (VT == MVT::v16i8) {
12769         if (Op.getOpcode() == ISD::SHL) {
12770           // Make a large shift.
12771           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12772                                                    MVT::v8i16, R, ShiftAmt,
12773                                                    DAG);
12774           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12775           // Zero out the rightmost bits.
12776           SmallVector<SDValue, 16> V(16,
12777                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12778                                                      MVT::i8));
12779           return DAG.getNode(ISD::AND, dl, VT, SHL,
12780                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12781         }
12782         if (Op.getOpcode() == ISD::SRL) {
12783           // Make a large shift.
12784           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12785                                                    MVT::v8i16, R, ShiftAmt,
12786                                                    DAG);
12787           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12788           // Zero out the leftmost bits.
12789           SmallVector<SDValue, 16> V(16,
12790                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12791                                                      MVT::i8));
12792           return DAG.getNode(ISD::AND, dl, VT, SRL,
12793                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
12794         }
12795         if (Op.getOpcode() == ISD::SRA) {
12796           if (ShiftAmt == 7) {
12797             // R s>> 7  ===  R s< 0
12798             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12799             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12800           }
12801
12802           // R s>> a === ((R u>> a) ^ m) - m
12803           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12804           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12805                                                          MVT::i8));
12806           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
12807           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12808           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12809           return Res;
12810         }
12811         llvm_unreachable("Unknown shift opcode.");
12812       }
12813
12814       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
12815         if (Op.getOpcode() == ISD::SHL) {
12816           // Make a large shift.
12817           SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12818                                                    MVT::v16i16, R, ShiftAmt,
12819                                                    DAG);
12820           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12821           // Zero out the rightmost bits.
12822           SmallVector<SDValue, 32> V(32,
12823                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
12824                                                      MVT::i8));
12825           return DAG.getNode(ISD::AND, dl, VT, SHL,
12826                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12827         }
12828         if (Op.getOpcode() == ISD::SRL) {
12829           // Make a large shift.
12830           SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12831                                                    MVT::v16i16, R, ShiftAmt,
12832                                                    DAG);
12833           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12834           // Zero out the leftmost bits.
12835           SmallVector<SDValue, 32> V(32,
12836                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12837                                                      MVT::i8));
12838           return DAG.getNode(ISD::AND, dl, VT, SRL,
12839                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12840         }
12841         if (Op.getOpcode() == ISD::SRA) {
12842           if (ShiftAmt == 7) {
12843             // R s>> 7  ===  R s< 0
12844             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
12845             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
12846           }
12847
12848           // R s>> a === ((R u>> a) ^ m) - m
12849           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12850           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12851                                                          MVT::i8));
12852           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12853           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12854           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12855           return Res;
12856         }
12857         llvm_unreachable("Unknown shift opcode.");
12858       }
12859     }
12860   }
12861
12862   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12863   if (!Subtarget->is64Bit() &&
12864       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12865       Amt.getOpcode() == ISD::BITCAST &&
12866       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12867     Amt = Amt.getOperand(0);
12868     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
12869                      VT.getVectorNumElements();
12870     unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12871     uint64_t ShiftAmt = 0;
12872     for (unsigned i = 0; i != Ratio; ++i) {
12873       ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12874       if (C == 0)
12875         return SDValue();
12876       // 6 == Log2(64)
12877       ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12878     }
12879     // Check remaining shift amounts.
12880     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12881       uint64_t ShAmt = 0;
12882       for (unsigned j = 0; j != Ratio; ++j) {
12883         ConstantSDNode *C =
12884           dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12885         if (C == 0)
12886           return SDValue();
12887         // 6 == Log2(64)
12888         ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12889       }
12890       if (ShAmt != ShiftAmt)
12891         return SDValue();
12892     }
12893     switch (Op.getOpcode()) {
12894     default:
12895       llvm_unreachable("Unknown shift opcode!");
12896     case ISD::SHL:
12897       return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12898                                         DAG);
12899     case ISD::SRL:
12900       return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12901                                         DAG);
12902     case ISD::SRA:
12903       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12904                                         DAG);
12905     }
12906   }
12907
12908   return SDValue();
12909 }
12910
12911 static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12912                                         const X86Subtarget* Subtarget) {
12913   MVT VT = Op.getSimpleValueType();
12914   SDLoc dl(Op);
12915   SDValue R = Op.getOperand(0);
12916   SDValue Amt = Op.getOperand(1);
12917
12918   if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12919       VT == MVT::v4i32 || VT == MVT::v8i16 ||
12920       (Subtarget->hasInt256() &&
12921        ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
12922         VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12923        (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
12924     SDValue BaseShAmt;
12925     EVT EltVT = VT.getVectorElementType();
12926
12927     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12928       unsigned NumElts = VT.getVectorNumElements();
12929       unsigned i, j;
12930       for (i = 0; i != NumElts; ++i) {
12931         if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12932           continue;
12933         break;
12934       }
12935       for (j = i; j != NumElts; ++j) {
12936         SDValue Arg = Amt.getOperand(j);
12937         if (Arg.getOpcode() == ISD::UNDEF) continue;
12938         if (Arg != Amt.getOperand(i))
12939           break;
12940       }
12941       if (i != NumElts && j == NumElts)
12942         BaseShAmt = Amt.getOperand(i);
12943     } else {
12944       if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12945         Amt = Amt.getOperand(0);
12946       if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12947                cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12948         SDValue InVec = Amt.getOperand(0);
12949         if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12950           unsigned NumElts = InVec.getValueType().getVectorNumElements();
12951           unsigned i = 0;
12952           for (; i != NumElts; ++i) {
12953             SDValue Arg = InVec.getOperand(i);
12954             if (Arg.getOpcode() == ISD::UNDEF) continue;
12955             BaseShAmt = Arg;
12956             break;
12957           }
12958         } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12959            if (ConstantSDNode *C =
12960                dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12961              unsigned SplatIdx =
12962                cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12963              if (C->getZExtValue() == SplatIdx)
12964                BaseShAmt = InVec.getOperand(1);
12965            }
12966         }
12967         if (BaseShAmt.getNode() == 0)
12968           BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12969                                   DAG.getIntPtrConstant(0));
12970       }
12971     }
12972
12973     if (BaseShAmt.getNode()) {
12974       if (EltVT.bitsGT(MVT::i32))
12975         BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12976       else if (EltVT.bitsLT(MVT::i32))
12977         BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12978
12979       switch (Op.getOpcode()) {
12980       default:
12981         llvm_unreachable("Unknown shift opcode!");
12982       case ISD::SHL:
12983         switch (VT.SimpleTy) {
12984         default: return SDValue();
12985         case MVT::v2i64:
12986         case MVT::v4i32:
12987         case MVT::v8i16:
12988         case MVT::v4i64:
12989         case MVT::v8i32:
12990         case MVT::v16i16:
12991         case MVT::v16i32:
12992         case MVT::v8i64:
12993           return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12994         }
12995       case ISD::SRA:
12996         switch (VT.SimpleTy) {
12997         default: return SDValue();
12998         case MVT::v4i32:
12999         case MVT::v8i16:
13000         case MVT::v8i32:
13001         case MVT::v16i16:
13002         case MVT::v16i32:
13003         case MVT::v8i64:
13004           return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
13005         }
13006       case ISD::SRL:
13007         switch (VT.SimpleTy) {
13008         default: return SDValue();
13009         case MVT::v2i64:
13010         case MVT::v4i32:
13011         case MVT::v8i16:
13012         case MVT::v4i64:
13013         case MVT::v8i32:
13014         case MVT::v16i16:
13015         case MVT::v16i32:
13016         case MVT::v8i64:
13017           return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
13018         }
13019       }
13020     }
13021   }
13022
13023   // Special case in 32-bit mode, where i64 is expanded into high and low parts.
13024   if (!Subtarget->is64Bit() &&
13025       (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
13026       (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
13027       Amt.getOpcode() == ISD::BITCAST &&
13028       Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
13029     Amt = Amt.getOperand(0);
13030     unsigned Ratio = Amt.getSimpleValueType().getVectorNumElements() /
13031                      VT.getVectorNumElements();
13032     std::vector<SDValue> Vals(Ratio);
13033     for (unsigned i = 0; i != Ratio; ++i)
13034       Vals[i] = Amt.getOperand(i);
13035     for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
13036       for (unsigned j = 0; j != Ratio; ++j)
13037         if (Vals[j] != Amt.getOperand(i + j))
13038           return SDValue();
13039     }
13040     switch (Op.getOpcode()) {
13041     default:
13042       llvm_unreachable("Unknown shift opcode!");
13043     case ISD::SHL:
13044       return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
13045     case ISD::SRL:
13046       return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
13047     case ISD::SRA:
13048       return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
13049     }
13050   }
13051
13052   return SDValue();
13053 }
13054
13055 static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
13056                           SelectionDAG &DAG) {
13057
13058   MVT VT = Op.getSimpleValueType();
13059   SDLoc dl(Op);
13060   SDValue R = Op.getOperand(0);
13061   SDValue Amt = Op.getOperand(1);
13062   SDValue V;
13063
13064   if (!Subtarget->hasSSE2())
13065     return SDValue();
13066
13067   V = LowerScalarImmediateShift(Op, DAG, Subtarget);
13068   if (V.getNode())
13069     return V;
13070
13071   V = LowerScalarVariableShift(Op, DAG, Subtarget);
13072   if (V.getNode())
13073       return V;
13074
13075   if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
13076     return Op;
13077   // AVX2 has VPSLLV/VPSRAV/VPSRLV.
13078   if (Subtarget->hasInt256()) {
13079     if (Op.getOpcode() == ISD::SRL &&
13080         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13081          VT == MVT::v4i64 || VT == MVT::v8i32))
13082       return Op;
13083     if (Op.getOpcode() == ISD::SHL &&
13084         (VT == MVT::v2i64 || VT == MVT::v4i32 ||
13085          VT == MVT::v4i64 || VT == MVT::v8i32))
13086       return Op;
13087     if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
13088       return Op;
13089   }
13090
13091   // Lower SHL with variable shift amount.
13092   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
13093     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
13094
13095     Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
13096     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
13097     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
13098     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
13099   }
13100   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
13101     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
13102
13103     // a = a << 5;
13104     Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
13105     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
13106
13107     // Turn 'a' into a mask suitable for VSELECT
13108     SDValue VSelM = DAG.getConstant(0x80, VT);
13109     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13110     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13111
13112     SDValue CM1 = DAG.getConstant(0x0f, VT);
13113     SDValue CM2 = DAG.getConstant(0x3f, VT);
13114
13115     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
13116     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
13117     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
13118     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13119     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13120
13121     // a += a
13122     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13123     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13124     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13125
13126     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
13127     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
13128     M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
13129     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
13130     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
13131
13132     // a += a
13133     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
13134     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
13135     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
13136
13137     // return VSELECT(r, r+r, a);
13138     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
13139                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
13140     return R;
13141   }
13142
13143   // Decompose 256-bit shifts into smaller 128-bit shifts.
13144   if (VT.is256BitVector()) {
13145     unsigned NumElems = VT.getVectorNumElements();
13146     MVT EltVT = VT.getVectorElementType();
13147     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13148
13149     // Extract the two vectors
13150     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
13151     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
13152
13153     // Recreate the shift amount vectors
13154     SDValue Amt1, Amt2;
13155     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
13156       // Constant shift amount
13157       SmallVector<SDValue, 4> Amt1Csts;
13158       SmallVector<SDValue, 4> Amt2Csts;
13159       for (unsigned i = 0; i != NumElems/2; ++i)
13160         Amt1Csts.push_back(Amt->getOperand(i));
13161       for (unsigned i = NumElems/2; i != NumElems; ++i)
13162         Amt2Csts.push_back(Amt->getOperand(i));
13163
13164       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13165                                  &Amt1Csts[0], NumElems/2);
13166       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13167                                  &Amt2Csts[0], NumElems/2);
13168     } else {
13169       // Variable shift amount
13170       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13171       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
13172     }
13173
13174     // Issue new vector shifts for the smaller types
13175     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13176     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13177
13178     // Concatenate the result back
13179     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13180   }
13181
13182   return SDValue();
13183 }
13184
13185 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
13186   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13187   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
13188   // looks for this combo and may remove the "setcc" instruction if the "setcc"
13189   // has only one use.
13190   SDNode *N = Op.getNode();
13191   SDValue LHS = N->getOperand(0);
13192   SDValue RHS = N->getOperand(1);
13193   unsigned BaseOp = 0;
13194   unsigned Cond = 0;
13195   SDLoc DL(Op);
13196   switch (Op.getOpcode()) {
13197   default: llvm_unreachable("Unknown ovf instruction!");
13198   case ISD::SADDO:
13199     // A subtract of one will be selected as a INC. Note that INC doesn't
13200     // set CF, so we can't do this for UADDO.
13201     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13202       if (C->isOne()) {
13203         BaseOp = X86ISD::INC;
13204         Cond = X86::COND_O;
13205         break;
13206       }
13207     BaseOp = X86ISD::ADD;
13208     Cond = X86::COND_O;
13209     break;
13210   case ISD::UADDO:
13211     BaseOp = X86ISD::ADD;
13212     Cond = X86::COND_B;
13213     break;
13214   case ISD::SSUBO:
13215     // A subtract of one will be selected as a DEC. Note that DEC doesn't
13216     // set CF, so we can't do this for USUBO.
13217     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13218       if (C->isOne()) {
13219         BaseOp = X86ISD::DEC;
13220         Cond = X86::COND_O;
13221         break;
13222       }
13223     BaseOp = X86ISD::SUB;
13224     Cond = X86::COND_O;
13225     break;
13226   case ISD::USUBO:
13227     BaseOp = X86ISD::SUB;
13228     Cond = X86::COND_B;
13229     break;
13230   case ISD::SMULO:
13231     BaseOp = X86ISD::SMUL;
13232     Cond = X86::COND_O;
13233     break;
13234   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13235     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13236                                  MVT::i32);
13237     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
13238
13239     SDValue SetCC =
13240       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13241                   DAG.getConstant(X86::COND_O, MVT::i32),
13242                   SDValue(Sum.getNode(), 2));
13243
13244     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13245   }
13246   }
13247
13248   // Also sets EFLAGS.
13249   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
13250   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
13251
13252   SDValue SetCC =
13253     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13254                 DAG.getConstant(Cond, MVT::i32),
13255                 SDValue(Sum.getNode(), 1));
13256
13257   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
13258 }
13259
13260 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13261                                                   SelectionDAG &DAG) const {
13262   SDLoc dl(Op);
13263   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13264   MVT VT = Op.getSimpleValueType();
13265
13266   if (!Subtarget->hasSSE2() || !VT.isVector())
13267     return SDValue();
13268
13269   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13270                       ExtraVT.getScalarType().getSizeInBits();
13271
13272   switch (VT.SimpleTy) {
13273     default: return SDValue();
13274     case MVT::v8i32:
13275     case MVT::v16i16:
13276       if (!Subtarget->hasFp256())
13277         return SDValue();
13278       if (!Subtarget->hasInt256()) {
13279         // needs to be split
13280         unsigned NumElems = VT.getVectorNumElements();
13281
13282         // Extract the LHS vectors
13283         SDValue LHS = Op.getOperand(0);
13284         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13285         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
13286
13287         MVT EltVT = VT.getVectorElementType();
13288         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
13289
13290         EVT ExtraEltVT = ExtraVT.getVectorElementType();
13291         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
13292         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13293                                    ExtraNumElems/2);
13294         SDValue Extra = DAG.getValueType(ExtraVT);
13295
13296         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13297         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
13298
13299         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
13300       }
13301       // fall through
13302     case MVT::v4i32:
13303     case MVT::v8i16: {
13304       SDValue Op0 = Op.getOperand(0);
13305       SDValue Op00 = Op0.getOperand(0);
13306       SDValue Tmp1;
13307       // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13308       if (Op0.getOpcode() == ISD::BITCAST &&
13309           Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
13310         // (sext (vzext x)) -> (vsext x)
13311         Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
13312         if (Tmp1.getNode()) {
13313           EVT ExtraEltVT = ExtraVT.getVectorElementType();
13314           // This folding is only valid when the in-reg type is a vector of i8,
13315           // i16, or i32.
13316           if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
13317               ExtraEltVT == MVT::i32) {
13318             SDValue Tmp1Op0 = Tmp1.getOperand(0);
13319             assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13320                    "This optimization is invalid without a VZEXT.");
13321             return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13322           }
13323           Op0 = Tmp1;
13324         }
13325       }
13326
13327       // If the above didn't work, then just use Shift-Left + Shift-Right.
13328       Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13329                                         DAG);
13330       return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13331                                         DAG);
13332     }
13333   }
13334 }
13335
13336 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13337                                  SelectionDAG &DAG) {
13338   SDLoc dl(Op);
13339   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13340     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13341   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13342     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13343
13344   // The only fence that needs an instruction is a sequentially-consistent
13345   // cross-thread fence.
13346   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13347     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13348     // no-sse2). There isn't any reason to disable it if the target processor
13349     // supports it.
13350     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
13351       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13352
13353     SDValue Chain = Op.getOperand(0);
13354     SDValue Zero = DAG.getConstant(0, MVT::i32);
13355     SDValue Ops[] = {
13356       DAG.getRegister(X86::ESP, MVT::i32), // Base
13357       DAG.getTargetConstant(1, MVT::i8),   // Scale
13358       DAG.getRegister(0, MVT::i32),        // Index
13359       DAG.getTargetConstant(0, MVT::i32),  // Disp
13360       DAG.getRegister(0, MVT::i32),        // Segment.
13361       Zero,
13362       Chain
13363     };
13364     SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
13365     return SDValue(Res, 0);
13366   }
13367
13368   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13369   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13370 }
13371
13372 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13373                              SelectionDAG &DAG) {
13374   MVT T = Op.getSimpleValueType();
13375   SDLoc DL(Op);
13376   unsigned Reg = 0;
13377   unsigned size = 0;
13378   switch(T.SimpleTy) {
13379   default: llvm_unreachable("Invalid value type!");
13380   case MVT::i8:  Reg = X86::AL;  size = 1; break;
13381   case MVT::i16: Reg = X86::AX;  size = 2; break;
13382   case MVT::i32: Reg = X86::EAX; size = 4; break;
13383   case MVT::i64:
13384     assert(Subtarget->is64Bit() && "Node not type legal!");
13385     Reg = X86::RAX; size = 8;
13386     break;
13387   }
13388   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
13389                                     Op.getOperand(2), SDValue());
13390   SDValue Ops[] = { cpIn.getValue(0),
13391                     Op.getOperand(1),
13392                     Op.getOperand(3),
13393                     DAG.getTargetConstant(size, MVT::i8),
13394                     cpIn.getValue(1) };
13395   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13396   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13397   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
13398                                            Ops, array_lengthof(Ops), T, MMO);
13399   SDValue cpOut =
13400     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
13401   return cpOut;
13402 }
13403
13404 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13405                                      SelectionDAG &DAG) {
13406   assert(Subtarget->is64Bit() && "Result not type legalized?");
13407   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13408   SDValue TheChain = Op.getOperand(0);
13409   SDLoc dl(Op);
13410   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13411   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13412   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
13413                                    rax.getValue(2));
13414   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13415                             DAG.getConstant(32, MVT::i8));
13416   SDValue Ops[] = {
13417     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
13418     rdx.getValue(1)
13419   };
13420   return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
13421 }
13422
13423 static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13424                             SelectionDAG &DAG) {
13425   MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13426   MVT DstVT = Op.getSimpleValueType();
13427   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
13428          Subtarget->hasMMX() && "Unexpected custom BITCAST");
13429   assert((DstVT == MVT::i64 ||
13430           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
13431          "Unexpected custom BITCAST");
13432   // i64 <=> MMX conversions are Legal.
13433   if (SrcVT==MVT::i64 && DstVT.isVector())
13434     return Op;
13435   if (DstVT==MVT::i64 && SrcVT.isVector())
13436     return Op;
13437   // MMX <=> MMX conversions are Legal.
13438   if (SrcVT.isVector() && DstVT.isVector())
13439     return Op;
13440   // All other conversions need to be expanded.
13441   return SDValue();
13442 }
13443
13444 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
13445   SDNode *Node = Op.getNode();
13446   SDLoc dl(Node);
13447   EVT T = Node->getValueType(0);
13448   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
13449                               DAG.getConstant(0, T), Node->getOperand(2));
13450   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
13451                        cast<AtomicSDNode>(Node)->getMemoryVT(),
13452                        Node->getOperand(0),
13453                        Node->getOperand(1), negOp,
13454                        cast<AtomicSDNode>(Node)->getSrcValue(),
13455                        cast<AtomicSDNode>(Node)->getAlignment(),
13456                        cast<AtomicSDNode>(Node)->getOrdering(),
13457                        cast<AtomicSDNode>(Node)->getSynchScope());
13458 }
13459
13460 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13461   SDNode *Node = Op.getNode();
13462   SDLoc dl(Node);
13463   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13464
13465   // Convert seq_cst store -> xchg
13466   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13467   // FIXME: On 32-bit, store -> fist or movq would be more efficient
13468   //        (The only way to get a 16-byte store is cmpxchg16b)
13469   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13470   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13471       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
13472     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13473                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
13474                                  Node->getOperand(0),
13475                                  Node->getOperand(1), Node->getOperand(2),
13476                                  cast<AtomicSDNode>(Node)->getMemOperand(),
13477                                  cast<AtomicSDNode>(Node)->getOrdering(),
13478                                  cast<AtomicSDNode>(Node)->getSynchScope());
13479     return Swap.getValue(1);
13480   }
13481   // Other atomic stores have a simple pattern.
13482   return Op;
13483 }
13484
13485 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13486   EVT VT = Op.getNode()->getSimpleValueType(0);
13487
13488   // Let legalize expand this if it isn't a legal type yet.
13489   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13490     return SDValue();
13491
13492   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
13493
13494   unsigned Opc;
13495   bool ExtraOp = false;
13496   switch (Op.getOpcode()) {
13497   default: llvm_unreachable("Invalid code");
13498   case ISD::ADDC: Opc = X86ISD::ADD; break;
13499   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13500   case ISD::SUBC: Opc = X86ISD::SUB; break;
13501   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13502   }
13503
13504   if (!ExtraOp)
13505     return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13506                        Op.getOperand(1));
13507   return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
13508                      Op.getOperand(1), Op.getOperand(2));
13509 }
13510
13511 static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13512                             SelectionDAG &DAG) {
13513   assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
13514
13515   // For MacOSX, we want to call an alternative entry point: __sincos_stret,
13516   // which returns the values as { float, float } (in XMM0) or
13517   // { double, double } (which is returned in XMM0, XMM1).
13518   SDLoc dl(Op);
13519   SDValue Arg = Op.getOperand(0);
13520   EVT ArgVT = Arg.getValueType();
13521   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
13522
13523   TargetLowering::ArgListTy Args;
13524   TargetLowering::ArgListEntry Entry;
13525
13526   Entry.Node = Arg;
13527   Entry.Ty = ArgTy;
13528   Entry.isSExt = false;
13529   Entry.isZExt = false;
13530   Args.push_back(Entry);
13531
13532   bool isF64 = ArgVT == MVT::f64;
13533   // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13534   // the small struct {f32, f32} is returned in (eax, edx). For f64,
13535   // the results are returned via SRet in memory.
13536   const char *LibcallName =  isF64 ? "__sincos_stret" : "__sincosf_stret";
13537   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13538   SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
13539
13540   Type *RetTy = isF64
13541     ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13542     : (Type*)VectorType::get(ArgTy, 4);
13543   TargetLowering::
13544     CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13545                          false, false, false, false, 0,
13546                          CallingConv::C, /*isTaillCall=*/false,
13547                          /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13548                          Callee, Args, DAG, dl);
13549   std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
13550
13551   if (isF64)
13552     // Returned in xmm0 and xmm1.
13553     return CallResult.first;
13554
13555   // Returned in bits 0:31 and 32:64 xmm0.
13556   SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13557                                CallResult.first, DAG.getIntPtrConstant(0));
13558   SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13559                                CallResult.first, DAG.getIntPtrConstant(1));
13560   SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13561   return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
13562 }
13563
13564 /// LowerOperation - Provide custom lowering hooks for some operations.
13565 ///
13566 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
13567   switch (Op.getOpcode()) {
13568   default: llvm_unreachable("Should not custom lower this!");
13569   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
13570   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13571   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
13572   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
13573   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
13574   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
13575   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
13576   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
13577   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13578   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
13579   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13580   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
13581   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
13582   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
13583   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
13584   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
13585   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
13586   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
13587   case ISD::SHL_PARTS:
13588   case ISD::SRA_PARTS:
13589   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
13590   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
13591   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
13592   case ISD::TRUNCATE:           return LowerTRUNCATE(Op, DAG);
13593   case ISD::ZERO_EXTEND:        return LowerZERO_EXTEND(Op, Subtarget, DAG);
13594   case ISD::SIGN_EXTEND:        return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13595   case ISD::ANY_EXTEND:         return LowerANY_EXTEND(Op, Subtarget, DAG);
13596   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
13597   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
13598   case ISD::FP_EXTEND:          return LowerFP_EXTEND(Op, DAG);
13599   case ISD::FABS:               return LowerFABS(Op, DAG);
13600   case ISD::FNEG:               return LowerFNEG(Op, DAG);
13601   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
13602   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
13603   case ISD::SETCC:              return LowerSETCC(Op, DAG);
13604   case ISD::SELECT:             return LowerSELECT(Op, DAG);
13605   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
13606   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
13607   case ISD::VASTART:            return LowerVASTART(Op, DAG);
13608   case ISD::VAARG:              return LowerVAARG(Op, DAG);
13609   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
13610   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
13611   case ISD::INTRINSIC_VOID:
13612   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
13613   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
13614   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
13615   case ISD::FRAME_TO_ARGS_OFFSET:
13616                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
13617   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
13618   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
13619   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
13620   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
13621   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
13622   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
13623   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
13624   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
13625   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
13626   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
13627   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
13628   case ISD::SRA:
13629   case ISD::SRL:
13630   case ISD::SHL:                return LowerShift(Op, Subtarget, DAG);
13631   case ISD::SADDO:
13632   case ISD::UADDO:
13633   case ISD::SSUBO:
13634   case ISD::USUBO:
13635   case ISD::SMULO:
13636   case ISD::UMULO:              return LowerXALUO(Op, DAG);
13637   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
13638   case ISD::BITCAST:            return LowerBITCAST(Op, Subtarget, DAG);
13639   case ISD::ADDC:
13640   case ISD::ADDE:
13641   case ISD::SUBC:
13642   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
13643   case ISD::ADD:                return LowerADD(Op, DAG);
13644   case ISD::SUB:                return LowerSUB(Op, DAG);
13645   case ISD::SDIV:               return LowerSDIV(Op, DAG);
13646   case ISD::FSINCOS:            return LowerFSINCOS(Op, Subtarget, DAG);
13647   }
13648 }
13649
13650 static void ReplaceATOMIC_LOAD(SDNode *Node,
13651                                   SmallVectorImpl<SDValue> &Results,
13652                                   SelectionDAG &DAG) {
13653   SDLoc dl(Node);
13654   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13655
13656   // Convert wide load -> cmpxchg8b/cmpxchg16b
13657   // FIXME: On 32-bit, load -> fild or movq would be more efficient
13658   //        (The only way to get a 16-byte load is cmpxchg16b)
13659   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
13660   SDValue Zero = DAG.getConstant(0, VT);
13661   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
13662                                Node->getOperand(0),
13663                                Node->getOperand(1), Zero, Zero,
13664                                cast<AtomicSDNode>(Node)->getMemOperand(),
13665                                cast<AtomicSDNode>(Node)->getOrdering(),
13666                                cast<AtomicSDNode>(Node)->getSynchScope());
13667   Results.push_back(Swap.getValue(0));
13668   Results.push_back(Swap.getValue(1));
13669 }
13670
13671 static void
13672 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
13673                         SelectionDAG &DAG, unsigned NewOp) {
13674   SDLoc dl(Node);
13675   assert (Node->getValueType(0) == MVT::i64 &&
13676           "Only know how to expand i64 atomics");
13677
13678   SDValue Chain = Node->getOperand(0);
13679   SDValue In1 = Node->getOperand(1);
13680   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13681                              Node->getOperand(2), DAG.getIntPtrConstant(0));
13682   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
13683                              Node->getOperand(2), DAG.getIntPtrConstant(1));
13684   SDValue Ops[] = { Chain, In1, In2L, In2H };
13685   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
13686   SDValue Result =
13687     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
13688                             cast<MemSDNode>(Node)->getMemOperand());
13689   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
13690   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
13691   Results.push_back(Result.getValue(2));
13692 }
13693
13694 /// ReplaceNodeResults - Replace a node with an illegal result type
13695 /// with a new node built out of custom code.
13696 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13697                                            SmallVectorImpl<SDValue>&Results,
13698                                            SelectionDAG &DAG) const {
13699   SDLoc dl(N);
13700   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13701   switch (N->getOpcode()) {
13702   default:
13703     llvm_unreachable("Do not know how to custom type legalize this operation!");
13704   case ISD::SIGN_EXTEND_INREG:
13705   case ISD::ADDC:
13706   case ISD::ADDE:
13707   case ISD::SUBC:
13708   case ISD::SUBE:
13709     // We don't want to expand or promote these.
13710     return;
13711   case ISD::FP_TO_SINT:
13712   case ISD::FP_TO_UINT: {
13713     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13714
13715     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13716       return;
13717
13718     std::pair<SDValue,SDValue> Vals =
13719         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
13720     SDValue FIST = Vals.first, StackSlot = Vals.second;
13721     if (FIST.getNode() != 0) {
13722       EVT VT = N->getValueType(0);
13723       // Return a load from the stack slot.
13724       if (StackSlot.getNode() != 0)
13725         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13726                                       MachinePointerInfo(),
13727                                       false, false, false, 0));
13728       else
13729         Results.push_back(FIST);
13730     }
13731     return;
13732   }
13733   case ISD::UINT_TO_FP: {
13734     assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13735     if (N->getOperand(0).getValueType() != MVT::v2i32 ||
13736         N->getValueType(0) != MVT::v2f32)
13737       return;
13738     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13739                                  N->getOperand(0));
13740     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13741                                      MVT::f64);
13742     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13743     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13744                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13745     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13746     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13747     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13748     return;
13749   }
13750   case ISD::FP_ROUND: {
13751     if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13752         return;
13753     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13754     Results.push_back(V);
13755     return;
13756   }
13757   case ISD::READCYCLECOUNTER: {
13758     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13759     SDValue TheChain = N->getOperand(0);
13760     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
13761     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
13762                                      rd.getValue(1));
13763     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
13764                                      eax.getValue(2));
13765     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13766     SDValue Ops[] = { eax, edx };
13767     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13768                                   array_lengthof(Ops)));
13769     Results.push_back(edx.getValue(1));
13770     return;
13771   }
13772   case ISD::ATOMIC_CMP_SWAP: {
13773     EVT T = N->getValueType(0);
13774     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
13775     bool Regs64bit = T == MVT::i128;
13776     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
13777     SDValue cpInL, cpInH;
13778     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13779                         DAG.getConstant(0, HalfT));
13780     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13781                         DAG.getConstant(1, HalfT));
13782     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13783                              Regs64bit ? X86::RAX : X86::EAX,
13784                              cpInL, SDValue());
13785     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13786                              Regs64bit ? X86::RDX : X86::EDX,
13787                              cpInH, cpInL.getValue(1));
13788     SDValue swapInL, swapInH;
13789     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13790                           DAG.getConstant(0, HalfT));
13791     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13792                           DAG.getConstant(1, HalfT));
13793     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13794                                Regs64bit ? X86::RBX : X86::EBX,
13795                                swapInL, cpInH.getValue(1));
13796     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
13797                                Regs64bit ? X86::RCX : X86::ECX,
13798                                swapInH, swapInL.getValue(1));
13799     SDValue Ops[] = { swapInH.getValue(0),
13800                       N->getOperand(1),
13801                       swapInH.getValue(1) };
13802     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
13803     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
13804     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13805                                   X86ISD::LCMPXCHG8_DAG;
13806     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
13807                                              Ops, array_lengthof(Ops), T, MMO);
13808     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13809                                         Regs64bit ? X86::RAX : X86::EAX,
13810                                         HalfT, Result.getValue(1));
13811     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13812                                         Regs64bit ? X86::RDX : X86::EDX,
13813                                         HalfT, cpOutL.getValue(2));
13814     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
13815     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
13816     Results.push_back(cpOutH.getValue(1));
13817     return;
13818   }
13819   case ISD::ATOMIC_LOAD_ADD:
13820   case ISD::ATOMIC_LOAD_AND:
13821   case ISD::ATOMIC_LOAD_NAND:
13822   case ISD::ATOMIC_LOAD_OR:
13823   case ISD::ATOMIC_LOAD_SUB:
13824   case ISD::ATOMIC_LOAD_XOR:
13825   case ISD::ATOMIC_LOAD_MAX:
13826   case ISD::ATOMIC_LOAD_MIN:
13827   case ISD::ATOMIC_LOAD_UMAX:
13828   case ISD::ATOMIC_LOAD_UMIN:
13829   case ISD::ATOMIC_SWAP: {
13830     unsigned Opc;
13831     switch (N->getOpcode()) {
13832     default: llvm_unreachable("Unexpected opcode");
13833     case ISD::ATOMIC_LOAD_ADD:
13834       Opc = X86ISD::ATOMADD64_DAG;
13835       break;
13836     case ISD::ATOMIC_LOAD_AND:
13837       Opc = X86ISD::ATOMAND64_DAG;
13838       break;
13839     case ISD::ATOMIC_LOAD_NAND:
13840       Opc = X86ISD::ATOMNAND64_DAG;
13841       break;
13842     case ISD::ATOMIC_LOAD_OR:
13843       Opc = X86ISD::ATOMOR64_DAG;
13844       break;
13845     case ISD::ATOMIC_LOAD_SUB:
13846       Opc = X86ISD::ATOMSUB64_DAG;
13847       break;
13848     case ISD::ATOMIC_LOAD_XOR:
13849       Opc = X86ISD::ATOMXOR64_DAG;
13850       break;
13851     case ISD::ATOMIC_LOAD_MAX:
13852       Opc = X86ISD::ATOMMAX64_DAG;
13853       break;
13854     case ISD::ATOMIC_LOAD_MIN:
13855       Opc = X86ISD::ATOMMIN64_DAG;
13856       break;
13857     case ISD::ATOMIC_LOAD_UMAX:
13858       Opc = X86ISD::ATOMUMAX64_DAG;
13859       break;
13860     case ISD::ATOMIC_LOAD_UMIN:
13861       Opc = X86ISD::ATOMUMIN64_DAG;
13862       break;
13863     case ISD::ATOMIC_SWAP:
13864       Opc = X86ISD::ATOMSWAP64_DAG;
13865       break;
13866     }
13867     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
13868     return;
13869   }
13870   case ISD::ATOMIC_LOAD:
13871     ReplaceATOMIC_LOAD(N, Results, DAG);
13872   }
13873 }
13874
13875 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13876   switch (Opcode) {
13877   default: return NULL;
13878   case X86ISD::BSF:                return "X86ISD::BSF";
13879   case X86ISD::BSR:                return "X86ISD::BSR";
13880   case X86ISD::SHLD:               return "X86ISD::SHLD";
13881   case X86ISD::SHRD:               return "X86ISD::SHRD";
13882   case X86ISD::FAND:               return "X86ISD::FAND";
13883   case X86ISD::FANDN:              return "X86ISD::FANDN";
13884   case X86ISD::FOR:                return "X86ISD::FOR";
13885   case X86ISD::FXOR:               return "X86ISD::FXOR";
13886   case X86ISD::FSRL:               return "X86ISD::FSRL";
13887   case X86ISD::FILD:               return "X86ISD::FILD";
13888   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
13889   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13890   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13891   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
13892   case X86ISD::FLD:                return "X86ISD::FLD";
13893   case X86ISD::FST:                return "X86ISD::FST";
13894   case X86ISD::CALL:               return "X86ISD::CALL";
13895   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
13896   case X86ISD::BT:                 return "X86ISD::BT";
13897   case X86ISD::CMP:                return "X86ISD::CMP";
13898   case X86ISD::COMI:               return "X86ISD::COMI";
13899   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
13900   case X86ISD::CMPM:               return "X86ISD::CMPM";
13901   case X86ISD::CMPMU:              return "X86ISD::CMPMU";
13902   case X86ISD::SETCC:              return "X86ISD::SETCC";
13903   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
13904   case X86ISD::FSETCC:             return "X86ISD::FSETCC";
13905   case X86ISD::CMOV:               return "X86ISD::CMOV";
13906   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
13907   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
13908   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
13909   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
13910   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
13911   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
13912   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
13913   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
13914   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
13915   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
13916   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
13917   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
13918   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
13919   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
13920   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
13921   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
13922   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
13923   case X86ISD::SUBUS:              return "X86ISD::SUBUS";
13924   case X86ISD::HADD:               return "X86ISD::HADD";
13925   case X86ISD::HSUB:               return "X86ISD::HSUB";
13926   case X86ISD::FHADD:              return "X86ISD::FHADD";
13927   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
13928   case X86ISD::UMAX:               return "X86ISD::UMAX";
13929   case X86ISD::UMIN:               return "X86ISD::UMIN";
13930   case X86ISD::SMAX:               return "X86ISD::SMAX";
13931   case X86ISD::SMIN:               return "X86ISD::SMIN";
13932   case X86ISD::FMAX:               return "X86ISD::FMAX";
13933   case X86ISD::FMIN:               return "X86ISD::FMIN";
13934   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
13935   case X86ISD::FMINC:              return "X86ISD::FMINC";
13936   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
13937   case X86ISD::FRCP:               return "X86ISD::FRCP";
13938   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
13939   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
13940   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
13941   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
13942   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
13943   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
13944   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
13945   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
13946   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
13947   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
13948   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
13949   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
13950   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
13951   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
13952   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
13953   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
13954   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
13955   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
13956   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
13957   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
13958   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
13959   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
13960   case X86ISD::VTRUNC:             return "X86ISD::VTRUNC";
13961   case X86ISD::VTRUNCM:            return "X86ISD::VTRUNCM";
13962   case X86ISD::VINSERT:            return "X86ISD::VINSERT";
13963   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
13964   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
13965   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
13966   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
13967   case X86ISD::VSHL:               return "X86ISD::VSHL";
13968   case X86ISD::VSRL:               return "X86ISD::VSRL";
13969   case X86ISD::VSRA:               return "X86ISD::VSRA";
13970   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
13971   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
13972   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
13973   case X86ISD::CMPP:               return "X86ISD::CMPP";
13974   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
13975   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
13976   case X86ISD::PCMPEQM:            return "X86ISD::PCMPEQM";
13977   case X86ISD::PCMPGTM:            return "X86ISD::PCMPGTM";
13978   case X86ISD::ADD:                return "X86ISD::ADD";
13979   case X86ISD::SUB:                return "X86ISD::SUB";
13980   case X86ISD::ADC:                return "X86ISD::ADC";
13981   case X86ISD::SBB:                return "X86ISD::SBB";
13982   case X86ISD::SMUL:               return "X86ISD::SMUL";
13983   case X86ISD::UMUL:               return "X86ISD::UMUL";
13984   case X86ISD::INC:                return "X86ISD::INC";
13985   case X86ISD::DEC:                return "X86ISD::DEC";
13986   case X86ISD::OR:                 return "X86ISD::OR";
13987   case X86ISD::XOR:                return "X86ISD::XOR";
13988   case X86ISD::AND:                return "X86ISD::AND";
13989   case X86ISD::BLSI:               return "X86ISD::BLSI";
13990   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
13991   case X86ISD::BLSR:               return "X86ISD::BLSR";
13992   case X86ISD::BZHI:               return "X86ISD::BZHI";
13993   case X86ISD::BEXTR:              return "X86ISD::BEXTR";
13994   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
13995   case X86ISD::PTEST:              return "X86ISD::PTEST";
13996   case X86ISD::TESTP:              return "X86ISD::TESTP";
13997   case X86ISD::TESTM:              return "X86ISD::TESTM";
13998   case X86ISD::KORTEST:            return "X86ISD::KORTEST";
13999   case X86ISD::PALIGNR:            return "X86ISD::PALIGNR";
14000   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
14001   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
14002   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
14003   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
14004   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
14005   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
14006   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
14007   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
14008   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
14009   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
14010   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
14011   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
14012   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
14013   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
14014   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
14015   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
14016   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
14017   case X86ISD::VBROADCASTM:        return "X86ISD::VBROADCASTM";
14018   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
14019   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
14020   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
14021   case X86ISD::VPERMV3:            return "X86ISD::VPERMV3";
14022   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
14023   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
14024   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
14025   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
14026   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
14027   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
14028   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
14029   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
14030   case X86ISD::SAHF:               return "X86ISD::SAHF";
14031   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
14032   case X86ISD::RDSEED:             return "X86ISD::RDSEED";
14033   case X86ISD::FMADD:              return "X86ISD::FMADD";
14034   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
14035   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
14036   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
14037   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
14038   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
14039   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
14040   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
14041   case X86ISD::XTEST:              return "X86ISD::XTEST";
14042   }
14043 }
14044
14045 // isLegalAddressingMode - Return true if the addressing mode represented
14046 // by AM is legal for this target, for a load/store of the specified type.
14047 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
14048                                               Type *Ty) const {
14049   // X86 supports extremely general addressing modes.
14050   CodeModel::Model M = getTargetMachine().getCodeModel();
14051   Reloc::Model R = getTargetMachine().getRelocationModel();
14052
14053   // X86 allows a sign-extended 32-bit immediate field as a displacement.
14054   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
14055     return false;
14056
14057   if (AM.BaseGV) {
14058     unsigned GVFlags =
14059       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
14060
14061     // If a reference to this global requires an extra load, we can't fold it.
14062     if (isGlobalStubReference(GVFlags))
14063       return false;
14064
14065     // If BaseGV requires a register for the PIC base, we cannot also have a
14066     // BaseReg specified.
14067     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
14068       return false;
14069
14070     // If lower 4G is not available, then we must use rip-relative addressing.
14071     if ((M != CodeModel::Small || R != Reloc::Static) &&
14072         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
14073       return false;
14074   }
14075
14076   switch (AM.Scale) {
14077   case 0:
14078   case 1:
14079   case 2:
14080   case 4:
14081   case 8:
14082     // These scales always work.
14083     break;
14084   case 3:
14085   case 5:
14086   case 9:
14087     // These scales are formed with basereg+scalereg.  Only accept if there is
14088     // no basereg yet.
14089     if (AM.HasBaseReg)
14090       return false;
14091     break;
14092   default:  // Other stuff never works.
14093     return false;
14094   }
14095
14096   return true;
14097 }
14098
14099 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
14100   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14101     return false;
14102   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
14103   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
14104   return NumBits1 > NumBits2;
14105 }
14106
14107 bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
14108   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
14109     return false;
14110
14111   if (!isTypeLegal(EVT::getEVT(Ty1)))
14112     return false;
14113
14114   assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
14115
14116   // Assuming the caller doesn't have a zeroext or signext return parameter,
14117   // truncation all the way down to i1 is valid.
14118   return true;
14119 }
14120
14121 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
14122   return isInt<32>(Imm);
14123 }
14124
14125 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
14126   // Can also use sub to handle negated immediates.
14127   return isInt<32>(Imm);
14128 }
14129
14130 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
14131   if (!VT1.isInteger() || !VT2.isInteger())
14132     return false;
14133   unsigned NumBits1 = VT1.getSizeInBits();
14134   unsigned NumBits2 = VT2.getSizeInBits();
14135   return NumBits1 > NumBits2;
14136 }
14137
14138 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
14139   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14140   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
14141 }
14142
14143 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
14144   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
14145   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
14146 }
14147
14148 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
14149   EVT VT1 = Val.getValueType();
14150   if (isZExtFree(VT1, VT2))
14151     return true;
14152
14153   if (Val.getOpcode() != ISD::LOAD)
14154     return false;
14155
14156   if (!VT1.isSimple() || !VT1.isInteger() ||
14157       !VT2.isSimple() || !VT2.isInteger())
14158     return false;
14159
14160   switch (VT1.getSimpleVT().SimpleTy) {
14161   default: break;
14162   case MVT::i8:
14163   case MVT::i16:
14164   case MVT::i32:
14165     // X86 has 8, 16, and 32-bit zero-extending loads.
14166     return true;
14167   }
14168
14169   return false;
14170 }
14171
14172 bool
14173 X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14174   if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14175     return false;
14176
14177   VT = VT.getScalarType();
14178
14179   if (!VT.isSimple())
14180     return false;
14181
14182   switch (VT.getSimpleVT().SimpleTy) {
14183   case MVT::f32:
14184   case MVT::f64:
14185     return true;
14186   default:
14187     break;
14188   }
14189
14190   return false;
14191 }
14192
14193 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
14194   // i16 instructions are longer (0x66 prefix) and potentially slower.
14195   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
14196 }
14197
14198 /// isShuffleMaskLegal - Targets can use this to indicate that they only
14199 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
14200 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
14201 /// are assumed to be legal.
14202 bool
14203 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
14204                                       EVT VT) const {
14205   if (!VT.isSimple())
14206     return false;
14207
14208   MVT SVT = VT.getSimpleVT();
14209
14210   // Very little shuffling can be done for 64-bit vectors right now.
14211   if (VT.getSizeInBits() == 64)
14212     return false;
14213
14214   // FIXME: pshufb, blends, shifts.
14215   return (SVT.getVectorNumElements() == 2 ||
14216           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
14217           isMOVLMask(M, SVT) ||
14218           isSHUFPMask(M, SVT) ||
14219           isPSHUFDMask(M, SVT) ||
14220           isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14221           isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14222           isPALIGNRMask(M, SVT, Subtarget) ||
14223           isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14224           isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14225           isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14226           isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
14227 }
14228
14229 bool
14230 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
14231                                           EVT VT) const {
14232   if (!VT.isSimple())
14233     return false;
14234
14235   MVT SVT = VT.getSimpleVT();
14236   unsigned NumElts = SVT.getVectorNumElements();
14237   // FIXME: This collection of masks seems suspect.
14238   if (NumElts == 2)
14239     return true;
14240   if (NumElts == 4 && SVT.is128BitVector()) {
14241     return (isMOVLMask(Mask, SVT)  ||
14242             isCommutedMOVLMask(Mask, SVT, true) ||
14243             isSHUFPMask(Mask, SVT) ||
14244             isSHUFPMask(Mask, SVT, /* Commuted */ true));
14245   }
14246   return false;
14247 }
14248
14249 //===----------------------------------------------------------------------===//
14250 //                           X86 Scheduler Hooks
14251 //===----------------------------------------------------------------------===//
14252
14253 /// Utility function to emit xbegin specifying the start of an RTM region.
14254 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14255                                      const TargetInstrInfo *TII) {
14256   DebugLoc DL = MI->getDebugLoc();
14257
14258   const BasicBlock *BB = MBB->getBasicBlock();
14259   MachineFunction::iterator I = MBB;
14260   ++I;
14261
14262   // For the v = xbegin(), we generate
14263   //
14264   // thisMBB:
14265   //  xbegin sinkMBB
14266   //
14267   // mainMBB:
14268   //  eax = -1
14269   //
14270   // sinkMBB:
14271   //  v = eax
14272
14273   MachineBasicBlock *thisMBB = MBB;
14274   MachineFunction *MF = MBB->getParent();
14275   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14276   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14277   MF->insert(I, mainMBB);
14278   MF->insert(I, sinkMBB);
14279
14280   // Transfer the remainder of BB and its successor edges to sinkMBB.
14281   sinkMBB->splice(sinkMBB->begin(), MBB,
14282                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14283   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14284
14285   // thisMBB:
14286   //  xbegin sinkMBB
14287   //  # fallthrough to mainMBB
14288   //  # abortion to sinkMBB
14289   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14290   thisMBB->addSuccessor(mainMBB);
14291   thisMBB->addSuccessor(sinkMBB);
14292
14293   // mainMBB:
14294   //  EAX = -1
14295   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14296   mainMBB->addSuccessor(sinkMBB);
14297
14298   // sinkMBB:
14299   // EAX is live into the sinkMBB
14300   sinkMBB->addLiveIn(X86::EAX);
14301   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14302           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14303     .addReg(X86::EAX);
14304
14305   MI->eraseFromParent();
14306   return sinkMBB;
14307 }
14308
14309 // Get CMPXCHG opcode for the specified data type.
14310 static unsigned getCmpXChgOpcode(EVT VT) {
14311   switch (VT.getSimpleVT().SimpleTy) {
14312   case MVT::i8:  return X86::LCMPXCHG8;
14313   case MVT::i16: return X86::LCMPXCHG16;
14314   case MVT::i32: return X86::LCMPXCHG32;
14315   case MVT::i64: return X86::LCMPXCHG64;
14316   default:
14317     break;
14318   }
14319   llvm_unreachable("Invalid operand size!");
14320 }
14321
14322 // Get LOAD opcode for the specified data type.
14323 static unsigned getLoadOpcode(EVT VT) {
14324   switch (VT.getSimpleVT().SimpleTy) {
14325   case MVT::i8:  return X86::MOV8rm;
14326   case MVT::i16: return X86::MOV16rm;
14327   case MVT::i32: return X86::MOV32rm;
14328   case MVT::i64: return X86::MOV64rm;
14329   default:
14330     break;
14331   }
14332   llvm_unreachable("Invalid operand size!");
14333 }
14334
14335 // Get opcode of the non-atomic one from the specified atomic instruction.
14336 static unsigned getNonAtomicOpcode(unsigned Opc) {
14337   switch (Opc) {
14338   case X86::ATOMAND8:  return X86::AND8rr;
14339   case X86::ATOMAND16: return X86::AND16rr;
14340   case X86::ATOMAND32: return X86::AND32rr;
14341   case X86::ATOMAND64: return X86::AND64rr;
14342   case X86::ATOMOR8:   return X86::OR8rr;
14343   case X86::ATOMOR16:  return X86::OR16rr;
14344   case X86::ATOMOR32:  return X86::OR32rr;
14345   case X86::ATOMOR64:  return X86::OR64rr;
14346   case X86::ATOMXOR8:  return X86::XOR8rr;
14347   case X86::ATOMXOR16: return X86::XOR16rr;
14348   case X86::ATOMXOR32: return X86::XOR32rr;
14349   case X86::ATOMXOR64: return X86::XOR64rr;
14350   }
14351   llvm_unreachable("Unhandled atomic-load-op opcode!");
14352 }
14353
14354 // Get opcode of the non-atomic one from the specified atomic instruction with
14355 // extra opcode.
14356 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14357                                                unsigned &ExtraOpc) {
14358   switch (Opc) {
14359   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
14360   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
14361   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
14362   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
14363   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
14364   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14365   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14366   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
14367   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
14368   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14369   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14370   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
14371   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
14372   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14373   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14374   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
14375   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
14376   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14377   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14378   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14379   }
14380   llvm_unreachable("Unhandled atomic-load-op opcode!");
14381 }
14382
14383 // Get opcode of the non-atomic one from the specified atomic instruction for
14384 // 64-bit data type on 32-bit target.
14385 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14386   switch (Opc) {
14387   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
14388   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
14389   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
14390   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
14391   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
14392   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
14393   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
14394   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
14395   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
14396   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
14397   }
14398   llvm_unreachable("Unhandled atomic-load-op opcode!");
14399 }
14400
14401 // Get opcode of the non-atomic one from the specified atomic instruction for
14402 // 64-bit data type on 32-bit target with extra opcode.
14403 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14404                                                    unsigned &HiOpc,
14405                                                    unsigned &ExtraOpc) {
14406   switch (Opc) {
14407   case X86::ATOMNAND6432:
14408     ExtraOpc = X86::NOT32r;
14409     HiOpc = X86::AND32rr;
14410     return X86::AND32rr;
14411   }
14412   llvm_unreachable("Unhandled atomic-load-op opcode!");
14413 }
14414
14415 // Get pseudo CMOV opcode from the specified data type.
14416 static unsigned getPseudoCMOVOpc(EVT VT) {
14417   switch (VT.getSimpleVT().SimpleTy) {
14418   case MVT::i8:  return X86::CMOV_GR8;
14419   case MVT::i16: return X86::CMOV_GR16;
14420   case MVT::i32: return X86::CMOV_GR32;
14421   default:
14422     break;
14423   }
14424   llvm_unreachable("Unknown CMOV opcode!");
14425 }
14426
14427 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14428 // They will be translated into a spin-loop or compare-exchange loop from
14429 //
14430 //    ...
14431 //    dst = atomic-fetch-op MI.addr, MI.val
14432 //    ...
14433 //
14434 // to
14435 //
14436 //    ...
14437 //    t1 = LOAD MI.addr
14438 // loop:
14439 //    t4 = phi(t1, t3 / loop)
14440 //    t2 = OP MI.val, t4
14441 //    EAX = t4
14442 //    LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14443 //    t3 = EAX
14444 //    JNE loop
14445 // sink:
14446 //    dst = t3
14447 //    ...
14448 MachineBasicBlock *
14449 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14450                                        MachineBasicBlock *MBB) const {
14451   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14452   DebugLoc DL = MI->getDebugLoc();
14453
14454   MachineFunction *MF = MBB->getParent();
14455   MachineRegisterInfo &MRI = MF->getRegInfo();
14456
14457   const BasicBlock *BB = MBB->getBasicBlock();
14458   MachineFunction::iterator I = MBB;
14459   ++I;
14460
14461   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
14462          "Unexpected number of operands");
14463
14464   assert(MI->hasOneMemOperand() &&
14465          "Expected atomic-load-op to have one memoperand");
14466
14467   // Memory Reference
14468   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14469   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14470
14471   unsigned DstReg, SrcReg;
14472   unsigned MemOpndSlot;
14473
14474   unsigned CurOp = 0;
14475
14476   DstReg = MI->getOperand(CurOp++).getReg();
14477   MemOpndSlot = CurOp;
14478   CurOp += X86::AddrNumOperands;
14479   SrcReg = MI->getOperand(CurOp++).getReg();
14480
14481   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
14482   MVT::SimpleValueType VT = *RC->vt_begin();
14483   unsigned t1 = MRI.createVirtualRegister(RC);
14484   unsigned t2 = MRI.createVirtualRegister(RC);
14485   unsigned t3 = MRI.createVirtualRegister(RC);
14486   unsigned t4 = MRI.createVirtualRegister(RC);
14487   unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
14488
14489   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14490   unsigned LOADOpc = getLoadOpcode(VT);
14491
14492   // For the atomic load-arith operator, we generate
14493   //
14494   //  thisMBB:
14495   //    t1 = LOAD [MI.addr]
14496   //  mainMBB:
14497   //    t4 = phi(t1 / thisMBB, t3 / mainMBB)
14498   //    t1 = OP MI.val, EAX
14499   //    EAX = t4
14500   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
14501   //    t3 = EAX
14502   //    JNE mainMBB
14503   //  sinkMBB:
14504   //    dst = t3
14505
14506   MachineBasicBlock *thisMBB = MBB;
14507   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14508   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14509   MF->insert(I, mainMBB);
14510   MF->insert(I, sinkMBB);
14511
14512   MachineInstrBuilder MIB;
14513
14514   // Transfer the remainder of BB and its successor edges to sinkMBB.
14515   sinkMBB->splice(sinkMBB->begin(), MBB,
14516                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14517   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14518
14519   // thisMBB:
14520   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14521   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14522     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14523     if (NewMO.isReg())
14524       NewMO.setIsKill(false);
14525     MIB.addOperand(NewMO);
14526   }
14527   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14528     unsigned flags = (*MMOI)->getFlags();
14529     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14530     MachineMemOperand *MMO =
14531       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14532                                (*MMOI)->getSize(),
14533                                (*MMOI)->getBaseAlignment(),
14534                                (*MMOI)->getTBAAInfo(),
14535                                (*MMOI)->getRanges());
14536     MIB.addMemOperand(MMO);
14537   }
14538
14539   thisMBB->addSuccessor(mainMBB);
14540
14541   // mainMBB:
14542   MachineBasicBlock *origMainMBB = mainMBB;
14543
14544   // Add a PHI.
14545   MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14546                         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14547
14548   unsigned Opc = MI->getOpcode();
14549   switch (Opc) {
14550   default:
14551     llvm_unreachable("Unhandled atomic-load-op opcode!");
14552   case X86::ATOMAND8:
14553   case X86::ATOMAND16:
14554   case X86::ATOMAND32:
14555   case X86::ATOMAND64:
14556   case X86::ATOMOR8:
14557   case X86::ATOMOR16:
14558   case X86::ATOMOR32:
14559   case X86::ATOMOR64:
14560   case X86::ATOMXOR8:
14561   case X86::ATOMXOR16:
14562   case X86::ATOMXOR32:
14563   case X86::ATOMXOR64: {
14564     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
14565     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14566       .addReg(t4);
14567     break;
14568   }
14569   case X86::ATOMNAND8:
14570   case X86::ATOMNAND16:
14571   case X86::ATOMNAND32:
14572   case X86::ATOMNAND64: {
14573     unsigned Tmp = MRI.createVirtualRegister(RC);
14574     unsigned NOTOpc;
14575     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
14576     BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14577       .addReg(t4);
14578     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
14579     break;
14580   }
14581   case X86::ATOMMAX8:
14582   case X86::ATOMMAX16:
14583   case X86::ATOMMAX32:
14584   case X86::ATOMMAX64:
14585   case X86::ATOMMIN8:
14586   case X86::ATOMMIN16:
14587   case X86::ATOMMIN32:
14588   case X86::ATOMMIN64:
14589   case X86::ATOMUMAX8:
14590   case X86::ATOMUMAX16:
14591   case X86::ATOMUMAX32:
14592   case X86::ATOMUMAX64:
14593   case X86::ATOMUMIN8:
14594   case X86::ATOMUMIN16:
14595   case X86::ATOMUMIN32:
14596   case X86::ATOMUMIN64: {
14597     unsigned CMPOpc;
14598     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14599
14600     BuildMI(mainMBB, DL, TII->get(CMPOpc))
14601       .addReg(SrcReg)
14602       .addReg(t4);
14603
14604     if (Subtarget->hasCMov()) {
14605       if (VT != MVT::i8) {
14606         // Native support
14607         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
14608           .addReg(SrcReg)
14609           .addReg(t4);
14610       } else {
14611         // Promote i8 to i32 to use CMOV32
14612         const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14613         const TargetRegisterClass *RC32 =
14614           TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
14615         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14616         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
14617         unsigned Tmp = MRI.createVirtualRegister(RC32);
14618
14619         unsigned Undef = MRI.createVirtualRegister(RC32);
14620         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14621
14622         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14623           .addReg(Undef)
14624           .addReg(SrcReg)
14625           .addImm(X86::sub_8bit);
14626         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14627           .addReg(Undef)
14628           .addReg(t4)
14629           .addImm(X86::sub_8bit);
14630
14631         BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
14632           .addReg(SrcReg32)
14633           .addReg(AccReg32);
14634
14635         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14636           .addReg(Tmp, 0, X86::sub_8bit);
14637       }
14638     } else {
14639       // Use pseudo select and lower them.
14640       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
14641              "Invalid atomic-load-op transformation!");
14642       unsigned SelOpc = getPseudoCMOVOpc(VT);
14643       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14644       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
14645       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14646               .addReg(SrcReg).addReg(t4)
14647               .addImm(CC);
14648       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14649       // Replace the original PHI node as mainMBB is changed after CMOV
14650       // lowering.
14651       BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14652         .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14653       Phi->eraseFromParent();
14654     }
14655     break;
14656   }
14657   }
14658
14659   // Copy PhyReg back from virtual register.
14660   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14661     .addReg(t4);
14662
14663   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14664   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14665     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14666     if (NewMO.isReg())
14667       NewMO.setIsKill(false);
14668     MIB.addOperand(NewMO);
14669   }
14670   MIB.addReg(t2);
14671   MIB.setMemRefs(MMOBegin, MMOEnd);
14672
14673   // Copy PhyReg back to virtual register.
14674   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14675     .addReg(PhyReg);
14676
14677   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14678
14679   mainMBB->addSuccessor(origMainMBB);
14680   mainMBB->addSuccessor(sinkMBB);
14681
14682   // sinkMBB:
14683   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14684           TII->get(TargetOpcode::COPY), DstReg)
14685     .addReg(t3);
14686
14687   MI->eraseFromParent();
14688   return sinkMBB;
14689 }
14690
14691 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14692 // instructions. They will be translated into a spin-loop or compare-exchange
14693 // loop from
14694 //
14695 //    ...
14696 //    dst = atomic-fetch-op MI.addr, MI.val
14697 //    ...
14698 //
14699 // to
14700 //
14701 //    ...
14702 //    t1L = LOAD [MI.addr + 0]
14703 //    t1H = LOAD [MI.addr + 4]
14704 // loop:
14705 //    t4L = phi(t1L, t3L / loop)
14706 //    t4H = phi(t1H, t3H / loop)
14707 //    t2L = OP MI.val.lo, t4L
14708 //    t2H = OP MI.val.hi, t4H
14709 //    EAX = t4L
14710 //    EDX = t4H
14711 //    EBX = t2L
14712 //    ECX = t2H
14713 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14714 //    t3L = EAX
14715 //    t3H = EDX
14716 //    JNE loop
14717 // sink:
14718 //    dstL = t3L
14719 //    dstH = t3H
14720 //    ...
14721 MachineBasicBlock *
14722 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14723                                            MachineBasicBlock *MBB) const {
14724   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14725   DebugLoc DL = MI->getDebugLoc();
14726
14727   MachineFunction *MF = MBB->getParent();
14728   MachineRegisterInfo &MRI = MF->getRegInfo();
14729
14730   const BasicBlock *BB = MBB->getBasicBlock();
14731   MachineFunction::iterator I = MBB;
14732   ++I;
14733
14734   assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
14735          "Unexpected number of operands");
14736
14737   assert(MI->hasOneMemOperand() &&
14738          "Expected atomic-load-op32 to have one memoperand");
14739
14740   // Memory Reference
14741   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14742   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14743
14744   unsigned DstLoReg, DstHiReg;
14745   unsigned SrcLoReg, SrcHiReg;
14746   unsigned MemOpndSlot;
14747
14748   unsigned CurOp = 0;
14749
14750   DstLoReg = MI->getOperand(CurOp++).getReg();
14751   DstHiReg = MI->getOperand(CurOp++).getReg();
14752   MemOpndSlot = CurOp;
14753   CurOp += X86::AddrNumOperands;
14754   SrcLoReg = MI->getOperand(CurOp++).getReg();
14755   SrcHiReg = MI->getOperand(CurOp++).getReg();
14756
14757   const TargetRegisterClass *RC = &X86::GR32RegClass;
14758   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
14759
14760   unsigned t1L = MRI.createVirtualRegister(RC);
14761   unsigned t1H = MRI.createVirtualRegister(RC);
14762   unsigned t2L = MRI.createVirtualRegister(RC);
14763   unsigned t2H = MRI.createVirtualRegister(RC);
14764   unsigned t3L = MRI.createVirtualRegister(RC);
14765   unsigned t3H = MRI.createVirtualRegister(RC);
14766   unsigned t4L = MRI.createVirtualRegister(RC);
14767   unsigned t4H = MRI.createVirtualRegister(RC);
14768
14769   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14770   unsigned LOADOpc = X86::MOV32rm;
14771
14772   // For the atomic load-arith operator, we generate
14773   //
14774   //  thisMBB:
14775   //    t1L = LOAD [MI.addr + 0]
14776   //    t1H = LOAD [MI.addr + 4]
14777   //  mainMBB:
14778   //    t4L = phi(t1L / thisMBB, t3L / mainMBB)
14779   //    t4H = phi(t1H / thisMBB, t3H / mainMBB)
14780   //    t2L = OP MI.val.lo, t4L
14781   //    t2H = OP MI.val.hi, t4H
14782   //    EBX = t2L
14783   //    ECX = t2H
14784   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
14785   //    t3L = EAX
14786   //    t3H = EDX
14787   //    JNE loop
14788   //  sinkMBB:
14789   //    dstL = t3L
14790   //    dstH = t3H
14791
14792   MachineBasicBlock *thisMBB = MBB;
14793   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14794   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14795   MF->insert(I, mainMBB);
14796   MF->insert(I, sinkMBB);
14797
14798   MachineInstrBuilder MIB;
14799
14800   // Transfer the remainder of BB and its successor edges to sinkMBB.
14801   sinkMBB->splice(sinkMBB->begin(), MBB,
14802                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14803   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14804
14805   // thisMBB:
14806   // Lo
14807   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
14808   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14809     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14810     if (NewMO.isReg())
14811       NewMO.setIsKill(false);
14812     MIB.addOperand(NewMO);
14813   }
14814   for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14815     unsigned flags = (*MMOI)->getFlags();
14816     flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14817     MachineMemOperand *MMO =
14818       MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14819                                (*MMOI)->getSize(),
14820                                (*MMOI)->getBaseAlignment(),
14821                                (*MMOI)->getTBAAInfo(),
14822                                (*MMOI)->getRanges());
14823     MIB.addMemOperand(MMO);
14824   };
14825   MachineInstr *LowMI = MIB;
14826
14827   // Hi
14828   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14829   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14830     if (i == X86::AddrDisp) {
14831       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14832     } else {
14833       MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14834       if (NewMO.isReg())
14835         NewMO.setIsKill(false);
14836       MIB.addOperand(NewMO);
14837     }
14838   }
14839   MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
14840
14841   thisMBB->addSuccessor(mainMBB);
14842
14843   // mainMBB:
14844   MachineBasicBlock *origMainMBB = mainMBB;
14845
14846   // Add PHIs.
14847   MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14848                         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14849   MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14850                         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14851
14852   unsigned Opc = MI->getOpcode();
14853   switch (Opc) {
14854   default:
14855     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14856   case X86::ATOMAND6432:
14857   case X86::ATOMOR6432:
14858   case X86::ATOMXOR6432:
14859   case X86::ATOMADD6432:
14860   case X86::ATOMSUB6432: {
14861     unsigned HiOpc;
14862     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14863     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14864       .addReg(SrcLoReg);
14865     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14866       .addReg(SrcHiReg);
14867     break;
14868   }
14869   case X86::ATOMNAND6432: {
14870     unsigned HiOpc, NOTOpc;
14871     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
14872     unsigned TmpL = MRI.createVirtualRegister(RC);
14873     unsigned TmpH = MRI.createVirtualRegister(RC);
14874     BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14875       .addReg(t4L);
14876     BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14877       .addReg(t4H);
14878     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14879     BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
14880     break;
14881   }
14882   case X86::ATOMMAX6432:
14883   case X86::ATOMMIN6432:
14884   case X86::ATOMUMAX6432:
14885   case X86::ATOMUMIN6432: {
14886     unsigned HiOpc;
14887     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14888     unsigned cL = MRI.createVirtualRegister(RC8);
14889     unsigned cH = MRI.createVirtualRegister(RC8);
14890     unsigned cL32 = MRI.createVirtualRegister(RC);
14891     unsigned cH32 = MRI.createVirtualRegister(RC);
14892     unsigned cc = MRI.createVirtualRegister(RC);
14893     // cl := cmp src_lo, lo
14894     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14895       .addReg(SrcLoReg).addReg(t4L);
14896     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14897     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14898     // ch := cmp src_hi, hi
14899     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
14900       .addReg(SrcHiReg).addReg(t4H);
14901     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14902     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14903     // cc := if (src_hi == hi) ? cl : ch;
14904     if (Subtarget->hasCMov()) {
14905       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14906         .addReg(cH32).addReg(cL32);
14907     } else {
14908       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14909               .addReg(cH32).addReg(cL32)
14910               .addImm(X86::COND_E);
14911       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14912     }
14913     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14914     if (Subtarget->hasCMov()) {
14915       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14916         .addReg(SrcLoReg).addReg(t4L);
14917       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14918         .addReg(SrcHiReg).addReg(t4H);
14919     } else {
14920       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14921               .addReg(SrcLoReg).addReg(t4L)
14922               .addImm(X86::COND_NE);
14923       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14924       // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14925       // 2nd CMOV lowering.
14926       mainMBB->addLiveIn(X86::EFLAGS);
14927       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14928               .addReg(SrcHiReg).addReg(t4H)
14929               .addImm(X86::COND_NE);
14930       mainMBB = EmitLoweredSelect(MIB, mainMBB);
14931       // Replace the original PHI node as mainMBB is changed after CMOV
14932       // lowering.
14933       BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14934         .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14935       BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14936         .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14937       PhiL->eraseFromParent();
14938       PhiH->eraseFromParent();
14939     }
14940     break;
14941   }
14942   case X86::ATOMSWAP6432: {
14943     unsigned HiOpc;
14944     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14945     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14946     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
14947     break;
14948   }
14949   }
14950
14951   // Copy EDX:EAX back from HiReg:LoReg
14952   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14953   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
14954   // Copy ECX:EBX from t1H:t1L
14955   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14956   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
14957
14958   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
14959   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14960     MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14961     if (NewMO.isReg())
14962       NewMO.setIsKill(false);
14963     MIB.addOperand(NewMO);
14964   }
14965   MIB.setMemRefs(MMOBegin, MMOEnd);
14966
14967   // Copy EDX:EAX back to t3H:t3L
14968   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14969   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14970
14971   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14972
14973   mainMBB->addSuccessor(origMainMBB);
14974   mainMBB->addSuccessor(sinkMBB);
14975
14976   // sinkMBB:
14977   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14978           TII->get(TargetOpcode::COPY), DstLoReg)
14979     .addReg(t3L);
14980   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14981           TII->get(TargetOpcode::COPY), DstHiReg)
14982     .addReg(t3H);
14983
14984   MI->eraseFromParent();
14985   return sinkMBB;
14986 }
14987
14988 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
14989 // or XMM0_V32I8 in AVX all of this code can be replaced with that
14990 // in the .td file.
14991 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14992                                        const TargetInstrInfo *TII) {
14993   unsigned Opc;
14994   switch (MI->getOpcode()) {
14995   default: llvm_unreachable("illegal opcode!");
14996   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
14997   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14998   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
14999   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
15000   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
15001   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
15002   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
15003   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
15004   }
15005
15006   DebugLoc dl = MI->getDebugLoc();
15007   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15008
15009   unsigned NumArgs = MI->getNumOperands();
15010   for (unsigned i = 1; i < NumArgs; ++i) {
15011     MachineOperand &Op = MI->getOperand(i);
15012     if (!(Op.isReg() && Op.isImplicit()))
15013       MIB.addOperand(Op);
15014   }
15015   if (MI->hasOneMemOperand())
15016     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15017
15018   BuildMI(*BB, MI, dl,
15019     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15020     .addReg(X86::XMM0);
15021
15022   MI->eraseFromParent();
15023   return BB;
15024 }
15025
15026 // FIXME: Custom handling because TableGen doesn't support multiple implicit
15027 // defs in an instruction pattern
15028 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
15029                                        const TargetInstrInfo *TII) {
15030   unsigned Opc;
15031   switch (MI->getOpcode()) {
15032   default: llvm_unreachable("illegal opcode!");
15033   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
15034   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
15035   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
15036   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
15037   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
15038   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
15039   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
15040   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
15041   }
15042
15043   DebugLoc dl = MI->getDebugLoc();
15044   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
15045
15046   unsigned NumArgs = MI->getNumOperands(); // remove the results
15047   for (unsigned i = 1; i < NumArgs; ++i) {
15048     MachineOperand &Op = MI->getOperand(i);
15049     if (!(Op.isReg() && Op.isImplicit()))
15050       MIB.addOperand(Op);
15051   }
15052   if (MI->hasOneMemOperand())
15053     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
15054
15055   BuildMI(*BB, MI, dl,
15056     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
15057     .addReg(X86::ECX);
15058
15059   MI->eraseFromParent();
15060   return BB;
15061 }
15062
15063 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
15064                                        const TargetInstrInfo *TII,
15065                                        const X86Subtarget* Subtarget) {
15066   DebugLoc dl = MI->getDebugLoc();
15067
15068   // Address into RAX/EAX, other two args into ECX, EDX.
15069   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
15070   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
15071   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
15072   for (int i = 0; i < X86::AddrNumOperands; ++i)
15073     MIB.addOperand(MI->getOperand(i));
15074
15075   unsigned ValOps = X86::AddrNumOperands;
15076   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
15077     .addReg(MI->getOperand(ValOps).getReg());
15078   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
15079     .addReg(MI->getOperand(ValOps+1).getReg());
15080
15081   // The instruction doesn't actually take any operands though.
15082   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
15083
15084   MI->eraseFromParent(); // The pseudo is gone now.
15085   return BB;
15086 }
15087
15088 MachineBasicBlock *
15089 X86TargetLowering::EmitVAARG64WithCustomInserter(
15090                    MachineInstr *MI,
15091                    MachineBasicBlock *MBB) const {
15092   // Emit va_arg instruction on X86-64.
15093
15094   // Operands to this pseudo-instruction:
15095   // 0  ) Output        : destination address (reg)
15096   // 1-5) Input         : va_list address (addr, i64mem)
15097   // 6  ) ArgSize       : Size (in bytes) of vararg type
15098   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
15099   // 8  ) Align         : Alignment of type
15100   // 9  ) EFLAGS (implicit-def)
15101
15102   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
15103   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
15104
15105   unsigned DestReg = MI->getOperand(0).getReg();
15106   MachineOperand &Base = MI->getOperand(1);
15107   MachineOperand &Scale = MI->getOperand(2);
15108   MachineOperand &Index = MI->getOperand(3);
15109   MachineOperand &Disp = MI->getOperand(4);
15110   MachineOperand &Segment = MI->getOperand(5);
15111   unsigned ArgSize = MI->getOperand(6).getImm();
15112   unsigned ArgMode = MI->getOperand(7).getImm();
15113   unsigned Align = MI->getOperand(8).getImm();
15114
15115   // Memory Reference
15116   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
15117   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15118   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15119
15120   // Machine Information
15121   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15122   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
15123   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
15124   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
15125   DebugLoc DL = MI->getDebugLoc();
15126
15127   // struct va_list {
15128   //   i32   gp_offset
15129   //   i32   fp_offset
15130   //   i64   overflow_area (address)
15131   //   i64   reg_save_area (address)
15132   // }
15133   // sizeof(va_list) = 24
15134   // alignment(va_list) = 8
15135
15136   unsigned TotalNumIntRegs = 6;
15137   unsigned TotalNumXMMRegs = 8;
15138   bool UseGPOffset = (ArgMode == 1);
15139   bool UseFPOffset = (ArgMode == 2);
15140   unsigned MaxOffset = TotalNumIntRegs * 8 +
15141                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
15142
15143   /* Align ArgSize to a multiple of 8 */
15144   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
15145   bool NeedsAlign = (Align > 8);
15146
15147   MachineBasicBlock *thisMBB = MBB;
15148   MachineBasicBlock *overflowMBB;
15149   MachineBasicBlock *offsetMBB;
15150   MachineBasicBlock *endMBB;
15151
15152   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
15153   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
15154   unsigned OffsetReg = 0;
15155
15156   if (!UseGPOffset && !UseFPOffset) {
15157     // If we only pull from the overflow region, we don't create a branch.
15158     // We don't need to alter control flow.
15159     OffsetDestReg = 0; // unused
15160     OverflowDestReg = DestReg;
15161
15162     offsetMBB = NULL;
15163     overflowMBB = thisMBB;
15164     endMBB = thisMBB;
15165   } else {
15166     // First emit code to check if gp_offset (or fp_offset) is below the bound.
15167     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15168     // If not, pull from overflow_area. (branch to overflowMBB)
15169     //
15170     //       thisMBB
15171     //         |     .
15172     //         |        .
15173     //     offsetMBB   overflowMBB
15174     //         |        .
15175     //         |     .
15176     //        endMBB
15177
15178     // Registers for the PHI in endMBB
15179     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
15180     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
15181
15182     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15183     MachineFunction *MF = MBB->getParent();
15184     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15185     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15186     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15187
15188     MachineFunction::iterator MBBIter = MBB;
15189     ++MBBIter;
15190
15191     // Insert the new basic blocks
15192     MF->insert(MBBIter, offsetMBB);
15193     MF->insert(MBBIter, overflowMBB);
15194     MF->insert(MBBIter, endMBB);
15195
15196     // Transfer the remainder of MBB and its successor edges to endMBB.
15197     endMBB->splice(endMBB->begin(), thisMBB,
15198                     llvm::next(MachineBasicBlock::iterator(MI)),
15199                     thisMBB->end());
15200     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
15201
15202     // Make offsetMBB and overflowMBB successors of thisMBB
15203     thisMBB->addSuccessor(offsetMBB);
15204     thisMBB->addSuccessor(overflowMBB);
15205
15206     // endMBB is a successor of both offsetMBB and overflowMBB
15207     offsetMBB->addSuccessor(endMBB);
15208     overflowMBB->addSuccessor(endMBB);
15209
15210     // Load the offset value into a register
15211     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15212     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
15213       .addOperand(Base)
15214       .addOperand(Scale)
15215       .addOperand(Index)
15216       .addDisp(Disp, UseFPOffset ? 4 : 0)
15217       .addOperand(Segment)
15218       .setMemRefs(MMOBegin, MMOEnd);
15219
15220     // Check if there is enough room left to pull this argument.
15221     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15222       .addReg(OffsetReg)
15223       .addImm(MaxOffset + 8 - ArgSizeA8);
15224
15225     // Branch to "overflowMBB" if offset >= max
15226     // Fall through to "offsetMBB" otherwise
15227     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15228       .addMBB(overflowMBB);
15229   }
15230
15231   // In offsetMBB, emit code to use the reg_save_area.
15232   if (offsetMBB) {
15233     assert(OffsetReg != 0);
15234
15235     // Read the reg_save_area address.
15236     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15237     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15238       .addOperand(Base)
15239       .addOperand(Scale)
15240       .addOperand(Index)
15241       .addDisp(Disp, 16)
15242       .addOperand(Segment)
15243       .setMemRefs(MMOBegin, MMOEnd);
15244
15245     // Zero-extend the offset
15246     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15247       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15248         .addImm(0)
15249         .addReg(OffsetReg)
15250         .addImm(X86::sub_32bit);
15251
15252     // Add the offset to the reg_save_area to get the final address.
15253     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15254       .addReg(OffsetReg64)
15255       .addReg(RegSaveReg);
15256
15257     // Compute the offset for the next argument
15258     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15259     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15260       .addReg(OffsetReg)
15261       .addImm(UseFPOffset ? 16 : 8);
15262
15263     // Store it back into the va_list.
15264     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15265       .addOperand(Base)
15266       .addOperand(Scale)
15267       .addOperand(Index)
15268       .addDisp(Disp, UseFPOffset ? 4 : 0)
15269       .addOperand(Segment)
15270       .addReg(NextOffsetReg)
15271       .setMemRefs(MMOBegin, MMOEnd);
15272
15273     // Jump to endMBB
15274     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15275       .addMBB(endMBB);
15276   }
15277
15278   //
15279   // Emit code to use overflow area
15280   //
15281
15282   // Load the overflow_area address into a register.
15283   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15284   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15285     .addOperand(Base)
15286     .addOperand(Scale)
15287     .addOperand(Index)
15288     .addDisp(Disp, 8)
15289     .addOperand(Segment)
15290     .setMemRefs(MMOBegin, MMOEnd);
15291
15292   // If we need to align it, do so. Otherwise, just copy the address
15293   // to OverflowDestReg.
15294   if (NeedsAlign) {
15295     // Align the overflow address
15296     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15297     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15298
15299     // aligned_addr = (addr + (align-1)) & ~(align-1)
15300     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15301       .addReg(OverflowAddrReg)
15302       .addImm(Align-1);
15303
15304     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15305       .addReg(TmpReg)
15306       .addImm(~(uint64_t)(Align-1));
15307   } else {
15308     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15309       .addReg(OverflowAddrReg);
15310   }
15311
15312   // Compute the next overflow address after this argument.
15313   // (the overflow address should be kept 8-byte aligned)
15314   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15315   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15316     .addReg(OverflowDestReg)
15317     .addImm(ArgSizeA8);
15318
15319   // Store the new overflow address.
15320   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15321     .addOperand(Base)
15322     .addOperand(Scale)
15323     .addOperand(Index)
15324     .addDisp(Disp, 8)
15325     .addOperand(Segment)
15326     .addReg(NextAddrReg)
15327     .setMemRefs(MMOBegin, MMOEnd);
15328
15329   // If we branched, emit the PHI to the front of endMBB.
15330   if (offsetMBB) {
15331     BuildMI(*endMBB, endMBB->begin(), DL,
15332             TII->get(X86::PHI), DestReg)
15333       .addReg(OffsetDestReg).addMBB(offsetMBB)
15334       .addReg(OverflowDestReg).addMBB(overflowMBB);
15335   }
15336
15337   // Erase the pseudo instruction
15338   MI->eraseFromParent();
15339
15340   return endMBB;
15341 }
15342
15343 MachineBasicBlock *
15344 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15345                                                  MachineInstr *MI,
15346                                                  MachineBasicBlock *MBB) const {
15347   // Emit code to save XMM registers to the stack. The ABI says that the
15348   // number of registers to save is given in %al, so it's theoretically
15349   // possible to do an indirect jump trick to avoid saving all of them,
15350   // however this code takes a simpler approach and just executes all
15351   // of the stores if %al is non-zero. It's less code, and it's probably
15352   // easier on the hardware branch predictor, and stores aren't all that
15353   // expensive anyway.
15354
15355   // Create the new basic blocks. One block contains all the XMM stores,
15356   // and one block is the final destination regardless of whether any
15357   // stores were performed.
15358   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15359   MachineFunction *F = MBB->getParent();
15360   MachineFunction::iterator MBBIter = MBB;
15361   ++MBBIter;
15362   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15363   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15364   F->insert(MBBIter, XMMSaveMBB);
15365   F->insert(MBBIter, EndMBB);
15366
15367   // Transfer the remainder of MBB and its successor edges to EndMBB.
15368   EndMBB->splice(EndMBB->begin(), MBB,
15369                  llvm::next(MachineBasicBlock::iterator(MI)),
15370                  MBB->end());
15371   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15372
15373   // The original block will now fall through to the XMM save block.
15374   MBB->addSuccessor(XMMSaveMBB);
15375   // The XMMSaveMBB will fall through to the end block.
15376   XMMSaveMBB->addSuccessor(EndMBB);
15377
15378   // Now add the instructions.
15379   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15380   DebugLoc DL = MI->getDebugLoc();
15381
15382   unsigned CountReg = MI->getOperand(0).getReg();
15383   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15384   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15385
15386   if (!Subtarget->isTargetWin64()) {
15387     // If %al is 0, branch around the XMM save block.
15388     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
15389     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
15390     MBB->addSuccessor(EndMBB);
15391   }
15392
15393   // Make sure the last operand is EFLAGS, which gets clobbered by the branch
15394   // that was just emitted, but clearly shouldn't be "saved".
15395   assert((MI->getNumOperands() <= 3 ||
15396           !MI->getOperand(MI->getNumOperands() - 1).isReg() ||
15397           MI->getOperand(MI->getNumOperands() - 1).getReg() == X86::EFLAGS)
15398          && "Expected last argument to be EFLAGS");
15399   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15400   // In the XMM save block, save all the XMM argument registers.
15401   for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
15402     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15403     MachineMemOperand *MMO =
15404       F->getMachineMemOperand(
15405           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
15406         MachineMemOperand::MOStore,
15407         /*Size=*/16, /*Align=*/16);
15408     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
15409       .addFrameIndex(RegSaveFrameIndex)
15410       .addImm(/*Scale=*/1)
15411       .addReg(/*IndexReg=*/0)
15412       .addImm(/*Disp=*/Offset)
15413       .addReg(/*Segment=*/0)
15414       .addReg(MI->getOperand(i).getReg())
15415       .addMemOperand(MMO);
15416   }
15417
15418   MI->eraseFromParent();   // The pseudo instruction is gone now.
15419
15420   return EndMBB;
15421 }
15422
15423 // The EFLAGS operand of SelectItr might be missing a kill marker
15424 // because there were multiple uses of EFLAGS, and ISel didn't know
15425 // which to mark. Figure out whether SelectItr should have had a
15426 // kill marker, and set it if it should. Returns the correct kill
15427 // marker value.
15428 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15429                                      MachineBasicBlock* BB,
15430                                      const TargetRegisterInfo* TRI) {
15431   // Scan forward through BB for a use/def of EFLAGS.
15432   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15433   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
15434     const MachineInstr& mi = *miI;
15435     if (mi.readsRegister(X86::EFLAGS))
15436       return false;
15437     if (mi.definesRegister(X86::EFLAGS))
15438       break; // Should have kill-flag - update below.
15439   }
15440
15441   // If we hit the end of the block, check whether EFLAGS is live into a
15442   // successor.
15443   if (miI == BB->end()) {
15444     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15445                                           sEnd = BB->succ_end();
15446          sItr != sEnd; ++sItr) {
15447       MachineBasicBlock* succ = *sItr;
15448       if (succ->isLiveIn(X86::EFLAGS))
15449         return false;
15450     }
15451   }
15452
15453   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15454   // out. SelectMI should have a kill flag on EFLAGS.
15455   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
15456   return true;
15457 }
15458
15459 MachineBasicBlock *
15460 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
15461                                      MachineBasicBlock *BB) const {
15462   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15463   DebugLoc DL = MI->getDebugLoc();
15464
15465   // To "insert" a SELECT_CC instruction, we actually have to insert the
15466   // diamond control-flow pattern.  The incoming instruction knows the
15467   // destination vreg to set, the condition code register to branch on, the
15468   // true/false values to select between, and a branch opcode to use.
15469   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15470   MachineFunction::iterator It = BB;
15471   ++It;
15472
15473   //  thisMBB:
15474   //  ...
15475   //   TrueVal = ...
15476   //   cmpTY ccX, r1, r2
15477   //   bCC copy1MBB
15478   //   fallthrough --> copy0MBB
15479   MachineBasicBlock *thisMBB = BB;
15480   MachineFunction *F = BB->getParent();
15481   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15482   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
15483   F->insert(It, copy0MBB);
15484   F->insert(It, sinkMBB);
15485
15486   // If the EFLAGS register isn't dead in the terminator, then claim that it's
15487   // live into the sink and copy blocks.
15488   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15489   if (!MI->killsRegister(X86::EFLAGS) &&
15490       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15491     copy0MBB->addLiveIn(X86::EFLAGS);
15492     sinkMBB->addLiveIn(X86::EFLAGS);
15493   }
15494
15495   // Transfer the remainder of BB and its successor edges to sinkMBB.
15496   sinkMBB->splice(sinkMBB->begin(), BB,
15497                   llvm::next(MachineBasicBlock::iterator(MI)),
15498                   BB->end());
15499   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15500
15501   // Add the true and fallthrough blocks as its successors.
15502   BB->addSuccessor(copy0MBB);
15503   BB->addSuccessor(sinkMBB);
15504
15505   // Create the conditional branch instruction.
15506   unsigned Opc =
15507     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15508   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15509
15510   //  copy0MBB:
15511   //   %FalseValue = ...
15512   //   # fallthrough to sinkMBB
15513   copy0MBB->addSuccessor(sinkMBB);
15514
15515   //  sinkMBB:
15516   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15517   //  ...
15518   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15519           TII->get(X86::PHI), MI->getOperand(0).getReg())
15520     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15521     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15522
15523   MI->eraseFromParent();   // The pseudo instruction is gone now.
15524   return sinkMBB;
15525 }
15526
15527 MachineBasicBlock *
15528 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15529                                         bool Is64Bit) const {
15530   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15531   DebugLoc DL = MI->getDebugLoc();
15532   MachineFunction *MF = BB->getParent();
15533   const BasicBlock *LLVM_BB = BB->getBasicBlock();
15534
15535   assert(getTargetMachine().Options.EnableSegmentedStacks);
15536
15537   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15538   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15539
15540   // BB:
15541   //  ... [Till the alloca]
15542   // If stacklet is not large enough, jump to mallocMBB
15543   //
15544   // bumpMBB:
15545   //  Allocate by subtracting from RSP
15546   //  Jump to continueMBB
15547   //
15548   // mallocMBB:
15549   //  Allocate by call to runtime
15550   //
15551   // continueMBB:
15552   //  ...
15553   //  [rest of original BB]
15554   //
15555
15556   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15557   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15558   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15559
15560   MachineRegisterInfo &MRI = MF->getRegInfo();
15561   const TargetRegisterClass *AddrRegClass =
15562     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15563
15564   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15565     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15566     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
15567     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
15568     sizeVReg = MI->getOperand(1).getReg(),
15569     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15570
15571   MachineFunction::iterator MBBIter = BB;
15572   ++MBBIter;
15573
15574   MF->insert(MBBIter, bumpMBB);
15575   MF->insert(MBBIter, mallocMBB);
15576   MF->insert(MBBIter, continueMBB);
15577
15578   continueMBB->splice(continueMBB->begin(), BB, llvm::next
15579                       (MachineBasicBlock::iterator(MI)), BB->end());
15580   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15581
15582   // Add code to the main basic block to check if the stack limit has been hit,
15583   // and if so, jump to mallocMBB otherwise to bumpMBB.
15584   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
15585   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
15586     .addReg(tmpSPVReg).addReg(sizeVReg);
15587   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
15588     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
15589     .addReg(SPLimitVReg);
15590   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15591
15592   // bumpMBB simply decreases the stack pointer, since we know the current
15593   // stacklet has enough space.
15594   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
15595     .addReg(SPLimitVReg);
15596   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
15597     .addReg(SPLimitVReg);
15598   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15599
15600   // Calls into a routine in libgcc to allocate more space from the heap.
15601   const uint32_t *RegMask =
15602     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15603   if (Is64Bit) {
15604     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15605       .addReg(sizeVReg);
15606     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
15607       .addExternalSymbol("__morestack_allocate_stack_space")
15608       .addRegMask(RegMask)
15609       .addReg(X86::RDI, RegState::Implicit)
15610       .addReg(X86::RAX, RegState::ImplicitDefine);
15611   } else {
15612     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15613       .addImm(12);
15614     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15615     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
15616       .addExternalSymbol("__morestack_allocate_stack_space")
15617       .addRegMask(RegMask)
15618       .addReg(X86::EAX, RegState::ImplicitDefine);
15619   }
15620
15621   if (!Is64Bit)
15622     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15623       .addImm(16);
15624
15625   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15626     .addReg(Is64Bit ? X86::RAX : X86::EAX);
15627   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15628
15629   // Set up the CFG correctly.
15630   BB->addSuccessor(bumpMBB);
15631   BB->addSuccessor(mallocMBB);
15632   mallocMBB->addSuccessor(continueMBB);
15633   bumpMBB->addSuccessor(continueMBB);
15634
15635   // Take care of the PHI nodes.
15636   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15637           MI->getOperand(0).getReg())
15638     .addReg(mallocPtrVReg).addMBB(mallocMBB)
15639     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15640
15641   // Delete the original pseudo instruction.
15642   MI->eraseFromParent();
15643
15644   // And we're done.
15645   return continueMBB;
15646 }
15647
15648 MachineBasicBlock *
15649 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
15650                                           MachineBasicBlock *BB) const {
15651   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15652   DebugLoc DL = MI->getDebugLoc();
15653
15654   assert(!Subtarget->isTargetMacho());
15655
15656   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
15657   // non-trivial part is impdef of ESP.
15658
15659   if (Subtarget->isTargetWin64()) {
15660     if (Subtarget->isTargetCygMing()) {
15661       // ___chkstk(Mingw64):
15662       // Clobbers R10, R11, RAX and EFLAGS.
15663       // Updates RSP.
15664       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15665         .addExternalSymbol("___chkstk")
15666         .addReg(X86::RAX, RegState::Implicit)
15667         .addReg(X86::RSP, RegState::Implicit)
15668         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15669         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15670         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15671     } else {
15672       // __chkstk(MSVCRT): does not update stack pointer.
15673       // Clobbers R10, R11 and EFLAGS.
15674       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15675         .addExternalSymbol("__chkstk")
15676         .addReg(X86::RAX, RegState::Implicit)
15677         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15678       // RAX has the offset to be subtracted from RSP.
15679       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15680         .addReg(X86::RSP)
15681         .addReg(X86::RAX);
15682     }
15683   } else {
15684     const char *StackProbeSymbol =
15685       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15686
15687     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15688       .addExternalSymbol(StackProbeSymbol)
15689       .addReg(X86::EAX, RegState::Implicit)
15690       .addReg(X86::ESP, RegState::Implicit)
15691       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15692       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15693       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15694   }
15695
15696   MI->eraseFromParent();   // The pseudo instruction is gone now.
15697   return BB;
15698 }
15699
15700 MachineBasicBlock *
15701 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15702                                       MachineBasicBlock *BB) const {
15703   // This is pretty easy.  We're taking the value that we received from
15704   // our load from the relocation, sticking it in either RDI (x86-64)
15705   // or EAX and doing an indirect call.  The return value will then
15706   // be in the normal return register.
15707   const X86InstrInfo *TII
15708     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
15709   DebugLoc DL = MI->getDebugLoc();
15710   MachineFunction *F = BB->getParent();
15711
15712   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
15713   assert(MI->getOperand(3).isGlobal() && "This should be a global");
15714
15715   // Get a register mask for the lowered call.
15716   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15717   // proper register mask.
15718   const uint32_t *RegMask =
15719     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
15720   if (Subtarget->is64Bit()) {
15721     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15722                                       TII->get(X86::MOV64rm), X86::RDI)
15723     .addReg(X86::RIP)
15724     .addImm(0).addReg(0)
15725     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15726                       MI->getOperand(3).getTargetFlags())
15727     .addReg(0);
15728     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
15729     addDirectMem(MIB, X86::RDI);
15730     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
15731   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
15732     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15733                                       TII->get(X86::MOV32rm), X86::EAX)
15734     .addReg(0)
15735     .addImm(0).addReg(0)
15736     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15737                       MI->getOperand(3).getTargetFlags())
15738     .addReg(0);
15739     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15740     addDirectMem(MIB, X86::EAX);
15741     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15742   } else {
15743     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15744                                       TII->get(X86::MOV32rm), X86::EAX)
15745     .addReg(TII->getGlobalBaseReg(F))
15746     .addImm(0).addReg(0)
15747     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
15748                       MI->getOperand(3).getTargetFlags())
15749     .addReg(0);
15750     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
15751     addDirectMem(MIB, X86::EAX);
15752     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
15753   }
15754
15755   MI->eraseFromParent(); // The pseudo instruction is gone now.
15756   return BB;
15757 }
15758
15759 MachineBasicBlock *
15760 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15761                                     MachineBasicBlock *MBB) const {
15762   DebugLoc DL = MI->getDebugLoc();
15763   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15764
15765   MachineFunction *MF = MBB->getParent();
15766   MachineRegisterInfo &MRI = MF->getRegInfo();
15767
15768   const BasicBlock *BB = MBB->getBasicBlock();
15769   MachineFunction::iterator I = MBB;
15770   ++I;
15771
15772   // Memory Reference
15773   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15774   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15775
15776   unsigned DstReg;
15777   unsigned MemOpndSlot = 0;
15778
15779   unsigned CurOp = 0;
15780
15781   DstReg = MI->getOperand(CurOp++).getReg();
15782   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15783   assert(RC->hasType(MVT::i32) && "Invalid destination!");
15784   unsigned mainDstReg = MRI.createVirtualRegister(RC);
15785   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15786
15787   MemOpndSlot = CurOp;
15788
15789   MVT PVT = getPointerTy();
15790   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15791          "Invalid Pointer Size!");
15792
15793   // For v = setjmp(buf), we generate
15794   //
15795   // thisMBB:
15796   //  buf[LabelOffset] = restoreMBB
15797   //  SjLjSetup restoreMBB
15798   //
15799   // mainMBB:
15800   //  v_main = 0
15801   //
15802   // sinkMBB:
15803   //  v = phi(main, restore)
15804   //
15805   // restoreMBB:
15806   //  v_restore = 1
15807
15808   MachineBasicBlock *thisMBB = MBB;
15809   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15810   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15811   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15812   MF->insert(I, mainMBB);
15813   MF->insert(I, sinkMBB);
15814   MF->push_back(restoreMBB);
15815
15816   MachineInstrBuilder MIB;
15817
15818   // Transfer the remainder of BB and its successor edges to sinkMBB.
15819   sinkMBB->splice(sinkMBB->begin(), MBB,
15820                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15821   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15822
15823   // thisMBB:
15824   unsigned PtrStoreOpc = 0;
15825   unsigned LabelReg = 0;
15826   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15827   Reloc::Model RM = getTargetMachine().getRelocationModel();
15828   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15829                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
15830
15831   // Prepare IP either in reg or imm.
15832   if (!UseImmLabel) {
15833     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15834     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15835     LabelReg = MRI.createVirtualRegister(PtrRC);
15836     if (Subtarget->is64Bit()) {
15837       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15838               .addReg(X86::RIP)
15839               .addImm(0)
15840               .addReg(0)
15841               .addMBB(restoreMBB)
15842               .addReg(0);
15843     } else {
15844       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15845       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15846               .addReg(XII->getGlobalBaseReg(MF))
15847               .addImm(0)
15848               .addReg(0)
15849               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15850               .addReg(0);
15851     }
15852   } else
15853     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
15854   // Store IP
15855   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
15856   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15857     if (i == X86::AddrDisp)
15858       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
15859     else
15860       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15861   }
15862   if (!UseImmLabel)
15863     MIB.addReg(LabelReg);
15864   else
15865     MIB.addMBB(restoreMBB);
15866   MIB.setMemRefs(MMOBegin, MMOEnd);
15867   // Setup
15868   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15869           .addMBB(restoreMBB);
15870
15871   const X86RegisterInfo *RegInfo =
15872     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15873   MIB.addRegMask(RegInfo->getNoPreservedMask());
15874   thisMBB->addSuccessor(mainMBB);
15875   thisMBB->addSuccessor(restoreMBB);
15876
15877   // mainMBB:
15878   //  EAX = 0
15879   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15880   mainMBB->addSuccessor(sinkMBB);
15881
15882   // sinkMBB:
15883   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15884           TII->get(X86::PHI), DstReg)
15885     .addReg(mainDstReg).addMBB(mainMBB)
15886     .addReg(restoreDstReg).addMBB(restoreMBB);
15887
15888   // restoreMBB:
15889   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15890   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15891   restoreMBB->addSuccessor(sinkMBB);
15892
15893   MI->eraseFromParent();
15894   return sinkMBB;
15895 }
15896
15897 MachineBasicBlock *
15898 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15899                                      MachineBasicBlock *MBB) const {
15900   DebugLoc DL = MI->getDebugLoc();
15901   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15902
15903   MachineFunction *MF = MBB->getParent();
15904   MachineRegisterInfo &MRI = MF->getRegInfo();
15905
15906   // Memory Reference
15907   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15908   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15909
15910   MVT PVT = getPointerTy();
15911   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15912          "Invalid Pointer Size!");
15913
15914   const TargetRegisterClass *RC =
15915     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15916   unsigned Tmp = MRI.createVirtualRegister(RC);
15917   // Since FP is only updated here but NOT referenced, it's treated as GPR.
15918   const X86RegisterInfo *RegInfo =
15919     static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
15920   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15921   unsigned SP = RegInfo->getStackRegister();
15922
15923   MachineInstrBuilder MIB;
15924
15925   const int64_t LabelOffset = 1 * PVT.getStoreSize();
15926   const int64_t SPOffset = 2 * PVT.getStoreSize();
15927
15928   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15929   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15930
15931   // Reload FP
15932   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15933   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15934     MIB.addOperand(MI->getOperand(i));
15935   MIB.setMemRefs(MMOBegin, MMOEnd);
15936   // Reload IP
15937   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15938   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15939     if (i == X86::AddrDisp)
15940       MIB.addDisp(MI->getOperand(i), LabelOffset);
15941     else
15942       MIB.addOperand(MI->getOperand(i));
15943   }
15944   MIB.setMemRefs(MMOBegin, MMOEnd);
15945   // Reload SP
15946   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15947   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15948     if (i == X86::AddrDisp)
15949       MIB.addDisp(MI->getOperand(i), SPOffset);
15950     else
15951       MIB.addOperand(MI->getOperand(i));
15952   }
15953   MIB.setMemRefs(MMOBegin, MMOEnd);
15954   // Jump
15955   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15956
15957   MI->eraseFromParent();
15958   return MBB;
15959 }
15960
15961 MachineBasicBlock *
15962 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
15963                                                MachineBasicBlock *BB) const {
15964   switch (MI->getOpcode()) {
15965   default: llvm_unreachable("Unexpected instr type to insert");
15966   case X86::TAILJMPd64:
15967   case X86::TAILJMPr64:
15968   case X86::TAILJMPm64:
15969     llvm_unreachable("TAILJMP64 would not be touched here.");
15970   case X86::TCRETURNdi64:
15971   case X86::TCRETURNri64:
15972   case X86::TCRETURNmi64:
15973     return BB;
15974   case X86::WIN_ALLOCA:
15975     return EmitLoweredWinAlloca(MI, BB);
15976   case X86::SEG_ALLOCA_32:
15977     return EmitLoweredSegAlloca(MI, BB, false);
15978   case X86::SEG_ALLOCA_64:
15979     return EmitLoweredSegAlloca(MI, BB, true);
15980   case X86::TLSCall_32:
15981   case X86::TLSCall_64:
15982     return EmitLoweredTLSCall(MI, BB);
15983   case X86::CMOV_GR8:
15984   case X86::CMOV_FR32:
15985   case X86::CMOV_FR64:
15986   case X86::CMOV_V4F32:
15987   case X86::CMOV_V2F64:
15988   case X86::CMOV_V2I64:
15989   case X86::CMOV_V8F32:
15990   case X86::CMOV_V4F64:
15991   case X86::CMOV_V4I64:
15992   case X86::CMOV_V16F32:
15993   case X86::CMOV_V8F64:
15994   case X86::CMOV_V8I64:
15995   case X86::CMOV_GR16:
15996   case X86::CMOV_GR32:
15997   case X86::CMOV_RFP32:
15998   case X86::CMOV_RFP64:
15999   case X86::CMOV_RFP80:
16000     return EmitLoweredSelect(MI, BB);
16001
16002   case X86::FP32_TO_INT16_IN_MEM:
16003   case X86::FP32_TO_INT32_IN_MEM:
16004   case X86::FP32_TO_INT64_IN_MEM:
16005   case X86::FP64_TO_INT16_IN_MEM:
16006   case X86::FP64_TO_INT32_IN_MEM:
16007   case X86::FP64_TO_INT64_IN_MEM:
16008   case X86::FP80_TO_INT16_IN_MEM:
16009   case X86::FP80_TO_INT32_IN_MEM:
16010   case X86::FP80_TO_INT64_IN_MEM: {
16011     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
16012     DebugLoc DL = MI->getDebugLoc();
16013
16014     // Change the floating point control register to use "round towards zero"
16015     // mode when truncating to an integer value.
16016     MachineFunction *F = BB->getParent();
16017     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
16018     addFrameReference(BuildMI(*BB, MI, DL,
16019                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
16020
16021     // Load the old value of the high byte of the control word...
16022     unsigned OldCW =
16023       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
16024     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
16025                       CWFrameIdx);
16026
16027     // Set the high part to be round to zero...
16028     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
16029       .addImm(0xC7F);
16030
16031     // Reload the modified control word now...
16032     addFrameReference(BuildMI(*BB, MI, DL,
16033                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16034
16035     // Restore the memory image of control word to original value
16036     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
16037       .addReg(OldCW);
16038
16039     // Get the X86 opcode to use.
16040     unsigned Opc;
16041     switch (MI->getOpcode()) {
16042     default: llvm_unreachable("illegal opcode!");
16043     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
16044     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
16045     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
16046     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
16047     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
16048     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
16049     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
16050     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
16051     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
16052     }
16053
16054     X86AddressMode AM;
16055     MachineOperand &Op = MI->getOperand(0);
16056     if (Op.isReg()) {
16057       AM.BaseType = X86AddressMode::RegBase;
16058       AM.Base.Reg = Op.getReg();
16059     } else {
16060       AM.BaseType = X86AddressMode::FrameIndexBase;
16061       AM.Base.FrameIndex = Op.getIndex();
16062     }
16063     Op = MI->getOperand(1);
16064     if (Op.isImm())
16065       AM.Scale = Op.getImm();
16066     Op = MI->getOperand(2);
16067     if (Op.isImm())
16068       AM.IndexReg = Op.getImm();
16069     Op = MI->getOperand(3);
16070     if (Op.isGlobal()) {
16071       AM.GV = Op.getGlobal();
16072     } else {
16073       AM.Disp = Op.getImm();
16074     }
16075     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
16076                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
16077
16078     // Reload the original control word now.
16079     addFrameReference(BuildMI(*BB, MI, DL,
16080                               TII->get(X86::FLDCW16m)), CWFrameIdx);
16081
16082     MI->eraseFromParent();   // The pseudo instruction is gone now.
16083     return BB;
16084   }
16085     // String/text processing lowering.
16086   case X86::PCMPISTRM128REG:
16087   case X86::VPCMPISTRM128REG:
16088   case X86::PCMPISTRM128MEM:
16089   case X86::VPCMPISTRM128MEM:
16090   case X86::PCMPESTRM128REG:
16091   case X86::VPCMPESTRM128REG:
16092   case X86::PCMPESTRM128MEM:
16093   case X86::VPCMPESTRM128MEM:
16094     assert(Subtarget->hasSSE42() &&
16095            "Target must have SSE4.2 or AVX features enabled");
16096     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
16097
16098   // String/text processing lowering.
16099   case X86::PCMPISTRIREG:
16100   case X86::VPCMPISTRIREG:
16101   case X86::PCMPISTRIMEM:
16102   case X86::VPCMPISTRIMEM:
16103   case X86::PCMPESTRIREG:
16104   case X86::VPCMPESTRIREG:
16105   case X86::PCMPESTRIMEM:
16106   case X86::VPCMPESTRIMEM:
16107     assert(Subtarget->hasSSE42() &&
16108            "Target must have SSE4.2 or AVX features enabled");
16109     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
16110
16111   // Thread synchronization.
16112   case X86::MONITOR:
16113     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
16114
16115   // xbegin
16116   case X86::XBEGIN:
16117     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
16118
16119   // Atomic Lowering.
16120   case X86::ATOMAND8:
16121   case X86::ATOMAND16:
16122   case X86::ATOMAND32:
16123   case X86::ATOMAND64:
16124     // Fall through
16125   case X86::ATOMOR8:
16126   case X86::ATOMOR16:
16127   case X86::ATOMOR32:
16128   case X86::ATOMOR64:
16129     // Fall through
16130   case X86::ATOMXOR16:
16131   case X86::ATOMXOR8:
16132   case X86::ATOMXOR32:
16133   case X86::ATOMXOR64:
16134     // Fall through
16135   case X86::ATOMNAND8:
16136   case X86::ATOMNAND16:
16137   case X86::ATOMNAND32:
16138   case X86::ATOMNAND64:
16139     // Fall through
16140   case X86::ATOMMAX8:
16141   case X86::ATOMMAX16:
16142   case X86::ATOMMAX32:
16143   case X86::ATOMMAX64:
16144     // Fall through
16145   case X86::ATOMMIN8:
16146   case X86::ATOMMIN16:
16147   case X86::ATOMMIN32:
16148   case X86::ATOMMIN64:
16149     // Fall through
16150   case X86::ATOMUMAX8:
16151   case X86::ATOMUMAX16:
16152   case X86::ATOMUMAX32:
16153   case X86::ATOMUMAX64:
16154     // Fall through
16155   case X86::ATOMUMIN8:
16156   case X86::ATOMUMIN16:
16157   case X86::ATOMUMIN32:
16158   case X86::ATOMUMIN64:
16159     return EmitAtomicLoadArith(MI, BB);
16160
16161   // This group does 64-bit operations on a 32-bit host.
16162   case X86::ATOMAND6432:
16163   case X86::ATOMOR6432:
16164   case X86::ATOMXOR6432:
16165   case X86::ATOMNAND6432:
16166   case X86::ATOMADD6432:
16167   case X86::ATOMSUB6432:
16168   case X86::ATOMMAX6432:
16169   case X86::ATOMMIN6432:
16170   case X86::ATOMUMAX6432:
16171   case X86::ATOMUMIN6432:
16172   case X86::ATOMSWAP6432:
16173     return EmitAtomicLoadArith6432(MI, BB);
16174
16175   case X86::VASTART_SAVE_XMM_REGS:
16176     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
16177
16178   case X86::VAARG_64:
16179     return EmitVAARG64WithCustomInserter(MI, BB);
16180
16181   case X86::EH_SjLj_SetJmp32:
16182   case X86::EH_SjLj_SetJmp64:
16183     return emitEHSjLjSetJmp(MI, BB);
16184
16185   case X86::EH_SjLj_LongJmp32:
16186   case X86::EH_SjLj_LongJmp64:
16187     return emitEHSjLjLongJmp(MI, BB);
16188
16189   case TargetOpcode::STACKMAP:
16190   case TargetOpcode::PATCHPOINT:
16191     return emitPatchPoint(MI, BB);
16192   }
16193 }
16194
16195 //===----------------------------------------------------------------------===//
16196 //                           X86 Optimization Hooks
16197 //===----------------------------------------------------------------------===//
16198
16199 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
16200                                                        APInt &KnownZero,
16201                                                        APInt &KnownOne,
16202                                                        const SelectionDAG &DAG,
16203                                                        unsigned Depth) const {
16204   unsigned BitWidth = KnownZero.getBitWidth();
16205   unsigned Opc = Op.getOpcode();
16206   assert((Opc >= ISD::BUILTIN_OP_END ||
16207           Opc == ISD::INTRINSIC_WO_CHAIN ||
16208           Opc == ISD::INTRINSIC_W_CHAIN ||
16209           Opc == ISD::INTRINSIC_VOID) &&
16210          "Should use MaskedValueIsZero if you don't know whether Op"
16211          " is a target node!");
16212
16213   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
16214   switch (Opc) {
16215   default: break;
16216   case X86ISD::ADD:
16217   case X86ISD::SUB:
16218   case X86ISD::ADC:
16219   case X86ISD::SBB:
16220   case X86ISD::SMUL:
16221   case X86ISD::UMUL:
16222   case X86ISD::INC:
16223   case X86ISD::DEC:
16224   case X86ISD::OR:
16225   case X86ISD::XOR:
16226   case X86ISD::AND:
16227     // These nodes' second result is a boolean.
16228     if (Op.getResNo() == 0)
16229       break;
16230     // Fallthrough
16231   case X86ISD::SETCC:
16232     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
16233     break;
16234   case ISD::INTRINSIC_WO_CHAIN: {
16235     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16236     unsigned NumLoBits = 0;
16237     switch (IntId) {
16238     default: break;
16239     case Intrinsic::x86_sse_movmsk_ps:
16240     case Intrinsic::x86_avx_movmsk_ps_256:
16241     case Intrinsic::x86_sse2_movmsk_pd:
16242     case Intrinsic::x86_avx_movmsk_pd_256:
16243     case Intrinsic::x86_mmx_pmovmskb:
16244     case Intrinsic::x86_sse2_pmovmskb_128:
16245     case Intrinsic::x86_avx2_pmovmskb: {
16246       // High bits of movmskp{s|d}, pmovmskb are known zero.
16247       switch (IntId) {
16248         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
16249         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
16250         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
16251         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
16252         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
16253         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
16254         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
16255         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
16256       }
16257       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
16258       break;
16259     }
16260     }
16261     break;
16262   }
16263   }
16264 }
16265
16266 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16267                                                          unsigned Depth) const {
16268   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16269   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16270     return Op.getValueType().getScalarType().getSizeInBits();
16271
16272   // Fallback case.
16273   return 1;
16274 }
16275
16276 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
16277 /// node is a GlobalAddress + offset.
16278 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
16279                                        const GlobalValue* &GA,
16280                                        int64_t &Offset) const {
16281   if (N->getOpcode() == X86ISD::Wrapper) {
16282     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
16283       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
16284       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
16285       return true;
16286     }
16287   }
16288   return TargetLowering::isGAPlusOffset(N, GA, Offset);
16289 }
16290
16291 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16292 /// same as extracting the high 128-bit part of 256-bit vector and then
16293 /// inserting the result into the low part of a new 256-bit vector
16294 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16295   EVT VT = SVOp->getValueType(0);
16296   unsigned NumElems = VT.getVectorNumElements();
16297
16298   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16299   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
16300     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16301         SVOp->getMaskElt(j) >= 0)
16302       return false;
16303
16304   return true;
16305 }
16306
16307 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16308 /// same as extracting the low 128-bit part of 256-bit vector and then
16309 /// inserting the result into the high part of a new 256-bit vector
16310 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16311   EVT VT = SVOp->getValueType(0);
16312   unsigned NumElems = VT.getVectorNumElements();
16313
16314   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16315   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
16316     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16317         SVOp->getMaskElt(j) >= 0)
16318       return false;
16319
16320   return true;
16321 }
16322
16323 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16324 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
16325                                         TargetLowering::DAGCombinerInfo &DCI,
16326                                         const X86Subtarget* Subtarget) {
16327   SDLoc dl(N);
16328   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16329   SDValue V1 = SVOp->getOperand(0);
16330   SDValue V2 = SVOp->getOperand(1);
16331   EVT VT = SVOp->getValueType(0);
16332   unsigned NumElems = VT.getVectorNumElements();
16333
16334   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16335       V2.getOpcode() == ISD::CONCAT_VECTORS) {
16336     //
16337     //                   0,0,0,...
16338     //                      |
16339     //    V      UNDEF    BUILD_VECTOR    UNDEF
16340     //     \      /           \           /
16341     //  CONCAT_VECTOR         CONCAT_VECTOR
16342     //         \                  /
16343     //          \                /
16344     //          RESULT: V + zero extended
16345     //
16346     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16347         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16348         V1.getOperand(1).getOpcode() != ISD::UNDEF)
16349       return SDValue();
16350
16351     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16352       return SDValue();
16353
16354     // To match the shuffle mask, the first half of the mask should
16355     // be exactly the first vector, and all the rest a splat with the
16356     // first element of the second one.
16357     for (unsigned i = 0; i != NumElems/2; ++i)
16358       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16359           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16360         return SDValue();
16361
16362     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16363     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
16364       if (Ld->hasNUsesOfValue(1, 0)) {
16365         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16366         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16367         SDValue ResNode =
16368           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16369                                   array_lengthof(Ops),
16370                                   Ld->getMemoryVT(),
16371                                   Ld->getPointerInfo(),
16372                                   Ld->getAlignment(),
16373                                   false/*isVolatile*/, true/*ReadMem*/,
16374                                   false/*WriteMem*/);
16375
16376         // Make sure the newly-created LOAD is in the same position as Ld in
16377         // terms of dependency. We create a TokenFactor for Ld and ResNode,
16378         // and update uses of Ld's output chain to use the TokenFactor.
16379         if (Ld->hasAnyUseOfValue(1)) {
16380           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16381                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16382           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16383           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16384                                  SDValue(ResNode.getNode(), 1));
16385         }
16386
16387         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16388       }
16389     }
16390
16391     // Emit a zeroed vector and insert the desired subvector on its
16392     // first half.
16393     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
16394     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
16395     return DCI.CombineTo(N, InsV);
16396   }
16397
16398   //===--------------------------------------------------------------------===//
16399   // Combine some shuffles into subvector extracts and inserts:
16400   //
16401
16402   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16403   if (isShuffleHigh128VectorInsertLow(SVOp)) {
16404     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16405     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
16406     return DCI.CombineTo(N, InsV);
16407   }
16408
16409   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16410   if (isShuffleLow128VectorInsertHigh(SVOp)) {
16411     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16412     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
16413     return DCI.CombineTo(N, InsV);
16414   }
16415
16416   return SDValue();
16417 }
16418
16419 /// PerformShuffleCombine - Performs several different shuffle combines.
16420 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
16421                                      TargetLowering::DAGCombinerInfo &DCI,
16422                                      const X86Subtarget *Subtarget) {
16423   SDLoc dl(N);
16424   EVT VT = N->getValueType(0);
16425
16426   // Don't create instructions with illegal types after legalize types has run.
16427   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16428   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16429     return SDValue();
16430
16431   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
16432   if (Subtarget->hasFp256() && VT.is256BitVector() &&
16433       N->getOpcode() == ISD::VECTOR_SHUFFLE)
16434     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
16435
16436   // Only handle 128 wide vector from here on.
16437   if (!VT.is128BitVector())
16438     return SDValue();
16439
16440   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16441   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16442   // consecutive, non-overlapping, and in the right order.
16443   SmallVector<SDValue, 16> Elts;
16444   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
16445     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
16446
16447   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
16448 }
16449
16450 /// PerformTruncateCombine - Converts truncate operation to
16451 /// a sequence of vector shuffle operations.
16452 /// It is possible when we truncate 256-bit vector to 128-bit vector
16453 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16454                                       TargetLowering::DAGCombinerInfo &DCI,
16455                                       const X86Subtarget *Subtarget)  {
16456   return SDValue();
16457 }
16458
16459 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16460 /// specific shuffle of a load can be folded into a single element load.
16461 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16462 /// shuffles have been customed lowered so we need to handle those here.
16463 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16464                                          TargetLowering::DAGCombinerInfo &DCI) {
16465   if (DCI.isBeforeLegalizeOps())
16466     return SDValue();
16467
16468   SDValue InVec = N->getOperand(0);
16469   SDValue EltNo = N->getOperand(1);
16470
16471   if (!isa<ConstantSDNode>(EltNo))
16472     return SDValue();
16473
16474   EVT VT = InVec.getValueType();
16475
16476   bool HasShuffleIntoBitcast = false;
16477   if (InVec.getOpcode() == ISD::BITCAST) {
16478     // Don't duplicate a load with other uses.
16479     if (!InVec.hasOneUse())
16480       return SDValue();
16481     EVT BCVT = InVec.getOperand(0).getValueType();
16482     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16483       return SDValue();
16484     InVec = InVec.getOperand(0);
16485     HasShuffleIntoBitcast = true;
16486   }
16487
16488   if (!isTargetShuffle(InVec.getOpcode()))
16489     return SDValue();
16490
16491   // Don't duplicate a load with other uses.
16492   if (!InVec.hasOneUse())
16493     return SDValue();
16494
16495   SmallVector<int, 16> ShuffleMask;
16496   bool UnaryShuffle;
16497   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16498                             UnaryShuffle))
16499     return SDValue();
16500
16501   // Select the input vector, guarding against out of range extract vector.
16502   unsigned NumElems = VT.getVectorNumElements();
16503   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16504   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16505   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16506                                          : InVec.getOperand(1);
16507
16508   // If inputs to shuffle are the same for both ops, then allow 2 uses
16509   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16510
16511   if (LdNode.getOpcode() == ISD::BITCAST) {
16512     // Don't duplicate a load with other uses.
16513     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16514       return SDValue();
16515
16516     AllowedUses = 1; // only allow 1 load use if we have a bitcast
16517     LdNode = LdNode.getOperand(0);
16518   }
16519
16520   if (!ISD::isNormalLoad(LdNode.getNode()))
16521     return SDValue();
16522
16523   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16524
16525   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16526     return SDValue();
16527
16528   if (HasShuffleIntoBitcast) {
16529     // If there's a bitcast before the shuffle, check if the load type and
16530     // alignment is valid.
16531     unsigned Align = LN0->getAlignment();
16532     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16533     unsigned NewAlign = TLI.getDataLayout()->
16534       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16535
16536     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16537       return SDValue();
16538   }
16539
16540   // All checks match so transform back to vector_shuffle so that DAG combiner
16541   // can finish the job
16542   SDLoc dl(N);
16543
16544   // Create shuffle node taking into account the case that its a unary shuffle
16545   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16546   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16547                                  InVec.getOperand(0), Shuffle,
16548                                  &ShuffleMask[0]);
16549   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16550   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16551                      EltNo);
16552 }
16553
16554 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16555 /// generation and convert it from being a bunch of shuffles and extracts
16556 /// to a simple store and scalar loads to extract the elements.
16557 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
16558                                          TargetLowering::DAGCombinerInfo &DCI) {
16559   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16560   if (NewOp.getNode())
16561     return NewOp;
16562
16563   SDValue InputVector = N->getOperand(0);
16564
16565   // Detect whether we are trying to convert from mmx to i32 and the bitcast
16566   // from mmx to v2i32 has a single usage.
16567   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16568       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16569       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
16570     return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
16571                        N->getValueType(0),
16572                        InputVector.getNode()->getOperand(0));
16573
16574   // Only operate on vectors of 4 elements, where the alternative shuffling
16575   // gets to be more expensive.
16576   if (InputVector.getValueType() != MVT::v4i32)
16577     return SDValue();
16578
16579   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16580   // single use which is a sign-extend or zero-extend, and all elements are
16581   // used.
16582   SmallVector<SDNode *, 4> Uses;
16583   unsigned ExtractedElements = 0;
16584   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16585        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16586     if (UI.getUse().getResNo() != InputVector.getResNo())
16587       return SDValue();
16588
16589     SDNode *Extract = *UI;
16590     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16591       return SDValue();
16592
16593     if (Extract->getValueType(0) != MVT::i32)
16594       return SDValue();
16595     if (!Extract->hasOneUse())
16596       return SDValue();
16597     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16598         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16599       return SDValue();
16600     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16601       return SDValue();
16602
16603     // Record which element was extracted.
16604     ExtractedElements |=
16605       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16606
16607     Uses.push_back(Extract);
16608   }
16609
16610   // If not all the elements were used, this may not be worthwhile.
16611   if (ExtractedElements != 15)
16612     return SDValue();
16613
16614   // Ok, we've now decided to do the transformation.
16615   SDLoc dl(InputVector);
16616
16617   // Store the value to a temporary stack slot.
16618   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
16619   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16620                             MachinePointerInfo(), false, false, 0);
16621
16622   // Replace each use (extract) with a load of the appropriate element.
16623   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16624        UE = Uses.end(); UI != UE; ++UI) {
16625     SDNode *Extract = *UI;
16626
16627     // cOMpute the element's address.
16628     SDValue Idx = Extract->getOperand(1);
16629     unsigned EltSize =
16630         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16631     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
16632     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16633     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16634
16635     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
16636                                      StackPtr, OffsetVal);
16637
16638     // Load the scalar.
16639     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
16640                                      ScalarAddr, MachinePointerInfo(),
16641                                      false, false, false, 0);
16642
16643     // Replace the exact with the load.
16644     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16645   }
16646
16647   // The replacement was made in place; don't return anything.
16648   return SDValue();
16649 }
16650
16651 /// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
16652 static std::pair<unsigned, bool>
16653 matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16654                    SelectionDAG &DAG, const X86Subtarget *Subtarget) {
16655   if (!VT.isVector())
16656     return std::make_pair(0, false);
16657
16658   bool NeedSplit = false;
16659   switch (VT.getSimpleVT().SimpleTy) {
16660   default: return std::make_pair(0, false);
16661   case MVT::v32i8:
16662   case MVT::v16i16:
16663   case MVT::v8i32:
16664     if (!Subtarget->hasAVX2())
16665       NeedSplit = true;
16666     if (!Subtarget->hasAVX())
16667       return std::make_pair(0, false);
16668     break;
16669   case MVT::v16i8:
16670   case MVT::v8i16:
16671   case MVT::v4i32:
16672     if (!Subtarget->hasSSE2())
16673       return std::make_pair(0, false);
16674   }
16675
16676   // SSE2 has only a small subset of the operations.
16677   bool hasUnsigned = Subtarget->hasSSE41() ||
16678                      (Subtarget->hasSSE2() && VT == MVT::v16i8);
16679   bool hasSigned = Subtarget->hasSSE41() ||
16680                    (Subtarget->hasSSE2() && VT == MVT::v8i16);
16681
16682   ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16683
16684   unsigned Opc = 0;
16685   // Check for x CC y ? x : y.
16686   if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16687       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16688     switch (CC) {
16689     default: break;
16690     case ISD::SETULT:
16691     case ISD::SETULE:
16692       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16693     case ISD::SETUGT:
16694     case ISD::SETUGE:
16695       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16696     case ISD::SETLT:
16697     case ISD::SETLE:
16698       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16699     case ISD::SETGT:
16700     case ISD::SETGE:
16701       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16702     }
16703   // Check for x CC y ? y : x -- a min/max with reversed arms.
16704   } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16705              DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16706     switch (CC) {
16707     default: break;
16708     case ISD::SETULT:
16709     case ISD::SETULE:
16710       Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
16711     case ISD::SETUGT:
16712     case ISD::SETUGE:
16713       Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
16714     case ISD::SETLT:
16715     case ISD::SETLE:
16716       Opc = hasSigned ? X86ISD::SMAX : 0; break;
16717     case ISD::SETGT:
16718     case ISD::SETGE:
16719       Opc = hasSigned ? X86ISD::SMIN : 0; break;
16720     }
16721   }
16722
16723   return std::make_pair(Opc, NeedSplit);
16724 }
16725
16726 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16727 /// nodes.
16728 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
16729                                     TargetLowering::DAGCombinerInfo &DCI,
16730                                     const X86Subtarget *Subtarget) {
16731   SDLoc DL(N);
16732   SDValue Cond = N->getOperand(0);
16733   // Get the LHS/RHS of the select.
16734   SDValue LHS = N->getOperand(1);
16735   SDValue RHS = N->getOperand(2);
16736   EVT VT = LHS.getValueType();
16737   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16738
16739   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
16740   // instructions match the semantics of the common C idiom x<y?x:y but not
16741   // x<=y?x:y, because of how they handle negative zero (which can be
16742   // ignored in unsafe-math mode).
16743   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
16744       VT != MVT::f80 && TLI.isTypeLegal(VT) &&
16745       (Subtarget->hasSSE2() ||
16746        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
16747     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16748
16749     unsigned Opcode = 0;
16750     // Check for x CC y ? x : y.
16751     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16752         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16753       switch (CC) {
16754       default: break;
16755       case ISD::SETULT:
16756         // Converting this to a min would handle NaNs incorrectly, and swapping
16757         // the operands would cause it to handle comparisons between positive
16758         // and negative zero incorrectly.
16759         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16760           if (!DAG.getTarget().Options.UnsafeFPMath &&
16761               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16762             break;
16763           std::swap(LHS, RHS);
16764         }
16765         Opcode = X86ISD::FMIN;
16766         break;
16767       case ISD::SETOLE:
16768         // Converting this to a min would handle comparisons between positive
16769         // and negative zero incorrectly.
16770         if (!DAG.getTarget().Options.UnsafeFPMath &&
16771             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16772           break;
16773         Opcode = X86ISD::FMIN;
16774         break;
16775       case ISD::SETULE:
16776         // Converting this to a min would handle both negative zeros and NaNs
16777         // incorrectly, but we can swap the operands to fix both.
16778         std::swap(LHS, RHS);
16779       case ISD::SETOLT:
16780       case ISD::SETLT:
16781       case ISD::SETLE:
16782         Opcode = X86ISD::FMIN;
16783         break;
16784
16785       case ISD::SETOGE:
16786         // Converting this to a max would handle comparisons between positive
16787         // and negative zero incorrectly.
16788         if (!DAG.getTarget().Options.UnsafeFPMath &&
16789             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16790           break;
16791         Opcode = X86ISD::FMAX;
16792         break;
16793       case ISD::SETUGT:
16794         // Converting this to a max would handle NaNs incorrectly, and swapping
16795         // the operands would cause it to handle comparisons between positive
16796         // and negative zero incorrectly.
16797         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
16798           if (!DAG.getTarget().Options.UnsafeFPMath &&
16799               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16800             break;
16801           std::swap(LHS, RHS);
16802         }
16803         Opcode = X86ISD::FMAX;
16804         break;
16805       case ISD::SETUGE:
16806         // Converting this to a max would handle both negative zeros and NaNs
16807         // incorrectly, but we can swap the operands to fix both.
16808         std::swap(LHS, RHS);
16809       case ISD::SETOGT:
16810       case ISD::SETGT:
16811       case ISD::SETGE:
16812         Opcode = X86ISD::FMAX;
16813         break;
16814       }
16815     // Check for x CC y ? y : x -- a min/max with reversed arms.
16816     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16817                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16818       switch (CC) {
16819       default: break;
16820       case ISD::SETOGE:
16821         // Converting this to a min would handle comparisons between positive
16822         // and negative zero incorrectly, and swapping the operands would
16823         // cause it to handle NaNs incorrectly.
16824         if (!DAG.getTarget().Options.UnsafeFPMath &&
16825             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
16826           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16827             break;
16828           std::swap(LHS, RHS);
16829         }
16830         Opcode = X86ISD::FMIN;
16831         break;
16832       case ISD::SETUGT:
16833         // Converting this to a min would handle NaNs incorrectly.
16834         if (!DAG.getTarget().Options.UnsafeFPMath &&
16835             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16836           break;
16837         Opcode = X86ISD::FMIN;
16838         break;
16839       case ISD::SETUGE:
16840         // Converting this to a min would handle both negative zeros and NaNs
16841         // incorrectly, but we can swap the operands to fix both.
16842         std::swap(LHS, RHS);
16843       case ISD::SETOGT:
16844       case ISD::SETGT:
16845       case ISD::SETGE:
16846         Opcode = X86ISD::FMIN;
16847         break;
16848
16849       case ISD::SETULT:
16850         // Converting this to a max would handle NaNs incorrectly.
16851         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16852           break;
16853         Opcode = X86ISD::FMAX;
16854         break;
16855       case ISD::SETOLE:
16856         // Converting this to a max would handle comparisons between positive
16857         // and negative zero incorrectly, and swapping the operands would
16858         // cause it to handle NaNs incorrectly.
16859         if (!DAG.getTarget().Options.UnsafeFPMath &&
16860             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
16861           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
16862             break;
16863           std::swap(LHS, RHS);
16864         }
16865         Opcode = X86ISD::FMAX;
16866         break;
16867       case ISD::SETULE:
16868         // Converting this to a max would handle both negative zeros and NaNs
16869         // incorrectly, but we can swap the operands to fix both.
16870         std::swap(LHS, RHS);
16871       case ISD::SETOLT:
16872       case ISD::SETLT:
16873       case ISD::SETLE:
16874         Opcode = X86ISD::FMAX;
16875         break;
16876       }
16877     }
16878
16879     if (Opcode)
16880       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
16881   }
16882
16883   EVT CondVT = Cond.getValueType();
16884   if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
16885       CondVT.getVectorElementType() == MVT::i1) {
16886     // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16887     // lowering on AVX-512. In this case we convert it to
16888     // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16889     // The same situation for all 128 and 256-bit vectors of i8 and i16
16890     EVT OpVT = LHS.getValueType();
16891     if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16892         (OpVT.getVectorElementType() == MVT::i8 ||
16893          OpVT.getVectorElementType() == MVT::i16)) {
16894       Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16895       DCI.AddToWorklist(Cond.getNode());
16896       return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16897     }
16898   }
16899   // If this is a select between two integer constants, try to do some
16900   // optimizations.
16901   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16902     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
16903       // Don't do this for crazy integer types.
16904       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16905         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
16906         // so that TrueC (the true value) is larger than FalseC.
16907         bool NeedsCondInvert = false;
16908
16909         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
16910             // Efficiently invertible.
16911             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
16912              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
16913               isa<ConstantSDNode>(Cond.getOperand(1))))) {
16914           NeedsCondInvert = true;
16915           std::swap(TrueC, FalseC);
16916         }
16917
16918         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
16919         if (FalseC->getAPIntValue() == 0 &&
16920             TrueC->getAPIntValue().isPowerOf2()) {
16921           if (NeedsCondInvert) // Invert the condition if needed.
16922             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16923                                DAG.getConstant(1, Cond.getValueType()));
16924
16925           // Zero extend the condition if needed.
16926           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
16927
16928           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
16929           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
16930                              DAG.getConstant(ShAmt, MVT::i8));
16931         }
16932
16933         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
16934         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
16935           if (NeedsCondInvert) // Invert the condition if needed.
16936             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16937                                DAG.getConstant(1, Cond.getValueType()));
16938
16939           // Zero extend the condition if needed.
16940           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16941                              FalseC->getValueType(0), Cond);
16942           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16943                              SDValue(FalseC, 0));
16944         }
16945
16946         // Optimize cases that will turn into an LEA instruction.  This requires
16947         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
16948         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
16949           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
16950           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
16951
16952           bool isFastMultiplier = false;
16953           if (Diff < 10) {
16954             switch ((unsigned char)Diff) {
16955               default: break;
16956               case 1:  // result = add base, cond
16957               case 2:  // result = lea base(    , cond*2)
16958               case 3:  // result = lea base(cond, cond*2)
16959               case 4:  // result = lea base(    , cond*4)
16960               case 5:  // result = lea base(cond, cond*4)
16961               case 8:  // result = lea base(    , cond*8)
16962               case 9:  // result = lea base(cond, cond*8)
16963                 isFastMultiplier = true;
16964                 break;
16965             }
16966           }
16967
16968           if (isFastMultiplier) {
16969             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16970             if (NeedsCondInvert) // Invert the condition if needed.
16971               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16972                                  DAG.getConstant(1, Cond.getValueType()));
16973
16974             // Zero extend the condition if needed.
16975             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16976                                Cond);
16977             // Scale the condition by the difference.
16978             if (Diff != 1)
16979               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16980                                  DAG.getConstant(Diff, Cond.getValueType()));
16981
16982             // Add the base if non-zero.
16983             if (FalseC->getAPIntValue() != 0)
16984               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16985                                  SDValue(FalseC, 0));
16986             return Cond;
16987           }
16988         }
16989       }
16990   }
16991
16992   // Canonicalize max and min:
16993   // (x > y) ? x : y -> (x >= y) ? x : y
16994   // (x < y) ? x : y -> (x <= y) ? x : y
16995   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16996   // the need for an extra compare
16997   // against zero. e.g.
16998   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16999   // subl   %esi, %edi
17000   // testl  %edi, %edi
17001   // movl   $0, %eax
17002   // cmovgl %edi, %eax
17003   // =>
17004   // xorl   %eax, %eax
17005   // subl   %esi, $edi
17006   // cmovsl %eax, %edi
17007   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
17008       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
17009       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
17010     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17011     switch (CC) {
17012     default: break;
17013     case ISD::SETLT:
17014     case ISD::SETGT: {
17015       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
17016       Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
17017                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
17018       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
17019     }
17020     }
17021   }
17022
17023   // Early exit check
17024   if (!TLI.isTypeLegal(VT))
17025     return SDValue();
17026
17027   // Match VSELECTs into subs with unsigned saturation.
17028   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17029       // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
17030       ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
17031        (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
17032     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
17033
17034     // Check if one of the arms of the VSELECT is a zero vector. If it's on the
17035     // left side invert the predicate to simplify logic below.
17036     SDValue Other;
17037     if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
17038       Other = RHS;
17039       CC = ISD::getSetCCInverse(CC, true);
17040     } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
17041       Other = LHS;
17042     }
17043
17044     if (Other.getNode() && Other->getNumOperands() == 2 &&
17045         DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
17046       SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
17047       SDValue CondRHS = Cond->getOperand(1);
17048
17049       // Look for a general sub with unsigned saturation first.
17050       // x >= y ? x-y : 0 --> subus x, y
17051       // x >  y ? x-y : 0 --> subus x, y
17052       if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
17053           Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
17054         return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17055
17056       // If the RHS is a constant we have to reverse the const canonicalization.
17057       // x > C-1 ? x+-C : 0 --> subus x, C
17058       if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
17059           isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
17060         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17061         if (CondRHS.getConstantOperandVal(0) == -A-1)
17062           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
17063                              DAG.getConstant(-A, VT));
17064       }
17065
17066       // Another special case: If C was a sign bit, the sub has been
17067       // canonicalized into a xor.
17068       // FIXME: Would it be better to use ComputeMaskedBits to determine whether
17069       //        it's safe to decanonicalize the xor?
17070       // x s< 0 ? x^C : 0 --> subus x, C
17071       if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
17072           ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
17073           isSplatVector(OpRHS.getNode())) {
17074         APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
17075         if (A.isSignBit())
17076           return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
17077       }
17078     }
17079   }
17080
17081   // Try to match a min/max vector operation.
17082   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
17083     std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
17084     unsigned Opc = ret.first;
17085     bool NeedSplit = ret.second;
17086
17087     if (Opc && NeedSplit) {
17088       unsigned NumElems = VT.getVectorNumElements();
17089       // Extract the LHS vectors
17090       SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
17091       SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
17092
17093       // Extract the RHS vectors
17094       SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
17095       SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
17096
17097       // Create min/max for each subvector
17098       LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
17099       RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
17100
17101       // Merge the result
17102       return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
17103     } else if (Opc)
17104       return DAG.getNode(Opc, DL, VT, LHS, RHS);
17105   }
17106
17107   // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
17108   if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
17109       // Check if SETCC has already been promoted
17110       TLI.getSetCCResultType(*DAG.getContext(), VT) == CondVT &&
17111       // Check that condition value type matches vselect operand type
17112       CondVT == VT) { 
17113
17114     assert(Cond.getValueType().isVector() &&
17115            "vector select expects a vector selector!");
17116
17117     bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
17118     bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
17119
17120     if (!TValIsAllOnes && !FValIsAllZeros) {
17121       // Try invert the condition if true value is not all 1s and false value
17122       // is not all 0s.
17123       bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
17124       bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
17125
17126       if (TValIsAllZeros || FValIsAllOnes) {
17127         SDValue CC = Cond.getOperand(2);
17128         ISD::CondCode NewCC =
17129           ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
17130                                Cond.getOperand(0).getValueType().isInteger());
17131         Cond = DAG.getSetCC(DL, CondVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
17132         std::swap(LHS, RHS);
17133         TValIsAllOnes = FValIsAllOnes;
17134         FValIsAllZeros = TValIsAllZeros;
17135       }
17136     }
17137
17138     if (TValIsAllOnes || FValIsAllZeros) {
17139       SDValue Ret;
17140
17141       if (TValIsAllOnes && FValIsAllZeros)
17142         Ret = Cond;
17143       else if (TValIsAllOnes)
17144         Ret = DAG.getNode(ISD::OR, DL, CondVT, Cond,
17145                           DAG.getNode(ISD::BITCAST, DL, CondVT, RHS));
17146       else if (FValIsAllZeros)
17147         Ret = DAG.getNode(ISD::AND, DL, CondVT, Cond,
17148                           DAG.getNode(ISD::BITCAST, DL, CondVT, LHS));
17149
17150       return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
17151     }
17152   }
17153
17154   // If we know that this node is legal then we know that it is going to be
17155   // matched by one of the SSE/AVX BLEND instructions. These instructions only
17156   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
17157   // to simplify previous instructions.
17158   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
17159       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
17160     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
17161
17162     // Don't optimize vector selects that map to mask-registers.
17163     if (BitWidth == 1)
17164       return SDValue();
17165
17166     // Check all uses of that condition operand to check whether it will be
17167     // consumed by non-BLEND instructions, which may depend on all bits are set
17168     // properly.
17169     for (SDNode::use_iterator I = Cond->use_begin(),
17170                               E = Cond->use_end(); I != E; ++I)
17171       if (I->getOpcode() != ISD::VSELECT)
17172         // TODO: Add other opcodes eventually lowered into BLEND.
17173         return SDValue();
17174
17175     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
17176     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
17177
17178     APInt KnownZero, KnownOne;
17179     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
17180                                           DCI.isBeforeLegalizeOps());
17181     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
17182         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
17183       DCI.CommitTargetLoweringOpt(TLO);
17184   }
17185
17186   return SDValue();
17187 }
17188
17189 // Check whether a boolean test is testing a boolean value generated by
17190 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
17191 // code.
17192 //
17193 // Simplify the following patterns:
17194 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
17195 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
17196 // to (Op EFLAGS Cond)
17197 //
17198 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
17199 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
17200 // to (Op EFLAGS !Cond)
17201 //
17202 // where Op could be BRCOND or CMOV.
17203 //
17204 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
17205   // Quit if not CMP and SUB with its value result used.
17206   if (Cmp.getOpcode() != X86ISD::CMP &&
17207       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
17208       return SDValue();
17209
17210   // Quit if not used as a boolean value.
17211   if (CC != X86::COND_E && CC != X86::COND_NE)
17212     return SDValue();
17213
17214   // Check CMP operands. One of them should be 0 or 1 and the other should be
17215   // an SetCC or extended from it.
17216   SDValue Op1 = Cmp.getOperand(0);
17217   SDValue Op2 = Cmp.getOperand(1);
17218
17219   SDValue SetCC;
17220   const ConstantSDNode* C = 0;
17221   bool needOppositeCond = (CC == X86::COND_E);
17222   bool checkAgainstTrue = false; // Is it a comparison against 1?
17223
17224   if ((C = dyn_cast<ConstantSDNode>(Op1)))
17225     SetCC = Op2;
17226   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17227     SetCC = Op1;
17228   else // Quit if all operands are not constants.
17229     return SDValue();
17230
17231   if (C->getZExtValue() == 1) {
17232     needOppositeCond = !needOppositeCond;
17233     checkAgainstTrue = true;
17234   } else if (C->getZExtValue() != 0)
17235     // Quit if the constant is neither 0 or 1.
17236     return SDValue();
17237
17238   bool truncatedToBoolWithAnd = false;
17239   // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17240   while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17241          SetCC.getOpcode() == ISD::TRUNCATE ||
17242          SetCC.getOpcode() == ISD::AND) {
17243     if (SetCC.getOpcode() == ISD::AND) {
17244       int OpIdx = -1;
17245       ConstantSDNode *CS;
17246       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17247           CS->getZExtValue() == 1)
17248         OpIdx = 1;
17249       if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17250           CS->getZExtValue() == 1)
17251         OpIdx = 0;
17252       if (OpIdx == -1)
17253         break;
17254       SetCC = SetCC.getOperand(OpIdx);
17255       truncatedToBoolWithAnd = true;
17256     } else
17257       SetCC = SetCC.getOperand(0);
17258   }
17259
17260   switch (SetCC.getOpcode()) {
17261   case X86ISD::SETCC_CARRY:
17262     // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17263     // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17264     // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17265     // truncated to i1 using 'and'.
17266     if (checkAgainstTrue && !truncatedToBoolWithAnd)
17267       break;
17268     assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17269            "Invalid use of SETCC_CARRY!");
17270     // FALL THROUGH
17271   case X86ISD::SETCC:
17272     // Set the condition code or opposite one if necessary.
17273     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17274     if (needOppositeCond)
17275       CC = X86::GetOppositeBranchCondition(CC);
17276     return SetCC.getOperand(1);
17277   case X86ISD::CMOV: {
17278     // Check whether false/true value has canonical one, i.e. 0 or 1.
17279     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17280     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17281     // Quit if true value is not a constant.
17282     if (!TVal)
17283       return SDValue();
17284     // Quit if false value is not a constant.
17285     if (!FVal) {
17286       SDValue Op = SetCC.getOperand(0);
17287       // Skip 'zext' or 'trunc' node.
17288       if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17289           Op.getOpcode() == ISD::TRUNCATE)
17290         Op = Op.getOperand(0);
17291       // A special case for rdrand/rdseed, where 0 is set if false cond is
17292       // found.
17293       if ((Op.getOpcode() != X86ISD::RDRAND &&
17294            Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
17295         return SDValue();
17296     }
17297     // Quit if false value is not the constant 0 or 1.
17298     bool FValIsFalse = true;
17299     if (FVal && FVal->getZExtValue() != 0) {
17300       if (FVal->getZExtValue() != 1)
17301         return SDValue();
17302       // If FVal is 1, opposite cond is needed.
17303       needOppositeCond = !needOppositeCond;
17304       FValIsFalse = false;
17305     }
17306     // Quit if TVal is not the constant opposite of FVal.
17307     if (FValIsFalse && TVal->getZExtValue() != 1)
17308       return SDValue();
17309     if (!FValIsFalse && TVal->getZExtValue() != 0)
17310       return SDValue();
17311     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17312     if (needOppositeCond)
17313       CC = X86::GetOppositeBranchCondition(CC);
17314     return SetCC.getOperand(3);
17315   }
17316   }
17317
17318   return SDValue();
17319 }
17320
17321 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17322 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
17323                                   TargetLowering::DAGCombinerInfo &DCI,
17324                                   const X86Subtarget *Subtarget) {
17325   SDLoc DL(N);
17326
17327   // If the flag operand isn't dead, don't touch this CMOV.
17328   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17329     return SDValue();
17330
17331   SDValue FalseOp = N->getOperand(0);
17332   SDValue TrueOp = N->getOperand(1);
17333   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17334   SDValue Cond = N->getOperand(3);
17335
17336   if (CC == X86::COND_E || CC == X86::COND_NE) {
17337     switch (Cond.getOpcode()) {
17338     default: break;
17339     case X86ISD::BSR:
17340     case X86ISD::BSF:
17341       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17342       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17343         return (CC == X86::COND_E) ? FalseOp : TrueOp;
17344     }
17345   }
17346
17347   SDValue Flags;
17348
17349   Flags = checkBoolTestSetCCCombine(Cond, CC);
17350   if (Flags.getNode() &&
17351       // Extra check as FCMOV only supports a subset of X86 cond.
17352       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
17353     SDValue Ops[] = { FalseOp, TrueOp,
17354                       DAG.getConstant(CC, MVT::i8), Flags };
17355     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17356                        Ops, array_lengthof(Ops));
17357   }
17358
17359   // If this is a select between two integer constants, try to do some
17360   // optimizations.  Note that the operands are ordered the opposite of SELECT
17361   // operands.
17362   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17363     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
17364       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17365       // larger than FalseC (the false value).
17366       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17367         CC = X86::GetOppositeBranchCondition(CC);
17368         std::swap(TrueC, FalseC);
17369         std::swap(TrueOp, FalseOp);
17370       }
17371
17372       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
17373       // This is efficient for any integer data type (including i8/i16) and
17374       // shift amount.
17375       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
17376         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17377                            DAG.getConstant(CC, MVT::i8), Cond);
17378
17379         // Zero extend the condition if needed.
17380         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
17381
17382         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17383         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
17384                            DAG.getConstant(ShAmt, MVT::i8));
17385         if (N->getNumValues() == 2)  // Dead flag value?
17386           return DCI.CombineTo(N, Cond, SDValue());
17387         return Cond;
17388       }
17389
17390       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
17391       // for any integer data type, including i8/i16.
17392       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
17393         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17394                            DAG.getConstant(CC, MVT::i8), Cond);
17395
17396         // Zero extend the condition if needed.
17397         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17398                            FalseC->getValueType(0), Cond);
17399         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17400                            SDValue(FalseC, 0));
17401
17402         if (N->getNumValues() == 2)  // Dead flag value?
17403           return DCI.CombineTo(N, Cond, SDValue());
17404         return Cond;
17405       }
17406
17407       // Optimize cases that will turn into an LEA instruction.  This requires
17408       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
17409       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
17410         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
17411         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
17412
17413         bool isFastMultiplier = false;
17414         if (Diff < 10) {
17415           switch ((unsigned char)Diff) {
17416           default: break;
17417           case 1:  // result = add base, cond
17418           case 2:  // result = lea base(    , cond*2)
17419           case 3:  // result = lea base(cond, cond*2)
17420           case 4:  // result = lea base(    , cond*4)
17421           case 5:  // result = lea base(cond, cond*4)
17422           case 8:  // result = lea base(    , cond*8)
17423           case 9:  // result = lea base(cond, cond*8)
17424             isFastMultiplier = true;
17425             break;
17426           }
17427         }
17428
17429         if (isFastMultiplier) {
17430           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
17431           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17432                              DAG.getConstant(CC, MVT::i8), Cond);
17433           // Zero extend the condition if needed.
17434           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17435                              Cond);
17436           // Scale the condition by the difference.
17437           if (Diff != 1)
17438             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17439                                DAG.getConstant(Diff, Cond.getValueType()));
17440
17441           // Add the base if non-zero.
17442           if (FalseC->getAPIntValue() != 0)
17443             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17444                                SDValue(FalseC, 0));
17445           if (N->getNumValues() == 2)  // Dead flag value?
17446             return DCI.CombineTo(N, Cond, SDValue());
17447           return Cond;
17448         }
17449       }
17450     }
17451   }
17452
17453   // Handle these cases:
17454   //   (select (x != c), e, c) -> select (x != c), e, x),
17455   //   (select (x == c), c, e) -> select (x == c), x, e)
17456   // where the c is an integer constant, and the "select" is the combination
17457   // of CMOV and CMP.
17458   //
17459   // The rationale for this change is that the conditional-move from a constant
17460   // needs two instructions, however, conditional-move from a register needs
17461   // only one instruction.
17462   //
17463   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17464   //  some instruction-combining opportunities. This opt needs to be
17465   //  postponed as late as possible.
17466   //
17467   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17468     // the DCI.xxxx conditions are provided to postpone the optimization as
17469     // late as possible.
17470
17471     ConstantSDNode *CmpAgainst = 0;
17472     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17473         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
17474         !isa<ConstantSDNode>(Cond.getOperand(0))) {
17475
17476       if (CC == X86::COND_NE &&
17477           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17478         CC = X86::GetOppositeBranchCondition(CC);
17479         std::swap(TrueOp, FalseOp);
17480       }
17481
17482       if (CC == X86::COND_E &&
17483           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17484         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17485                           DAG.getConstant(CC, MVT::i8), Cond };
17486         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17487                            array_lengthof(Ops));
17488       }
17489     }
17490   }
17491
17492   return SDValue();
17493 }
17494
17495 /// PerformMulCombine - Optimize a single multiply with constant into two
17496 /// in order to implement it with two cheaper instructions, e.g.
17497 /// LEA + SHL, LEA + LEA.
17498 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17499                                  TargetLowering::DAGCombinerInfo &DCI) {
17500   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17501     return SDValue();
17502
17503   EVT VT = N->getValueType(0);
17504   if (VT != MVT::i64)
17505     return SDValue();
17506
17507   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17508   if (!C)
17509     return SDValue();
17510   uint64_t MulAmt = C->getZExtValue();
17511   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17512     return SDValue();
17513
17514   uint64_t MulAmt1 = 0;
17515   uint64_t MulAmt2 = 0;
17516   if ((MulAmt % 9) == 0) {
17517     MulAmt1 = 9;
17518     MulAmt2 = MulAmt / 9;
17519   } else if ((MulAmt % 5) == 0) {
17520     MulAmt1 = 5;
17521     MulAmt2 = MulAmt / 5;
17522   } else if ((MulAmt % 3) == 0) {
17523     MulAmt1 = 3;
17524     MulAmt2 = MulAmt / 3;
17525   }
17526   if (MulAmt2 &&
17527       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
17528     SDLoc DL(N);
17529
17530     if (isPowerOf2_64(MulAmt2) &&
17531         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17532       // If second multiplifer is pow2, issue it first. We want the multiply by
17533       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17534       // is an add.
17535       std::swap(MulAmt1, MulAmt2);
17536
17537     SDValue NewMul;
17538     if (isPowerOf2_64(MulAmt1))
17539       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
17540                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
17541     else
17542       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
17543                            DAG.getConstant(MulAmt1, VT));
17544
17545     if (isPowerOf2_64(MulAmt2))
17546       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
17547                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
17548     else
17549       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
17550                            DAG.getConstant(MulAmt2, VT));
17551
17552     // Do not add new nodes to DAG combiner worklist.
17553     DCI.CombineTo(N, NewMul, false);
17554   }
17555   return SDValue();
17556 }
17557
17558 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17559   SDValue N0 = N->getOperand(0);
17560   SDValue N1 = N->getOperand(1);
17561   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17562   EVT VT = N0.getValueType();
17563
17564   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17565   // since the result of setcc_c is all zero's or all ones.
17566   if (VT.isInteger() && !VT.isVector() &&
17567       N1C && N0.getOpcode() == ISD::AND &&
17568       N0.getOperand(1).getOpcode() == ISD::Constant) {
17569     SDValue N00 = N0.getOperand(0);
17570     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17571         ((N00.getOpcode() == ISD::ANY_EXTEND ||
17572           N00.getOpcode() == ISD::ZERO_EXTEND) &&
17573          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17574       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17575       APInt ShAmt = N1C->getAPIntValue();
17576       Mask = Mask.shl(ShAmt);
17577       if (Mask != 0)
17578         return DAG.getNode(ISD::AND, SDLoc(N), VT,
17579                            N00, DAG.getConstant(Mask, VT));
17580     }
17581   }
17582
17583   // Hardware support for vector shifts is sparse which makes us scalarize the
17584   // vector operations in many cases. Also, on sandybridge ADD is faster than
17585   // shl.
17586   // (shl V, 1) -> add V,V
17587   if (isSplatVector(N1.getNode())) {
17588     assert(N0.getValueType().isVector() && "Invalid vector shift type");
17589     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17590     // We shift all of the values by one. In many cases we do not have
17591     // hardware support for this operation. This is better expressed as an ADD
17592     // of two values.
17593     if (N1C && (1 == N1C->getZExtValue())) {
17594       return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
17595     }
17596   }
17597
17598   return SDValue();
17599 }
17600
17601 /// \brief Returns a vector of 0s if the node in input is a vector logical
17602 /// shift by a constant amount which is known to be bigger than or equal
17603 /// to the vector element size in bits.
17604 static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17605                                       const X86Subtarget *Subtarget) {
17606   EVT VT = N->getValueType(0);
17607
17608   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17609       (!Subtarget->hasInt256() ||
17610        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17611     return SDValue();
17612
17613   SDValue Amt = N->getOperand(1);
17614   SDLoc DL(N);
17615   if (isSplatVector(Amt.getNode())) {
17616     SDValue SclrAmt = Amt->getOperand(0);
17617     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17618       APInt ShiftAmt = C->getAPIntValue();
17619       unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17620
17621       // SSE2/AVX2 logical shifts always return a vector of 0s
17622       // if the shift amount is bigger than or equal to
17623       // the element size. The constant shift amount will be
17624       // encoded as a 8-bit immediate.
17625       if (ShiftAmt.trunc(8).uge(MaxAmount))
17626         return getZeroVector(VT, Subtarget, DAG, DL);
17627     }
17628   }
17629
17630   return SDValue();
17631 }
17632
17633 /// PerformShiftCombine - Combine shifts.
17634 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
17635                                    TargetLowering::DAGCombinerInfo &DCI,
17636                                    const X86Subtarget *Subtarget) {
17637   if (N->getOpcode() == ISD::SHL) {
17638     SDValue V = PerformSHLCombine(N, DAG);
17639     if (V.getNode()) return V;
17640   }
17641
17642   if (N->getOpcode() != ISD::SRA) {
17643     // Try to fold this logical shift into a zero vector.
17644     SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17645     if (V.getNode()) return V;
17646   }
17647
17648   return SDValue();
17649 }
17650
17651 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
17652 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17653 // and friends.  Likewise for OR -> CMPNEQSS.
17654 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17655                             TargetLowering::DAGCombinerInfo &DCI,
17656                             const X86Subtarget *Subtarget) {
17657   unsigned opcode;
17658
17659   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17660   // we're requiring SSE2 for both.
17661   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
17662     SDValue N0 = N->getOperand(0);
17663     SDValue N1 = N->getOperand(1);
17664     SDValue CMP0 = N0->getOperand(1);
17665     SDValue CMP1 = N1->getOperand(1);
17666     SDLoc DL(N);
17667
17668     // The SETCCs should both refer to the same CMP.
17669     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17670       return SDValue();
17671
17672     SDValue CMP00 = CMP0->getOperand(0);
17673     SDValue CMP01 = CMP0->getOperand(1);
17674     EVT     VT    = CMP00.getValueType();
17675
17676     if (VT == MVT::f32 || VT == MVT::f64) {
17677       bool ExpectingFlags = false;
17678       // Check for any users that want flags:
17679       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
17680            !ExpectingFlags && UI != UE; ++UI)
17681         switch (UI->getOpcode()) {
17682         default:
17683         case ISD::BR_CC:
17684         case ISD::BRCOND:
17685         case ISD::SELECT:
17686           ExpectingFlags = true;
17687           break;
17688         case ISD::CopyToReg:
17689         case ISD::SIGN_EXTEND:
17690         case ISD::ZERO_EXTEND:
17691         case ISD::ANY_EXTEND:
17692           break;
17693         }
17694
17695       if (!ExpectingFlags) {
17696         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17697         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17698
17699         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17700           X86::CondCode tmp = cc0;
17701           cc0 = cc1;
17702           cc1 = tmp;
17703         }
17704
17705         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
17706             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17707           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17708           // FIXME: need symbolic constants for these magic numbers.
17709           // See X86ATTInstPrinter.cpp:printSSECC().
17710           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17711           if (Subtarget->hasAVX512()) {
17712             SDValue FSetCC = DAG.getNode(X86ISD::FSETCC, DL, MVT::i1, CMP00,
17713                                          CMP01, DAG.getConstant(x86cc, MVT::i8));
17714             if (N->getValueType(0) != MVT::i1)
17715               return DAG.getNode(ISD::ZERO_EXTEND, DL, N->getValueType(0),
17716                                  FSetCC);
17717             return FSetCC;
17718           }
17719           SDValue OnesOrZeroesF = DAG.getNode(X86ISD::FSETCC, DL,
17720                                               CMP00.getValueType(), CMP00, CMP01,
17721                                               DAG.getConstant(x86cc, MVT::i8));
17722           MVT IntVT = (is64BitFP ? MVT::i64 : MVT::i32); 
17723           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT,
17724                                               OnesOrZeroesF);
17725           SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
17726                                       DAG.getConstant(1, IntVT));
17727           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17728           return OneBitOfTruth;
17729         }
17730       }
17731     }
17732   }
17733   return SDValue();
17734 }
17735
17736 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17737 /// so it can be folded inside ANDNP.
17738 static bool CanFoldXORWithAllOnes(const SDNode *N) {
17739   EVT VT = N->getValueType(0);
17740
17741   // Match direct AllOnes for 128 and 256-bit vectors
17742   if (ISD::isBuildVectorAllOnes(N))
17743     return true;
17744
17745   // Look through a bit convert.
17746   if (N->getOpcode() == ISD::BITCAST)
17747     N = N->getOperand(0).getNode();
17748
17749   // Sometimes the operand may come from a insert_subvector building a 256-bit
17750   // allones vector
17751   if (VT.is256BitVector() &&
17752       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17753     SDValue V1 = N->getOperand(0);
17754     SDValue V2 = N->getOperand(1);
17755
17756     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17757         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17758         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17759         ISD::isBuildVectorAllOnes(V2.getNode()))
17760       return true;
17761   }
17762
17763   return false;
17764 }
17765
17766 // On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17767 // register. In most cases we actually compare or select YMM-sized registers
17768 // and mixing the two types creates horrible code. This method optimizes
17769 // some of the transition sequences.
17770 static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17771                                  TargetLowering::DAGCombinerInfo &DCI,
17772                                  const X86Subtarget *Subtarget) {
17773   EVT VT = N->getValueType(0);
17774   if (!VT.is256BitVector())
17775     return SDValue();
17776
17777   assert((N->getOpcode() == ISD::ANY_EXTEND ||
17778           N->getOpcode() == ISD::ZERO_EXTEND ||
17779           N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17780
17781   SDValue Narrow = N->getOperand(0);
17782   EVT NarrowVT = Narrow->getValueType(0);
17783   if (!NarrowVT.is128BitVector())
17784     return SDValue();
17785
17786   if (Narrow->getOpcode() != ISD::XOR &&
17787       Narrow->getOpcode() != ISD::AND &&
17788       Narrow->getOpcode() != ISD::OR)
17789     return SDValue();
17790
17791   SDValue N0  = Narrow->getOperand(0);
17792   SDValue N1  = Narrow->getOperand(1);
17793   SDLoc DL(Narrow);
17794
17795   // The Left side has to be a trunc.
17796   if (N0.getOpcode() != ISD::TRUNCATE)
17797     return SDValue();
17798
17799   // The type of the truncated inputs.
17800   EVT WideVT = N0->getOperand(0)->getValueType(0);
17801   if (WideVT != VT)
17802     return SDValue();
17803
17804   // The right side has to be a 'trunc' or a constant vector.
17805   bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17806   bool RHSConst = (isSplatVector(N1.getNode()) &&
17807                    isa<ConstantSDNode>(N1->getOperand(0)));
17808   if (!RHSTrunc && !RHSConst)
17809     return SDValue();
17810
17811   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17812
17813   if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17814     return SDValue();
17815
17816   // Set N0 and N1 to hold the inputs to the new wide operation.
17817   N0 = N0->getOperand(0);
17818   if (RHSConst) {
17819     N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17820                      N1->getOperand(0));
17821     SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17822     N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17823   } else if (RHSTrunc) {
17824     N1 = N1->getOperand(0);
17825   }
17826
17827   // Generate the wide operation.
17828   SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
17829   unsigned Opcode = N->getOpcode();
17830   switch (Opcode) {
17831   case ISD::ANY_EXTEND:
17832     return Op;
17833   case ISD::ZERO_EXTEND: {
17834     unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17835     APInt Mask = APInt::getAllOnesValue(InBits);
17836     Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17837     return DAG.getNode(ISD::AND, DL, VT,
17838                        Op, DAG.getConstant(Mask, VT));
17839   }
17840   case ISD::SIGN_EXTEND:
17841     return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17842                        Op, DAG.getValueType(NarrowVT));
17843   default:
17844     llvm_unreachable("Unexpected opcode");
17845   }
17846 }
17847
17848 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17849                                  TargetLowering::DAGCombinerInfo &DCI,
17850                                  const X86Subtarget *Subtarget) {
17851   EVT VT = N->getValueType(0);
17852   if (DCI.isBeforeLegalizeOps())
17853     return SDValue();
17854
17855   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17856   if (R.getNode())
17857     return R;
17858
17859   // Create BLSI, BLSR, and BZHI instructions
17860   // BLSI is X & (-X)
17861   // BLSR is X & (X-1)
17862   // BZHI is X & ((1 << Y) - 1)
17863   // BEXTR is ((X >> imm) & (2**size-1))
17864   if (VT == MVT::i32 || VT == MVT::i64) {
17865     SDValue N0 = N->getOperand(0);
17866     SDValue N1 = N->getOperand(1);
17867     SDLoc DL(N);
17868
17869     if (Subtarget->hasBMI()) {
17870       // Check LHS for neg
17871       if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17872           isZero(N0.getOperand(0)))
17873         return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
17874
17875       // Check RHS for neg
17876       if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17877           isZero(N1.getOperand(0)))
17878         return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
17879
17880       // Check LHS for X-1
17881       if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17882           isAllOnes(N0.getOperand(1)))
17883         return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
17884
17885       // Check RHS for X-1
17886       if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17887           isAllOnes(N1.getOperand(1)))
17888         return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17889     }
17890
17891     if (Subtarget->hasBMI2()) {
17892       // Check for (and (add (shl 1, Y), -1), X)
17893       if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17894         SDValue N00 = N0.getOperand(0);
17895         if (N00.getOpcode() == ISD::SHL) {
17896           SDValue N001 = N00.getOperand(1);
17897           assert(N001.getValueType() == MVT::i8 && "unexpected type");
17898           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17899           if (C && C->getZExtValue() == 1)
17900             return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
17901         }
17902       }
17903
17904       // Check for (and X, (add (shl 1, Y), -1))
17905       if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17906         SDValue N10 = N1.getOperand(0);
17907         if (N10.getOpcode() == ISD::SHL) {
17908           SDValue N101 = N10.getOperand(1);
17909           assert(N101.getValueType() == MVT::i8 && "unexpected type");
17910           ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17911           if (C && C->getZExtValue() == 1)
17912             return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
17913         }
17914       }
17915     }
17916
17917     // Check for BEXTR.
17918     if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17919         (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17920       ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17921       ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17922       if (MaskNode && ShiftNode) {
17923         uint64_t Mask = MaskNode->getZExtValue();
17924         uint64_t Shift = ShiftNode->getZExtValue();
17925         if (isMask_64(Mask)) {
17926           uint64_t MaskSize = CountPopulation_64(Mask);
17927           if (Shift + MaskSize <= VT.getSizeInBits())
17928             return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17929                                DAG.getConstant(Shift | (MaskSize << 8), VT));
17930         }
17931       }
17932     } // BEXTR
17933
17934     return SDValue();
17935   }
17936
17937   // Want to form ANDNP nodes:
17938   // 1) In the hopes of then easily combining them with OR and AND nodes
17939   //    to form PBLEND/PSIGN.
17940   // 2) To match ANDN packed intrinsics
17941   if (VT != MVT::v2i64 && VT != MVT::v4i64)
17942     return SDValue();
17943
17944   SDValue N0 = N->getOperand(0);
17945   SDValue N1 = N->getOperand(1);
17946   SDLoc DL(N);
17947
17948   // Check LHS for vnot
17949   if (N0.getOpcode() == ISD::XOR &&
17950       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17951       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
17952     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
17953
17954   // Check RHS for vnot
17955   if (N1.getOpcode() == ISD::XOR &&
17956       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17957       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
17958     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
17959
17960   return SDValue();
17961 }
17962
17963 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
17964                                 TargetLowering::DAGCombinerInfo &DCI,
17965                                 const X86Subtarget *Subtarget) {
17966   EVT VT = N->getValueType(0);
17967   if (DCI.isBeforeLegalizeOps())
17968     return SDValue();
17969
17970   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17971   if (R.getNode())
17972     return R;
17973
17974   SDValue N0 = N->getOperand(0);
17975   SDValue N1 = N->getOperand(1);
17976
17977   // look for psign/blend
17978   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
17979     if (!Subtarget->hasSSSE3() ||
17980         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
17981       return SDValue();
17982
17983     // Canonicalize pandn to RHS
17984     if (N0.getOpcode() == X86ISD::ANDNP)
17985       std::swap(N0, N1);
17986     // or (and (m, y), (pandn m, x))
17987     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17988       SDValue Mask = N1.getOperand(0);
17989       SDValue X    = N1.getOperand(1);
17990       SDValue Y;
17991       if (N0.getOperand(0) == Mask)
17992         Y = N0.getOperand(1);
17993       if (N0.getOperand(1) == Mask)
17994         Y = N0.getOperand(0);
17995
17996       // Check to see if the mask appeared in both the AND and ANDNP and
17997       if (!Y.getNode())
17998         return SDValue();
17999
18000       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
18001       // Look through mask bitcast.
18002       if (Mask.getOpcode() == ISD::BITCAST)
18003         Mask = Mask.getOperand(0);
18004       if (X.getOpcode() == ISD::BITCAST)
18005         X = X.getOperand(0);
18006       if (Y.getOpcode() == ISD::BITCAST)
18007         Y = Y.getOperand(0);
18008
18009       EVT MaskVT = Mask.getValueType();
18010
18011       // Validate that the Mask operand is a vector sra node.
18012       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
18013       // there is no psrai.b
18014       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
18015       unsigned SraAmt = ~0;
18016       if (Mask.getOpcode() == ISD::SRA) {
18017         SDValue Amt = Mask.getOperand(1);
18018         if (isSplatVector(Amt.getNode())) {
18019           SDValue SclrAmt = Amt->getOperand(0);
18020           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
18021             SraAmt = C->getZExtValue();
18022         }
18023       } else if (Mask.getOpcode() == X86ISD::VSRAI) {
18024         SDValue SraC = Mask.getOperand(1);
18025         SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
18026       }
18027       if ((SraAmt + 1) != EltBits)
18028         return SDValue();
18029
18030       SDLoc DL(N);
18031
18032       // Now we know we at least have a plendvb with the mask val.  See if
18033       // we can form a psignb/w/d.
18034       // psign = x.type == y.type == mask.type && y = sub(0, x);
18035       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
18036           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
18037           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
18038         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
18039                "Unsupported VT for PSIGN");
18040         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
18041         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18042       }
18043       // PBLENDVB only available on SSE 4.1
18044       if (!Subtarget->hasSSE41())
18045         return SDValue();
18046
18047       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
18048
18049       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
18050       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
18051       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
18052       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
18053       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
18054     }
18055   }
18056
18057   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
18058     return SDValue();
18059
18060   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
18061   MachineFunction &MF = DAG.getMachineFunction();
18062   bool OptForSize = MF.getFunction()->getAttributes().
18063     hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
18064
18065   // SHLD/SHRD instructions have lower register pressure, but on some
18066   // platforms they have higher latency than the equivalent
18067   // series of shifts/or that would otherwise be generated.
18068   // Don't fold (or (x << c) | (y >> (64 - c))) if SHLD/SHRD instructions
18069   // have higher latencies and we are not optimizing for size.
18070   if (!OptForSize && Subtarget->isSHLDSlow())
18071     return SDValue();
18072
18073   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
18074     std::swap(N0, N1);
18075   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
18076     return SDValue();
18077   if (!N0.hasOneUse() || !N1.hasOneUse())
18078     return SDValue();
18079
18080   SDValue ShAmt0 = N0.getOperand(1);
18081   if (ShAmt0.getValueType() != MVT::i8)
18082     return SDValue();
18083   SDValue ShAmt1 = N1.getOperand(1);
18084   if (ShAmt1.getValueType() != MVT::i8)
18085     return SDValue();
18086   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
18087     ShAmt0 = ShAmt0.getOperand(0);
18088   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
18089     ShAmt1 = ShAmt1.getOperand(0);
18090
18091   SDLoc DL(N);
18092   unsigned Opc = X86ISD::SHLD;
18093   SDValue Op0 = N0.getOperand(0);
18094   SDValue Op1 = N1.getOperand(0);
18095   if (ShAmt0.getOpcode() == ISD::SUB) {
18096     Opc = X86ISD::SHRD;
18097     std::swap(Op0, Op1);
18098     std::swap(ShAmt0, ShAmt1);
18099   }
18100
18101   unsigned Bits = VT.getSizeInBits();
18102   if (ShAmt1.getOpcode() == ISD::SUB) {
18103     SDValue Sum = ShAmt1.getOperand(0);
18104     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
18105       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
18106       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
18107         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
18108       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
18109         return DAG.getNode(Opc, DL, VT,
18110                            Op0, Op1,
18111                            DAG.getNode(ISD::TRUNCATE, DL,
18112                                        MVT::i8, ShAmt0));
18113     }
18114   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
18115     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
18116     if (ShAmt0C &&
18117         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
18118       return DAG.getNode(Opc, DL, VT,
18119                          N0.getOperand(0), N1.getOperand(0),
18120                          DAG.getNode(ISD::TRUNCATE, DL,
18121                                        MVT::i8, ShAmt0));
18122   }
18123
18124   return SDValue();
18125 }
18126
18127 // Generate NEG and CMOV for integer abs.
18128 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
18129   EVT VT = N->getValueType(0);
18130
18131   // Since X86 does not have CMOV for 8-bit integer, we don't convert
18132   // 8-bit integer abs to NEG and CMOV.
18133   if (VT.isInteger() && VT.getSizeInBits() == 8)
18134     return SDValue();
18135
18136   SDValue N0 = N->getOperand(0);
18137   SDValue N1 = N->getOperand(1);
18138   SDLoc DL(N);
18139
18140   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
18141   // and change it to SUB and CMOV.
18142   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
18143       N0.getOpcode() == ISD::ADD &&
18144       N0.getOperand(1) == N1 &&
18145       N1.getOpcode() == ISD::SRA &&
18146       N1.getOperand(0) == N0.getOperand(0))
18147     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
18148       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
18149         // Generate SUB & CMOV.
18150         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
18151                                   DAG.getConstant(0, VT), N0.getOperand(0));
18152
18153         SDValue Ops[] = { N0.getOperand(0), Neg,
18154                           DAG.getConstant(X86::COND_GE, MVT::i8),
18155                           SDValue(Neg.getNode(), 1) };
18156         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
18157                            Ops, array_lengthof(Ops));
18158       }
18159   return SDValue();
18160 }
18161
18162 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
18163 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
18164                                  TargetLowering::DAGCombinerInfo &DCI,
18165                                  const X86Subtarget *Subtarget) {
18166   EVT VT = N->getValueType(0);
18167   if (DCI.isBeforeLegalizeOps())
18168     return SDValue();
18169
18170   if (Subtarget->hasCMov()) {
18171     SDValue RV = performIntegerAbsCombine(N, DAG);
18172     if (RV.getNode())
18173       return RV;
18174   }
18175
18176   // Try forming BMI if it is available.
18177   if (!Subtarget->hasBMI())
18178     return SDValue();
18179
18180   if (VT != MVT::i32 && VT != MVT::i64)
18181     return SDValue();
18182
18183   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
18184
18185   // Create BLSMSK instructions by finding X ^ (X-1)
18186   SDValue N0 = N->getOperand(0);
18187   SDValue N1 = N->getOperand(1);
18188   SDLoc DL(N);
18189
18190   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
18191       isAllOnes(N0.getOperand(1)))
18192     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
18193
18194   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
18195       isAllOnes(N1.getOperand(1)))
18196     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
18197
18198   return SDValue();
18199 }
18200
18201 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
18202 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
18203                                   TargetLowering::DAGCombinerInfo &DCI,
18204                                   const X86Subtarget *Subtarget) {
18205   LoadSDNode *Ld = cast<LoadSDNode>(N);
18206   EVT RegVT = Ld->getValueType(0);
18207   EVT MemVT = Ld->getMemoryVT();
18208   SDLoc dl(Ld);
18209   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18210   unsigned RegSz = RegVT.getSizeInBits();
18211
18212   // On Sandybridge unaligned 256bit loads are inefficient.
18213   ISD::LoadExtType Ext = Ld->getExtensionType();
18214   unsigned Alignment = Ld->getAlignment();
18215   bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
18216   if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
18217       !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
18218     unsigned NumElems = RegVT.getVectorNumElements();
18219     if (NumElems < 2)
18220       return SDValue();
18221
18222     SDValue Ptr = Ld->getBasePtr();
18223     SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
18224
18225     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18226                                   NumElems/2);
18227     SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18228                                 Ld->getPointerInfo(), Ld->isVolatile(),
18229                                 Ld->isNonTemporal(), Ld->isInvariant(),
18230                                 Alignment);
18231     Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18232     SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18233                                 Ld->getPointerInfo(), Ld->isVolatile(),
18234                                 Ld->isNonTemporal(), Ld->isInvariant(),
18235                                 std::min(16U, Alignment));
18236     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18237                              Load1.getValue(1),
18238                              Load2.getValue(1));
18239
18240     SDValue NewVec = DAG.getUNDEF(RegVT);
18241     NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
18242     NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
18243     return DCI.CombineTo(N, NewVec, TF, true);
18244   }
18245
18246   // If this is a vector EXT Load then attempt to optimize it using a
18247   // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18248   // expansion is still better than scalar code.
18249   // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18250   // emit a shuffle and a arithmetic shift.
18251   // TODO: It is possible to support ZExt by zeroing the undef values
18252   // during the shuffle phase or after the shuffle.
18253   if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18254       (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
18255     assert(MemVT != RegVT && "Cannot extend to the same type");
18256     assert(MemVT.isVector() && "Must load a vector from memory");
18257
18258     unsigned NumElems = RegVT.getVectorNumElements();
18259     unsigned MemSz = MemVT.getSizeInBits();
18260     assert(RegSz > MemSz && "Register size must be greater than the mem size");
18261
18262     if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18263       return SDValue();
18264
18265     // All sizes must be a power of two.
18266     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18267       return SDValue();
18268
18269     // Attempt to load the original value using scalar loads.
18270     // Find the largest scalar type that divides the total loaded size.
18271     MVT SclrLoadTy = MVT::i8;
18272     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18273          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18274       MVT Tp = (MVT::SimpleValueType)tp;
18275       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
18276         SclrLoadTy = Tp;
18277       }
18278     }
18279
18280     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18281     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18282         (64 <= MemSz))
18283       SclrLoadTy = MVT::f64;
18284
18285     // Calculate the number of scalar loads that we need to perform
18286     // in order to load our vector from memory.
18287     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
18288     if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18289       return SDValue();
18290
18291     unsigned loadRegZize = RegSz;
18292     if (Ext == ISD::SEXTLOAD && RegSz == 256)
18293       loadRegZize /= 2;
18294
18295     // Represent our vector as a sequence of elements which are the
18296     // largest scalar that we can load.
18297     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
18298       loadRegZize/SclrLoadTy.getSizeInBits());
18299
18300     // Represent the data using the same element type that is stored in
18301     // memory. In practice, we ''widen'' MemVT.
18302     EVT WideVecVT =
18303           EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18304                        loadRegZize/MemVT.getScalarType().getSizeInBits());
18305
18306     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18307       "Invalid vector type");
18308
18309     // We can't shuffle using an illegal type.
18310     if (!TLI.isTypeLegal(WideVecVT))
18311       return SDValue();
18312
18313     SmallVector<SDValue, 8> Chains;
18314     SDValue Ptr = Ld->getBasePtr();
18315     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18316                                         TLI.getPointerTy());
18317     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18318
18319     for (unsigned i = 0; i < NumLoads; ++i) {
18320       // Perform a single load.
18321       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18322                                        Ptr, Ld->getPointerInfo(),
18323                                        Ld->isVolatile(), Ld->isNonTemporal(),
18324                                        Ld->isInvariant(), Ld->getAlignment());
18325       Chains.push_back(ScalarLoad.getValue(1));
18326       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18327       // another round of DAGCombining.
18328       if (i == 0)
18329         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18330       else
18331         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18332                           ScalarLoad, DAG.getIntPtrConstant(i));
18333
18334       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18335     }
18336
18337     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18338                                Chains.size());
18339
18340     // Bitcast the loaded value to a vector of the original element type, in
18341     // the size of the target vector type.
18342     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
18343     unsigned SizeRatio = RegSz/MemSz;
18344
18345     if (Ext == ISD::SEXTLOAD) {
18346       // If we have SSE4.1 we can directly emit a VSEXT node.
18347       if (Subtarget->hasSSE41()) {
18348         SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18349         return DCI.CombineTo(N, Sext, TF, true);
18350       }
18351
18352       // Otherwise we'll shuffle the small elements in the high bits of the
18353       // larger type and perform an arithmetic shift. If the shift is not legal
18354       // it's better to scalarize.
18355       if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18356         return SDValue();
18357
18358       // Redistribute the loaded elements into the different locations.
18359       SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18360       for (unsigned i = 0; i != NumElems; ++i)
18361         ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18362
18363       SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18364                                            DAG.getUNDEF(WideVecVT),
18365                                            &ShuffleVec[0]);
18366
18367       Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18368
18369       // Build the arithmetic shift.
18370       unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18371                      MemVT.getVectorElementType().getSizeInBits();
18372       Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18373                           DAG.getConstant(Amt, RegVT));
18374
18375       return DCI.CombineTo(N, Shuff, TF, true);
18376     }
18377
18378     // Redistribute the loaded elements into the different locations.
18379     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18380     for (unsigned i = 0; i != NumElems; ++i)
18381       ShuffleVec[i*SizeRatio] = i;
18382
18383     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18384                                          DAG.getUNDEF(WideVecVT),
18385                                          &ShuffleVec[0]);
18386
18387     // Bitcast to the requested type.
18388     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18389     // Replace the original load with the new sequence
18390     // and return the new chain.
18391     return DCI.CombineTo(N, Shuff, TF, true);
18392   }
18393
18394   return SDValue();
18395 }
18396
18397 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
18398 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
18399                                    const X86Subtarget *Subtarget) {
18400   StoreSDNode *St = cast<StoreSDNode>(N);
18401   EVT VT = St->getValue().getValueType();
18402   EVT StVT = St->getMemoryVT();
18403   SDLoc dl(St);
18404   SDValue StoredVal = St->getOperand(1);
18405   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18406
18407   // If we are saving a concatenation of two XMM registers, perform two stores.
18408   // On Sandy Bridge, 256-bit memory operations are executed by two
18409   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18410   // memory  operation.
18411   unsigned Alignment = St->getAlignment();
18412   bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
18413   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
18414       StVT == VT && !IsAligned) {
18415     unsigned NumElems = VT.getVectorNumElements();
18416     if (NumElems < 2)
18417       return SDValue();
18418
18419     SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18420     SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
18421
18422     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18423     SDValue Ptr0 = St->getBasePtr();
18424     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18425
18426     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18427                                 St->getPointerInfo(), St->isVolatile(),
18428                                 St->isNonTemporal(), Alignment);
18429     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18430                                 St->getPointerInfo(), St->isVolatile(),
18431                                 St->isNonTemporal(),
18432                                 std::min(16U, Alignment));
18433     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18434   }
18435
18436   // Optimize trunc store (of multiple scalars) to shuffle and store.
18437   // First, pack all of the elements in one place. Next, store to memory
18438   // in fewer chunks.
18439   if (St->isTruncatingStore() && VT.isVector()) {
18440     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18441     unsigned NumElems = VT.getVectorNumElements();
18442     assert(StVT != VT && "Cannot truncate to the same type");
18443     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18444     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18445
18446     // From, To sizes and ElemCount must be pow of two
18447     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
18448     // We are going to use the original vector elt for storing.
18449     // Accumulated smaller vector elements must be a multiple of the store size.
18450     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
18451
18452     unsigned SizeRatio  = FromSz / ToSz;
18453
18454     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18455
18456     // Create a type on which we perform the shuffle
18457     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18458             StVT.getScalarType(), NumElems*SizeRatio);
18459
18460     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18461
18462     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18463     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18464     for (unsigned i = 0; i != NumElems; ++i)
18465       ShuffleVec[i] = i * SizeRatio;
18466
18467     // Can't shuffle using an illegal type.
18468     if (!TLI.isTypeLegal(WideVecVT))
18469       return SDValue();
18470
18471     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
18472                                          DAG.getUNDEF(WideVecVT),
18473                                          &ShuffleVec[0]);
18474     // At this point all of the data is stored at the bottom of the
18475     // register. We now need to save it to mem.
18476
18477     // Find the largest store unit
18478     MVT StoreType = MVT::i8;
18479     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18480          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18481       MVT Tp = (MVT::SimpleValueType)tp;
18482       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
18483         StoreType = Tp;
18484     }
18485
18486     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18487     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18488         (64 <= NumElems * ToSz))
18489       StoreType = MVT::f64;
18490
18491     // Bitcast the original vector into a vector of store-size units
18492     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
18493             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
18494     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18495     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18496     SmallVector<SDValue, 8> Chains;
18497     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18498                                         TLI.getPointerTy());
18499     SDValue Ptr = St->getBasePtr();
18500
18501     // Perform one or more big stores into memory.
18502     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
18503       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18504                                    StoreType, ShuffWide,
18505                                    DAG.getIntPtrConstant(i));
18506       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18507                                 St->getPointerInfo(), St->isVolatile(),
18508                                 St->isNonTemporal(), St->getAlignment());
18509       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18510       Chains.push_back(Ch);
18511     }
18512
18513     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18514                                Chains.size());
18515   }
18516
18517   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
18518   // the FP state in cases where an emms may be missing.
18519   // A preferable solution to the general problem is to figure out the right
18520   // places to insert EMMS.  This qualifies as a quick hack.
18521
18522   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
18523   if (VT.getSizeInBits() != 64)
18524     return SDValue();
18525
18526   const Function *F = DAG.getMachineFunction().getFunction();
18527   bool NoImplicitFloatOps = F->getAttributes().
18528     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
18529   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
18530                      && Subtarget->hasSSE2();
18531   if ((VT.isVector() ||
18532        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
18533       isa<LoadSDNode>(St->getValue()) &&
18534       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18535       St->getChain().hasOneUse() && !St->isVolatile()) {
18536     SDNode* LdVal = St->getValue().getNode();
18537     LoadSDNode *Ld = 0;
18538     int TokenFactorIndex = -1;
18539     SmallVector<SDValue, 8> Ops;
18540     SDNode* ChainVal = St->getChain().getNode();
18541     // Must be a store of a load.  We currently handle two cases:  the load
18542     // is a direct child, and it's under an intervening TokenFactor.  It is
18543     // possible to dig deeper under nested TokenFactors.
18544     if (ChainVal == LdVal)
18545       Ld = cast<LoadSDNode>(St->getChain());
18546     else if (St->getValue().hasOneUse() &&
18547              ChainVal->getOpcode() == ISD::TokenFactor) {
18548       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
18549         if (ChainVal->getOperand(i).getNode() == LdVal) {
18550           TokenFactorIndex = i;
18551           Ld = cast<LoadSDNode>(St->getValue());
18552         } else
18553           Ops.push_back(ChainVal->getOperand(i));
18554       }
18555     }
18556
18557     if (!Ld || !ISD::isNormalLoad(Ld))
18558       return SDValue();
18559
18560     // If this is not the MMX case, i.e. we are just turning i64 load/store
18561     // into f64 load/store, avoid the transformation if there are multiple
18562     // uses of the loaded value.
18563     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18564       return SDValue();
18565
18566     SDLoc LdDL(Ld);
18567     SDLoc StDL(N);
18568     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18569     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18570     // pair instead.
18571     if (Subtarget->is64Bit() || F64IsLegal) {
18572       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
18573       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18574                                   Ld->getPointerInfo(), Ld->isVolatile(),
18575                                   Ld->isNonTemporal(), Ld->isInvariant(),
18576                                   Ld->getAlignment());
18577       SDValue NewChain = NewLd.getValue(1);
18578       if (TokenFactorIndex != -1) {
18579         Ops.push_back(NewChain);
18580         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18581                                Ops.size());
18582       }
18583       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
18584                           St->getPointerInfo(),
18585                           St->isVolatile(), St->isNonTemporal(),
18586                           St->getAlignment());
18587     }
18588
18589     // Otherwise, lower to two pairs of 32-bit loads / stores.
18590     SDValue LoAddr = Ld->getBasePtr();
18591     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18592                                  DAG.getConstant(4, MVT::i32));
18593
18594     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
18595                                Ld->getPointerInfo(),
18596                                Ld->isVolatile(), Ld->isNonTemporal(),
18597                                Ld->isInvariant(), Ld->getAlignment());
18598     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
18599                                Ld->getPointerInfo().getWithOffset(4),
18600                                Ld->isVolatile(), Ld->isNonTemporal(),
18601                                Ld->isInvariant(),
18602                                MinAlign(Ld->getAlignment(), 4));
18603
18604     SDValue NewChain = LoLd.getValue(1);
18605     if (TokenFactorIndex != -1) {
18606       Ops.push_back(LoLd);
18607       Ops.push_back(HiLd);
18608       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
18609                              Ops.size());
18610     }
18611
18612     LoAddr = St->getBasePtr();
18613     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18614                          DAG.getConstant(4, MVT::i32));
18615
18616     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
18617                                 St->getPointerInfo(),
18618                                 St->isVolatile(), St->isNonTemporal(),
18619                                 St->getAlignment());
18620     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
18621                                 St->getPointerInfo().getWithOffset(4),
18622                                 St->isVolatile(),
18623                                 St->isNonTemporal(),
18624                                 MinAlign(St->getAlignment(), 4));
18625     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
18626   }
18627   return SDValue();
18628 }
18629
18630 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18631 /// and return the operands for the horizontal operation in LHS and RHS.  A
18632 /// horizontal operation performs the binary operation on successive elements
18633 /// of its first operand, then on successive elements of its second operand,
18634 /// returning the resulting values in a vector.  For example, if
18635 ///   A = < float a0, float a1, float a2, float a3 >
18636 /// and
18637 ///   B = < float b0, float b1, float b2, float b3 >
18638 /// then the result of doing a horizontal operation on A and B is
18639 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18640 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18641 /// A horizontal-op B, for some already available A and B, and if so then LHS is
18642 /// set to A, RHS to B, and the routine returns 'true'.
18643 /// Note that the binary operation should have the property that if one of the
18644 /// operands is UNDEF then the result is UNDEF.
18645 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
18646   // Look for the following pattern: if
18647   //   A = < float a0, float a1, float a2, float a3 >
18648   //   B = < float b0, float b1, float b2, float b3 >
18649   // and
18650   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18651   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18652   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18653   // which is A horizontal-op B.
18654
18655   // At least one of the operands should be a vector shuffle.
18656   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18657       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18658     return false;
18659
18660   MVT VT = LHS.getSimpleValueType();
18661
18662   assert((VT.is128BitVector() || VT.is256BitVector()) &&
18663          "Unsupported vector type for horizontal add/sub");
18664
18665   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18666   // operate independently on 128-bit lanes.
18667   unsigned NumElts = VT.getVectorNumElements();
18668   unsigned NumLanes = VT.getSizeInBits()/128;
18669   unsigned NumLaneElts = NumElts / NumLanes;
18670   assert((NumLaneElts % 2 == 0) &&
18671          "Vector type should have an even number of elements in each lane");
18672   unsigned HalfLaneElts = NumLaneElts/2;
18673
18674   // View LHS in the form
18675   //   LHS = VECTOR_SHUFFLE A, B, LMask
18676   // If LHS is not a shuffle then pretend it is the shuffle
18677   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18678   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18679   // type VT.
18680   SDValue A, B;
18681   SmallVector<int, 16> LMask(NumElts);
18682   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18683     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18684       A = LHS.getOperand(0);
18685     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18686       B = LHS.getOperand(1);
18687     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18688     std::copy(Mask.begin(), Mask.end(), LMask.begin());
18689   } else {
18690     if (LHS.getOpcode() != ISD::UNDEF)
18691       A = LHS;
18692     for (unsigned i = 0; i != NumElts; ++i)
18693       LMask[i] = i;
18694   }
18695
18696   // Likewise, view RHS in the form
18697   //   RHS = VECTOR_SHUFFLE C, D, RMask
18698   SDValue C, D;
18699   SmallVector<int, 16> RMask(NumElts);
18700   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18701     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18702       C = RHS.getOperand(0);
18703     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18704       D = RHS.getOperand(1);
18705     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18706     std::copy(Mask.begin(), Mask.end(), RMask.begin());
18707   } else {
18708     if (RHS.getOpcode() != ISD::UNDEF)
18709       C = RHS;
18710     for (unsigned i = 0; i != NumElts; ++i)
18711       RMask[i] = i;
18712   }
18713
18714   // Check that the shuffles are both shuffling the same vectors.
18715   if (!(A == C && B == D) && !(A == D && B == C))
18716     return false;
18717
18718   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18719   if (!A.getNode() && !B.getNode())
18720     return false;
18721
18722   // If A and B occur in reverse order in RHS, then "swap" them (which means
18723   // rewriting the mask).
18724   if (A != C)
18725     CommuteVectorShuffleMask(RMask, NumElts);
18726
18727   // At this point LHS and RHS are equivalent to
18728   //   LHS = VECTOR_SHUFFLE A, B, LMask
18729   //   RHS = VECTOR_SHUFFLE A, B, RMask
18730   // Check that the masks correspond to performing a horizontal operation.
18731   for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18732     for (unsigned i = 0; i != NumLaneElts; ++i) {
18733       int LIdx = LMask[i+l], RIdx = RMask[i+l];
18734
18735       // Ignore any UNDEF components.
18736       if (LIdx < 0 || RIdx < 0 ||
18737           (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18738           (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18739         continue;
18740
18741       // Check that successive elements are being operated on.  If not, this is
18742       // not a horizontal operation.
18743       unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18744       int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18745       if (!(LIdx == Index && RIdx == Index + 1) &&
18746           !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18747         return false;
18748     }
18749   }
18750
18751   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18752   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18753   return true;
18754 }
18755
18756 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18757 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18758                                   const X86Subtarget *Subtarget) {
18759   EVT VT = N->getValueType(0);
18760   SDValue LHS = N->getOperand(0);
18761   SDValue RHS = N->getOperand(1);
18762
18763   // Try to synthesize horizontal adds from adds of shuffles.
18764   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18765        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18766       isHorizontalBinOp(LHS, RHS, true))
18767     return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
18768   return SDValue();
18769 }
18770
18771 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18772 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18773                                   const X86Subtarget *Subtarget) {
18774   EVT VT = N->getValueType(0);
18775   SDValue LHS = N->getOperand(0);
18776   SDValue RHS = N->getOperand(1);
18777
18778   // Try to synthesize horizontal subs from subs of shuffles.
18779   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
18780        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
18781       isHorizontalBinOp(LHS, RHS, false))
18782     return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
18783   return SDValue();
18784 }
18785
18786 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18787 /// X86ISD::FXOR nodes.
18788 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
18789   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18790   // F[X]OR(0.0, x) -> x
18791   // F[X]OR(x, 0.0) -> x
18792   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18793     if (C->getValueAPF().isPosZero())
18794       return N->getOperand(1);
18795   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18796     if (C->getValueAPF().isPosZero())
18797       return N->getOperand(0);
18798   return SDValue();
18799 }
18800
18801 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18802 /// X86ISD::FMAX nodes.
18803 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18804   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18805
18806   // Only perform optimizations if UnsafeMath is used.
18807   if (!DAG.getTarget().Options.UnsafeFPMath)
18808     return SDValue();
18809
18810   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
18811   // into FMINC and FMAXC, which are Commutative operations.
18812   unsigned NewOp = 0;
18813   switch (N->getOpcode()) {
18814     default: llvm_unreachable("unknown opcode");
18815     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
18816     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
18817   }
18818
18819   return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
18820                      N->getOperand(0), N->getOperand(1));
18821 }
18822
18823 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
18824 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
18825   // FAND(0.0, x) -> 0.0
18826   // FAND(x, 0.0) -> 0.0
18827   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18828     if (C->getValueAPF().isPosZero())
18829       return N->getOperand(0);
18830   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18831     if (C->getValueAPF().isPosZero())
18832       return N->getOperand(1);
18833   return SDValue();
18834 }
18835
18836 /// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18837 static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18838   // FANDN(x, 0.0) -> 0.0
18839   // FANDN(0.0, x) -> x
18840   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18841     if (C->getValueAPF().isPosZero())
18842       return N->getOperand(1);
18843   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18844     if (C->getValueAPF().isPosZero())
18845       return N->getOperand(1);
18846   return SDValue();
18847 }
18848
18849 static SDValue PerformBTCombine(SDNode *N,
18850                                 SelectionDAG &DAG,
18851                                 TargetLowering::DAGCombinerInfo &DCI) {
18852   // BT ignores high bits in the bit index operand.
18853   SDValue Op1 = N->getOperand(1);
18854   if (Op1.hasOneUse()) {
18855     unsigned BitWidth = Op1.getValueSizeInBits();
18856     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18857     APInt KnownZero, KnownOne;
18858     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18859                                           !DCI.isBeforeLegalizeOps());
18860     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18861     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18862         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18863       DCI.CommitTargetLoweringOpt(TLO);
18864   }
18865   return SDValue();
18866 }
18867
18868 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18869   SDValue Op = N->getOperand(0);
18870   if (Op.getOpcode() == ISD::BITCAST)
18871     Op = Op.getOperand(0);
18872   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
18873   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
18874       VT.getVectorElementType().getSizeInBits() ==
18875       OpVT.getVectorElementType().getSizeInBits()) {
18876     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
18877   }
18878   return SDValue();
18879 }
18880
18881 static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
18882                                                const X86Subtarget *Subtarget) {
18883   EVT VT = N->getValueType(0);
18884   if (!VT.isVector())
18885     return SDValue();
18886
18887   SDValue N0 = N->getOperand(0);
18888   SDValue N1 = N->getOperand(1);
18889   EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
18890   SDLoc dl(N);
18891
18892   // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18893   // both SSE and AVX2 since there is no sign-extended shift right
18894   // operation on a vector with 64-bit elements.
18895   //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18896   // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18897   if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18898       N0.getOpcode() == ISD::SIGN_EXTEND)) {
18899     SDValue N00 = N0.getOperand(0);
18900
18901     // EXTLOAD has a better solution on AVX2,
18902     // it may be replaced with X86ISD::VSEXT node.
18903     if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18904       if (!ISD::isNormalLoad(N00.getNode()))
18905         return SDValue();
18906
18907     if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
18908         SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
18909                                   N00, N1);
18910       return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18911     }
18912   }
18913   return SDValue();
18914 }
18915
18916 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18917                                   TargetLowering::DAGCombinerInfo &DCI,
18918                                   const X86Subtarget *Subtarget) {
18919   if (!DCI.isBeforeLegalizeOps())
18920     return SDValue();
18921
18922   if (!Subtarget->hasFp256())
18923     return SDValue();
18924
18925   EVT VT = N->getValueType(0);
18926   if (VT.isVector() && VT.getSizeInBits() == 256) {
18927     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18928     if (R.getNode())
18929       return R;
18930   }
18931
18932   return SDValue();
18933 }
18934
18935 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
18936                                  const X86Subtarget* Subtarget) {
18937   SDLoc dl(N);
18938   EVT VT = N->getValueType(0);
18939
18940   // Let legalize expand this if it isn't a legal type yet.
18941   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18942     return SDValue();
18943
18944   EVT ScalarVT = VT.getScalarType();
18945   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18946       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
18947     return SDValue();
18948
18949   SDValue A = N->getOperand(0);
18950   SDValue B = N->getOperand(1);
18951   SDValue C = N->getOperand(2);
18952
18953   bool NegA = (A.getOpcode() == ISD::FNEG);
18954   bool NegB = (B.getOpcode() == ISD::FNEG);
18955   bool NegC = (C.getOpcode() == ISD::FNEG);
18956
18957   // Negative multiplication when NegA xor NegB
18958   bool NegMul = (NegA != NegB);
18959   if (NegA)
18960     A = A.getOperand(0);
18961   if (NegB)
18962     B = B.getOperand(0);
18963   if (NegC)
18964     C = C.getOperand(0);
18965
18966   unsigned Opcode;
18967   if (!NegMul)
18968     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
18969   else
18970     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18971
18972   return DAG.getNode(Opcode, dl, VT, A, B, C);
18973 }
18974
18975 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
18976                                   TargetLowering::DAGCombinerInfo &DCI,
18977                                   const X86Subtarget *Subtarget) {
18978   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
18979   //           (and (i32 x86isd::setcc_carry), 1)
18980   // This eliminates the zext. This transformation is necessary because
18981   // ISD::SETCC is always legalized to i8.
18982   SDLoc dl(N);
18983   SDValue N0 = N->getOperand(0);
18984   EVT VT = N->getValueType(0);
18985
18986   if (N0.getOpcode() == ISD::AND &&
18987       N0.hasOneUse() &&
18988       N0.getOperand(0).hasOneUse()) {
18989     SDValue N00 = N0.getOperand(0);
18990     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18991       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18992       if (!C || C->getZExtValue() != 1)
18993         return SDValue();
18994       return DAG.getNode(ISD::AND, dl, VT,
18995                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18996                                      N00.getOperand(0), N00.getOperand(1)),
18997                          DAG.getConstant(1, VT));
18998     }
18999   }
19000
19001   if (N0.getOpcode() == ISD::TRUNCATE &&
19002       N0.hasOneUse() &&
19003       N0.getOperand(0).hasOneUse()) {
19004     SDValue N00 = N0.getOperand(0);
19005     if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
19006       return DAG.getNode(ISD::AND, dl, VT,
19007                          DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
19008                                      N00.getOperand(0), N00.getOperand(1)),
19009                          DAG.getConstant(1, VT));
19010     }
19011   }
19012   if (VT.is256BitVector()) {
19013     SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
19014     if (R.getNode())
19015       return R;
19016   }
19017
19018   return SDValue();
19019 }
19020
19021 // Optimize x == -y --> x+y == 0
19022 //          x != -y --> x+y != 0
19023 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
19024   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
19025   SDValue LHS = N->getOperand(0);
19026   SDValue RHS = N->getOperand(1);
19027
19028   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
19029     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
19030       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
19031         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19032                                    LHS.getValueType(), RHS, LHS.getOperand(1));
19033         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19034                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19035       }
19036   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
19037     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
19038       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
19039         SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
19040                                    RHS.getValueType(), LHS, RHS.getOperand(1));
19041         return DAG.getSetCC(SDLoc(N), N->getValueType(0),
19042                             addV, DAG.getConstant(0, addV.getValueType()), CC);
19043       }
19044   return SDValue();
19045 }
19046
19047 // Helper function of PerformSETCCCombine. It is to materialize "setb reg"
19048 // as "sbb reg,reg", since it can be extended without zext and produces
19049 // an all-ones bit which is more useful than 0/1 in some cases.
19050 static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG,
19051                                MVT VT) {
19052   if (VT == MVT::i8)
19053     return DAG.getNode(ISD::AND, DL, VT,
19054                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19055                                    DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
19056                        DAG.getConstant(1, VT));
19057   assert (VT == MVT::i1 && "Unexpected type for SECCC node");
19058   return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1,
19059                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
19060                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS));
19061 }
19062
19063 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
19064 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
19065                                    TargetLowering::DAGCombinerInfo &DCI,
19066                                    const X86Subtarget *Subtarget) {
19067   SDLoc DL(N);
19068   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
19069   SDValue EFLAGS = N->getOperand(1);
19070
19071   if (CC == X86::COND_A) {
19072     // Try to convert COND_A into COND_B in an attempt to facilitate
19073     // materializing "setb reg".
19074     //
19075     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
19076     // cannot take an immediate as its first operand.
19077     //
19078     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
19079         EFLAGS.getValueType().isInteger() &&
19080         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
19081       SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
19082                                    EFLAGS.getNode()->getVTList(),
19083                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
19084       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
19085       return MaterializeSETB(DL, NewEFLAGS, DAG, N->getSimpleValueType(0));
19086     }
19087   }
19088
19089   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
19090   // a zext and produces an all-ones bit which is more useful than 0/1 in some
19091   // cases.
19092   if (CC == X86::COND_B)
19093     return MaterializeSETB(DL, EFLAGS, DAG, N->getSimpleValueType(0));
19094
19095   SDValue Flags;
19096
19097   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19098   if (Flags.getNode()) {
19099     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19100     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
19101   }
19102
19103   return SDValue();
19104 }
19105
19106 // Optimize branch condition evaluation.
19107 //
19108 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
19109                                     TargetLowering::DAGCombinerInfo &DCI,
19110                                     const X86Subtarget *Subtarget) {
19111   SDLoc DL(N);
19112   SDValue Chain = N->getOperand(0);
19113   SDValue Dest = N->getOperand(1);
19114   SDValue EFLAGS = N->getOperand(3);
19115   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
19116
19117   SDValue Flags;
19118
19119   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
19120   if (Flags.getNode()) {
19121     SDValue Cond = DAG.getConstant(CC, MVT::i8);
19122     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
19123                        Flags);
19124   }
19125
19126   return SDValue();
19127 }
19128
19129 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
19130                                         const X86TargetLowering *XTLI) {
19131   SDValue Op0 = N->getOperand(0);
19132   EVT InVT = Op0->getValueType(0);
19133
19134   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
19135   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
19136     SDLoc dl(N);
19137     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
19138     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
19139     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
19140   }
19141
19142   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
19143   // a 32-bit target where SSE doesn't support i64->FP operations.
19144   if (Op0.getOpcode() == ISD::LOAD) {
19145     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
19146     EVT VT = Ld->getValueType(0);
19147     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
19148         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
19149         !XTLI->getSubtarget()->is64Bit() &&
19150         VT == MVT::i64) {
19151       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
19152                                           Ld->getChain(), Op0, DAG);
19153       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
19154       return FILDChain;
19155     }
19156   }
19157   return SDValue();
19158 }
19159
19160 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
19161 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
19162                                  X86TargetLowering::DAGCombinerInfo &DCI) {
19163   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
19164   // the result is either zero or one (depending on the input carry bit).
19165   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
19166   if (X86::isZeroNode(N->getOperand(0)) &&
19167       X86::isZeroNode(N->getOperand(1)) &&
19168       // We don't have a good way to replace an EFLAGS use, so only do this when
19169       // dead right now.
19170       SDValue(N, 1).use_empty()) {
19171     SDLoc DL(N);
19172     EVT VT = N->getValueType(0);
19173     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
19174     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
19175                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
19176                                            DAG.getConstant(X86::COND_B,MVT::i8),
19177                                            N->getOperand(2)),
19178                                DAG.getConstant(1, VT));
19179     return DCI.CombineTo(N, Res1, CarryOut);
19180   }
19181
19182   return SDValue();
19183 }
19184
19185 // fold (add Y, (sete  X, 0)) -> adc  0, Y
19186 //      (add Y, (setne X, 0)) -> sbb -1, Y
19187 //      (sub (sete  X, 0), Y) -> sbb  0, Y
19188 //      (sub (setne X, 0), Y) -> adc -1, Y
19189 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
19190   SDLoc DL(N);
19191
19192   // Look through ZExts.
19193   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
19194   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
19195     return SDValue();
19196
19197   SDValue SetCC = Ext.getOperand(0);
19198   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
19199     return SDValue();
19200
19201   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
19202   if (CC != X86::COND_E && CC != X86::COND_NE)
19203     return SDValue();
19204
19205   SDValue Cmp = SetCC.getOperand(1);
19206   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
19207       !X86::isZeroNode(Cmp.getOperand(1)) ||
19208       !Cmp.getOperand(0).getValueType().isInteger())
19209     return SDValue();
19210
19211   SDValue CmpOp0 = Cmp.getOperand(0);
19212   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
19213                                DAG.getConstant(1, CmpOp0.getValueType()));
19214
19215   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
19216   if (CC == X86::COND_NE)
19217     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
19218                        DL, OtherVal.getValueType(), OtherVal,
19219                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
19220   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
19221                      DL, OtherVal.getValueType(), OtherVal,
19222                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
19223 }
19224
19225 /// PerformADDCombine - Do target-specific dag combines on integer adds.
19226 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
19227                                  const X86Subtarget *Subtarget) {
19228   EVT VT = N->getValueType(0);
19229   SDValue Op0 = N->getOperand(0);
19230   SDValue Op1 = N->getOperand(1);
19231
19232   // Try to synthesize horizontal adds from adds of shuffles.
19233   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19234        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19235       isHorizontalBinOp(Op0, Op1, true))
19236     return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
19237
19238   return OptimizeConditionalInDecrement(N, DAG);
19239 }
19240
19241 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
19242                                  const X86Subtarget *Subtarget) {
19243   SDValue Op0 = N->getOperand(0);
19244   SDValue Op1 = N->getOperand(1);
19245
19246   // X86 can't encode an immediate LHS of a sub. See if we can push the
19247   // negation into a preceding instruction.
19248   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
19249     // If the RHS of the sub is a XOR with one use and a constant, invert the
19250     // immediate. Then add one to the LHS of the sub so we can turn
19251     // X-Y -> X+~Y+1, saving one register.
19252     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
19253         isa<ConstantSDNode>(Op1.getOperand(1))) {
19254       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
19255       EVT VT = Op0.getValueType();
19256       SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
19257                                    Op1.getOperand(0),
19258                                    DAG.getConstant(~XorC, VT));
19259       return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
19260                          DAG.getConstant(C->getAPIntValue()+1, VT));
19261     }
19262   }
19263
19264   // Try to synthesize horizontal adds from adds of shuffles.
19265   EVT VT = N->getValueType(0);
19266   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
19267        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
19268       isHorizontalBinOp(Op0, Op1, true))
19269     return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
19270
19271   return OptimizeConditionalInDecrement(N, DAG);
19272 }
19273
19274 /// performVZEXTCombine - Performs build vector combines
19275 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19276                                         TargetLowering::DAGCombinerInfo &DCI,
19277                                         const X86Subtarget *Subtarget) {
19278   // (vzext (bitcast (vzext (x)) -> (vzext x)
19279   SDValue In = N->getOperand(0);
19280   while (In.getOpcode() == ISD::BITCAST)
19281     In = In.getOperand(0);
19282
19283   if (In.getOpcode() != X86ISD::VZEXT)
19284     return SDValue();
19285
19286   return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
19287                      In.getOperand(0));
19288 }
19289
19290 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
19291                                              DAGCombinerInfo &DCI) const {
19292   SelectionDAG &DAG = DCI.DAG;
19293   switch (N->getOpcode()) {
19294   default: break;
19295   case ISD::EXTRACT_VECTOR_ELT:
19296     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
19297   case ISD::VSELECT:
19298   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
19299   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
19300   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
19301   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
19302   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
19303   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
19304   case ISD::SHL:
19305   case ISD::SRA:
19306   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
19307   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
19308   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
19309   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
19310   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
19311   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
19312   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
19313   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
19314   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
19315   case X86ISD::FXOR:
19316   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
19317   case X86ISD::FMIN:
19318   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
19319   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
19320   case X86ISD::FANDN:       return PerformFANDNCombine(N, DAG);
19321   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
19322   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
19323   case ISD::ANY_EXTEND:
19324   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
19325   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
19326   case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
19327   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
19328   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
19329   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
19330   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
19331   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
19332   case X86ISD::SHUFP:       // Handle all target specific shuffles
19333   case X86ISD::PALIGNR:
19334   case X86ISD::UNPCKH:
19335   case X86ISD::UNPCKL:
19336   case X86ISD::MOVHLPS:
19337   case X86ISD::MOVLHPS:
19338   case X86ISD::PSHUFD:
19339   case X86ISD::PSHUFHW:
19340   case X86ISD::PSHUFLW:
19341   case X86ISD::MOVSS:
19342   case X86ISD::MOVSD:
19343   case X86ISD::VPERMILP:
19344   case X86ISD::VPERM2X128:
19345   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
19346   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
19347   }
19348
19349   return SDValue();
19350 }
19351
19352 /// isTypeDesirableForOp - Return true if the target has native support for
19353 /// the specified value type and it is 'desirable' to use the type for the
19354 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19355 /// instruction encodings are longer and some i16 instructions are slow.
19356 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19357   if (!isTypeLegal(VT))
19358     return false;
19359   if (VT != MVT::i16)
19360     return true;
19361
19362   switch (Opc) {
19363   default:
19364     return true;
19365   case ISD::LOAD:
19366   case ISD::SIGN_EXTEND:
19367   case ISD::ZERO_EXTEND:
19368   case ISD::ANY_EXTEND:
19369   case ISD::SHL:
19370   case ISD::SRL:
19371   case ISD::SUB:
19372   case ISD::ADD:
19373   case ISD::MUL:
19374   case ISD::AND:
19375   case ISD::OR:
19376   case ISD::XOR:
19377     return false;
19378   }
19379 }
19380
19381 /// IsDesirableToPromoteOp - This method query the target whether it is
19382 /// beneficial for dag combiner to promote the specified node. If true, it
19383 /// should return the desired promotion type by reference.
19384 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
19385   EVT VT = Op.getValueType();
19386   if (VT != MVT::i16)
19387     return false;
19388
19389   bool Promote = false;
19390   bool Commute = false;
19391   switch (Op.getOpcode()) {
19392   default: break;
19393   case ISD::LOAD: {
19394     LoadSDNode *LD = cast<LoadSDNode>(Op);
19395     // If the non-extending load has a single use and it's not live out, then it
19396     // might be folded.
19397     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19398                                                      Op.hasOneUse()*/) {
19399       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19400              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19401         // The only case where we'd want to promote LOAD (rather then it being
19402         // promoted as an operand is when it's only use is liveout.
19403         if (UI->getOpcode() != ISD::CopyToReg)
19404           return false;
19405       }
19406     }
19407     Promote = true;
19408     break;
19409   }
19410   case ISD::SIGN_EXTEND:
19411   case ISD::ZERO_EXTEND:
19412   case ISD::ANY_EXTEND:
19413     Promote = true;
19414     break;
19415   case ISD::SHL:
19416   case ISD::SRL: {
19417     SDValue N0 = Op.getOperand(0);
19418     // Look out for (store (shl (load), x)).
19419     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
19420       return false;
19421     Promote = true;
19422     break;
19423   }
19424   case ISD::ADD:
19425   case ISD::MUL:
19426   case ISD::AND:
19427   case ISD::OR:
19428   case ISD::XOR:
19429     Commute = true;
19430     // fallthrough
19431   case ISD::SUB: {
19432     SDValue N0 = Op.getOperand(0);
19433     SDValue N1 = Op.getOperand(1);
19434     if (!Commute && MayFoldLoad(N1))
19435       return false;
19436     // Avoid disabling potential load folding opportunities.
19437     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
19438       return false;
19439     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
19440       return false;
19441     Promote = true;
19442   }
19443   }
19444
19445   PVT = MVT::i32;
19446   return Promote;
19447 }
19448
19449 //===----------------------------------------------------------------------===//
19450 //                           X86 Inline Assembly Support
19451 //===----------------------------------------------------------------------===//
19452
19453 namespace {
19454   // Helper to match a string separated by whitespace.
19455   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
19456     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
19457
19458     for (unsigned i = 0, e = args.size(); i != e; ++i) {
19459       StringRef piece(*args[i]);
19460       if (!s.startswith(piece)) // Check if the piece matches.
19461         return false;
19462
19463       s = s.substr(piece.size());
19464       StringRef::size_type pos = s.find_first_not_of(" \t");
19465       if (pos == 0) // We matched a prefix.
19466         return false;
19467
19468       s = s.substr(pos);
19469     }
19470
19471     return s.empty();
19472   }
19473   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
19474 }
19475
19476 static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19477
19478   if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19479     if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19480         std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19481         std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19482
19483       if (AsmPieces.size() == 3)
19484         return true;
19485       else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19486         return true;
19487     }
19488   }
19489   return false;
19490 }
19491
19492 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19493   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
19494
19495   std::string AsmStr = IA->getAsmString();
19496
19497   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19498   if (!Ty || Ty->getBitWidth() % 16 != 0)
19499     return false;
19500
19501   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
19502   SmallVector<StringRef, 4> AsmPieces;
19503   SplitString(AsmStr, AsmPieces, ";\n");
19504
19505   switch (AsmPieces.size()) {
19506   default: return false;
19507   case 1:
19508     // FIXME: this should verify that we are targeting a 486 or better.  If not,
19509     // we will turn this bswap into something that will be lowered to logical
19510     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
19511     // lower so don't worry about this.
19512     // bswap $0
19513     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19514         matchAsm(AsmPieces[0], "bswapl", "$0") ||
19515         matchAsm(AsmPieces[0], "bswapq", "$0") ||
19516         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19517         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19518         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
19519       // No need to check constraints, nothing other than the equivalent of
19520       // "=r,0" would be valid here.
19521       return IntrinsicLowering::LowerToByteSwap(CI);
19522     }
19523
19524     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
19525     if (CI->getType()->isIntegerTy(16) &&
19526         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19527         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19528          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
19529       AsmPieces.clear();
19530       const std::string &ConstraintsStr = IA->getConstraintString();
19531       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19532       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19533       if (clobbersFlagRegisters(AsmPieces))
19534         return IntrinsicLowering::LowerToByteSwap(CI);
19535     }
19536     break;
19537   case 3:
19538     if (CI->getType()->isIntegerTy(32) &&
19539         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
19540         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19541         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19542         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
19543       AsmPieces.clear();
19544       const std::string &ConstraintsStr = IA->getConstraintString();
19545       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
19546       array_pod_sort(AsmPieces.begin(), AsmPieces.end());
19547       if (clobbersFlagRegisters(AsmPieces))
19548         return IntrinsicLowering::LowerToByteSwap(CI);
19549     }
19550
19551     if (CI->getType()->isIntegerTy(64)) {
19552       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19553       if (Constraints.size() >= 2 &&
19554           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19555           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19556         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
19557         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19558             matchAsm(AsmPieces[1], "bswap", "%edx") &&
19559             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
19560           return IntrinsicLowering::LowerToByteSwap(CI);
19561       }
19562     }
19563     break;
19564   }
19565   return false;
19566 }
19567
19568 /// getConstraintType - Given a constraint letter, return the type of
19569 /// constraint it is for this target.
19570 X86TargetLowering::ConstraintType
19571 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19572   if (Constraint.size() == 1) {
19573     switch (Constraint[0]) {
19574     case 'R':
19575     case 'q':
19576     case 'Q':
19577     case 'f':
19578     case 't':
19579     case 'u':
19580     case 'y':
19581     case 'x':
19582     case 'Y':
19583     case 'l':
19584       return C_RegisterClass;
19585     case 'a':
19586     case 'b':
19587     case 'c':
19588     case 'd':
19589     case 'S':
19590     case 'D':
19591     case 'A':
19592       return C_Register;
19593     case 'I':
19594     case 'J':
19595     case 'K':
19596     case 'L':
19597     case 'M':
19598     case 'N':
19599     case 'G':
19600     case 'C':
19601     case 'e':
19602     case 'Z':
19603       return C_Other;
19604     default:
19605       break;
19606     }
19607   }
19608   return TargetLowering::getConstraintType(Constraint);
19609 }
19610
19611 /// Examine constraint type and operand type and determine a weight value.
19612 /// This object must already have been set up with the operand type
19613 /// and the current alternative constraint selected.
19614 TargetLowering::ConstraintWeight
19615   X86TargetLowering::getSingleConstraintMatchWeight(
19616     AsmOperandInfo &info, const char *constraint) const {
19617   ConstraintWeight weight = CW_Invalid;
19618   Value *CallOperandVal = info.CallOperandVal;
19619     // If we don't have a value, we can't do a match,
19620     // but allow it at the lowest weight.
19621   if (CallOperandVal == NULL)
19622     return CW_Default;
19623   Type *type = CallOperandVal->getType();
19624   // Look at the constraint type.
19625   switch (*constraint) {
19626   default:
19627     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19628   case 'R':
19629   case 'q':
19630   case 'Q':
19631   case 'a':
19632   case 'b':
19633   case 'c':
19634   case 'd':
19635   case 'S':
19636   case 'D':
19637   case 'A':
19638     if (CallOperandVal->getType()->isIntegerTy())
19639       weight = CW_SpecificReg;
19640     break;
19641   case 'f':
19642   case 't':
19643   case 'u':
19644     if (type->isFloatingPointTy())
19645       weight = CW_SpecificReg;
19646     break;
19647   case 'y':
19648     if (type->isX86_MMXTy() && Subtarget->hasMMX())
19649       weight = CW_SpecificReg;
19650     break;
19651   case 'x':
19652   case 'Y':
19653     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
19654         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
19655       weight = CW_Register;
19656     break;
19657   case 'I':
19658     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19659       if (C->getZExtValue() <= 31)
19660         weight = CW_Constant;
19661     }
19662     break;
19663   case 'J':
19664     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19665       if (C->getZExtValue() <= 63)
19666         weight = CW_Constant;
19667     }
19668     break;
19669   case 'K':
19670     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19671       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19672         weight = CW_Constant;
19673     }
19674     break;
19675   case 'L':
19676     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19677       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19678         weight = CW_Constant;
19679     }
19680     break;
19681   case 'M':
19682     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19683       if (C->getZExtValue() <= 3)
19684         weight = CW_Constant;
19685     }
19686     break;
19687   case 'N':
19688     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19689       if (C->getZExtValue() <= 0xff)
19690         weight = CW_Constant;
19691     }
19692     break;
19693   case 'G':
19694   case 'C':
19695     if (dyn_cast<ConstantFP>(CallOperandVal)) {
19696       weight = CW_Constant;
19697     }
19698     break;
19699   case 'e':
19700     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19701       if ((C->getSExtValue() >= -0x80000000LL) &&
19702           (C->getSExtValue() <= 0x7fffffffLL))
19703         weight = CW_Constant;
19704     }
19705     break;
19706   case 'Z':
19707     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19708       if (C->getZExtValue() <= 0xffffffff)
19709         weight = CW_Constant;
19710     }
19711     break;
19712   }
19713   return weight;
19714 }
19715
19716 /// LowerXConstraint - try to replace an X constraint, which matches anything,
19717 /// with another that has more specific requirements based on the type of the
19718 /// corresponding operand.
19719 const char *X86TargetLowering::
19720 LowerXConstraint(EVT ConstraintVT) const {
19721   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19722   // 'f' like normal targets.
19723   if (ConstraintVT.isFloatingPoint()) {
19724     if (Subtarget->hasSSE2())
19725       return "Y";
19726     if (Subtarget->hasSSE1())
19727       return "x";
19728   }
19729
19730   return TargetLowering::LowerXConstraint(ConstraintVT);
19731 }
19732
19733 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19734 /// vector.  If it is invalid, don't add anything to Ops.
19735 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
19736                                                      std::string &Constraint,
19737                                                      std::vector<SDValue>&Ops,
19738                                                      SelectionDAG &DAG) const {
19739   SDValue Result(0, 0);
19740
19741   // Only support length 1 constraints for now.
19742   if (Constraint.length() > 1) return;
19743
19744   char ConstraintLetter = Constraint[0];
19745   switch (ConstraintLetter) {
19746   default: break;
19747   case 'I':
19748     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19749       if (C->getZExtValue() <= 31) {
19750         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19751         break;
19752       }
19753     }
19754     return;
19755   case 'J':
19756     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19757       if (C->getZExtValue() <= 63) {
19758         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19759         break;
19760       }
19761     }
19762     return;
19763   case 'K':
19764     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19765       if (isInt<8>(C->getSExtValue())) {
19766         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19767         break;
19768       }
19769     }
19770     return;
19771   case 'N':
19772     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19773       if (C->getZExtValue() <= 255) {
19774         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19775         break;
19776       }
19777     }
19778     return;
19779   case 'e': {
19780     // 32-bit signed value
19781     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19782       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19783                                            C->getSExtValue())) {
19784         // Widen to 64 bits here to get it sign extended.
19785         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
19786         break;
19787       }
19788     // FIXME gcc accepts some relocatable values here too, but only in certain
19789     // memory models; it's complicated.
19790     }
19791     return;
19792   }
19793   case 'Z': {
19794     // 32-bit unsigned value
19795     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
19796       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19797                                            C->getZExtValue())) {
19798         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19799         break;
19800       }
19801     }
19802     // FIXME gcc accepts some relocatable values here too, but only in certain
19803     // memory models; it's complicated.
19804     return;
19805   }
19806   case 'i': {
19807     // Literal immediates are always ok.
19808     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
19809       // Widen to 64 bits here to get it sign extended.
19810       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
19811       break;
19812     }
19813
19814     // In any sort of PIC mode addresses need to be computed at runtime by
19815     // adding in a register or some sort of table lookup.  These can't
19816     // be used as immediates.
19817     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
19818       return;
19819
19820     // If we are in non-pic codegen mode, we allow the address of a global (with
19821     // an optional displacement) to be used with 'i'.
19822     GlobalAddressSDNode *GA = 0;
19823     int64_t Offset = 0;
19824
19825     // Match either (GA), (GA+C), (GA+C1+C2), etc.
19826     while (1) {
19827       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19828         Offset += GA->getOffset();
19829         break;
19830       } else if (Op.getOpcode() == ISD::ADD) {
19831         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19832           Offset += C->getZExtValue();
19833           Op = Op.getOperand(0);
19834           continue;
19835         }
19836       } else if (Op.getOpcode() == ISD::SUB) {
19837         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19838           Offset += -C->getZExtValue();
19839           Op = Op.getOperand(0);
19840           continue;
19841         }
19842       }
19843
19844       // Otherwise, this isn't something we can handle, reject it.
19845       return;
19846     }
19847
19848     const GlobalValue *GV = GA->getGlobal();
19849     // If we require an extra load to get this address, as in PIC mode, we
19850     // can't accept it.
19851     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19852                                                         getTargetMachine())))
19853       return;
19854
19855     Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
19856                                         GA->getValueType(0), Offset);
19857     break;
19858   }
19859   }
19860
19861   if (Result.getNode()) {
19862     Ops.push_back(Result);
19863     return;
19864   }
19865   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
19866 }
19867
19868 std::pair<unsigned, const TargetRegisterClass*>
19869 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
19870                                                 MVT VT) const {
19871   // First, see if this is a constraint that directly corresponds to an LLVM
19872   // register class.
19873   if (Constraint.size() == 1) {
19874     // GCC Constraint Letters
19875     switch (Constraint[0]) {
19876     default: break;
19877       // TODO: Slight differences here in allocation order and leaving
19878       // RIP in the class. Do they matter any more here than they do
19879       // in the normal allocation?
19880     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19881       if (Subtarget->is64Bit()) {
19882         if (VT == MVT::i32 || VT == MVT::f32)
19883           return std::make_pair(0U, &X86::GR32RegClass);
19884         if (VT == MVT::i16)
19885           return std::make_pair(0U, &X86::GR16RegClass);
19886         if (VT == MVT::i8 || VT == MVT::i1)
19887           return std::make_pair(0U, &X86::GR8RegClass);
19888         if (VT == MVT::i64 || VT == MVT::f64)
19889           return std::make_pair(0U, &X86::GR64RegClass);
19890         break;
19891       }
19892       // 32-bit fallthrough
19893     case 'Q':   // Q_REGS
19894       if (VT == MVT::i32 || VT == MVT::f32)
19895         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19896       if (VT == MVT::i16)
19897         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19898       if (VT == MVT::i8 || VT == MVT::i1)
19899         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19900       if (VT == MVT::i64)
19901         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
19902       break;
19903     case 'r':   // GENERAL_REGS
19904     case 'l':   // INDEX_REGS
19905       if (VT == MVT::i8 || VT == MVT::i1)
19906         return std::make_pair(0U, &X86::GR8RegClass);
19907       if (VT == MVT::i16)
19908         return std::make_pair(0U, &X86::GR16RegClass);
19909       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
19910         return std::make_pair(0U, &X86::GR32RegClass);
19911       return std::make_pair(0U, &X86::GR64RegClass);
19912     case 'R':   // LEGACY_REGS
19913       if (VT == MVT::i8 || VT == MVT::i1)
19914         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
19915       if (VT == MVT::i16)
19916         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
19917       if (VT == MVT::i32 || !Subtarget->is64Bit())
19918         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19919       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
19920     case 'f':  // FP Stack registers.
19921       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19922       // value to the correct fpstack register class.
19923       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
19924         return std::make_pair(0U, &X86::RFP32RegClass);
19925       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
19926         return std::make_pair(0U, &X86::RFP64RegClass);
19927       return std::make_pair(0U, &X86::RFP80RegClass);
19928     case 'y':   // MMX_REGS if MMX allowed.
19929       if (!Subtarget->hasMMX()) break;
19930       return std::make_pair(0U, &X86::VR64RegClass);
19931     case 'Y':   // SSE_REGS if SSE2 allowed
19932       if (!Subtarget->hasSSE2()) break;
19933       // FALL THROUGH.
19934     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
19935       if (!Subtarget->hasSSE1()) break;
19936
19937       switch (VT.SimpleTy) {
19938       default: break;
19939       // Scalar SSE types.
19940       case MVT::f32:
19941       case MVT::i32:
19942         return std::make_pair(0U, &X86::FR32RegClass);
19943       case MVT::f64:
19944       case MVT::i64:
19945         return std::make_pair(0U, &X86::FR64RegClass);
19946       // Vector types.
19947       case MVT::v16i8:
19948       case MVT::v8i16:
19949       case MVT::v4i32:
19950       case MVT::v2i64:
19951       case MVT::v4f32:
19952       case MVT::v2f64:
19953         return std::make_pair(0U, &X86::VR128RegClass);
19954       // AVX types.
19955       case MVT::v32i8:
19956       case MVT::v16i16:
19957       case MVT::v8i32:
19958       case MVT::v4i64:
19959       case MVT::v8f32:
19960       case MVT::v4f64:
19961         return std::make_pair(0U, &X86::VR256RegClass);
19962       case MVT::v8f64:
19963       case MVT::v16f32:
19964       case MVT::v16i32:
19965       case MVT::v8i64:
19966         return std::make_pair(0U, &X86::VR512RegClass);
19967       }
19968       break;
19969     }
19970   }
19971
19972   // Use the default implementation in TargetLowering to convert the register
19973   // constraint into a member of a register class.
19974   std::pair<unsigned, const TargetRegisterClass*> Res;
19975   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
19976
19977   // Not found as a standard register?
19978   if (Res.second == 0) {
19979     // Map st(0) -> st(7) -> ST0
19980     if (Constraint.size() == 7 && Constraint[0] == '{' &&
19981         tolower(Constraint[1]) == 's' &&
19982         tolower(Constraint[2]) == 't' &&
19983         Constraint[3] == '(' &&
19984         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19985         Constraint[5] == ')' &&
19986         Constraint[6] == '}') {
19987
19988       Res.first = X86::ST0+Constraint[4]-'0';
19989       Res.second = &X86::RFP80RegClass;
19990       return Res;
19991     }
19992
19993     // GCC allows "st(0)" to be called just plain "st".
19994     if (StringRef("{st}").equals_lower(Constraint)) {
19995       Res.first = X86::ST0;
19996       Res.second = &X86::RFP80RegClass;
19997       return Res;
19998     }
19999
20000     // flags -> EFLAGS
20001     if (StringRef("{flags}").equals_lower(Constraint)) {
20002       Res.first = X86::EFLAGS;
20003       Res.second = &X86::CCRRegClass;
20004       return Res;
20005     }
20006
20007     // 'A' means EAX + EDX.
20008     if (Constraint == "A") {
20009       Res.first = X86::EAX;
20010       Res.second = &X86::GR32_ADRegClass;
20011       return Res;
20012     }
20013     return Res;
20014   }
20015
20016   // Otherwise, check to see if this is a register class of the wrong value
20017   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
20018   // turn into {ax},{dx}.
20019   if (Res.second->hasType(VT))
20020     return Res;   // Correct type already, nothing to do.
20021
20022   // All of the single-register GCC register classes map their values onto
20023   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
20024   // really want an 8-bit or 32-bit register, map to the appropriate register
20025   // class and return the appropriate register.
20026   if (Res.second == &X86::GR16RegClass) {
20027     if (VT == MVT::i8 || VT == MVT::i1) {
20028       unsigned DestReg = 0;
20029       switch (Res.first) {
20030       default: break;
20031       case X86::AX: DestReg = X86::AL; break;
20032       case X86::DX: DestReg = X86::DL; break;
20033       case X86::CX: DestReg = X86::CL; break;
20034       case X86::BX: DestReg = X86::BL; break;
20035       }
20036       if (DestReg) {
20037         Res.first = DestReg;
20038         Res.second = &X86::GR8RegClass;
20039       }
20040     } else if (VT == MVT::i32 || VT == MVT::f32) {
20041       unsigned DestReg = 0;
20042       switch (Res.first) {
20043       default: break;
20044       case X86::AX: DestReg = X86::EAX; break;
20045       case X86::DX: DestReg = X86::EDX; break;
20046       case X86::CX: DestReg = X86::ECX; break;
20047       case X86::BX: DestReg = X86::EBX; break;
20048       case X86::SI: DestReg = X86::ESI; break;
20049       case X86::DI: DestReg = X86::EDI; break;
20050       case X86::BP: DestReg = X86::EBP; break;
20051       case X86::SP: DestReg = X86::ESP; break;
20052       }
20053       if (DestReg) {
20054         Res.first = DestReg;
20055         Res.second = &X86::GR32RegClass;
20056       }
20057     } else if (VT == MVT::i64 || VT == MVT::f64) {
20058       unsigned DestReg = 0;
20059       switch (Res.first) {
20060       default: break;
20061       case X86::AX: DestReg = X86::RAX; break;
20062       case X86::DX: DestReg = X86::RDX; break;
20063       case X86::CX: DestReg = X86::RCX; break;
20064       case X86::BX: DestReg = X86::RBX; break;
20065       case X86::SI: DestReg = X86::RSI; break;
20066       case X86::DI: DestReg = X86::RDI; break;
20067       case X86::BP: DestReg = X86::RBP; break;
20068       case X86::SP: DestReg = X86::RSP; break;
20069       }
20070       if (DestReg) {
20071         Res.first = DestReg;
20072         Res.second = &X86::GR64RegClass;
20073       }
20074     }
20075   } else if (Res.second == &X86::FR32RegClass ||
20076              Res.second == &X86::FR64RegClass ||
20077              Res.second == &X86::VR128RegClass ||
20078              Res.second == &X86::VR256RegClass ||
20079              Res.second == &X86::FR32XRegClass ||
20080              Res.second == &X86::FR64XRegClass ||
20081              Res.second == &X86::VR128XRegClass ||
20082              Res.second == &X86::VR256XRegClass ||
20083              Res.second == &X86::VR512RegClass) {
20084     // Handle references to XMM physical registers that got mapped into the
20085     // wrong class.  This can happen with constraints like {xmm0} where the
20086     // target independent register mapper will just pick the first match it can
20087     // find, ignoring the required type.
20088
20089     if (VT == MVT::f32 || VT == MVT::i32)
20090       Res.second = &X86::FR32RegClass;
20091     else if (VT == MVT::f64 || VT == MVT::i64)
20092       Res.second = &X86::FR64RegClass;
20093     else if (X86::VR128RegClass.hasType(VT))
20094       Res.second = &X86::VR128RegClass;
20095     else if (X86::VR256RegClass.hasType(VT))
20096       Res.second = &X86::VR256RegClass;
20097     else if (X86::VR512RegClass.hasType(VT))
20098       Res.second = &X86::VR512RegClass;
20099   }
20100
20101   return Res;
20102 }