Simplify code.
[oota-llvm.git] / lib / Target / X86 / X86ISelLowering.cpp
1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the interfaces that X86 uses to lower LLVM code into a
11 // selection DAG.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86ISelLowering.h"
17 #include "Utils/X86ShuffleDecode.h"
18 #include "X86.h"
19 #include "X86InstrBuilder.h"
20 #include "X86TargetMachine.h"
21 #include "X86TargetObjectFile.h"
22 #include "llvm/ADT/SmallSet.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/ADT/StringExtras.h"
25 #include "llvm/ADT/VariadicFunction.h"
26 #include "llvm/CallingConv.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/Constants.h"
35 #include "llvm/DerivedTypes.h"
36 #include "llvm/Function.h"
37 #include "llvm/GlobalAlias.h"
38 #include "llvm/GlobalVariable.h"
39 #include "llvm/Instructions.h"
40 #include "llvm/Intrinsics.h"
41 #include "llvm/LLVMContext.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, DebugLoc dl, EVT VT, SDValue V1,
59                        SDValue V2);
60
61 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
62 /// sets things up to match to an AVX VEXTRACTF128 instruction or a
63 /// simple subregister reference.  Idx is an index in the 128 bits we
64 /// want.  It need not be aligned to a 128-bit bounday.  That makes
65 /// lowering EXTRACT_VECTOR_ELT operations easier.
66 static SDValue Extract128BitVector(SDValue Vec, unsigned IdxVal,
67                                    SelectionDAG &DAG, DebugLoc dl) {
68   EVT VT = Vec.getValueType();
69   assert(VT.is256BitVector() && "Unexpected vector size!");
70   EVT ElVT = VT.getVectorElementType();
71   unsigned Factor = VT.getSizeInBits()/128;
72   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
73                                   VT.getVectorNumElements()/Factor);
74
75   // Extract from UNDEF is UNDEF.
76   if (Vec.getOpcode() == ISD::UNDEF)
77     return DAG.getUNDEF(ResultVT);
78
79   // Extract the relevant 128 bits.  Generate an EXTRACT_SUBVECTOR
80   // we can match to VEXTRACTF128.
81   unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
82
83   // This is the index of the first element of the 128-bit chunk
84   // we want.
85   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
86                                * ElemsPerChunk);
87
88   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
89   SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
90                                VecIdx);
91
92   return Result;
93 }
94
95 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
96 /// sets things up to match to an AVX VINSERTF128 instruction or a
97 /// simple superregister reference.  Idx is an index in the 128 bits
98 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
99 /// lowering INSERT_VECTOR_ELT operations easier.
100 static SDValue Insert128BitVector(SDValue Result, SDValue Vec,
101                                   unsigned IdxVal, SelectionDAG &DAG,
102                                   DebugLoc dl) {
103   // Inserting UNDEF is Result
104   if (Vec.getOpcode() == ISD::UNDEF)
105     return Result;
106
107   EVT VT = Vec.getValueType();
108   assert(VT.is128BitVector() && "Unexpected vector size!");
109
110   EVT ElVT = VT.getVectorElementType();
111   EVT ResultVT = Result.getValueType();
112
113   // Insert the relevant 128 bits.
114   unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
115
116   // This is the index of the first element of the 128-bit chunk
117   // we want.
118   unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
119                                * ElemsPerChunk);
120
121   SDValue VecIdx = DAG.getIntPtrConstant(NormalizedIdxVal);
122   return DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
123                      VecIdx);
124 }
125
126 /// Concat two 128-bit vectors into a 256 bit vector using VINSERTF128
127 /// instructions. This is used because creating CONCAT_VECTOR nodes of
128 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
129 /// large BUILD_VECTORS.
130 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT,
131                                    unsigned NumElems, SelectionDAG &DAG,
132                                    DebugLoc dl) {
133   SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
134   return Insert128BitVector(V, V2, NumElems/2, DAG, dl);
135 }
136
137 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
138   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
139   bool is64Bit = Subtarget->is64Bit();
140
141   if (Subtarget->isTargetEnvMacho()) {
142     if (is64Bit)
143       return new X86_64MachoTargetObjectFile();
144     return new TargetLoweringObjectFileMachO();
145   }
146
147   if (Subtarget->isTargetLinux())
148     return new X86LinuxTargetObjectFile();
149   if (Subtarget->isTargetELF())
150     return new TargetLoweringObjectFileELF();
151   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
152     return new TargetLoweringObjectFileCOFF();
153   llvm_unreachable("unknown subtarget type");
154 }
155
156 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
157   : TargetLowering(TM, createTLOF(TM)) {
158   Subtarget = &TM.getSubtarget<X86Subtarget>();
159   X86ScalarSSEf64 = Subtarget->hasSSE2();
160   X86ScalarSSEf32 = Subtarget->hasSSE1();
161
162   RegInfo = TM.getRegisterInfo();
163   TD = getDataLayout();
164
165   // Set up the TargetLowering object.
166   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
167
168   // X86 is weird, it always uses i8 for shift amounts and setcc results.
169   setBooleanContents(ZeroOrOneBooleanContent);
170   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
171   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
172
173   // For 64-bit since we have so many registers use the ILP scheduler, for
174   // 32-bit code use the register pressure specific scheduling.
175   // For Atom, always use ILP scheduling.
176   if (Subtarget->isAtom())
177     setSchedulingPreference(Sched::ILP);
178   else if (Subtarget->is64Bit())
179     setSchedulingPreference(Sched::ILP);
180   else
181     setSchedulingPreference(Sched::RegPressure);
182   setStackPointerRegisterToSaveRestore(RegInfo->getStackRegister());
183
184   // Bypass i32 with i8 on Atom when compiling with O2
185   if (Subtarget->hasSlowDivide() && TM.getOptLevel() >= CodeGenOpt::Default)
186     addBypassSlowDiv(32, 8);
187
188   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
189     // Setup Windows compiler runtime calls.
190     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
191     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
192     setLibcallName(RTLIB::SREM_I64, "_allrem");
193     setLibcallName(RTLIB::UREM_I64, "_aullrem");
194     setLibcallName(RTLIB::MUL_I64, "_allmul");
195     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
196     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
197     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
198     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
199     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
200
201     // The _ftol2 runtime function has an unusual calling conv, which
202     // is modeled by a special pseudo-instruction.
203     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
204     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
205     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
206     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
207   }
208
209   if (Subtarget->isTargetDarwin()) {
210     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
211     setUseUnderscoreSetJmp(false);
212     setUseUnderscoreLongJmp(false);
213   } else if (Subtarget->isTargetMingw()) {
214     // MS runtime is weird: it exports _setjmp, but longjmp!
215     setUseUnderscoreSetJmp(true);
216     setUseUnderscoreLongJmp(false);
217   } else {
218     setUseUnderscoreSetJmp(true);
219     setUseUnderscoreLongJmp(true);
220   }
221
222   // Set up the register classes.
223   addRegisterClass(MVT::i8, &X86::GR8RegClass);
224   addRegisterClass(MVT::i16, &X86::GR16RegClass);
225   addRegisterClass(MVT::i32, &X86::GR32RegClass);
226   if (Subtarget->is64Bit())
227     addRegisterClass(MVT::i64, &X86::GR64RegClass);
228
229   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
230
231   // We don't accept any truncstore of integer registers.
232   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
233   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
234   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
235   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
236   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
237   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
238
239   // SETOEQ and SETUNE require checking two conditions.
240   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
241   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
242   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
243   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
244   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
245   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
246
247   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
248   // operation.
249   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
250   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
251   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
252
253   if (Subtarget->is64Bit()) {
254     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
255     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
256   } else if (!TM.Options.UseSoftFloat) {
257     // We have an algorithm for SSE2->double, and we turn this into a
258     // 64-bit FILD followed by conditional FADD for other targets.
259     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
260     // We have an algorithm for SSE2, and we turn this into a 64-bit
261     // FILD for other targets.
262     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
263   }
264
265   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
266   // this operation.
267   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
268   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
269
270   if (!TM.Options.UseSoftFloat) {
271     // SSE has no i16 to fp conversion, only i32
272     if (X86ScalarSSEf32) {
273       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
274       // f32 and f64 cases are Legal, f80 case is not
275       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
276     } else {
277       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
278       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
279     }
280   } else {
281     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
282     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
283   }
284
285   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
286   // are Legal, f80 is custom lowered.
287   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
288   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
289
290   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
291   // this operation.
292   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
293   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
294
295   if (X86ScalarSSEf32) {
296     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
297     // f32 and f64 cases are Legal, f80 case is not
298     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
299   } else {
300     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
301     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
302   }
303
304   // Handle FP_TO_UINT by promoting the destination to a larger signed
305   // conversion.
306   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
307   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
308   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
309
310   if (Subtarget->is64Bit()) {
311     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
312     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
313   } else if (!TM.Options.UseSoftFloat) {
314     // Since AVX is a superset of SSE3, only check for SSE here.
315     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
316       // Expand FP_TO_UINT into a select.
317       // FIXME: We would like to use a Custom expander here eventually to do
318       // the optimal thing for SSE vs. the default expansion in the legalizer.
319       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
320     else
321       // With SSE3 we can use fisttpll to convert to a signed i64; without
322       // SSE, we're stuck with a fistpll.
323       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
324   }
325
326   if (isTargetFTOL()) {
327     // Use the _ftol2 runtime function, which has a pseudo-instruction
328     // to handle its weird calling convention.
329     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
330   }
331
332   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
333   if (!X86ScalarSSEf64) {
334     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
335     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
336     if (Subtarget->is64Bit()) {
337       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
338       // Without SSE, i64->f64 goes through memory.
339       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
340     }
341   }
342
343   // Scalar integer divide and remainder are lowered to use operations that
344   // produce two results, to match the available instructions. This exposes
345   // the two-result form to trivial CSE, which is able to combine x/y and x%y
346   // into a single instruction.
347   //
348   // Scalar integer multiply-high is also lowered to use two-result
349   // operations, to match the available instructions. However, plain multiply
350   // (low) operations are left as Legal, as there are single-result
351   // instructions for this in x86. Using the two-result multiply instructions
352   // when both high and low results are needed must be arranged by dagcombine.
353   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
354     MVT VT = IntVTs[i];
355     setOperationAction(ISD::MULHS, VT, Expand);
356     setOperationAction(ISD::MULHU, VT, Expand);
357     setOperationAction(ISD::SDIV, VT, Expand);
358     setOperationAction(ISD::UDIV, VT, Expand);
359     setOperationAction(ISD::SREM, VT, Expand);
360     setOperationAction(ISD::UREM, VT, Expand);
361
362     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
363     setOperationAction(ISD::ADDC, VT, Custom);
364     setOperationAction(ISD::ADDE, VT, Custom);
365     setOperationAction(ISD::SUBC, VT, Custom);
366     setOperationAction(ISD::SUBE, VT, Custom);
367   }
368
369   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
370   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
371   setOperationAction(ISD::BR_CC            , MVT::Other, Expand);
372   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
373   if (Subtarget->is64Bit())
374     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
375   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
376   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
377   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
378   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
379   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
380   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
381   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
382   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
383
384   // Promote the i8 variants and force them on up to i32 which has a shorter
385   // encoding.
386   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
387   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
388   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
389   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
390   if (Subtarget->hasBMI()) {
391     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
392     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
393     if (Subtarget->is64Bit())
394       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
395   } else {
396     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
397     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
398     if (Subtarget->is64Bit())
399       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
400   }
401
402   if (Subtarget->hasLZCNT()) {
403     // When promoting the i8 variants, force them to i32 for a shorter
404     // encoding.
405     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
406     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
407     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
408     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
409     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
410     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
411     if (Subtarget->is64Bit())
412       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
413   } else {
414     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
415     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
416     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
417     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
418     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
419     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
420     if (Subtarget->is64Bit()) {
421       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
422       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
423     }
424   }
425
426   if (Subtarget->hasPOPCNT()) {
427     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
428   } else {
429     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
430     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
431     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
432     if (Subtarget->is64Bit())
433       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
434   }
435
436   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
437   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
438
439   // These should be promoted to a larger select which is supported.
440   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
441   // X86 wants to expand cmov itself.
442   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
443   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
444   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
445   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
446   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
447   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
448   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
449   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
450   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
451   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
452   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
453   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
454   if (Subtarget->is64Bit()) {
455     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
456     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
457   }
458   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
459   // NOTE: EH_SJLJ_SETJMP/_LONGJMP supported here is NOT intened to support
460   // SjLj exception handling but a light-weight setjmp/longjmp replacement to
461   // support continuation, user-level threading, and etc.. As a result, no
462   // other SjLj exception interfaces are implemented and please don't build
463   // your own exception handling based on them.
464   // LLVM/Clang supports zero-cost DWARF exception handling.
465   setOperationAction(ISD::EH_SJLJ_SETJMP, MVT::i32, Custom);
466   setOperationAction(ISD::EH_SJLJ_LONGJMP, MVT::Other, Custom);
467
468   // Darwin ABI issue.
469   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
470   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
471   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
472   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
473   if (Subtarget->is64Bit())
474     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
475   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
476   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
477   if (Subtarget->is64Bit()) {
478     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
479     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
480     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
481     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
482     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
483   }
484   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
485   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
486   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
487   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
488   if (Subtarget->is64Bit()) {
489     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
490     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
491     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
492   }
493
494   if (Subtarget->hasSSE1())
495     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
496
497   setOperationAction(ISD::MEMBARRIER    , MVT::Other, Custom);
498   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
499
500   // On X86 and X86-64, atomic operations are lowered to locked instructions.
501   // Locked instructions, in turn, have implicit fence semantics (all memory
502   // operations are flushed before issuing the locked instruction, and they
503   // are not buffered), so we can fold away the common pattern of
504   // fence-atomic-fence.
505   setShouldFoldAtomicFences(true);
506
507   // Expand certain atomics
508   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
509     MVT VT = IntVTs[i];
510     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
511     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
512     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
513   }
514
515   if (!Subtarget->is64Bit()) {
516     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
517     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
518     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
519     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
520     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
521     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
522     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
523     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
524     setOperationAction(ISD::ATOMIC_LOAD_MAX, MVT::i64, Custom);
525     setOperationAction(ISD::ATOMIC_LOAD_MIN, MVT::i64, Custom);
526     setOperationAction(ISD::ATOMIC_LOAD_UMAX, MVT::i64, Custom);
527     setOperationAction(ISD::ATOMIC_LOAD_UMIN, MVT::i64, Custom);
528   }
529
530   if (Subtarget->hasCmpxchg16b()) {
531     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
532   }
533
534   // FIXME - use subtarget debug flags
535   if (!Subtarget->isTargetDarwin() &&
536       !Subtarget->isTargetELF() &&
537       !Subtarget->isTargetCygMing()) {
538     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
539   }
540
541   setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
542   setOperationAction(ISD::EHSELECTION,   MVT::i64, Expand);
543   setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
544   setOperationAction(ISD::EHSELECTION,   MVT::i32, Expand);
545   if (Subtarget->is64Bit()) {
546     setExceptionPointerRegister(X86::RAX);
547     setExceptionSelectorRegister(X86::RDX);
548   } else {
549     setExceptionPointerRegister(X86::EAX);
550     setExceptionSelectorRegister(X86::EDX);
551   }
552   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
553   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
554
555   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
556   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
557
558   setOperationAction(ISD::TRAP, MVT::Other, Legal);
559   setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
560
561   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
562   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
563   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
564   if (Subtarget->is64Bit()) {
565     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
566     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
567   } else {
568     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
569     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
570   }
571
572   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
573   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
574
575   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
576     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
577                        MVT::i64 : MVT::i32, Custom);
578   else if (TM.Options.EnableSegmentedStacks)
579     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
580                        MVT::i64 : MVT::i32, Custom);
581   else
582     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
583                        MVT::i64 : MVT::i32, Expand);
584
585   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
586     // f32 and f64 use SSE.
587     // Set up the FP register classes.
588     addRegisterClass(MVT::f32, &X86::FR32RegClass);
589     addRegisterClass(MVT::f64, &X86::FR64RegClass);
590
591     // Use ANDPD to simulate FABS.
592     setOperationAction(ISD::FABS , MVT::f64, Custom);
593     setOperationAction(ISD::FABS , MVT::f32, Custom);
594
595     // Use XORP to simulate FNEG.
596     setOperationAction(ISD::FNEG , MVT::f64, Custom);
597     setOperationAction(ISD::FNEG , MVT::f32, Custom);
598
599     // Use ANDPD and ORPD to simulate FCOPYSIGN.
600     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
601     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
602
603     // Lower this to FGETSIGNx86 plus an AND.
604     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
605     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
606
607     // We don't support sin/cos/fmod
608     setOperationAction(ISD::FSIN , MVT::f64, Expand);
609     setOperationAction(ISD::FCOS , MVT::f64, Expand);
610     setOperationAction(ISD::FSIN , MVT::f32, Expand);
611     setOperationAction(ISD::FCOS , MVT::f32, Expand);
612
613     // Expand FP immediates into loads from the stack, except for the special
614     // cases we handle.
615     addLegalFPImmediate(APFloat(+0.0)); // xorpd
616     addLegalFPImmediate(APFloat(+0.0f)); // xorps
617   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
618     // Use SSE for f32, x87 for f64.
619     // Set up the FP register classes.
620     addRegisterClass(MVT::f32, &X86::FR32RegClass);
621     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
622
623     // Use ANDPS to simulate FABS.
624     setOperationAction(ISD::FABS , MVT::f32, Custom);
625
626     // Use XORP to simulate FNEG.
627     setOperationAction(ISD::FNEG , MVT::f32, Custom);
628
629     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
630
631     // Use ANDPS and ORPS to simulate FCOPYSIGN.
632     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
633     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
634
635     // We don't support sin/cos/fmod
636     setOperationAction(ISD::FSIN , MVT::f32, Expand);
637     setOperationAction(ISD::FCOS , MVT::f32, Expand);
638
639     // Special cases we handle for FP constants.
640     addLegalFPImmediate(APFloat(+0.0f)); // xorps
641     addLegalFPImmediate(APFloat(+0.0)); // FLD0
642     addLegalFPImmediate(APFloat(+1.0)); // FLD1
643     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
644     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
645
646     if (!TM.Options.UnsafeFPMath) {
647       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
648       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
649     }
650   } else if (!TM.Options.UseSoftFloat) {
651     // f32 and f64 in x87.
652     // Set up the FP register classes.
653     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
654     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
655
656     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
657     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
658     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
659     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
660
661     if (!TM.Options.UnsafeFPMath) {
662       setOperationAction(ISD::FSIN           , MVT::f32  , Expand);
663       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
664       setOperationAction(ISD::FCOS           , MVT::f32  , Expand);
665       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
666     }
667     addLegalFPImmediate(APFloat(+0.0)); // FLD0
668     addLegalFPImmediate(APFloat(+1.0)); // FLD1
669     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
670     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
671     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
672     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
673     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
674     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
675   }
676
677   // We don't support FMA.
678   setOperationAction(ISD::FMA, MVT::f64, Expand);
679   setOperationAction(ISD::FMA, MVT::f32, Expand);
680
681   // Long double always uses X87.
682   if (!TM.Options.UseSoftFloat) {
683     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
684     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
685     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
686     {
687       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
688       addLegalFPImmediate(TmpFlt);  // FLD0
689       TmpFlt.changeSign();
690       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
691
692       bool ignored;
693       APFloat TmpFlt2(+1.0);
694       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
695                       &ignored);
696       addLegalFPImmediate(TmpFlt2);  // FLD1
697       TmpFlt2.changeSign();
698       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
699     }
700
701     if (!TM.Options.UnsafeFPMath) {
702       setOperationAction(ISD::FSIN           , MVT::f80  , Expand);
703       setOperationAction(ISD::FCOS           , MVT::f80  , Expand);
704     }
705
706     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
707     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
708     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
709     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
710     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
711     setOperationAction(ISD::FMA, MVT::f80, Expand);
712   }
713
714   // Always use a library call for pow.
715   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
716   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
717   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
718
719   setOperationAction(ISD::FLOG, MVT::f80, Expand);
720   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
721   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
722   setOperationAction(ISD::FEXP, MVT::f80, Expand);
723   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
724
725   // First set operation action for all vector types to either promote
726   // (for widening) or expand (for scalarization). Then we will selectively
727   // turn on ones that can be effectively codegen'd.
728   for (int i = MVT::FIRST_VECTOR_VALUETYPE;
729            i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
730     MVT VT = (MVT::SimpleValueType)i;
731     setOperationAction(ISD::ADD , VT, Expand);
732     setOperationAction(ISD::SUB , VT, Expand);
733     setOperationAction(ISD::FADD, VT, Expand);
734     setOperationAction(ISD::FNEG, VT, Expand);
735     setOperationAction(ISD::FSUB, VT, Expand);
736     setOperationAction(ISD::MUL , VT, Expand);
737     setOperationAction(ISD::FMUL, VT, Expand);
738     setOperationAction(ISD::SDIV, VT, Expand);
739     setOperationAction(ISD::UDIV, VT, Expand);
740     setOperationAction(ISD::FDIV, VT, Expand);
741     setOperationAction(ISD::SREM, VT, Expand);
742     setOperationAction(ISD::UREM, VT, Expand);
743     setOperationAction(ISD::LOAD, VT, Expand);
744     setOperationAction(ISD::VECTOR_SHUFFLE, VT, Expand);
745     setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT,Expand);
746     setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Expand);
747     setOperationAction(ISD::EXTRACT_SUBVECTOR, VT,Expand);
748     setOperationAction(ISD::INSERT_SUBVECTOR, VT,Expand);
749     setOperationAction(ISD::FABS, VT, Expand);
750     setOperationAction(ISD::FSIN, VT, Expand);
751     setOperationAction(ISD::FCOS, VT, Expand);
752     setOperationAction(ISD::FREM, VT, Expand);
753     setOperationAction(ISD::FMA,  VT, Expand);
754     setOperationAction(ISD::FPOWI, VT, Expand);
755     setOperationAction(ISD::FSQRT, VT, Expand);
756     setOperationAction(ISD::FCOPYSIGN, VT, Expand);
757     setOperationAction(ISD::FFLOOR, VT, Expand);
758     setOperationAction(ISD::FCEIL, VT, Expand);
759     setOperationAction(ISD::FTRUNC, VT, Expand);
760     setOperationAction(ISD::FRINT, VT, Expand);
761     setOperationAction(ISD::FNEARBYINT, VT, Expand);
762     setOperationAction(ISD::SMUL_LOHI, VT, Expand);
763     setOperationAction(ISD::UMUL_LOHI, VT, Expand);
764     setOperationAction(ISD::SDIVREM, VT, Expand);
765     setOperationAction(ISD::UDIVREM, VT, Expand);
766     setOperationAction(ISD::FPOW, VT, Expand);
767     setOperationAction(ISD::CTPOP, VT, Expand);
768     setOperationAction(ISD::CTTZ, VT, Expand);
769     setOperationAction(ISD::CTTZ_ZERO_UNDEF, VT, Expand);
770     setOperationAction(ISD::CTLZ, VT, Expand);
771     setOperationAction(ISD::CTLZ_ZERO_UNDEF, VT, Expand);
772     setOperationAction(ISD::SHL, VT, Expand);
773     setOperationAction(ISD::SRA, VT, Expand);
774     setOperationAction(ISD::SRL, VT, Expand);
775     setOperationAction(ISD::ROTL, VT, Expand);
776     setOperationAction(ISD::ROTR, VT, Expand);
777     setOperationAction(ISD::BSWAP, VT, Expand);
778     setOperationAction(ISD::SETCC, VT, Expand);
779     setOperationAction(ISD::FLOG, VT, Expand);
780     setOperationAction(ISD::FLOG2, VT, Expand);
781     setOperationAction(ISD::FLOG10, VT, Expand);
782     setOperationAction(ISD::FEXP, VT, Expand);
783     setOperationAction(ISD::FEXP2, VT, Expand);
784     setOperationAction(ISD::FP_TO_UINT, VT, Expand);
785     setOperationAction(ISD::FP_TO_SINT, VT, Expand);
786     setOperationAction(ISD::UINT_TO_FP, VT, Expand);
787     setOperationAction(ISD::SINT_TO_FP, VT, Expand);
788     setOperationAction(ISD::SIGN_EXTEND_INREG, VT,Expand);
789     setOperationAction(ISD::TRUNCATE, VT, Expand);
790     setOperationAction(ISD::SIGN_EXTEND, VT, Expand);
791     setOperationAction(ISD::ZERO_EXTEND, VT, Expand);
792     setOperationAction(ISD::ANY_EXTEND, VT, Expand);
793     setOperationAction(ISD::VSELECT, VT, Expand);
794     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
795              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
796       setTruncStoreAction(VT,
797                           (MVT::SimpleValueType)InnerVT, Expand);
798     setLoadExtAction(ISD::SEXTLOAD, VT, Expand);
799     setLoadExtAction(ISD::ZEXTLOAD, VT, Expand);
800     setLoadExtAction(ISD::EXTLOAD, VT, Expand);
801   }
802
803   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
804   // with -msoft-float, disable use of MMX as well.
805   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
806     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
807     // No operations on x86mmx supported, everything uses intrinsics.
808   }
809
810   // MMX-sized vectors (other than x86mmx) are expected to be expanded
811   // into smaller operations.
812   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
813   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
814   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
815   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
816   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
817   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
818   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
819   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
820   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
821   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
822   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
823   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
824   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
825   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
826   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
827   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
828   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
829   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
830   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
831   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
832   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
833   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
834   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
835   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
836   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
837   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
838   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
839   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
840   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
841
842   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
843     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
844
845     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
846     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
847     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
848     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
849     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
850     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
851     setOperationAction(ISD::FABS,               MVT::v4f32, Custom);
852     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
853     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
854     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
855     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
856     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
857   }
858
859   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
860     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
861
862     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
863     // registers cannot be used even for integer operations.
864     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
865     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
866     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
867     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
868
869     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
870     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
871     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
872     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
873     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
874     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
875     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
876     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
877     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
878     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
879     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
880     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
881     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
882     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
883     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
884     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
885     setOperationAction(ISD::FABS,               MVT::v2f64, Custom);
886
887     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
888     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
889     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
890     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
891
892     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
893     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
894     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
895     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
896     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
897
898     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
899     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
900       MVT VT = (MVT::SimpleValueType)i;
901       // Do not attempt to custom lower non-power-of-2 vectors
902       if (!isPowerOf2_32(VT.getVectorNumElements()))
903         continue;
904       // Do not attempt to custom lower non-128-bit vectors
905       if (!VT.is128BitVector())
906         continue;
907       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
908       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
909       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
910     }
911
912     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
913     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
914     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
915     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
916     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
917     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
918
919     if (Subtarget->is64Bit()) {
920       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
921       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
922     }
923
924     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
925     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
926       MVT VT = (MVT::SimpleValueType)i;
927
928       // Do not attempt to promote non-128-bit vectors
929       if (!VT.is128BitVector())
930         continue;
931
932       setOperationAction(ISD::AND,    VT, Promote);
933       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
934       setOperationAction(ISD::OR,     VT, Promote);
935       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
936       setOperationAction(ISD::XOR,    VT, Promote);
937       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
938       setOperationAction(ISD::LOAD,   VT, Promote);
939       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
940       setOperationAction(ISD::SELECT, VT, Promote);
941       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
942     }
943
944     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
945
946     // Custom lower v2i64 and v2f64 selects.
947     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
948     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
949     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
950     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
951
952     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
953     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
954
955     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i8,  Custom);
956     setOperationAction(ISD::UINT_TO_FP,         MVT::v4i16, Custom);
957     // As there is no 64-bit GPR available, we need build a special custom
958     // sequence to convert from v2i32 to v2f32.
959     if (!Subtarget->is64Bit())
960       setOperationAction(ISD::UINT_TO_FP,       MVT::v2f32, Custom);
961
962     setOperationAction(ISD::FP_EXTEND,          MVT::v2f32, Custom);
963     setOperationAction(ISD::FP_ROUND,           MVT::v2f32, Custom);
964
965     setLoadExtAction(ISD::EXTLOAD,              MVT::v2f32, Legal);
966   }
967
968   if (Subtarget->hasSSE41()) {
969     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
970     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
971     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
972     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
973     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
974     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
975     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
976     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
977     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
978     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
979
980     setOperationAction(ISD::FFLOOR,             MVT::v4f32, Legal);
981     setOperationAction(ISD::FCEIL,              MVT::v4f32, Legal);
982     setOperationAction(ISD::FTRUNC,             MVT::v4f32, Legal);
983     setOperationAction(ISD::FRINT,              MVT::v4f32, Legal);
984     setOperationAction(ISD::FNEARBYINT,         MVT::v4f32, Legal);
985     setOperationAction(ISD::FFLOOR,             MVT::v2f64, Legal);
986     setOperationAction(ISD::FCEIL,              MVT::v2f64, Legal);
987     setOperationAction(ISD::FTRUNC,             MVT::v2f64, Legal);
988     setOperationAction(ISD::FRINT,              MVT::v2f64, Legal);
989     setOperationAction(ISD::FNEARBYINT,         MVT::v2f64, Legal);
990
991     // FIXME: Do we need to handle scalar-to-vector here?
992     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
993
994     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
995     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
996     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
997     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
998     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
999
1000     // i8 and i16 vectors are custom , because the source register and source
1001     // source memory operand types are not the same width.  f32 vectors are
1002     // custom since the immediate controlling the insert encodes additional
1003     // information.
1004     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
1005     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
1006     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
1007     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
1008
1009     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
1010     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
1011     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
1012     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
1013
1014     // FIXME: these should be Legal but thats only for the case where
1015     // the index is constant.  For now custom expand to deal with that.
1016     if (Subtarget->is64Bit()) {
1017       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
1018       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
1019     }
1020   }
1021
1022   if (Subtarget->hasSSE2()) {
1023     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
1024     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
1025
1026     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
1027     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
1028
1029     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
1030     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
1031
1032     if (Subtarget->hasInt256()) {
1033       setOperationAction(ISD::SRL,             MVT::v2i64, Legal);
1034       setOperationAction(ISD::SRL,             MVT::v4i32, Legal);
1035
1036       setOperationAction(ISD::SHL,             MVT::v2i64, Legal);
1037       setOperationAction(ISD::SHL,             MVT::v4i32, Legal);
1038
1039       setOperationAction(ISD::SRA,             MVT::v4i32, Legal);
1040     } else {
1041       setOperationAction(ISD::SRL,             MVT::v2i64, Custom);
1042       setOperationAction(ISD::SRL,             MVT::v4i32, Custom);
1043
1044       setOperationAction(ISD::SHL,             MVT::v2i64, Custom);
1045       setOperationAction(ISD::SHL,             MVT::v4i32, Custom);
1046
1047       setOperationAction(ISD::SRA,             MVT::v4i32, Custom);
1048     }
1049   }
1050
1051   if (!TM.Options.UseSoftFloat && Subtarget->hasFp256()) {
1052     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1053     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1054     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1055     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1056     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1057     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1058
1059     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1060     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1061     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1062
1063     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1064     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1065     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1066     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1067     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1068     setOperationAction(ISD::FFLOOR,             MVT::v8f32, Legal);
1069     setOperationAction(ISD::FCEIL,              MVT::v8f32, Legal);
1070     setOperationAction(ISD::FTRUNC,             MVT::v8f32, Legal);
1071     setOperationAction(ISD::FRINT,              MVT::v8f32, Legal);
1072     setOperationAction(ISD::FNEARBYINT,         MVT::v8f32, Legal);
1073     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1074     setOperationAction(ISD::FABS,               MVT::v8f32, Custom);
1075
1076     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1077     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1078     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1079     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1080     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1081     setOperationAction(ISD::FFLOOR,             MVT::v4f64, Legal);
1082     setOperationAction(ISD::FCEIL,              MVT::v4f64, Legal);
1083     setOperationAction(ISD::FTRUNC,             MVT::v4f64, Legal);
1084     setOperationAction(ISD::FRINT,              MVT::v4f64, Legal);
1085     setOperationAction(ISD::FNEARBYINT,         MVT::v4f64, Legal);
1086     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1087     setOperationAction(ISD::FABS,               MVT::v4f64, Custom);
1088
1089     setOperationAction(ISD::TRUNCATE,           MVT::v8i16, Custom);
1090
1091     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i16, Custom);
1092
1093     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1094     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1095     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1096
1097     setOperationAction(ISD::ZERO_EXTEND,        MVT::v8i32, Custom);
1098     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i8,  Custom);
1099     setOperationAction(ISD::UINT_TO_FP,         MVT::v8i16, Custom);
1100
1101     setLoadExtAction(ISD::EXTLOAD,              MVT::v4f32, Legal);
1102
1103     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1104     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1105
1106     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1107     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1108
1109     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1110     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1111
1112     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1113     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1114     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1115     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1116
1117     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1118     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1119     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1120
1121     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1122     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1123     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1124     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1125
1126     if (Subtarget->hasFMA() || Subtarget->hasFMA4()) {
1127       setOperationAction(ISD::FMA,             MVT::v8f32, Legal);
1128       setOperationAction(ISD::FMA,             MVT::v4f64, Legal);
1129       setOperationAction(ISD::FMA,             MVT::v4f32, Legal);
1130       setOperationAction(ISD::FMA,             MVT::v2f64, Legal);
1131       setOperationAction(ISD::FMA,             MVT::f32, Legal);
1132       setOperationAction(ISD::FMA,             MVT::f64, Legal);
1133     }
1134
1135     if (Subtarget->hasInt256()) {
1136       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1137       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1138       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1139       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1140
1141       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1142       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1143       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1144       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1145
1146       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1147       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1148       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1149       // Don't lower v32i8 because there is no 128-bit byte mul
1150
1151       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1152
1153       setOperationAction(ISD::SRL,             MVT::v4i64, Legal);
1154       setOperationAction(ISD::SRL,             MVT::v8i32, Legal);
1155
1156       setOperationAction(ISD::SHL,             MVT::v4i64, Legal);
1157       setOperationAction(ISD::SHL,             MVT::v8i32, Legal);
1158
1159       setOperationAction(ISD::SRA,             MVT::v8i32, Legal);
1160     } else {
1161       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1162       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1163       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1164       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1165
1166       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1167       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1168       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1169       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1170
1171       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1172       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1173       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1174       // Don't lower v32i8 because there is no 128-bit byte mul
1175
1176       setOperationAction(ISD::SRL,             MVT::v4i64, Custom);
1177       setOperationAction(ISD::SRL,             MVT::v8i32, Custom);
1178
1179       setOperationAction(ISD::SHL,             MVT::v4i64, Custom);
1180       setOperationAction(ISD::SHL,             MVT::v8i32, Custom);
1181
1182       setOperationAction(ISD::SRA,             MVT::v8i32, Custom);
1183     }
1184
1185     // Custom lower several nodes for 256-bit types.
1186     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1187              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1188       MVT VT = (MVT::SimpleValueType)i;
1189
1190       // Extract subvector is special because the value type
1191       // (result) is 128-bit but the source is 256-bit wide.
1192       if (VT.is128BitVector())
1193         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1194
1195       // Do not attempt to custom lower other non-256-bit vectors
1196       if (!VT.is256BitVector())
1197         continue;
1198
1199       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1200       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1201       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1202       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1203       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1204       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1205       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1206     }
1207
1208     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1209     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1210       MVT VT = (MVT::SimpleValueType)i;
1211
1212       // Do not attempt to promote non-256-bit vectors
1213       if (!VT.is256BitVector())
1214         continue;
1215
1216       setOperationAction(ISD::AND,    VT, Promote);
1217       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1218       setOperationAction(ISD::OR,     VT, Promote);
1219       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1220       setOperationAction(ISD::XOR,    VT, Promote);
1221       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1222       setOperationAction(ISD::LOAD,   VT, Promote);
1223       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1224       setOperationAction(ISD::SELECT, VT, Promote);
1225       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1226     }
1227   }
1228
1229   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1230   // of this type with custom code.
1231   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1232            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1233     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1234                        Custom);
1235   }
1236
1237   // We want to custom lower some of our intrinsics.
1238   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1239   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1240
1241
1242   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1243   // handle type legalization for these operations here.
1244   //
1245   // FIXME: We really should do custom legalization for addition and
1246   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1247   // than generic legalization for 64-bit multiplication-with-overflow, though.
1248   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1249     // Add/Sub/Mul with overflow operations are custom lowered.
1250     MVT VT = IntVTs[i];
1251     setOperationAction(ISD::SADDO, VT, Custom);
1252     setOperationAction(ISD::UADDO, VT, Custom);
1253     setOperationAction(ISD::SSUBO, VT, Custom);
1254     setOperationAction(ISD::USUBO, VT, Custom);
1255     setOperationAction(ISD::SMULO, VT, Custom);
1256     setOperationAction(ISD::UMULO, VT, Custom);
1257   }
1258
1259   // There are no 8-bit 3-address imul/mul instructions
1260   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1261   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1262
1263   if (!Subtarget->is64Bit()) {
1264     // These libcalls are not available in 32-bit.
1265     setLibcallName(RTLIB::SHL_I128, 0);
1266     setLibcallName(RTLIB::SRL_I128, 0);
1267     setLibcallName(RTLIB::SRA_I128, 0);
1268   }
1269
1270   // We have target-specific dag combine patterns for the following nodes:
1271   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1272   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1273   setTargetDAGCombine(ISD::VSELECT);
1274   setTargetDAGCombine(ISD::SELECT);
1275   setTargetDAGCombine(ISD::SHL);
1276   setTargetDAGCombine(ISD::SRA);
1277   setTargetDAGCombine(ISD::SRL);
1278   setTargetDAGCombine(ISD::OR);
1279   setTargetDAGCombine(ISD::AND);
1280   setTargetDAGCombine(ISD::ADD);
1281   setTargetDAGCombine(ISD::FADD);
1282   setTargetDAGCombine(ISD::FSUB);
1283   setTargetDAGCombine(ISD::FMA);
1284   setTargetDAGCombine(ISD::SUB);
1285   setTargetDAGCombine(ISD::LOAD);
1286   setTargetDAGCombine(ISD::STORE);
1287   setTargetDAGCombine(ISD::ZERO_EXTEND);
1288   setTargetDAGCombine(ISD::ANY_EXTEND);
1289   setTargetDAGCombine(ISD::SIGN_EXTEND);
1290   setTargetDAGCombine(ISD::TRUNCATE);
1291   setTargetDAGCombine(ISD::SINT_TO_FP);
1292   setTargetDAGCombine(ISD::SETCC);
1293   if (Subtarget->is64Bit())
1294     setTargetDAGCombine(ISD::MUL);
1295   setTargetDAGCombine(ISD::XOR);
1296
1297   computeRegisterProperties();
1298
1299   // On Darwin, -Os means optimize for size without hurting performance,
1300   // do not reduce the limit.
1301   maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1302   maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1303   maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1304   maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1305   maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1306   maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1307   setPrefLoopAlignment(4); // 2^4 bytes.
1308   benefitFromCodePlacementOpt = true;
1309
1310   // Predictable cmov don't hurt on atom because it's in-order.
1311   predictableSelectIsExpensive = !Subtarget->isAtom();
1312
1313   setPrefFunctionAlignment(4); // 2^4 bytes.
1314 }
1315
1316
1317 EVT X86TargetLowering::getSetCCResultType(EVT VT) const {
1318   if (!VT.isVector()) return MVT::i8;
1319   return VT.changeVectorElementTypeToInteger();
1320 }
1321
1322
1323 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1324 /// the desired ByVal argument alignment.
1325 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1326   if (MaxAlign == 16)
1327     return;
1328   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1329     if (VTy->getBitWidth() == 128)
1330       MaxAlign = 16;
1331   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1332     unsigned EltAlign = 0;
1333     getMaxByValAlign(ATy->getElementType(), EltAlign);
1334     if (EltAlign > MaxAlign)
1335       MaxAlign = EltAlign;
1336   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1337     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1338       unsigned EltAlign = 0;
1339       getMaxByValAlign(STy->getElementType(i), EltAlign);
1340       if (EltAlign > MaxAlign)
1341         MaxAlign = EltAlign;
1342       if (MaxAlign == 16)
1343         break;
1344     }
1345   }
1346 }
1347
1348 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1349 /// function arguments in the caller parameter area. For X86, aggregates
1350 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1351 /// are at 4-byte boundaries.
1352 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1353   if (Subtarget->is64Bit()) {
1354     // Max of 8 and alignment of type.
1355     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1356     if (TyAlign > 8)
1357       return TyAlign;
1358     return 8;
1359   }
1360
1361   unsigned Align = 4;
1362   if (Subtarget->hasSSE1())
1363     getMaxByValAlign(Ty, Align);
1364   return Align;
1365 }
1366
1367 /// getOptimalMemOpType - Returns the target specific optimal type for load
1368 /// and store operations as a result of memset, memcpy, and memmove
1369 /// lowering. If DstAlign is zero that means it's safe to destination
1370 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1371 /// means there isn't a need to check it against alignment requirement,
1372 /// probably because the source does not need to be loaded. If
1373 /// 'IsZeroVal' is true, that means it's safe to return a
1374 /// non-scalar-integer type, e.g. empty string source, constant, or loaded
1375 /// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1376 /// constant so it does not need to be loaded.
1377 /// It returns EVT::Other if the type should be determined using generic
1378 /// target-independent logic.
1379 EVT
1380 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1381                                        unsigned DstAlign, unsigned SrcAlign,
1382                                        bool IsZeroVal,
1383                                        bool MemcpyStrSrc,
1384                                        MachineFunction &MF) const {
1385   const Function *F = MF.getFunction();
1386   if (IsZeroVal &&
1387       !F->getFnAttributes().hasAttribute(Attributes::NoImplicitFloat)) {
1388     if (Size >= 16 &&
1389         (Subtarget->isUnalignedMemAccessFast() ||
1390          ((DstAlign == 0 || DstAlign >= 16) &&
1391           (SrcAlign == 0 || SrcAlign >= 16)))) {
1392       if (Size >= 32) {
1393         if (Subtarget->hasInt256())
1394           return MVT::v8i32;
1395         if (Subtarget->hasFp256())
1396           return MVT::v8f32;
1397       }
1398       if (Subtarget->hasSSE2())
1399         return MVT::v4i32;
1400       if (Subtarget->hasSSE1())
1401         return MVT::v4f32;
1402     } else if (!MemcpyStrSrc && Size >= 8 &&
1403                !Subtarget->is64Bit() &&
1404                Subtarget->hasSSE2()) {
1405       // Do not use f64 to lower memcpy if source is string constant. It's
1406       // better to use i32 to avoid the loads.
1407       return MVT::f64;
1408     }
1409   }
1410   if (Subtarget->is64Bit() && Size >= 8)
1411     return MVT::i64;
1412   return MVT::i32;
1413 }
1414
1415 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1416 /// current function.  The returned value is a member of the
1417 /// MachineJumpTableInfo::JTEntryKind enum.
1418 unsigned X86TargetLowering::getJumpTableEncoding() const {
1419   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1420   // symbol.
1421   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1422       Subtarget->isPICStyleGOT())
1423     return MachineJumpTableInfo::EK_Custom32;
1424
1425   // Otherwise, use the normal jump table encoding heuristics.
1426   return TargetLowering::getJumpTableEncoding();
1427 }
1428
1429 const MCExpr *
1430 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1431                                              const MachineBasicBlock *MBB,
1432                                              unsigned uid,MCContext &Ctx) const{
1433   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1434          Subtarget->isPICStyleGOT());
1435   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1436   // entries.
1437   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1438                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1439 }
1440
1441 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1442 /// jumptable.
1443 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1444                                                     SelectionDAG &DAG) const {
1445   if (!Subtarget->is64Bit())
1446     // This doesn't have DebugLoc associated with it, but is not really the
1447     // same as a Register.
1448     return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
1449   return Table;
1450 }
1451
1452 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1453 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1454 /// MCExpr.
1455 const MCExpr *X86TargetLowering::
1456 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1457                              MCContext &Ctx) const {
1458   // X86-64 uses RIP relative addressing based on the jump table label.
1459   if (Subtarget->isPICStyleRIPRel())
1460     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1461
1462   // Otherwise, the reference is relative to the PIC base.
1463   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1464 }
1465
1466 // FIXME: Why this routine is here? Move to RegInfo!
1467 std::pair<const TargetRegisterClass*, uint8_t>
1468 X86TargetLowering::findRepresentativeClass(EVT VT) const{
1469   const TargetRegisterClass *RRC = 0;
1470   uint8_t Cost = 1;
1471   switch (VT.getSimpleVT().SimpleTy) {
1472   default:
1473     return TargetLowering::findRepresentativeClass(VT);
1474   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1475     RRC = Subtarget->is64Bit() ?
1476       (const TargetRegisterClass*)&X86::GR64RegClass :
1477       (const TargetRegisterClass*)&X86::GR32RegClass;
1478     break;
1479   case MVT::x86mmx:
1480     RRC = &X86::VR64RegClass;
1481     break;
1482   case MVT::f32: case MVT::f64:
1483   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1484   case MVT::v4f32: case MVT::v2f64:
1485   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1486   case MVT::v4f64:
1487     RRC = &X86::VR128RegClass;
1488     break;
1489   }
1490   return std::make_pair(RRC, Cost);
1491 }
1492
1493 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1494                                                unsigned &Offset) const {
1495   if (!Subtarget->isTargetLinux())
1496     return false;
1497
1498   if (Subtarget->is64Bit()) {
1499     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1500     Offset = 0x28;
1501     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1502       AddressSpace = 256;
1503     else
1504       AddressSpace = 257;
1505   } else {
1506     // %gs:0x14 on i386
1507     Offset = 0x14;
1508     AddressSpace = 256;
1509   }
1510   return true;
1511 }
1512
1513
1514 //===----------------------------------------------------------------------===//
1515 //               Return Value Calling Convention Implementation
1516 //===----------------------------------------------------------------------===//
1517
1518 #include "X86GenCallingConv.inc"
1519
1520 bool
1521 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1522                                   MachineFunction &MF, bool isVarArg,
1523                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1524                         LLVMContext &Context) const {
1525   SmallVector<CCValAssign, 16> RVLocs;
1526   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1527                  RVLocs, Context);
1528   return CCInfo.CheckReturn(Outs, RetCC_X86);
1529 }
1530
1531 SDValue
1532 X86TargetLowering::LowerReturn(SDValue Chain,
1533                                CallingConv::ID CallConv, bool isVarArg,
1534                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1535                                const SmallVectorImpl<SDValue> &OutVals,
1536                                DebugLoc dl, SelectionDAG &DAG) const {
1537   MachineFunction &MF = DAG.getMachineFunction();
1538   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1539
1540   SmallVector<CCValAssign, 16> RVLocs;
1541   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1542                  RVLocs, *DAG.getContext());
1543   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1544
1545   // Add the regs to the liveout set for the function.
1546   MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1547   for (unsigned i = 0; i != RVLocs.size(); ++i)
1548     if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1549       MRI.addLiveOut(RVLocs[i].getLocReg());
1550
1551   SDValue Flag;
1552
1553   SmallVector<SDValue, 6> RetOps;
1554   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1555   // Operand #1 = Bytes To Pop
1556   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1557                    MVT::i16));
1558
1559   // Copy the result values into the output registers.
1560   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1561     CCValAssign &VA = RVLocs[i];
1562     assert(VA.isRegLoc() && "Can only return in registers!");
1563     SDValue ValToCopy = OutVals[i];
1564     EVT ValVT = ValToCopy.getValueType();
1565
1566     // Promote values to the appropriate types
1567     if (VA.getLocInfo() == CCValAssign::SExt)
1568       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1569     else if (VA.getLocInfo() == CCValAssign::ZExt)
1570       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1571     else if (VA.getLocInfo() == CCValAssign::AExt)
1572       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1573     else if (VA.getLocInfo() == CCValAssign::BCvt)
1574       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1575
1576     // If this is x86-64, and we disabled SSE, we can't return FP values,
1577     // or SSE or MMX vectors.
1578     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1579          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1580           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1581       report_fatal_error("SSE register return with SSE disabled");
1582     }
1583     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1584     // llvm-gcc has never done it right and no one has noticed, so this
1585     // should be OK for now.
1586     if (ValVT == MVT::f64 &&
1587         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1588       report_fatal_error("SSE2 register return with SSE2 disabled");
1589
1590     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1591     // the RET instruction and handled by the FP Stackifier.
1592     if (VA.getLocReg() == X86::ST0 ||
1593         VA.getLocReg() == X86::ST1) {
1594       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1595       // change the value to the FP stack register class.
1596       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1597         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1598       RetOps.push_back(ValToCopy);
1599       // Don't emit a copytoreg.
1600       continue;
1601     }
1602
1603     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1604     // which is returned in RAX / RDX.
1605     if (Subtarget->is64Bit()) {
1606       if (ValVT == MVT::x86mmx) {
1607         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1608           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1609           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1610                                   ValToCopy);
1611           // If we don't have SSE2 available, convert to v4f32 so the generated
1612           // register is legal.
1613           if (!Subtarget->hasSSE2())
1614             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1615         }
1616       }
1617     }
1618
1619     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1620     Flag = Chain.getValue(1);
1621   }
1622
1623   // The x86-64 ABI for returning structs by value requires that we copy
1624   // the sret argument into %rax for the return. We saved the argument into
1625   // a virtual register in the entry block, so now we copy the value out
1626   // and into %rax.
1627   if (Subtarget->is64Bit() &&
1628       DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1629     MachineFunction &MF = DAG.getMachineFunction();
1630     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1631     unsigned Reg = FuncInfo->getSRetReturnReg();
1632     assert(Reg &&
1633            "SRetReturnReg should have been set in LowerFormalArguments().");
1634     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1635
1636     Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
1637     Flag = Chain.getValue(1);
1638
1639     // RAX now acts like a return value.
1640     MRI.addLiveOut(X86::RAX);
1641   }
1642
1643   RetOps[0] = Chain;  // Update chain.
1644
1645   // Add the flag if we have it.
1646   if (Flag.getNode())
1647     RetOps.push_back(Flag);
1648
1649   return DAG.getNode(X86ISD::RET_FLAG, dl,
1650                      MVT::Other, &RetOps[0], RetOps.size());
1651 }
1652
1653 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1654   if (N->getNumValues() != 1)
1655     return false;
1656   if (!N->hasNUsesOfValue(1, 0))
1657     return false;
1658
1659   SDValue TCChain = Chain;
1660   SDNode *Copy = *N->use_begin();
1661   if (Copy->getOpcode() == ISD::CopyToReg) {
1662     // If the copy has a glue operand, we conservatively assume it isn't safe to
1663     // perform a tail call.
1664     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1665       return false;
1666     TCChain = Copy->getOperand(0);
1667   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1668     return false;
1669
1670   bool HasRet = false;
1671   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1672        UI != UE; ++UI) {
1673     if (UI->getOpcode() != X86ISD::RET_FLAG)
1674       return false;
1675     HasRet = true;
1676   }
1677
1678   if (!HasRet)
1679     return false;
1680
1681   Chain = TCChain;
1682   return true;
1683 }
1684
1685 EVT
1686 X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
1687                                             ISD::NodeType ExtendKind) const {
1688   MVT ReturnMVT;
1689   // TODO: Is this also valid on 32-bit?
1690   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1691     ReturnMVT = MVT::i8;
1692   else
1693     ReturnMVT = MVT::i32;
1694
1695   EVT MinVT = getRegisterType(Context, ReturnMVT);
1696   return VT.bitsLT(MinVT) ? MinVT : VT;
1697 }
1698
1699 /// LowerCallResult - Lower the result values of a call into the
1700 /// appropriate copies out of appropriate physical registers.
1701 ///
1702 SDValue
1703 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1704                                    CallingConv::ID CallConv, bool isVarArg,
1705                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1706                                    DebugLoc dl, SelectionDAG &DAG,
1707                                    SmallVectorImpl<SDValue> &InVals) const {
1708
1709   // Assign locations to each value returned by this call.
1710   SmallVector<CCValAssign, 16> RVLocs;
1711   bool Is64Bit = Subtarget->is64Bit();
1712   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1713                  getTargetMachine(), RVLocs, *DAG.getContext());
1714   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1715
1716   // Copy all of the result registers out of their specified physreg.
1717   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1718     CCValAssign &VA = RVLocs[i];
1719     EVT CopyVT = VA.getValVT();
1720
1721     // If this is x86-64, and we disabled SSE, we can't return FP values
1722     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1723         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1724       report_fatal_error("SSE register return with SSE disabled");
1725     }
1726
1727     SDValue Val;
1728
1729     // If this is a call to a function that returns an fp value on the floating
1730     // point stack, we must guarantee the value is popped from the stack, so
1731     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1732     // if the return value is not used. We use the FpPOP_RETVAL instruction
1733     // instead.
1734     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1735       // If we prefer to use the value in xmm registers, copy it out as f80 and
1736       // use a truncate to move it from fp stack reg to xmm reg.
1737       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1738       SDValue Ops[] = { Chain, InFlag };
1739       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1740                                          MVT::Other, MVT::Glue, Ops, 2), 1);
1741       Val = Chain.getValue(0);
1742
1743       // Round the f80 to the right size, which also moves it to the appropriate
1744       // xmm register.
1745       if (CopyVT != VA.getValVT())
1746         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1747                           // This truncation won't change the value.
1748                           DAG.getIntPtrConstant(1));
1749     } else {
1750       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1751                                  CopyVT, InFlag).getValue(1);
1752       Val = Chain.getValue(0);
1753     }
1754     InFlag = Chain.getValue(2);
1755     InVals.push_back(Val);
1756   }
1757
1758   return Chain;
1759 }
1760
1761
1762 //===----------------------------------------------------------------------===//
1763 //                C & StdCall & Fast Calling Convention implementation
1764 //===----------------------------------------------------------------------===//
1765 //  StdCall calling convention seems to be standard for many Windows' API
1766 //  routines and around. It differs from C calling convention just a little:
1767 //  callee should clean up the stack, not caller. Symbols should be also
1768 //  decorated in some fancy way :) It doesn't support any vector arguments.
1769 //  For info on fast calling convention see Fast Calling Convention (tail call)
1770 //  implementation LowerX86_32FastCCCallTo.
1771
1772 /// CallIsStructReturn - Determines whether a call uses struct return
1773 /// semantics.
1774 enum StructReturnType {
1775   NotStructReturn,
1776   RegStructReturn,
1777   StackStructReturn
1778 };
1779 static StructReturnType
1780 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1781   if (Outs.empty())
1782     return NotStructReturn;
1783
1784   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
1785   if (!Flags.isSRet())
1786     return NotStructReturn;
1787   if (Flags.isInReg())
1788     return RegStructReturn;
1789   return StackStructReturn;
1790 }
1791
1792 /// ArgsAreStructReturn - Determines whether a function uses struct
1793 /// return semantics.
1794 static StructReturnType
1795 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1796   if (Ins.empty())
1797     return NotStructReturn;
1798
1799   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
1800   if (!Flags.isSRet())
1801     return NotStructReturn;
1802   if (Flags.isInReg())
1803     return RegStructReturn;
1804   return StackStructReturn;
1805 }
1806
1807 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1808 /// by "Src" to address "Dst" with size and alignment information specified by
1809 /// the specific parameter attribute. The copy will be passed as a byval
1810 /// function parameter.
1811 static SDValue
1812 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
1813                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1814                           DebugLoc dl) {
1815   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
1816
1817   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
1818                        /*isVolatile*/false, /*AlwaysInline=*/true,
1819                        MachinePointerInfo(), MachinePointerInfo());
1820 }
1821
1822 /// IsTailCallConvention - Return true if the calling convention is one that
1823 /// supports tail call optimization.
1824 static bool IsTailCallConvention(CallingConv::ID CC) {
1825   return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
1826           CC == CallingConv::HiPE);
1827 }
1828
1829 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1830   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
1831     return false;
1832
1833   CallSite CS(CI);
1834   CallingConv::ID CalleeCC = CS.getCallingConv();
1835   if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1836     return false;
1837
1838   return true;
1839 }
1840
1841 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
1842 /// a tailcall target by changing its ABI.
1843 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
1844                                    bool GuaranteedTailCallOpt) {
1845   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
1846 }
1847
1848 SDValue
1849 X86TargetLowering::LowerMemArgument(SDValue Chain,
1850                                     CallingConv::ID CallConv,
1851                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1852                                     DebugLoc dl, SelectionDAG &DAG,
1853                                     const CCValAssign &VA,
1854                                     MachineFrameInfo *MFI,
1855                                     unsigned i) const {
1856   // Create the nodes corresponding to a load from this parameter slot.
1857   ISD::ArgFlagsTy Flags = Ins[i].Flags;
1858   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
1859                               getTargetMachine().Options.GuaranteedTailCallOpt);
1860   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
1861   EVT ValVT;
1862
1863   // If value is passed by pointer we have address passed instead of the value
1864   // itself.
1865   if (VA.getLocInfo() == CCValAssign::Indirect)
1866     ValVT = VA.getLocVT();
1867   else
1868     ValVT = VA.getValVT();
1869
1870   // FIXME: For now, all byval parameter objects are marked mutable. This can be
1871   // changed with more analysis.
1872   // In case of tail call optimization mark all arguments mutable. Since they
1873   // could be overwritten by lowering of arguments in case of a tail call.
1874   if (Flags.isByVal()) {
1875     unsigned Bytes = Flags.getByValSize();
1876     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1877     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
1878     return DAG.getFrameIndex(FI, getPointerTy());
1879   } else {
1880     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
1881                                     VA.getLocMemOffset(), isImmutable);
1882     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1883     return DAG.getLoad(ValVT, dl, Chain, FIN,
1884                        MachinePointerInfo::getFixedStack(FI),
1885                        false, false, false, 0);
1886   }
1887 }
1888
1889 SDValue
1890 X86TargetLowering::LowerFormalArguments(SDValue Chain,
1891                                         CallingConv::ID CallConv,
1892                                         bool isVarArg,
1893                                       const SmallVectorImpl<ISD::InputArg> &Ins,
1894                                         DebugLoc dl,
1895                                         SelectionDAG &DAG,
1896                                         SmallVectorImpl<SDValue> &InVals)
1897                                           const {
1898   MachineFunction &MF = DAG.getMachineFunction();
1899   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1900
1901   const Function* Fn = MF.getFunction();
1902   if (Fn->hasExternalLinkage() &&
1903       Subtarget->isTargetCygMing() &&
1904       Fn->getName() == "main")
1905     FuncInfo->setForceFramePointer(true);
1906
1907   MachineFrameInfo *MFI = MF.getFrameInfo();
1908   bool Is64Bit = Subtarget->is64Bit();
1909   bool IsWindows = Subtarget->isTargetWindows();
1910   bool IsWin64 = Subtarget->isTargetWin64();
1911
1912   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1913          "Var args not supported with calling convention fastcc, ghc or hipe");
1914
1915   // Assign locations to all of the incoming arguments.
1916   SmallVector<CCValAssign, 16> ArgLocs;
1917   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1918                  ArgLocs, *DAG.getContext());
1919
1920   // Allocate shadow area for Win64
1921   if (IsWin64) {
1922     CCInfo.AllocateStack(32, 8);
1923   }
1924
1925   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
1926
1927   unsigned LastVal = ~0U;
1928   SDValue ArgValue;
1929   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1930     CCValAssign &VA = ArgLocs[i];
1931     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1932     // places.
1933     assert(VA.getValNo() != LastVal &&
1934            "Don't support value assigned to multiple locs yet");
1935     (void)LastVal;
1936     LastVal = VA.getValNo();
1937
1938     if (VA.isRegLoc()) {
1939       EVT RegVT = VA.getLocVT();
1940       const TargetRegisterClass *RC;
1941       if (RegVT == MVT::i32)
1942         RC = &X86::GR32RegClass;
1943       else if (Is64Bit && RegVT == MVT::i64)
1944         RC = &X86::GR64RegClass;
1945       else if (RegVT == MVT::f32)
1946         RC = &X86::FR32RegClass;
1947       else if (RegVT == MVT::f64)
1948         RC = &X86::FR64RegClass;
1949       else if (RegVT.is256BitVector())
1950         RC = &X86::VR256RegClass;
1951       else if (RegVT.is128BitVector())
1952         RC = &X86::VR128RegClass;
1953       else if (RegVT == MVT::x86mmx)
1954         RC = &X86::VR64RegClass;
1955       else
1956         llvm_unreachable("Unknown argument type!");
1957
1958       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
1959       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
1960
1961       // If this is an 8 or 16-bit value, it is really passed promoted to 32
1962       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
1963       // right size.
1964       if (VA.getLocInfo() == CCValAssign::SExt)
1965         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
1966                                DAG.getValueType(VA.getValVT()));
1967       else if (VA.getLocInfo() == CCValAssign::ZExt)
1968         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
1969                                DAG.getValueType(VA.getValVT()));
1970       else if (VA.getLocInfo() == CCValAssign::BCvt)
1971         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
1972
1973       if (VA.isExtInLoc()) {
1974         // Handle MMX values passed in XMM regs.
1975         if (RegVT.isVector()) {
1976           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1977                                  ArgValue);
1978         } else
1979           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1980       }
1981     } else {
1982       assert(VA.isMemLoc());
1983       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
1984     }
1985
1986     // If value is passed via pointer - do a load.
1987     if (VA.getLocInfo() == CCValAssign::Indirect)
1988       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1989                              MachinePointerInfo(), false, false, false, 0);
1990
1991     InVals.push_back(ArgValue);
1992   }
1993
1994   // The x86-64 ABI for returning structs by value requires that we copy
1995   // the sret argument into %rax for the return. Save the argument into
1996   // a virtual register so that we can access it from the return points.
1997   if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
1998     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1999     unsigned Reg = FuncInfo->getSRetReturnReg();
2000     if (!Reg) {
2001       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
2002       FuncInfo->setSRetReturnReg(Reg);
2003     }
2004     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
2005     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
2006   }
2007
2008   unsigned StackSize = CCInfo.getNextStackOffset();
2009   // Align stack specially for tail calls.
2010   if (FuncIsMadeTailCallSafe(CallConv,
2011                              MF.getTarget().Options.GuaranteedTailCallOpt))
2012     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
2013
2014   // If the function takes variable number of arguments, make a frame index for
2015   // the start of the first vararg value... for expansion of llvm.va_start.
2016   if (isVarArg) {
2017     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2018                     CallConv != CallingConv::X86_ThisCall)) {
2019       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
2020     }
2021     if (Is64Bit) {
2022       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2023
2024       // FIXME: We should really autogenerate these arrays
2025       static const uint16_t GPR64ArgRegsWin64[] = {
2026         X86::RCX, X86::RDX, X86::R8,  X86::R9
2027       };
2028       static const uint16_t GPR64ArgRegs64Bit[] = {
2029         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2030       };
2031       static const uint16_t XMMArgRegs64Bit[] = {
2032         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2033         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2034       };
2035       const uint16_t *GPR64ArgRegs;
2036       unsigned NumXMMRegs = 0;
2037
2038       if (IsWin64) {
2039         // The XMM registers which might contain var arg parameters are shadowed
2040         // in their paired GPR.  So we only need to save the GPR to their home
2041         // slots.
2042         TotalNumIntRegs = 4;
2043         GPR64ArgRegs = GPR64ArgRegsWin64;
2044       } else {
2045         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2046         GPR64ArgRegs = GPR64ArgRegs64Bit;
2047
2048         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2049                                                 TotalNumXMMRegs);
2050       }
2051       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2052                                                        TotalNumIntRegs);
2053
2054       bool NoImplicitFloatOps = Fn->getFnAttributes().
2055         hasAttribute(Attributes::NoImplicitFloat);
2056       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
2057              "SSE register cannot be used when SSE is disabled!");
2058       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2059                NoImplicitFloatOps) &&
2060              "SSE register cannot be used when SSE is disabled!");
2061       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
2062           !Subtarget->hasSSE1())
2063         // Kernel mode asks for SSE to be disabled, so don't push them
2064         // on the stack.
2065         TotalNumXMMRegs = 0;
2066
2067       if (IsWin64) {
2068         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2069         // Get to the caller-allocated home save location.  Add 8 to account
2070         // for the return address.
2071         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2072         FuncInfo->setRegSaveFrameIndex(
2073           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2074         // Fixup to set vararg frame on shadow area (4 x i64).
2075         if (NumIntRegs < 4)
2076           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2077       } else {
2078         // For X86-64, if there are vararg parameters that are passed via
2079         // registers, then we must store them to their spots on the stack so
2080         // they may be loaded by deferencing the result of va_next.
2081         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2082         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2083         FuncInfo->setRegSaveFrameIndex(
2084           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2085                                false));
2086       }
2087
2088       // Store the integer parameter registers.
2089       SmallVector<SDValue, 8> MemOps;
2090       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2091                                         getPointerTy());
2092       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2093       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2094         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2095                                   DAG.getIntPtrConstant(Offset));
2096         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2097                                      &X86::GR64RegClass);
2098         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2099         SDValue Store =
2100           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2101                        MachinePointerInfo::getFixedStack(
2102                          FuncInfo->getRegSaveFrameIndex(), Offset),
2103                        false, false, 0);
2104         MemOps.push_back(Store);
2105         Offset += 8;
2106       }
2107
2108       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2109         // Now store the XMM (fp + vector) parameter registers.
2110         SmallVector<SDValue, 11> SaveXMMOps;
2111         SaveXMMOps.push_back(Chain);
2112
2113         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2114         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2115         SaveXMMOps.push_back(ALVal);
2116
2117         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2118                                FuncInfo->getRegSaveFrameIndex()));
2119         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2120                                FuncInfo->getVarArgsFPOffset()));
2121
2122         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2123           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2124                                        &X86::VR128RegClass);
2125           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2126           SaveXMMOps.push_back(Val);
2127         }
2128         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2129                                      MVT::Other,
2130                                      &SaveXMMOps[0], SaveXMMOps.size()));
2131       }
2132
2133       if (!MemOps.empty())
2134         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2135                             &MemOps[0], MemOps.size());
2136     }
2137   }
2138
2139   // Some CCs need callee pop.
2140   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2141                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2142     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2143   } else {
2144     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2145     // If this is an sret function, the return should pop the hidden pointer.
2146     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2147         argsAreStructReturn(Ins) == StackStructReturn)
2148       FuncInfo->setBytesToPopOnReturn(4);
2149   }
2150
2151   if (!Is64Bit) {
2152     // RegSaveFrameIndex is X86-64 only.
2153     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2154     if (CallConv == CallingConv::X86_FastCall ||
2155         CallConv == CallingConv::X86_ThisCall)
2156       // fastcc functions can't have varargs.
2157       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2158   }
2159
2160   FuncInfo->setArgumentStackSize(StackSize);
2161
2162   return Chain;
2163 }
2164
2165 SDValue
2166 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2167                                     SDValue StackPtr, SDValue Arg,
2168                                     DebugLoc dl, SelectionDAG &DAG,
2169                                     const CCValAssign &VA,
2170                                     ISD::ArgFlagsTy Flags) const {
2171   unsigned LocMemOffset = VA.getLocMemOffset();
2172   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2173   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2174   if (Flags.isByVal())
2175     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2176
2177   return DAG.getStore(Chain, dl, Arg, PtrOff,
2178                       MachinePointerInfo::getStack(LocMemOffset),
2179                       false, false, 0);
2180 }
2181
2182 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2183 /// optimization is performed and it is required.
2184 SDValue
2185 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2186                                            SDValue &OutRetAddr, SDValue Chain,
2187                                            bool IsTailCall, bool Is64Bit,
2188                                            int FPDiff, DebugLoc dl) const {
2189   // Adjust the Return address stack slot.
2190   EVT VT = getPointerTy();
2191   OutRetAddr = getReturnAddressFrameIndex(DAG);
2192
2193   // Load the "old" Return address.
2194   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2195                            false, false, false, 0);
2196   return SDValue(OutRetAddr.getNode(), 1);
2197 }
2198
2199 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2200 /// optimization is performed and it is required (FPDiff!=0).
2201 static SDValue
2202 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2203                          SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
2204                          unsigned SlotSize, int FPDiff, DebugLoc dl) {
2205   // Store the return address to the appropriate stack slot.
2206   if (!FPDiff) return Chain;
2207   // Calculate the new stack slot for the return address.
2208   int NewReturnAddrFI =
2209     MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
2210   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
2211   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2212                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2213                        false, false, 0);
2214   return Chain;
2215 }
2216
2217 SDValue
2218 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2219                              SmallVectorImpl<SDValue> &InVals) const {
2220   SelectionDAG &DAG                     = CLI.DAG;
2221   DebugLoc &dl                          = CLI.DL;
2222   SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
2223   SmallVector<SDValue, 32> &OutVals     = CLI.OutVals;
2224   SmallVector<ISD::InputArg, 32> &Ins   = CLI.Ins;
2225   SDValue Chain                         = CLI.Chain;
2226   SDValue Callee                        = CLI.Callee;
2227   CallingConv::ID CallConv              = CLI.CallConv;
2228   bool &isTailCall                      = CLI.IsTailCall;
2229   bool isVarArg                         = CLI.IsVarArg;
2230
2231   MachineFunction &MF = DAG.getMachineFunction();
2232   bool Is64Bit        = Subtarget->is64Bit();
2233   bool IsWin64        = Subtarget->isTargetWin64();
2234   bool IsWindows      = Subtarget->isTargetWindows();
2235   StructReturnType SR = callIsStructReturn(Outs);
2236   bool IsSibcall      = false;
2237
2238   if (MF.getTarget().Options.DisableTailCalls)
2239     isTailCall = false;
2240
2241   if (isTailCall) {
2242     // Check if it's really possible to do a tail call.
2243     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2244                     isVarArg, SR != NotStructReturn,
2245                     MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
2246                     Outs, OutVals, Ins, DAG);
2247
2248     // Sibcalls are automatically detected tailcalls which do not require
2249     // ABI changes.
2250     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2251       IsSibcall = true;
2252
2253     if (isTailCall)
2254       ++NumTailCalls;
2255   }
2256
2257   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2258          "Var args not supported with calling convention fastcc, ghc or hipe");
2259
2260   // Analyze operands of the call, assigning locations to each operand.
2261   SmallVector<CCValAssign, 16> ArgLocs;
2262   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2263                  ArgLocs, *DAG.getContext());
2264
2265   // Allocate shadow area for Win64
2266   if (IsWin64) {
2267     CCInfo.AllocateStack(32, 8);
2268   }
2269
2270   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2271
2272   // Get a count of how many bytes are to be pushed on the stack.
2273   unsigned NumBytes = CCInfo.getNextStackOffset();
2274   if (IsSibcall)
2275     // This is a sibcall. The memory operands are available in caller's
2276     // own caller's stack.
2277     NumBytes = 0;
2278   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2279            IsTailCallConvention(CallConv))
2280     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2281
2282   int FPDiff = 0;
2283   if (isTailCall && !IsSibcall) {
2284     // Lower arguments at fp - stackoffset + fpdiff.
2285     X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2286     unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2287
2288     FPDiff = NumBytesCallerPushed - NumBytes;
2289
2290     // Set the delta of movement of the returnaddr stackslot.
2291     // But only set if delta is greater than previous delta.
2292     if (FPDiff < X86Info->getTCReturnAddrDelta())
2293       X86Info->setTCReturnAddrDelta(FPDiff);
2294   }
2295
2296   if (!IsSibcall)
2297     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
2298
2299   SDValue RetAddrFrIdx;
2300   // Load return address for tail calls.
2301   if (isTailCall && FPDiff)
2302     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2303                                     Is64Bit, FPDiff, dl);
2304
2305   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2306   SmallVector<SDValue, 8> MemOpChains;
2307   SDValue StackPtr;
2308
2309   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2310   // of tail call optimization arguments are handle later.
2311   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2312     CCValAssign &VA = ArgLocs[i];
2313     EVT RegVT = VA.getLocVT();
2314     SDValue Arg = OutVals[i];
2315     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2316     bool isByVal = Flags.isByVal();
2317
2318     // Promote the value if needed.
2319     switch (VA.getLocInfo()) {
2320     default: llvm_unreachable("Unknown loc info!");
2321     case CCValAssign::Full: break;
2322     case CCValAssign::SExt:
2323       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2324       break;
2325     case CCValAssign::ZExt:
2326       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2327       break;
2328     case CCValAssign::AExt:
2329       if (RegVT.is128BitVector()) {
2330         // Special case: passing MMX values in XMM registers.
2331         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2332         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2333         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2334       } else
2335         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2336       break;
2337     case CCValAssign::BCvt:
2338       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2339       break;
2340     case CCValAssign::Indirect: {
2341       // Store the argument.
2342       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2343       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2344       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2345                            MachinePointerInfo::getFixedStack(FI),
2346                            false, false, 0);
2347       Arg = SpillSlot;
2348       break;
2349     }
2350     }
2351
2352     if (VA.isRegLoc()) {
2353       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2354       if (isVarArg && IsWin64) {
2355         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2356         // shadow reg if callee is a varargs function.
2357         unsigned ShadowReg = 0;
2358         switch (VA.getLocReg()) {
2359         case X86::XMM0: ShadowReg = X86::RCX; break;
2360         case X86::XMM1: ShadowReg = X86::RDX; break;
2361         case X86::XMM2: ShadowReg = X86::R8; break;
2362         case X86::XMM3: ShadowReg = X86::R9; break;
2363         }
2364         if (ShadowReg)
2365           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2366       }
2367     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2368       assert(VA.isMemLoc());
2369       if (StackPtr.getNode() == 0)
2370         StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2371                                       getPointerTy());
2372       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2373                                              dl, DAG, VA, Flags));
2374     }
2375   }
2376
2377   if (!MemOpChains.empty())
2378     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2379                         &MemOpChains[0], MemOpChains.size());
2380
2381   if (Subtarget->isPICStyleGOT()) {
2382     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2383     // GOT pointer.
2384     if (!isTailCall) {
2385       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2386                DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy())));
2387     } else {
2388       // If we are tail calling and generating PIC/GOT style code load the
2389       // address of the callee into ECX. The value in ecx is used as target of
2390       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2391       // for tail calls on PIC/GOT architectures. Normally we would just put the
2392       // address of GOT into ebx and then call target@PLT. But for tail calls
2393       // ebx would be restored (since ebx is callee saved) before jumping to the
2394       // target@PLT.
2395
2396       // Note: The actual moving to ECX is done further down.
2397       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2398       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2399           !G->getGlobal()->hasProtectedVisibility())
2400         Callee = LowerGlobalAddress(Callee, DAG);
2401       else if (isa<ExternalSymbolSDNode>(Callee))
2402         Callee = LowerExternalSymbol(Callee, DAG);
2403     }
2404   }
2405
2406   if (Is64Bit && isVarArg && !IsWin64) {
2407     // From AMD64 ABI document:
2408     // For calls that may call functions that use varargs or stdargs
2409     // (prototype-less calls or calls to functions containing ellipsis (...) in
2410     // the declaration) %al is used as hidden argument to specify the number
2411     // of SSE registers used. The contents of %al do not need to match exactly
2412     // the number of registers, but must be an ubound on the number of SSE
2413     // registers used and is in the range 0 - 8 inclusive.
2414
2415     // Count the number of XMM registers allocated.
2416     static const uint16_t XMMArgRegs[] = {
2417       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2418       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2419     };
2420     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2421     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2422            && "SSE registers cannot be used when SSE is disabled");
2423
2424     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2425                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2426   }
2427
2428   // For tail calls lower the arguments to the 'real' stack slot.
2429   if (isTailCall) {
2430     // Force all the incoming stack arguments to be loaded from the stack
2431     // before any new outgoing arguments are stored to the stack, because the
2432     // outgoing stack slots may alias the incoming argument stack slots, and
2433     // the alias isn't otherwise explicit. This is slightly more conservative
2434     // than necessary, because it means that each store effectively depends
2435     // on every argument instead of just those arguments it would clobber.
2436     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2437
2438     SmallVector<SDValue, 8> MemOpChains2;
2439     SDValue FIN;
2440     int FI = 0;
2441     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2442       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2443         CCValAssign &VA = ArgLocs[i];
2444         if (VA.isRegLoc())
2445           continue;
2446         assert(VA.isMemLoc());
2447         SDValue Arg = OutVals[i];
2448         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2449         // Create frame index.
2450         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2451         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2452         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2453         FIN = DAG.getFrameIndex(FI, getPointerTy());
2454
2455         if (Flags.isByVal()) {
2456           // Copy relative to framepointer.
2457           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2458           if (StackPtr.getNode() == 0)
2459             StackPtr = DAG.getCopyFromReg(Chain, dl,
2460                                           RegInfo->getStackRegister(),
2461                                           getPointerTy());
2462           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2463
2464           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2465                                                            ArgChain,
2466                                                            Flags, DAG, dl));
2467         } else {
2468           // Store relative to framepointer.
2469           MemOpChains2.push_back(
2470             DAG.getStore(ArgChain, dl, Arg, FIN,
2471                          MachinePointerInfo::getFixedStack(FI),
2472                          false, false, 0));
2473         }
2474       }
2475     }
2476
2477     if (!MemOpChains2.empty())
2478       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2479                           &MemOpChains2[0], MemOpChains2.size());
2480
2481     // Store the return address to the appropriate stack slot.
2482     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2483                                      getPointerTy(), RegInfo->getSlotSize(),
2484                                      FPDiff, dl);
2485   }
2486
2487   // Build a sequence of copy-to-reg nodes chained together with token chain
2488   // and flag operands which copy the outgoing args into registers.
2489   SDValue InFlag;
2490   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2491     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2492                              RegsToPass[i].second, InFlag);
2493     InFlag = Chain.getValue(1);
2494   }
2495
2496   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2497     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2498     // In the 64-bit large code model, we have to make all calls
2499     // through a register, since the call instruction's 32-bit
2500     // pc-relative offset may not be large enough to hold the whole
2501     // address.
2502   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2503     // If the callee is a GlobalAddress node (quite common, every direct call
2504     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2505     // it.
2506
2507     // We should use extra load for direct calls to dllimported functions in
2508     // non-JIT mode.
2509     const GlobalValue *GV = G->getGlobal();
2510     if (!GV->hasDLLImportLinkage()) {
2511       unsigned char OpFlags = 0;
2512       bool ExtraLoad = false;
2513       unsigned WrapperKind = ISD::DELETED_NODE;
2514
2515       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2516       // external symbols most go through the PLT in PIC mode.  If the symbol
2517       // has hidden or protected visibility, or if it is static or local, then
2518       // we don't need to use the PLT - we can directly call it.
2519       if (Subtarget->isTargetELF() &&
2520           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2521           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2522         OpFlags = X86II::MO_PLT;
2523       } else if (Subtarget->isPICStyleStubAny() &&
2524                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2525                  (!Subtarget->getTargetTriple().isMacOSX() ||
2526                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2527         // PC-relative references to external symbols should go through $stub,
2528         // unless we're building with the leopard linker or later, which
2529         // automatically synthesizes these stubs.
2530         OpFlags = X86II::MO_DARWIN_STUB;
2531       } else if (Subtarget->isPICStyleRIPRel() &&
2532                  isa<Function>(GV) &&
2533                  cast<Function>(GV)->getFnAttributes().
2534                    hasAttribute(Attributes::NonLazyBind)) {
2535         // If the function is marked as non-lazy, generate an indirect call
2536         // which loads from the GOT directly. This avoids runtime overhead
2537         // at the cost of eager binding (and one extra byte of encoding).
2538         OpFlags = X86II::MO_GOTPCREL;
2539         WrapperKind = X86ISD::WrapperRIP;
2540         ExtraLoad = true;
2541       }
2542
2543       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2544                                           G->getOffset(), OpFlags);
2545
2546       // Add a wrapper if needed.
2547       if (WrapperKind != ISD::DELETED_NODE)
2548         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2549       // Add extra indirection if needed.
2550       if (ExtraLoad)
2551         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2552                              MachinePointerInfo::getGOT(),
2553                              false, false, false, 0);
2554     }
2555   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2556     unsigned char OpFlags = 0;
2557
2558     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2559     // external symbols should go through the PLT.
2560     if (Subtarget->isTargetELF() &&
2561         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2562       OpFlags = X86II::MO_PLT;
2563     } else if (Subtarget->isPICStyleStubAny() &&
2564                (!Subtarget->getTargetTriple().isMacOSX() ||
2565                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2566       // PC-relative references to external symbols should go through $stub,
2567       // unless we're building with the leopard linker or later, which
2568       // automatically synthesizes these stubs.
2569       OpFlags = X86II::MO_DARWIN_STUB;
2570     }
2571
2572     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2573                                          OpFlags);
2574   }
2575
2576   // Returns a chain & a flag for retval copy to use.
2577   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2578   SmallVector<SDValue, 8> Ops;
2579
2580   if (!IsSibcall && isTailCall) {
2581     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2582                            DAG.getIntPtrConstant(0, true), InFlag);
2583     InFlag = Chain.getValue(1);
2584   }
2585
2586   Ops.push_back(Chain);
2587   Ops.push_back(Callee);
2588
2589   if (isTailCall)
2590     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2591
2592   // Add argument registers to the end of the list so that they are known live
2593   // into the call.
2594   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2595     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2596                                   RegsToPass[i].second.getValueType()));
2597
2598   // Add a register mask operand representing the call-preserved registers.
2599   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2600   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2601   assert(Mask && "Missing call preserved mask for calling convention");
2602   Ops.push_back(DAG.getRegisterMask(Mask));
2603
2604   if (InFlag.getNode())
2605     Ops.push_back(InFlag);
2606
2607   if (isTailCall) {
2608     // We used to do:
2609     //// If this is the first return lowered for this function, add the regs
2610     //// to the liveout set for the function.
2611     // This isn't right, although it's probably harmless on x86; liveouts
2612     // should be computed from returns not tail calls.  Consider a void
2613     // function making a tail call to a function returning int.
2614     return DAG.getNode(X86ISD::TC_RETURN, dl,
2615                        NodeTys, &Ops[0], Ops.size());
2616   }
2617
2618   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2619   InFlag = Chain.getValue(1);
2620
2621   // Create the CALLSEQ_END node.
2622   unsigned NumBytesForCalleeToPush;
2623   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2624                        getTargetMachine().Options.GuaranteedTailCallOpt))
2625     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2626   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2627            SR == StackStructReturn)
2628     // If this is a call to a struct-return function, the callee
2629     // pops the hidden struct pointer, so we have to push it back.
2630     // This is common for Darwin/X86, Linux & Mingw32 targets.
2631     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2632     NumBytesForCalleeToPush = 4;
2633   else
2634     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2635
2636   // Returns a flag for retval copy to use.
2637   if (!IsSibcall) {
2638     Chain = DAG.getCALLSEQ_END(Chain,
2639                                DAG.getIntPtrConstant(NumBytes, true),
2640                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2641                                                      true),
2642                                InFlag);
2643     InFlag = Chain.getValue(1);
2644   }
2645
2646   // Handle result values, copying them out of physregs into vregs that we
2647   // return.
2648   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2649                          Ins, dl, DAG, InVals);
2650 }
2651
2652
2653 //===----------------------------------------------------------------------===//
2654 //                Fast Calling Convention (tail call) implementation
2655 //===----------------------------------------------------------------------===//
2656
2657 //  Like std call, callee cleans arguments, convention except that ECX is
2658 //  reserved for storing the tail called function address. Only 2 registers are
2659 //  free for argument passing (inreg). Tail call optimization is performed
2660 //  provided:
2661 //                * tailcallopt is enabled
2662 //                * caller/callee are fastcc
2663 //  On X86_64 architecture with GOT-style position independent code only local
2664 //  (within module) calls are supported at the moment.
2665 //  To keep the stack aligned according to platform abi the function
2666 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2667 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2668 //  If a tail called function callee has more arguments than the caller the
2669 //  caller needs to make sure that there is room to move the RETADDR to. This is
2670 //  achieved by reserving an area the size of the argument delta right after the
2671 //  original REtADDR, but before the saved framepointer or the spilled registers
2672 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2673 //  stack layout:
2674 //    arg1
2675 //    arg2
2676 //    RETADDR
2677 //    [ new RETADDR
2678 //      move area ]
2679 //    (possible EBP)
2680 //    ESI
2681 //    EDI
2682 //    local1 ..
2683
2684 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2685 /// for a 16 byte align requirement.
2686 unsigned
2687 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2688                                                SelectionDAG& DAG) const {
2689   MachineFunction &MF = DAG.getMachineFunction();
2690   const TargetMachine &TM = MF.getTarget();
2691   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2692   unsigned StackAlignment = TFI.getStackAlignment();
2693   uint64_t AlignMask = StackAlignment - 1;
2694   int64_t Offset = StackSize;
2695   unsigned SlotSize = RegInfo->getSlotSize();
2696   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2697     // Number smaller than 12 so just add the difference.
2698     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2699   } else {
2700     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2701     Offset = ((~AlignMask) & Offset) + StackAlignment +
2702       (StackAlignment-SlotSize);
2703   }
2704   return Offset;
2705 }
2706
2707 /// MatchingStackOffset - Return true if the given stack call argument is
2708 /// already available in the same position (relatively) of the caller's
2709 /// incoming argument stack.
2710 static
2711 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2712                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2713                          const X86InstrInfo *TII) {
2714   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2715   int FI = INT_MAX;
2716   if (Arg.getOpcode() == ISD::CopyFromReg) {
2717     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2718     if (!TargetRegisterInfo::isVirtualRegister(VR))
2719       return false;
2720     MachineInstr *Def = MRI->getVRegDef(VR);
2721     if (!Def)
2722       return false;
2723     if (!Flags.isByVal()) {
2724       if (!TII->isLoadFromStackSlot(Def, FI))
2725         return false;
2726     } else {
2727       unsigned Opcode = Def->getOpcode();
2728       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2729           Def->getOperand(1).isFI()) {
2730         FI = Def->getOperand(1).getIndex();
2731         Bytes = Flags.getByValSize();
2732       } else
2733         return false;
2734     }
2735   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2736     if (Flags.isByVal())
2737       // ByVal argument is passed in as a pointer but it's now being
2738       // dereferenced. e.g.
2739       // define @foo(%struct.X* %A) {
2740       //   tail call @bar(%struct.X* byval %A)
2741       // }
2742       return false;
2743     SDValue Ptr = Ld->getBasePtr();
2744     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2745     if (!FINode)
2746       return false;
2747     FI = FINode->getIndex();
2748   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
2749     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
2750     FI = FINode->getIndex();
2751     Bytes = Flags.getByValSize();
2752   } else
2753     return false;
2754
2755   assert(FI != INT_MAX);
2756   if (!MFI->isFixedObjectIndex(FI))
2757     return false;
2758   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
2759 }
2760
2761 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
2762 /// for tail call optimization. Targets which want to do tail call
2763 /// optimization should implement this function.
2764 bool
2765 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2766                                                      CallingConv::ID CalleeCC,
2767                                                      bool isVarArg,
2768                                                      bool isCalleeStructRet,
2769                                                      bool isCallerStructRet,
2770                                                      Type *RetTy,
2771                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
2772                                     const SmallVectorImpl<SDValue> &OutVals,
2773                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2774                                                      SelectionDAG& DAG) const {
2775   if (!IsTailCallConvention(CalleeCC) &&
2776       CalleeCC != CallingConv::C)
2777     return false;
2778
2779   // If -tailcallopt is specified, make fastcc functions tail-callable.
2780   const MachineFunction &MF = DAG.getMachineFunction();
2781   const Function *CallerF = DAG.getMachineFunction().getFunction();
2782
2783   // If the function return type is x86_fp80 and the callee return type is not,
2784   // then the FP_EXTEND of the call result is not a nop. It's not safe to
2785   // perform a tailcall optimization here.
2786   if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
2787     return false;
2788
2789   CallingConv::ID CallerCC = CallerF->getCallingConv();
2790   bool CCMatch = CallerCC == CalleeCC;
2791
2792   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2793     if (IsTailCallConvention(CalleeCC) && CCMatch)
2794       return true;
2795     return false;
2796   }
2797
2798   // Look for obvious safe cases to perform tail call optimization that do not
2799   // require ABI changes. This is what gcc calls sibcall.
2800
2801   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2802   // emit a special epilogue.
2803   if (RegInfo->needsStackRealignment(MF))
2804     return false;
2805
2806   // Also avoid sibcall optimization if either caller or callee uses struct
2807   // return semantics.
2808   if (isCalleeStructRet || isCallerStructRet)
2809     return false;
2810
2811   // An stdcall caller is expected to clean up its arguments; the callee
2812   // isn't going to do that.
2813   if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2814     return false;
2815
2816   // Do not sibcall optimize vararg calls unless all arguments are passed via
2817   // registers.
2818   if (isVarArg && !Outs.empty()) {
2819
2820     // Optimizing for varargs on Win64 is unlikely to be safe without
2821     // additional testing.
2822     if (Subtarget->isTargetWin64())
2823       return false;
2824
2825     SmallVector<CCValAssign, 16> ArgLocs;
2826     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2827                    getTargetMachine(), ArgLocs, *DAG.getContext());
2828
2829     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2830     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2831       if (!ArgLocs[i].isRegLoc())
2832         return false;
2833   }
2834
2835   // If the call result is in ST0 / ST1, it needs to be popped off the x87
2836   // stack.  Therefore, if it's not used by the call it is not safe to optimize
2837   // this into a sibcall.
2838   bool Unused = false;
2839   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2840     if (!Ins[i].Used) {
2841       Unused = true;
2842       break;
2843     }
2844   }
2845   if (Unused) {
2846     SmallVector<CCValAssign, 16> RVLocs;
2847     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2848                    getTargetMachine(), RVLocs, *DAG.getContext());
2849     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2850     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2851       CCValAssign &VA = RVLocs[i];
2852       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2853         return false;
2854     }
2855   }
2856
2857   // If the calling conventions do not match, then we'd better make sure the
2858   // results are returned in the same way as what the caller expects.
2859   if (!CCMatch) {
2860     SmallVector<CCValAssign, 16> RVLocs1;
2861     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2862                     getTargetMachine(), RVLocs1, *DAG.getContext());
2863     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2864
2865     SmallVector<CCValAssign, 16> RVLocs2;
2866     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2867                     getTargetMachine(), RVLocs2, *DAG.getContext());
2868     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2869
2870     if (RVLocs1.size() != RVLocs2.size())
2871       return false;
2872     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2873       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2874         return false;
2875       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2876         return false;
2877       if (RVLocs1[i].isRegLoc()) {
2878         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2879           return false;
2880       } else {
2881         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2882           return false;
2883       }
2884     }
2885   }
2886
2887   // If the callee takes no arguments then go on to check the results of the
2888   // call.
2889   if (!Outs.empty()) {
2890     // Check if stack adjustment is needed. For now, do not do this if any
2891     // argument is passed on the stack.
2892     SmallVector<CCValAssign, 16> ArgLocs;
2893     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2894                    getTargetMachine(), ArgLocs, *DAG.getContext());
2895
2896     // Allocate shadow area for Win64
2897     if (Subtarget->isTargetWin64()) {
2898       CCInfo.AllocateStack(32, 8);
2899     }
2900
2901     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2902     if (CCInfo.getNextStackOffset()) {
2903       MachineFunction &MF = DAG.getMachineFunction();
2904       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2905         return false;
2906
2907       // Check if the arguments are already laid out in the right way as
2908       // the caller's fixed stack objects.
2909       MachineFrameInfo *MFI = MF.getFrameInfo();
2910       const MachineRegisterInfo *MRI = &MF.getRegInfo();
2911       const X86InstrInfo *TII =
2912         ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
2913       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2914         CCValAssign &VA = ArgLocs[i];
2915         SDValue Arg = OutVals[i];
2916         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2917         if (VA.getLocInfo() == CCValAssign::Indirect)
2918           return false;
2919         if (!VA.isRegLoc()) {
2920           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2921                                    MFI, MRI, TII))
2922             return false;
2923         }
2924       }
2925     }
2926
2927     // If the tailcall address may be in a register, then make sure it's
2928     // possible to register allocate for it. In 32-bit, the call address can
2929     // only target EAX, EDX, or ECX since the tail call must be scheduled after
2930     // callee-saved registers are restored. These happen to be the same
2931     // registers used to pass 'inreg' arguments so watch out for those.
2932     if (!Subtarget->is64Bit() &&
2933         !isa<GlobalAddressSDNode>(Callee) &&
2934         !isa<ExternalSymbolSDNode>(Callee)) {
2935       unsigned NumInRegs = 0;
2936       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2937         CCValAssign &VA = ArgLocs[i];
2938         if (!VA.isRegLoc())
2939           continue;
2940         unsigned Reg = VA.getLocReg();
2941         switch (Reg) {
2942         default: break;
2943         case X86::EAX: case X86::EDX: case X86::ECX:
2944           if (++NumInRegs == 3)
2945             return false;
2946           break;
2947         }
2948       }
2949     }
2950   }
2951
2952   return true;
2953 }
2954
2955 FastISel *
2956 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
2957                                   const TargetLibraryInfo *libInfo) const {
2958   return X86::createFastISel(funcInfo, libInfo);
2959 }
2960
2961
2962 //===----------------------------------------------------------------------===//
2963 //                           Other Lowering Hooks
2964 //===----------------------------------------------------------------------===//
2965
2966 static bool MayFoldLoad(SDValue Op) {
2967   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2968 }
2969
2970 static bool MayFoldIntoStore(SDValue Op) {
2971   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2972 }
2973
2974 static bool isTargetShuffle(unsigned Opcode) {
2975   switch(Opcode) {
2976   default: return false;
2977   case X86ISD::PSHUFD:
2978   case X86ISD::PSHUFHW:
2979   case X86ISD::PSHUFLW:
2980   case X86ISD::SHUFP:
2981   case X86ISD::PALIGN:
2982   case X86ISD::MOVLHPS:
2983   case X86ISD::MOVLHPD:
2984   case X86ISD::MOVHLPS:
2985   case X86ISD::MOVLPS:
2986   case X86ISD::MOVLPD:
2987   case X86ISD::MOVSHDUP:
2988   case X86ISD::MOVSLDUP:
2989   case X86ISD::MOVDDUP:
2990   case X86ISD::MOVSS:
2991   case X86ISD::MOVSD:
2992   case X86ISD::UNPCKL:
2993   case X86ISD::UNPCKH:
2994   case X86ISD::VPERMILP:
2995   case X86ISD::VPERM2X128:
2996   case X86ISD::VPERMI:
2997     return true;
2998   }
2999 }
3000
3001 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
3002                                     SDValue V1, SelectionDAG &DAG) {
3003   switch(Opc) {
3004   default: llvm_unreachable("Unknown x86 shuffle node");
3005   case X86ISD::MOVSHDUP:
3006   case X86ISD::MOVSLDUP:
3007   case X86ISD::MOVDDUP:
3008     return DAG.getNode(Opc, dl, VT, V1);
3009   }
3010 }
3011
3012 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
3013                                     SDValue V1, unsigned TargetMask,
3014                                     SelectionDAG &DAG) {
3015   switch(Opc) {
3016   default: llvm_unreachable("Unknown x86 shuffle node");
3017   case X86ISD::PSHUFD:
3018   case X86ISD::PSHUFHW:
3019   case X86ISD::PSHUFLW:
3020   case X86ISD::VPERMILP:
3021   case X86ISD::VPERMI:
3022     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3023   }
3024 }
3025
3026 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
3027                                     SDValue V1, SDValue V2, unsigned TargetMask,
3028                                     SelectionDAG &DAG) {
3029   switch(Opc) {
3030   default: llvm_unreachable("Unknown x86 shuffle node");
3031   case X86ISD::PALIGN:
3032   case X86ISD::SHUFP:
3033   case X86ISD::VPERM2X128:
3034     return DAG.getNode(Opc, dl, VT, V1, V2,
3035                        DAG.getConstant(TargetMask, MVT::i8));
3036   }
3037 }
3038
3039 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
3040                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
3041   switch(Opc) {
3042   default: llvm_unreachable("Unknown x86 shuffle node");
3043   case X86ISD::MOVLHPS:
3044   case X86ISD::MOVLHPD:
3045   case X86ISD::MOVHLPS:
3046   case X86ISD::MOVLPS:
3047   case X86ISD::MOVLPD:
3048   case X86ISD::MOVSS:
3049   case X86ISD::MOVSD:
3050   case X86ISD::UNPCKL:
3051   case X86ISD::UNPCKH:
3052     return DAG.getNode(Opc, dl, VT, V1, V2);
3053   }
3054 }
3055
3056 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
3057   MachineFunction &MF = DAG.getMachineFunction();
3058   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3059   int ReturnAddrIndex = FuncInfo->getRAIndex();
3060
3061   if (ReturnAddrIndex == 0) {
3062     // Set up a frame object for the return address.
3063     unsigned SlotSize = RegInfo->getSlotSize();
3064     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
3065                                                            false);
3066     FuncInfo->setRAIndex(ReturnAddrIndex);
3067   }
3068
3069   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
3070 }
3071
3072
3073 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3074                                        bool hasSymbolicDisplacement) {
3075   // Offset should fit into 32 bit immediate field.
3076   if (!isInt<32>(Offset))
3077     return false;
3078
3079   // If we don't have a symbolic displacement - we don't have any extra
3080   // restrictions.
3081   if (!hasSymbolicDisplacement)
3082     return true;
3083
3084   // FIXME: Some tweaks might be needed for medium code model.
3085   if (M != CodeModel::Small && M != CodeModel::Kernel)
3086     return false;
3087
3088   // For small code model we assume that latest object is 16MB before end of 31
3089   // bits boundary. We may also accept pretty large negative constants knowing
3090   // that all objects are in the positive half of address space.
3091   if (M == CodeModel::Small && Offset < 16*1024*1024)
3092     return true;
3093
3094   // For kernel code model we know that all object resist in the negative half
3095   // of 32bits address space. We may not accept negative offsets, since they may
3096   // be just off and we may accept pretty large positive ones.
3097   if (M == CodeModel::Kernel && Offset > 0)
3098     return true;
3099
3100   return false;
3101 }
3102
3103 /// isCalleePop - Determines whether the callee is required to pop its
3104 /// own arguments. Callee pop is necessary to support tail calls.
3105 bool X86::isCalleePop(CallingConv::ID CallingConv,
3106                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3107   if (IsVarArg)
3108     return false;
3109
3110   switch (CallingConv) {
3111   default:
3112     return false;
3113   case CallingConv::X86_StdCall:
3114     return !is64Bit;
3115   case CallingConv::X86_FastCall:
3116     return !is64Bit;
3117   case CallingConv::X86_ThisCall:
3118     return !is64Bit;
3119   case CallingConv::Fast:
3120     return TailCallOpt;
3121   case CallingConv::GHC:
3122     return TailCallOpt;
3123   case CallingConv::HiPE:
3124     return TailCallOpt;
3125   }
3126 }
3127
3128 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3129 /// specific condition code, returning the condition code and the LHS/RHS of the
3130 /// comparison to make.
3131 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3132                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3133   if (!isFP) {
3134     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3135       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3136         // X > -1   -> X == 0, jump !sign.
3137         RHS = DAG.getConstant(0, RHS.getValueType());
3138         return X86::COND_NS;
3139       }
3140       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3141         // X < 0   -> X == 0, jump on sign.
3142         return X86::COND_S;
3143       }
3144       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3145         // X < 1   -> X <= 0
3146         RHS = DAG.getConstant(0, RHS.getValueType());
3147         return X86::COND_LE;
3148       }
3149     }
3150
3151     switch (SetCCOpcode) {
3152     default: llvm_unreachable("Invalid integer condition!");
3153     case ISD::SETEQ:  return X86::COND_E;
3154     case ISD::SETGT:  return X86::COND_G;
3155     case ISD::SETGE:  return X86::COND_GE;
3156     case ISD::SETLT:  return X86::COND_L;
3157     case ISD::SETLE:  return X86::COND_LE;
3158     case ISD::SETNE:  return X86::COND_NE;
3159     case ISD::SETULT: return X86::COND_B;
3160     case ISD::SETUGT: return X86::COND_A;
3161     case ISD::SETULE: return X86::COND_BE;
3162     case ISD::SETUGE: return X86::COND_AE;
3163     }
3164   }
3165
3166   // First determine if it is required or is profitable to flip the operands.
3167
3168   // If LHS is a foldable load, but RHS is not, flip the condition.
3169   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3170       !ISD::isNON_EXTLoad(RHS.getNode())) {
3171     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3172     std::swap(LHS, RHS);
3173   }
3174
3175   switch (SetCCOpcode) {
3176   default: break;
3177   case ISD::SETOLT:
3178   case ISD::SETOLE:
3179   case ISD::SETUGT:
3180   case ISD::SETUGE:
3181     std::swap(LHS, RHS);
3182     break;
3183   }
3184
3185   // On a floating point condition, the flags are set as follows:
3186   // ZF  PF  CF   op
3187   //  0 | 0 | 0 | X > Y
3188   //  0 | 0 | 1 | X < Y
3189   //  1 | 0 | 0 | X == Y
3190   //  1 | 1 | 1 | unordered
3191   switch (SetCCOpcode) {
3192   default: llvm_unreachable("Condcode should be pre-legalized away");
3193   case ISD::SETUEQ:
3194   case ISD::SETEQ:   return X86::COND_E;
3195   case ISD::SETOLT:              // flipped
3196   case ISD::SETOGT:
3197   case ISD::SETGT:   return X86::COND_A;
3198   case ISD::SETOLE:              // flipped
3199   case ISD::SETOGE:
3200   case ISD::SETGE:   return X86::COND_AE;
3201   case ISD::SETUGT:              // flipped
3202   case ISD::SETULT:
3203   case ISD::SETLT:   return X86::COND_B;
3204   case ISD::SETUGE:              // flipped
3205   case ISD::SETULE:
3206   case ISD::SETLE:   return X86::COND_BE;
3207   case ISD::SETONE:
3208   case ISD::SETNE:   return X86::COND_NE;
3209   case ISD::SETUO:   return X86::COND_P;
3210   case ISD::SETO:    return X86::COND_NP;
3211   case ISD::SETOEQ:
3212   case ISD::SETUNE:  return X86::COND_INVALID;
3213   }
3214 }
3215
3216 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3217 /// code. Current x86 isa includes the following FP cmov instructions:
3218 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3219 static bool hasFPCMov(unsigned X86CC) {
3220   switch (X86CC) {
3221   default:
3222     return false;
3223   case X86::COND_B:
3224   case X86::COND_BE:
3225   case X86::COND_E:
3226   case X86::COND_P:
3227   case X86::COND_A:
3228   case X86::COND_AE:
3229   case X86::COND_NE:
3230   case X86::COND_NP:
3231     return true;
3232   }
3233 }
3234
3235 /// isFPImmLegal - Returns true if the target can instruction select the
3236 /// specified FP immediate natively. If false, the legalizer will
3237 /// materialize the FP immediate as a load from a constant pool.
3238 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3239   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3240     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3241       return true;
3242   }
3243   return false;
3244 }
3245
3246 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3247 /// the specified range (L, H].
3248 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3249   return (Val < 0) || (Val >= Low && Val < Hi);
3250 }
3251
3252 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3253 /// specified value.
3254 static bool isUndefOrEqual(int Val, int CmpVal) {
3255   return (Val < 0 || Val == CmpVal);
3256 }
3257
3258 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3259 /// from position Pos and ending in Pos+Size, falls within the specified
3260 /// sequential range (L, L+Pos]. or is undef.
3261 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3262                                        unsigned Pos, unsigned Size, int Low) {
3263   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3264     if (!isUndefOrEqual(Mask[i], Low))
3265       return false;
3266   return true;
3267 }
3268
3269 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3270 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3271 /// the second operand.
3272 static bool isPSHUFDMask(ArrayRef<int> Mask, EVT VT) {
3273   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3274     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3275   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3276     return (Mask[0] < 2 && Mask[1] < 2);
3277   return false;
3278 }
3279
3280 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3281 /// is suitable for input to PSHUFHW.
3282 static bool isPSHUFHWMask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
3283   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3284     return false;
3285
3286   // Lower quadword copied in order or undef.
3287   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3288     return false;
3289
3290   // Upper quadword shuffled.
3291   for (unsigned i = 4; i != 8; ++i)
3292     if (!isUndefOrInRange(Mask[i], 4, 8))
3293       return false;
3294
3295   if (VT == MVT::v16i16) {
3296     // Lower quadword copied in order or undef.
3297     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3298       return false;
3299
3300     // Upper quadword shuffled.
3301     for (unsigned i = 12; i != 16; ++i)
3302       if (!isUndefOrInRange(Mask[i], 12, 16))
3303         return false;
3304   }
3305
3306   return true;
3307 }
3308
3309 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3310 /// is suitable for input to PSHUFLW.
3311 static bool isPSHUFLWMask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
3312   if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
3313     return false;
3314
3315   // Upper quadword copied in order.
3316   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3317     return false;
3318
3319   // Lower quadword shuffled.
3320   for (unsigned i = 0; i != 4; ++i)
3321     if (!isUndefOrInRange(Mask[i], 0, 4))
3322       return false;
3323
3324   if (VT == MVT::v16i16) {
3325     // Upper quadword copied in order.
3326     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3327       return false;
3328
3329     // Lower quadword shuffled.
3330     for (unsigned i = 8; i != 12; ++i)
3331       if (!isUndefOrInRange(Mask[i], 8, 12))
3332         return false;
3333   }
3334
3335   return true;
3336 }
3337
3338 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3339 /// is suitable for input to PALIGNR.
3340 static bool isPALIGNRMask(ArrayRef<int> Mask, EVT VT,
3341                           const X86Subtarget *Subtarget) {
3342   if ((VT.getSizeInBits() == 128 && !Subtarget->hasSSSE3()) ||
3343       (VT.getSizeInBits() == 256 && !Subtarget->hasInt256()))
3344     return false;
3345
3346   unsigned NumElts = VT.getVectorNumElements();
3347   unsigned NumLanes = VT.getSizeInBits()/128;
3348   unsigned NumLaneElts = NumElts/NumLanes;
3349
3350   // Do not handle 64-bit element shuffles with palignr.
3351   if (NumLaneElts == 2)
3352     return false;
3353
3354   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3355     unsigned i;
3356     for (i = 0; i != NumLaneElts; ++i) {
3357       if (Mask[i+l] >= 0)
3358         break;
3359     }
3360
3361     // Lane is all undef, go to next lane
3362     if (i == NumLaneElts)
3363       continue;
3364
3365     int Start = Mask[i+l];
3366
3367     // Make sure its in this lane in one of the sources
3368     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3369         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3370       return false;
3371
3372     // If not lane 0, then we must match lane 0
3373     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3374       return false;
3375
3376     // Correct second source to be contiguous with first source
3377     if (Start >= (int)NumElts)
3378       Start -= NumElts - NumLaneElts;
3379
3380     // Make sure we're shifting in the right direction.
3381     if (Start <= (int)(i+l))
3382       return false;
3383
3384     Start -= i;
3385
3386     // Check the rest of the elements to see if they are consecutive.
3387     for (++i; i != NumLaneElts; ++i) {
3388       int Idx = Mask[i+l];
3389
3390       // Make sure its in this lane
3391       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3392           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3393         return false;
3394
3395       // If not lane 0, then we must match lane 0
3396       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3397         return false;
3398
3399       if (Idx >= (int)NumElts)
3400         Idx -= NumElts - NumLaneElts;
3401
3402       if (!isUndefOrEqual(Idx, Start+i))
3403         return false;
3404
3405     }
3406   }
3407
3408   return true;
3409 }
3410
3411 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3412 /// the two vector operands have swapped position.
3413 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3414                                      unsigned NumElems) {
3415   for (unsigned i = 0; i != NumElems; ++i) {
3416     int idx = Mask[i];
3417     if (idx < 0)
3418       continue;
3419     else if (idx < (int)NumElems)
3420       Mask[i] = idx + NumElems;
3421     else
3422       Mask[i] = idx - NumElems;
3423   }
3424 }
3425
3426 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3427 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3428 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3429 /// reverse of what x86 shuffles want.
3430 static bool isSHUFPMask(ArrayRef<int> Mask, EVT VT, bool HasFp256,
3431                         bool Commuted = false) {
3432   if (!HasFp256 && VT.getSizeInBits() == 256)
3433     return false;
3434
3435   unsigned NumElems = VT.getVectorNumElements();
3436   unsigned NumLanes = VT.getSizeInBits()/128;
3437   unsigned NumLaneElems = NumElems/NumLanes;
3438
3439   if (NumLaneElems != 2 && NumLaneElems != 4)
3440     return false;
3441
3442   // VSHUFPSY divides the resulting vector into 4 chunks.
3443   // The sources are also splitted into 4 chunks, and each destination
3444   // chunk must come from a different source chunk.
3445   //
3446   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3447   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3448   //
3449   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3450   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3451   //
3452   // VSHUFPDY divides the resulting vector into 4 chunks.
3453   // The sources are also splitted into 4 chunks, and each destination
3454   // chunk must come from a different source chunk.
3455   //
3456   //  SRC1 =>      X3       X2       X1       X0
3457   //  SRC2 =>      Y3       Y2       Y1       Y0
3458   //
3459   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3460   //
3461   unsigned HalfLaneElems = NumLaneElems/2;
3462   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3463     for (unsigned i = 0; i != NumLaneElems; ++i) {
3464       int Idx = Mask[i+l];
3465       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3466       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3467         return false;
3468       // For VSHUFPSY, the mask of the second half must be the same as the
3469       // first but with the appropriate offsets. This works in the same way as
3470       // VPERMILPS works with masks.
3471       if (NumElems != 8 || l == 0 || Mask[i] < 0)
3472         continue;
3473       if (!isUndefOrEqual(Idx, Mask[i]+l))
3474         return false;
3475     }
3476   }
3477
3478   return true;
3479 }
3480
3481 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3482 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3483 static bool isMOVHLPSMask(ArrayRef<int> Mask, EVT VT) {
3484   if (!VT.is128BitVector())
3485     return false;
3486
3487   unsigned NumElems = VT.getVectorNumElements();
3488
3489   if (NumElems != 4)
3490     return false;
3491
3492   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3493   return isUndefOrEqual(Mask[0], 6) &&
3494          isUndefOrEqual(Mask[1], 7) &&
3495          isUndefOrEqual(Mask[2], 2) &&
3496          isUndefOrEqual(Mask[3], 3);
3497 }
3498
3499 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3500 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3501 /// <2, 3, 2, 3>
3502 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, EVT VT) {
3503   if (!VT.is128BitVector())
3504     return false;
3505
3506   unsigned NumElems = VT.getVectorNumElements();
3507
3508   if (NumElems != 4)
3509     return false;
3510
3511   return isUndefOrEqual(Mask[0], 2) &&
3512          isUndefOrEqual(Mask[1], 3) &&
3513          isUndefOrEqual(Mask[2], 2) &&
3514          isUndefOrEqual(Mask[3], 3);
3515 }
3516
3517 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3518 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3519 static bool isMOVLPMask(ArrayRef<int> Mask, EVT VT) {
3520   if (!VT.is128BitVector())
3521     return false;
3522
3523   unsigned NumElems = VT.getVectorNumElements();
3524
3525   if (NumElems != 2 && NumElems != 4)
3526     return false;
3527
3528   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3529     if (!isUndefOrEqual(Mask[i], i + NumElems))
3530       return false;
3531
3532   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3533     if (!isUndefOrEqual(Mask[i], i))
3534       return false;
3535
3536   return true;
3537 }
3538
3539 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3540 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3541 static bool isMOVLHPSMask(ArrayRef<int> Mask, EVT VT) {
3542   if (!VT.is128BitVector())
3543     return false;
3544
3545   unsigned NumElems = VT.getVectorNumElements();
3546
3547   if (NumElems != 2 && NumElems != 4)
3548     return false;
3549
3550   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3551     if (!isUndefOrEqual(Mask[i], i))
3552       return false;
3553
3554   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3555     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3556       return false;
3557
3558   return true;
3559 }
3560
3561 //
3562 // Some special combinations that can be optimized.
3563 //
3564 static
3565 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3566                                SelectionDAG &DAG) {
3567   EVT VT = SVOp->getValueType(0);
3568   DebugLoc dl = SVOp->getDebugLoc();
3569
3570   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3571     return SDValue();
3572
3573   ArrayRef<int> Mask = SVOp->getMask();
3574
3575   // These are the special masks that may be optimized.
3576   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3577   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3578   bool MatchEvenMask = true;
3579   bool MatchOddMask  = true;
3580   for (int i=0; i<8; ++i) {
3581     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3582       MatchEvenMask = false;
3583     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3584       MatchOddMask = false;
3585   }
3586
3587   if (!MatchEvenMask && !MatchOddMask)
3588     return SDValue();
3589
3590   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3591
3592   SDValue Op0 = SVOp->getOperand(0);
3593   SDValue Op1 = SVOp->getOperand(1);
3594
3595   if (MatchEvenMask) {
3596     // Shift the second operand right to 32 bits.
3597     static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3598     Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3599   } else {
3600     // Shift the first operand left to 32 bits.
3601     static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3602     Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3603   }
3604   static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3605   return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
3606 }
3607
3608 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3609 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3610 static bool isUNPCKLMask(ArrayRef<int> Mask, EVT VT,
3611                          bool HasInt256, bool V2IsSplat = false) {
3612   unsigned NumElts = VT.getVectorNumElements();
3613
3614   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3615          "Unsupported vector type for unpckh");
3616
3617   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3618       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3619     return false;
3620
3621   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3622   // independently on 128-bit lanes.
3623   unsigned NumLanes = VT.getSizeInBits()/128;
3624   unsigned NumLaneElts = NumElts/NumLanes;
3625
3626   for (unsigned l = 0; l != NumLanes; ++l) {
3627     for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3628          i != (l+1)*NumLaneElts;
3629          i += 2, ++j) {
3630       int BitI  = Mask[i];
3631       int BitI1 = Mask[i+1];
3632       if (!isUndefOrEqual(BitI, j))
3633         return false;
3634       if (V2IsSplat) {
3635         if (!isUndefOrEqual(BitI1, NumElts))
3636           return false;
3637       } else {
3638         if (!isUndefOrEqual(BitI1, j + NumElts))
3639           return false;
3640       }
3641     }
3642   }
3643
3644   return true;
3645 }
3646
3647 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3648 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3649 static bool isUNPCKHMask(ArrayRef<int> Mask, EVT VT,
3650                          bool HasInt256, bool V2IsSplat = false) {
3651   unsigned NumElts = VT.getVectorNumElements();
3652
3653   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3654          "Unsupported vector type for unpckh");
3655
3656   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3657       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3658     return false;
3659
3660   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3661   // independently on 128-bit lanes.
3662   unsigned NumLanes = VT.getSizeInBits()/128;
3663   unsigned NumLaneElts = NumElts/NumLanes;
3664
3665   for (unsigned l = 0; l != NumLanes; ++l) {
3666     for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3667          i != (l+1)*NumLaneElts; i += 2, ++j) {
3668       int BitI  = Mask[i];
3669       int BitI1 = Mask[i+1];
3670       if (!isUndefOrEqual(BitI, j))
3671         return false;
3672       if (V2IsSplat) {
3673         if (isUndefOrEqual(BitI1, NumElts))
3674           return false;
3675       } else {
3676         if (!isUndefOrEqual(BitI1, j+NumElts))
3677           return false;
3678       }
3679     }
3680   }
3681   return true;
3682 }
3683
3684 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3685 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3686 /// <0, 0, 1, 1>
3687 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, EVT VT,
3688                                   bool HasInt256) {
3689   unsigned NumElts = VT.getVectorNumElements();
3690
3691   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3692          "Unsupported vector type for unpckh");
3693
3694   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3695       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3696     return false;
3697
3698   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3699   // FIXME: Need a better way to get rid of this, there's no latency difference
3700   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3701   // the former later. We should also remove the "_undef" special mask.
3702   if (NumElts == 4 && VT.getSizeInBits() == 256)
3703     return false;
3704
3705   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3706   // independently on 128-bit lanes.
3707   unsigned NumLanes = VT.getSizeInBits()/128;
3708   unsigned NumLaneElts = NumElts/NumLanes;
3709
3710   for (unsigned l = 0; l != NumLanes; ++l) {
3711     for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3712          i != (l+1)*NumLaneElts;
3713          i += 2, ++j) {
3714       int BitI  = Mask[i];
3715       int BitI1 = Mask[i+1];
3716
3717       if (!isUndefOrEqual(BitI, j))
3718         return false;
3719       if (!isUndefOrEqual(BitI1, j))
3720         return false;
3721     }
3722   }
3723
3724   return true;
3725 }
3726
3727 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3728 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3729 /// <2, 2, 3, 3>
3730 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, EVT VT, bool HasInt256) {
3731   unsigned NumElts = VT.getVectorNumElements();
3732
3733   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3734          "Unsupported vector type for unpckh");
3735
3736   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3737       (!HasInt256 || (NumElts != 16 && NumElts != 32)))
3738     return false;
3739
3740   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3741   // independently on 128-bit lanes.
3742   unsigned NumLanes = VT.getSizeInBits()/128;
3743   unsigned NumLaneElts = NumElts/NumLanes;
3744
3745   for (unsigned l = 0; l != NumLanes; ++l) {
3746     for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3747          i != (l+1)*NumLaneElts; i += 2, ++j) {
3748       int BitI  = Mask[i];
3749       int BitI1 = Mask[i+1];
3750       if (!isUndefOrEqual(BitI, j))
3751         return false;
3752       if (!isUndefOrEqual(BitI1, j))
3753         return false;
3754     }
3755   }
3756   return true;
3757 }
3758
3759 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3760 /// specifies a shuffle of elements that is suitable for input to MOVSS,
3761 /// MOVSD, and MOVD, i.e. setting the lowest element.
3762 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
3763   if (VT.getVectorElementType().getSizeInBits() < 32)
3764     return false;
3765   if (!VT.is128BitVector())
3766     return false;
3767
3768   unsigned NumElts = VT.getVectorNumElements();
3769
3770   if (!isUndefOrEqual(Mask[0], NumElts))
3771     return false;
3772
3773   for (unsigned i = 1; i != NumElts; ++i)
3774     if (!isUndefOrEqual(Mask[i], i))
3775       return false;
3776
3777   return true;
3778 }
3779
3780 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
3781 /// as permutations between 128-bit chunks or halves. As an example: this
3782 /// shuffle bellow:
3783 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3784 /// The first half comes from the second half of V1 and the second half from the
3785 /// the second half of V2.
3786 static bool isVPERM2X128Mask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
3787   if (!HasFp256 || !VT.is256BitVector())
3788     return false;
3789
3790   // The shuffle result is divided into half A and half B. In total the two
3791   // sources have 4 halves, namely: C, D, E, F. The final values of A and
3792   // B must come from C, D, E or F.
3793   unsigned HalfSize = VT.getVectorNumElements()/2;
3794   bool MatchA = false, MatchB = false;
3795
3796   // Check if A comes from one of C, D, E, F.
3797   for (unsigned Half = 0; Half != 4; ++Half) {
3798     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3799       MatchA = true;
3800       break;
3801     }
3802   }
3803
3804   // Check if B comes from one of C, D, E, F.
3805   for (unsigned Half = 0; Half != 4; ++Half) {
3806     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3807       MatchB = true;
3808       break;
3809     }
3810   }
3811
3812   return MatchA && MatchB;
3813 }
3814
3815 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
3816 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
3817 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
3818   EVT VT = SVOp->getValueType(0);
3819
3820   unsigned HalfSize = VT.getVectorNumElements()/2;
3821
3822   unsigned FstHalf = 0, SndHalf = 0;
3823   for (unsigned i = 0; i < HalfSize; ++i) {
3824     if (SVOp->getMaskElt(i) > 0) {
3825       FstHalf = SVOp->getMaskElt(i)/HalfSize;
3826       break;
3827     }
3828   }
3829   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
3830     if (SVOp->getMaskElt(i) > 0) {
3831       SndHalf = SVOp->getMaskElt(i)/HalfSize;
3832       break;
3833     }
3834   }
3835
3836   return (FstHalf | (SndHalf << 4));
3837 }
3838
3839 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
3840 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3841 /// Note that VPERMIL mask matching is different depending whether theunderlying
3842 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3843 /// to the same elements of the low, but to the higher half of the source.
3844 /// In VPERMILPD the two lanes could be shuffled independently of each other
3845 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
3846 static bool isVPERMILPMask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
3847   if (!HasFp256)
3848     return false;
3849
3850   unsigned NumElts = VT.getVectorNumElements();
3851   // Only match 256-bit with 32/64-bit types
3852   if (VT.getSizeInBits() != 256 || (NumElts != 4 && NumElts != 8))
3853     return false;
3854
3855   unsigned NumLanes = VT.getSizeInBits()/128;
3856   unsigned LaneSize = NumElts/NumLanes;
3857   for (unsigned l = 0; l != NumElts; l += LaneSize) {
3858     for (unsigned i = 0; i != LaneSize; ++i) {
3859       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
3860         return false;
3861       if (NumElts != 8 || l == 0)
3862         continue;
3863       // VPERMILPS handling
3864       if (Mask[i] < 0)
3865         continue;
3866       if (!isUndefOrEqual(Mask[i+l], Mask[i]+l))
3867         return false;
3868     }
3869   }
3870
3871   return true;
3872 }
3873
3874 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
3875 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
3876 /// element of vector 2 and the other elements to come from vector 1 in order.
3877 static bool isCommutedMOVLMask(ArrayRef<int> Mask, EVT VT,
3878                                bool V2IsSplat = false, bool V2IsUndef = false) {
3879   if (!VT.is128BitVector())
3880     return false;
3881
3882   unsigned NumOps = VT.getVectorNumElements();
3883   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
3884     return false;
3885
3886   if (!isUndefOrEqual(Mask[0], 0))
3887     return false;
3888
3889   for (unsigned i = 1; i != NumOps; ++i)
3890     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3891           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3892           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
3893       return false;
3894
3895   return true;
3896 }
3897
3898 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3899 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
3900 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3901 static bool isMOVSHDUPMask(ArrayRef<int> Mask, EVT VT,
3902                            const X86Subtarget *Subtarget) {
3903   if (!Subtarget->hasSSE3())
3904     return false;
3905
3906   unsigned NumElems = VT.getVectorNumElements();
3907
3908   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3909       (VT.getSizeInBits() == 256 && NumElems != 8))
3910     return false;
3911
3912   // "i+1" is the value the indexed mask element must have
3913   for (unsigned i = 0; i != NumElems; i += 2)
3914     if (!isUndefOrEqual(Mask[i], i+1) ||
3915         !isUndefOrEqual(Mask[i+1], i+1))
3916       return false;
3917
3918   return true;
3919 }
3920
3921 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3922 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
3923 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3924 static bool isMOVSLDUPMask(ArrayRef<int> Mask, EVT VT,
3925                            const X86Subtarget *Subtarget) {
3926   if (!Subtarget->hasSSE3())
3927     return false;
3928
3929   unsigned NumElems = VT.getVectorNumElements();
3930
3931   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3932       (VT.getSizeInBits() == 256 && NumElems != 8))
3933     return false;
3934
3935   // "i" is the value the indexed mask element must have
3936   for (unsigned i = 0; i != NumElems; i += 2)
3937     if (!isUndefOrEqual(Mask[i], i) ||
3938         !isUndefOrEqual(Mask[i+1], i))
3939       return false;
3940
3941   return true;
3942 }
3943
3944 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
3945 /// specifies a shuffle of elements that is suitable for input to 256-bit
3946 /// version of MOVDDUP.
3947 static bool isMOVDDUPYMask(ArrayRef<int> Mask, EVT VT, bool HasFp256) {
3948   if (!HasFp256 || !VT.is256BitVector())
3949     return false;
3950
3951   unsigned NumElts = VT.getVectorNumElements();
3952   if (NumElts != 4)
3953     return false;
3954
3955   for (unsigned i = 0; i != NumElts/2; ++i)
3956     if (!isUndefOrEqual(Mask[i], 0))
3957       return false;
3958   for (unsigned i = NumElts/2; i != NumElts; ++i)
3959     if (!isUndefOrEqual(Mask[i], NumElts/2))
3960       return false;
3961   return true;
3962 }
3963
3964 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3965 /// specifies a shuffle of elements that is suitable for input to 128-bit
3966 /// version of MOVDDUP.
3967 static bool isMOVDDUPMask(ArrayRef<int> Mask, EVT VT) {
3968   if (!VT.is128BitVector())
3969     return false;
3970
3971   unsigned e = VT.getVectorNumElements() / 2;
3972   for (unsigned i = 0; i != e; ++i)
3973     if (!isUndefOrEqual(Mask[i], i))
3974       return false;
3975   for (unsigned i = 0; i != e; ++i)
3976     if (!isUndefOrEqual(Mask[e+i], i))
3977       return false;
3978   return true;
3979 }
3980
3981 /// isVEXTRACTF128Index - Return true if the specified
3982 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3983 /// suitable for input to VEXTRACTF128.
3984 bool X86::isVEXTRACTF128Index(SDNode *N) {
3985   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3986     return false;
3987
3988   // The index should be aligned on a 128-bit boundary.
3989   uint64_t Index =
3990     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3991
3992   unsigned VL = N->getValueType(0).getVectorNumElements();
3993   unsigned VBits = N->getValueType(0).getSizeInBits();
3994   unsigned ElSize = VBits / VL;
3995   bool Result = (Index * ElSize) % 128 == 0;
3996
3997   return Result;
3998 }
3999
4000 /// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
4001 /// operand specifies a subvector insert that is suitable for input to
4002 /// VINSERTF128.
4003 bool X86::isVINSERTF128Index(SDNode *N) {
4004   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4005     return false;
4006
4007   // The index should be aligned on a 128-bit boundary.
4008   uint64_t Index =
4009     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4010
4011   unsigned VL = N->getValueType(0).getVectorNumElements();
4012   unsigned VBits = N->getValueType(0).getSizeInBits();
4013   unsigned ElSize = VBits / VL;
4014   bool Result = (Index * ElSize) % 128 == 0;
4015
4016   return Result;
4017 }
4018
4019 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4020 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4021 /// Handles 128-bit and 256-bit.
4022 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
4023   EVT VT = N->getValueType(0);
4024
4025   assert((VT.is128BitVector() || VT.is256BitVector()) &&
4026          "Unsupported vector type for PSHUF/SHUFP");
4027
4028   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4029   // independently on 128-bit lanes.
4030   unsigned NumElts = VT.getVectorNumElements();
4031   unsigned NumLanes = VT.getSizeInBits()/128;
4032   unsigned NumLaneElts = NumElts/NumLanes;
4033
4034   assert((NumLaneElts == 2 || NumLaneElts == 4) &&
4035          "Only supports 2 or 4 elements per lane");
4036
4037   unsigned Shift = (NumLaneElts == 4) ? 1 : 0;
4038   unsigned Mask = 0;
4039   for (unsigned i = 0; i != NumElts; ++i) {
4040     int Elt = N->getMaskElt(i);
4041     if (Elt < 0) continue;
4042     Elt &= NumLaneElts - 1;
4043     unsigned ShAmt = (i << Shift) % 8;
4044     Mask |= Elt << ShAmt;
4045   }
4046
4047   return Mask;
4048 }
4049
4050 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4051 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4052 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
4053   EVT VT = N->getValueType(0);
4054
4055   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4056          "Unsupported vector type for PSHUFHW");
4057
4058   unsigned NumElts = VT.getVectorNumElements();
4059
4060   unsigned Mask = 0;
4061   for (unsigned l = 0; l != NumElts; l += 8) {
4062     // 8 nodes per lane, but we only care about the last 4.
4063     for (unsigned i = 0; i < 4; ++i) {
4064       int Elt = N->getMaskElt(l+i+4);
4065       if (Elt < 0) continue;
4066       Elt &= 0x3; // only 2-bits.
4067       Mask |= Elt << (i * 2);
4068     }
4069   }
4070
4071   return Mask;
4072 }
4073
4074 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4075 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4076 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
4077   EVT VT = N->getValueType(0);
4078
4079   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4080          "Unsupported vector type for PSHUFHW");
4081
4082   unsigned NumElts = VT.getVectorNumElements();
4083
4084   unsigned Mask = 0;
4085   for (unsigned l = 0; l != NumElts; l += 8) {
4086     // 8 nodes per lane, but we only care about the first 4.
4087     for (unsigned i = 0; i < 4; ++i) {
4088       int Elt = N->getMaskElt(l+i);
4089       if (Elt < 0) continue;
4090       Elt &= 0x3; // only 2-bits
4091       Mask |= Elt << (i * 2);
4092     }
4093   }
4094
4095   return Mask;
4096 }
4097
4098 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4099 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4100 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4101   EVT VT = SVOp->getValueType(0);
4102   unsigned EltSize = VT.getVectorElementType().getSizeInBits() >> 3;
4103
4104   unsigned NumElts = VT.getVectorNumElements();
4105   unsigned NumLanes = VT.getSizeInBits()/128;
4106   unsigned NumLaneElts = NumElts/NumLanes;
4107
4108   int Val = 0;
4109   unsigned i;
4110   for (i = 0; i != NumElts; ++i) {
4111     Val = SVOp->getMaskElt(i);
4112     if (Val >= 0)
4113       break;
4114   }
4115   if (Val >= (int)NumElts)
4116     Val -= NumElts - NumLaneElts;
4117
4118   assert(Val - i > 0 && "PALIGNR imm should be positive");
4119   return (Val - i) * EltSize;
4120 }
4121
4122 /// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4123 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4124 /// instructions.
4125 unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4126   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4127     llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4128
4129   uint64_t Index =
4130     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4131
4132   EVT VecVT = N->getOperand(0).getValueType();
4133   EVT ElVT = VecVT.getVectorElementType();
4134
4135   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
4136   return Index / NumElemsPerChunk;
4137 }
4138
4139 /// getInsertVINSERTF128Immediate - Return the appropriate immediate
4140 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4141 /// instructions.
4142 unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4143   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4144     llvm_unreachable("Illegal insert subvector for VINSERTF128");
4145
4146   uint64_t Index =
4147     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4148
4149   EVT VecVT = N->getValueType(0);
4150   EVT ElVT = VecVT.getVectorElementType();
4151
4152   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
4153   return Index / NumElemsPerChunk;
4154 }
4155
4156 /// getShuffleCLImmediate - Return the appropriate immediate to shuffle
4157 /// the specified VECTOR_SHUFFLE mask with VPERMQ and VPERMPD instructions.
4158 /// Handles 256-bit.
4159 static unsigned getShuffleCLImmediate(ShuffleVectorSDNode *N) {
4160   EVT VT = N->getValueType(0);
4161
4162   unsigned NumElts = VT.getVectorNumElements();
4163
4164   assert((VT.is256BitVector() && NumElts == 4) &&
4165          "Unsupported vector type for VPERMQ/VPERMPD");
4166
4167   unsigned Mask = 0;
4168   for (unsigned i = 0; i != NumElts; ++i) {
4169     int Elt = N->getMaskElt(i);
4170     if (Elt < 0)
4171       continue;
4172     Mask |= Elt << (i*2);
4173   }
4174
4175   return Mask;
4176 }
4177 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4178 /// constant +0.0.
4179 bool X86::isZeroNode(SDValue Elt) {
4180   return ((isa<ConstantSDNode>(Elt) &&
4181            cast<ConstantSDNode>(Elt)->isNullValue()) ||
4182           (isa<ConstantFPSDNode>(Elt) &&
4183            cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4184 }
4185
4186 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4187 /// their permute mask.
4188 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4189                                     SelectionDAG &DAG) {
4190   EVT VT = SVOp->getValueType(0);
4191   unsigned NumElems = VT.getVectorNumElements();
4192   SmallVector<int, 8> MaskVec;
4193
4194   for (unsigned i = 0; i != NumElems; ++i) {
4195     int Idx = SVOp->getMaskElt(i);
4196     if (Idx >= 0) {
4197       if (Idx < (int)NumElems)
4198         Idx += NumElems;
4199       else
4200         Idx -= NumElems;
4201     }
4202     MaskVec.push_back(Idx);
4203   }
4204   return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4205                               SVOp->getOperand(0), &MaskVec[0]);
4206 }
4207
4208 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4209 /// match movhlps. The lower half elements should come from upper half of
4210 /// V1 (and in order), and the upper half elements should come from the upper
4211 /// half of V2 (and in order).
4212 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, EVT VT) {
4213   if (!VT.is128BitVector())
4214     return false;
4215   if (VT.getVectorNumElements() != 4)
4216     return false;
4217   for (unsigned i = 0, e = 2; i != e; ++i)
4218     if (!isUndefOrEqual(Mask[i], i+2))
4219       return false;
4220   for (unsigned i = 2; i != 4; ++i)
4221     if (!isUndefOrEqual(Mask[i], i+4))
4222       return false;
4223   return true;
4224 }
4225
4226 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4227 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4228 /// required.
4229 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4230   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4231     return false;
4232   N = N->getOperand(0).getNode();
4233   if (!ISD::isNON_EXTLoad(N))
4234     return false;
4235   if (LD)
4236     *LD = cast<LoadSDNode>(N);
4237   return true;
4238 }
4239
4240 // Test whether the given value is a vector value which will be legalized
4241 // into a load.
4242 static bool WillBeConstantPoolLoad(SDNode *N) {
4243   if (N->getOpcode() != ISD::BUILD_VECTOR)
4244     return false;
4245
4246   // Check for any non-constant elements.
4247   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4248     switch (N->getOperand(i).getNode()->getOpcode()) {
4249     case ISD::UNDEF:
4250     case ISD::ConstantFP:
4251     case ISD::Constant:
4252       break;
4253     default:
4254       return false;
4255     }
4256
4257   // Vectors of all-zeros and all-ones are materialized with special
4258   // instructions rather than being loaded.
4259   return !ISD::isBuildVectorAllZeros(N) &&
4260          !ISD::isBuildVectorAllOnes(N);
4261 }
4262
4263 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4264 /// match movlp{s|d}. The lower half elements should come from lower half of
4265 /// V1 (and in order), and the upper half elements should come from the upper
4266 /// half of V2 (and in order). And since V1 will become the source of the
4267 /// MOVLP, it must be either a vector load or a scalar load to vector.
4268 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4269                                ArrayRef<int> Mask, EVT VT) {
4270   if (!VT.is128BitVector())
4271     return false;
4272
4273   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4274     return false;
4275   // Is V2 is a vector load, don't do this transformation. We will try to use
4276   // load folding shufps op.
4277   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4278     return false;
4279
4280   unsigned NumElems = VT.getVectorNumElements();
4281
4282   if (NumElems != 2 && NumElems != 4)
4283     return false;
4284   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4285     if (!isUndefOrEqual(Mask[i], i))
4286       return false;
4287   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4288     if (!isUndefOrEqual(Mask[i], i+NumElems))
4289       return false;
4290   return true;
4291 }
4292
4293 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4294 /// all the same.
4295 static bool isSplatVector(SDNode *N) {
4296   if (N->getOpcode() != ISD::BUILD_VECTOR)
4297     return false;
4298
4299   SDValue SplatValue = N->getOperand(0);
4300   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4301     if (N->getOperand(i) != SplatValue)
4302       return false;
4303   return true;
4304 }
4305
4306 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4307 /// to an zero vector.
4308 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4309 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4310   SDValue V1 = N->getOperand(0);
4311   SDValue V2 = N->getOperand(1);
4312   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4313   for (unsigned i = 0; i != NumElems; ++i) {
4314     int Idx = N->getMaskElt(i);
4315     if (Idx >= (int)NumElems) {
4316       unsigned Opc = V2.getOpcode();
4317       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4318         continue;
4319       if (Opc != ISD::BUILD_VECTOR ||
4320           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4321         return false;
4322     } else if (Idx >= 0) {
4323       unsigned Opc = V1.getOpcode();
4324       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4325         continue;
4326       if (Opc != ISD::BUILD_VECTOR ||
4327           !X86::isZeroNode(V1.getOperand(Idx)))
4328         return false;
4329     }
4330   }
4331   return true;
4332 }
4333
4334 /// getZeroVector - Returns a vector of specified type with all zero elements.
4335 ///
4336 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4337                              SelectionDAG &DAG, DebugLoc dl) {
4338   assert(VT.isVector() && "Expected a vector type");
4339   unsigned Size = VT.getSizeInBits();
4340
4341   // Always build SSE zero vectors as <4 x i32> bitcasted
4342   // to their dest type. This ensures they get CSE'd.
4343   SDValue Vec;
4344   if (Size == 128) {  // SSE
4345     if (Subtarget->hasSSE2()) {  // SSE2
4346       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4347       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4348     } else { // SSE1
4349       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4350       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4351     }
4352   } else if (Size == 256) { // AVX
4353     if (Subtarget->hasInt256()) { // AVX2
4354       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4355       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4356       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4357     } else {
4358       // 256-bit logic and arithmetic instructions in AVX are all
4359       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4360       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4361       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4362       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
4363     }
4364   } else
4365     llvm_unreachable("Unexpected vector type");
4366
4367   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4368 }
4369
4370 /// getOnesVector - Returns a vector of specified type with all bits set.
4371 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4372 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4373 /// Then bitcast to their original type, ensuring they get CSE'd.
4374 static SDValue getOnesVector(EVT VT, bool HasInt256, SelectionDAG &DAG,
4375                              DebugLoc dl) {
4376   assert(VT.isVector() && "Expected a vector type");
4377   unsigned Size = VT.getSizeInBits();
4378
4379   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4380   SDValue Vec;
4381   if (Size == 256) {
4382     if (HasInt256) { // AVX2
4383       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4384       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4385     } else { // AVX
4386       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4387       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4388     }
4389   } else if (Size == 128) {
4390     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4391   } else
4392     llvm_unreachable("Unexpected vector type");
4393
4394   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4395 }
4396
4397 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4398 /// that point to V2 points to its first element.
4399 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4400   for (unsigned i = 0; i != NumElems; ++i) {
4401     if (Mask[i] > (int)NumElems) {
4402       Mask[i] = NumElems;
4403     }
4404   }
4405 }
4406
4407 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4408 /// operation of specified width.
4409 static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4410                        SDValue V2) {
4411   unsigned NumElems = VT.getVectorNumElements();
4412   SmallVector<int, 8> Mask;
4413   Mask.push_back(NumElems);
4414   for (unsigned i = 1; i != NumElems; ++i)
4415     Mask.push_back(i);
4416   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4417 }
4418
4419 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4420 static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4421                           SDValue V2) {
4422   unsigned NumElems = VT.getVectorNumElements();
4423   SmallVector<int, 8> Mask;
4424   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4425     Mask.push_back(i);
4426     Mask.push_back(i + NumElems);
4427   }
4428   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4429 }
4430
4431 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4432 static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4433                           SDValue V2) {
4434   unsigned NumElems = VT.getVectorNumElements();
4435   SmallVector<int, 8> Mask;
4436   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4437     Mask.push_back(i + Half);
4438     Mask.push_back(i + NumElems + Half);
4439   }
4440   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4441 }
4442
4443 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4444 // a generic shuffle instruction because the target has no such instructions.
4445 // Generate shuffles which repeat i16 and i8 several times until they can be
4446 // represented by v4f32 and then be manipulated by target suported shuffles.
4447 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4448   EVT VT = V.getValueType();
4449   int NumElems = VT.getVectorNumElements();
4450   DebugLoc dl = V.getDebugLoc();
4451
4452   while (NumElems > 4) {
4453     if (EltNo < NumElems/2) {
4454       V = getUnpackl(DAG, dl, VT, V, V);
4455     } else {
4456       V = getUnpackh(DAG, dl, VT, V, V);
4457       EltNo -= NumElems/2;
4458     }
4459     NumElems >>= 1;
4460   }
4461   return V;
4462 }
4463
4464 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4465 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4466   EVT VT = V.getValueType();
4467   DebugLoc dl = V.getDebugLoc();
4468   unsigned Size = VT.getSizeInBits();
4469
4470   if (Size == 128) {
4471     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4472     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4473     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4474                              &SplatMask[0]);
4475   } else if (Size == 256) {
4476     // To use VPERMILPS to splat scalars, the second half of indicies must
4477     // refer to the higher part, which is a duplication of the lower one,
4478     // because VPERMILPS can only handle in-lane permutations.
4479     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4480                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4481
4482     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4483     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4484                              &SplatMask[0]);
4485   } else
4486     llvm_unreachable("Vector size not supported");
4487
4488   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4489 }
4490
4491 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4492 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4493   EVT SrcVT = SV->getValueType(0);
4494   SDValue V1 = SV->getOperand(0);
4495   DebugLoc dl = SV->getDebugLoc();
4496
4497   int EltNo = SV->getSplatIndex();
4498   int NumElems = SrcVT.getVectorNumElements();
4499   unsigned Size = SrcVT.getSizeInBits();
4500
4501   assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4502           "Unknown how to promote splat for type");
4503
4504   // Extract the 128-bit part containing the splat element and update
4505   // the splat element index when it refers to the higher register.
4506   if (Size == 256) {
4507     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4508     if (EltNo >= NumElems/2)
4509       EltNo -= NumElems/2;
4510   }
4511
4512   // All i16 and i8 vector types can't be used directly by a generic shuffle
4513   // instruction because the target has no such instruction. Generate shuffles
4514   // which repeat i16 and i8 several times until they fit in i32, and then can
4515   // be manipulated by target suported shuffles.
4516   EVT EltVT = SrcVT.getVectorElementType();
4517   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4518     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4519
4520   // Recreate the 256-bit vector and place the same 128-bit vector
4521   // into the low and high part. This is necessary because we want
4522   // to use VPERM* to shuffle the vectors
4523   if (Size == 256) {
4524     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4525   }
4526
4527   return getLegalSplat(DAG, V1, EltNo);
4528 }
4529
4530 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4531 /// vector of zero or undef vector.  This produces a shuffle where the low
4532 /// element of V2 is swizzled into the zero/undef vector, landing at element
4533 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4534 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4535                                            bool IsZero,
4536                                            const X86Subtarget *Subtarget,
4537                                            SelectionDAG &DAG) {
4538   EVT VT = V2.getValueType();
4539   SDValue V1 = IsZero
4540     ? getZeroVector(VT, Subtarget, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4541   unsigned NumElems = VT.getVectorNumElements();
4542   SmallVector<int, 16> MaskVec;
4543   for (unsigned i = 0; i != NumElems; ++i)
4544     // If this is the insertion idx, put the low elt of V2 here.
4545     MaskVec.push_back(i == Idx ? NumElems : i);
4546   return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
4547 }
4548
4549 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4550 /// target specific opcode. Returns true if the Mask could be calculated.
4551 /// Sets IsUnary to true if only uses one source.
4552 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4553                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4554   unsigned NumElems = VT.getVectorNumElements();
4555   SDValue ImmN;
4556
4557   IsUnary = false;
4558   switch(N->getOpcode()) {
4559   case X86ISD::SHUFP:
4560     ImmN = N->getOperand(N->getNumOperands()-1);
4561     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4562     break;
4563   case X86ISD::UNPCKH:
4564     DecodeUNPCKHMask(VT, Mask);
4565     break;
4566   case X86ISD::UNPCKL:
4567     DecodeUNPCKLMask(VT, Mask);
4568     break;
4569   case X86ISD::MOVHLPS:
4570     DecodeMOVHLPSMask(NumElems, Mask);
4571     break;
4572   case X86ISD::MOVLHPS:
4573     DecodeMOVLHPSMask(NumElems, Mask);
4574     break;
4575   case X86ISD::PSHUFD:
4576   case X86ISD::VPERMILP:
4577     ImmN = N->getOperand(N->getNumOperands()-1);
4578     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4579     IsUnary = true;
4580     break;
4581   case X86ISD::PSHUFHW:
4582     ImmN = N->getOperand(N->getNumOperands()-1);
4583     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4584     IsUnary = true;
4585     break;
4586   case X86ISD::PSHUFLW:
4587     ImmN = N->getOperand(N->getNumOperands()-1);
4588     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4589     IsUnary = true;
4590     break;
4591   case X86ISD::VPERMI:
4592     ImmN = N->getOperand(N->getNumOperands()-1);
4593     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4594     IsUnary = true;
4595     break;
4596   case X86ISD::MOVSS:
4597   case X86ISD::MOVSD: {
4598     // The index 0 always comes from the first element of the second source,
4599     // this is why MOVSS and MOVSD are used in the first place. The other
4600     // elements come from the other positions of the first source vector
4601     Mask.push_back(NumElems);
4602     for (unsigned i = 1; i != NumElems; ++i) {
4603       Mask.push_back(i);
4604     }
4605     break;
4606   }
4607   case X86ISD::VPERM2X128:
4608     ImmN = N->getOperand(N->getNumOperands()-1);
4609     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4610     if (Mask.empty()) return false;
4611     break;
4612   case X86ISD::MOVDDUP:
4613   case X86ISD::MOVLHPD:
4614   case X86ISD::MOVLPD:
4615   case X86ISD::MOVLPS:
4616   case X86ISD::MOVSHDUP:
4617   case X86ISD::MOVSLDUP:
4618   case X86ISD::PALIGN:
4619     // Not yet implemented
4620     return false;
4621   default: llvm_unreachable("unknown target shuffle node");
4622   }
4623
4624   return true;
4625 }
4626
4627 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4628 /// element of the result of the vector shuffle.
4629 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4630                                    unsigned Depth) {
4631   if (Depth == 6)
4632     return SDValue();  // Limit search depth.
4633
4634   SDValue V = SDValue(N, 0);
4635   EVT VT = V.getValueType();
4636   unsigned Opcode = V.getOpcode();
4637
4638   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4639   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4640     int Elt = SV->getMaskElt(Index);
4641
4642     if (Elt < 0)
4643       return DAG.getUNDEF(VT.getVectorElementType());
4644
4645     unsigned NumElems = VT.getVectorNumElements();
4646     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4647                                          : SV->getOperand(1);
4648     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
4649   }
4650
4651   // Recurse into target specific vector shuffles to find scalars.
4652   if (isTargetShuffle(Opcode)) {
4653     MVT ShufVT = V.getValueType().getSimpleVT();
4654     unsigned NumElems = ShufVT.getVectorNumElements();
4655     SmallVector<int, 16> ShuffleMask;
4656     bool IsUnary;
4657
4658     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
4659       return SDValue();
4660
4661     int Elt = ShuffleMask[Index];
4662     if (Elt < 0)
4663       return DAG.getUNDEF(ShufVT.getVectorElementType());
4664
4665     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
4666                                          : N->getOperand(1);
4667     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
4668                                Depth+1);
4669   }
4670
4671   // Actual nodes that may contain scalar elements
4672   if (Opcode == ISD::BITCAST) {
4673     V = V.getOperand(0);
4674     EVT SrcVT = V.getValueType();
4675     unsigned NumElems = VT.getVectorNumElements();
4676
4677     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4678       return SDValue();
4679   }
4680
4681   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4682     return (Index == 0) ? V.getOperand(0)
4683                         : DAG.getUNDEF(VT.getVectorElementType());
4684
4685   if (V.getOpcode() == ISD::BUILD_VECTOR)
4686     return V.getOperand(Index);
4687
4688   return SDValue();
4689 }
4690
4691 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
4692 /// shuffle operation which come from a consecutively from a zero. The
4693 /// search can start in two different directions, from left or right.
4694 static
4695 unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp, unsigned NumElems,
4696                                   bool ZerosFromLeft, SelectionDAG &DAG) {
4697   unsigned i;
4698   for (i = 0; i != NumElems; ++i) {
4699     unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
4700     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
4701     if (!(Elt.getNode() &&
4702          (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4703       break;
4704   }
4705
4706   return i;
4707 }
4708
4709 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
4710 /// correspond consecutively to elements from one of the vector operands,
4711 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
4712 static
4713 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
4714                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
4715                               unsigned NumElems, unsigned &OpNum) {
4716   bool SeenV1 = false;
4717   bool SeenV2 = false;
4718
4719   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
4720     int Idx = SVOp->getMaskElt(i);
4721     // Ignore undef indicies
4722     if (Idx < 0)
4723       continue;
4724
4725     if (Idx < (int)NumElems)
4726       SeenV1 = true;
4727     else
4728       SeenV2 = true;
4729
4730     // Only accept consecutive elements from the same vector
4731     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4732       return false;
4733   }
4734
4735   OpNum = SeenV1 ? 0 : 1;
4736   return true;
4737 }
4738
4739 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4740 /// logical left shift of a vector.
4741 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4742                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4743   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4744   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4745               false /* check zeros from right */, DAG);
4746   unsigned OpSrc;
4747
4748   if (!NumZeros)
4749     return false;
4750
4751   // Considering the elements in the mask that are not consecutive zeros,
4752   // check if they consecutively come from only one of the source vectors.
4753   //
4754   //               V1 = {X, A, B, C}     0
4755   //                         \  \  \    /
4756   //   vector_shuffle V1, V2 <1, 2, 3, X>
4757   //
4758   if (!isShuffleMaskConsecutive(SVOp,
4759             0,                   // Mask Start Index
4760             NumElems-NumZeros,   // Mask End Index(exclusive)
4761             NumZeros,            // Where to start looking in the src vector
4762             NumElems,            // Number of elements in vector
4763             OpSrc))              // Which source operand ?
4764     return false;
4765
4766   isLeft = false;
4767   ShAmt = NumZeros;
4768   ShVal = SVOp->getOperand(OpSrc);
4769   return true;
4770 }
4771
4772 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4773 /// logical left shift of a vector.
4774 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4775                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4776   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4777   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4778               true /* check zeros from left */, DAG);
4779   unsigned OpSrc;
4780
4781   if (!NumZeros)
4782     return false;
4783
4784   // Considering the elements in the mask that are not consecutive zeros,
4785   // check if they consecutively come from only one of the source vectors.
4786   //
4787   //                           0    { A, B, X, X } = V2
4788   //                          / \    /  /
4789   //   vector_shuffle V1, V2 <X, X, 4, 5>
4790   //
4791   if (!isShuffleMaskConsecutive(SVOp,
4792             NumZeros,     // Mask Start Index
4793             NumElems,     // Mask End Index(exclusive)
4794             0,            // Where to start looking in the src vector
4795             NumElems,     // Number of elements in vector
4796             OpSrc))       // Which source operand ?
4797     return false;
4798
4799   isLeft = true;
4800   ShAmt = NumZeros;
4801   ShVal = SVOp->getOperand(OpSrc);
4802   return true;
4803 }
4804
4805 /// isVectorShift - Returns true if the shuffle can be implemented as a
4806 /// logical left or right shift of a vector.
4807 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4808                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4809   // Although the logic below support any bitwidth size, there are no
4810   // shift instructions which handle more than 128-bit vectors.
4811   if (!SVOp->getValueType(0).is128BitVector())
4812     return false;
4813
4814   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4815       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4816     return true;
4817
4818   return false;
4819 }
4820
4821 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4822 ///
4823 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
4824                                        unsigned NumNonZero, unsigned NumZero,
4825                                        SelectionDAG &DAG,
4826                                        const X86Subtarget* Subtarget,
4827                                        const TargetLowering &TLI) {
4828   if (NumNonZero > 8)
4829     return SDValue();
4830
4831   DebugLoc dl = Op.getDebugLoc();
4832   SDValue V(0, 0);
4833   bool First = true;
4834   for (unsigned i = 0; i < 16; ++i) {
4835     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4836     if (ThisIsNonZero && First) {
4837       if (NumZero)
4838         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4839       else
4840         V = DAG.getUNDEF(MVT::v8i16);
4841       First = false;
4842     }
4843
4844     if ((i & 1) != 0) {
4845       SDValue ThisElt(0, 0), LastElt(0, 0);
4846       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4847       if (LastIsNonZero) {
4848         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
4849                               MVT::i16, Op.getOperand(i-1));
4850       }
4851       if (ThisIsNonZero) {
4852         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4853         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4854                               ThisElt, DAG.getConstant(8, MVT::i8));
4855         if (LastIsNonZero)
4856           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
4857       } else
4858         ThisElt = LastElt;
4859
4860       if (ThisElt.getNode())
4861         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
4862                         DAG.getIntPtrConstant(i/2));
4863     }
4864   }
4865
4866   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
4867 }
4868
4869 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
4870 ///
4871 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
4872                                      unsigned NumNonZero, unsigned NumZero,
4873                                      SelectionDAG &DAG,
4874                                      const X86Subtarget* Subtarget,
4875                                      const TargetLowering &TLI) {
4876   if (NumNonZero > 4)
4877     return SDValue();
4878
4879   DebugLoc dl = Op.getDebugLoc();
4880   SDValue V(0, 0);
4881   bool First = true;
4882   for (unsigned i = 0; i < 8; ++i) {
4883     bool isNonZero = (NonZeros & (1 << i)) != 0;
4884     if (isNonZero) {
4885       if (First) {
4886         if (NumZero)
4887           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4888         else
4889           V = DAG.getUNDEF(MVT::v8i16);
4890         First = false;
4891       }
4892       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4893                       MVT::v8i16, V, Op.getOperand(i),
4894                       DAG.getIntPtrConstant(i));
4895     }
4896   }
4897
4898   return V;
4899 }
4900
4901 /// getVShift - Return a vector logical shift node.
4902 ///
4903 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
4904                          unsigned NumBits, SelectionDAG &DAG,
4905                          const TargetLowering &TLI, DebugLoc dl) {
4906   assert(VT.is128BitVector() && "Unknown type for VShift");
4907   EVT ShVT = MVT::v2i64;
4908   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
4909   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4910   return DAG.getNode(ISD::BITCAST, dl, VT,
4911                      DAG.getNode(Opc, dl, ShVT, SrcOp,
4912                              DAG.getConstant(NumBits,
4913                                   TLI.getShiftAmountTy(SrcOp.getValueType()))));
4914 }
4915
4916 SDValue
4917 X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
4918                                           SelectionDAG &DAG) const {
4919
4920   // Check if the scalar load can be widened into a vector load. And if
4921   // the address is "base + cst" see if the cst can be "absorbed" into
4922   // the shuffle mask.
4923   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4924     SDValue Ptr = LD->getBasePtr();
4925     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4926       return SDValue();
4927     EVT PVT = LD->getValueType(0);
4928     if (PVT != MVT::i32 && PVT != MVT::f32)
4929       return SDValue();
4930
4931     int FI = -1;
4932     int64_t Offset = 0;
4933     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4934       FI = FINode->getIndex();
4935       Offset = 0;
4936     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
4937                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4938       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4939       Offset = Ptr.getConstantOperandVal(1);
4940       Ptr = Ptr.getOperand(0);
4941     } else {
4942       return SDValue();
4943     }
4944
4945     // FIXME: 256-bit vector instructions don't require a strict alignment,
4946     // improve this code to support it better.
4947     unsigned RequiredAlign = VT.getSizeInBits()/8;
4948     SDValue Chain = LD->getChain();
4949     // Make sure the stack object alignment is at least 16 or 32.
4950     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4951     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
4952       if (MFI->isFixedObjectIndex(FI)) {
4953         // Can't change the alignment. FIXME: It's possible to compute
4954         // the exact stack offset and reference FI + adjust offset instead.
4955         // If someone *really* cares about this. That's the way to implement it.
4956         return SDValue();
4957       } else {
4958         MFI->setObjectAlignment(FI, RequiredAlign);
4959       }
4960     }
4961
4962     // (Offset % 16 or 32) must be multiple of 4. Then address is then
4963     // Ptr + (Offset & ~15).
4964     if (Offset < 0)
4965       return SDValue();
4966     if ((Offset % RequiredAlign) & 3)
4967       return SDValue();
4968     int64_t StartOffset = Offset & ~(RequiredAlign-1);
4969     if (StartOffset)
4970       Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4971                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4972
4973     int EltNo = (Offset - StartOffset) >> 2;
4974     unsigned NumElems = VT.getVectorNumElements();
4975
4976     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4977     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
4978                              LD->getPointerInfo().getWithOffset(StartOffset),
4979                              false, false, false, 0);
4980
4981     SmallVector<int, 8> Mask;
4982     for (unsigned i = 0; i != NumElems; ++i)
4983       Mask.push_back(EltNo);
4984
4985     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
4986   }
4987
4988   return SDValue();
4989 }
4990
4991 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4992 /// vector of type 'VT', see if the elements can be replaced by a single large
4993 /// load which has the same value as a build_vector whose operands are 'elts'.
4994 ///
4995 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
4996 ///
4997 /// FIXME: we'd also like to handle the case where the last elements are zero
4998 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4999 /// There's even a handy isZeroNode for that purpose.
5000 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5001                                         DebugLoc &DL, SelectionDAG &DAG) {
5002   EVT EltVT = VT.getVectorElementType();
5003   unsigned NumElems = Elts.size();
5004
5005   LoadSDNode *LDBase = NULL;
5006   unsigned LastLoadedElt = -1U;
5007
5008   // For each element in the initializer, see if we've found a load or an undef.
5009   // If we don't find an initial load element, or later load elements are
5010   // non-consecutive, bail out.
5011   for (unsigned i = 0; i < NumElems; ++i) {
5012     SDValue Elt = Elts[i];
5013
5014     if (!Elt.getNode() ||
5015         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5016       return SDValue();
5017     if (!LDBase) {
5018       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5019         return SDValue();
5020       LDBase = cast<LoadSDNode>(Elt.getNode());
5021       LastLoadedElt = i;
5022       continue;
5023     }
5024     if (Elt.getOpcode() == ISD::UNDEF)
5025       continue;
5026
5027     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5028     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5029       return SDValue();
5030     LastLoadedElt = i;
5031   }
5032
5033   // If we have found an entire vector of loads and undefs, then return a large
5034   // load of the entire vector width starting at the base pointer.  If we found
5035   // consecutive loads for the low half, generate a vzext_load node.
5036   if (LastLoadedElt == NumElems - 1) {
5037     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5038       return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5039                          LDBase->getPointerInfo(),
5040                          LDBase->isVolatile(), LDBase->isNonTemporal(),
5041                          LDBase->isInvariant(), 0);
5042     return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5043                        LDBase->getPointerInfo(),
5044                        LDBase->isVolatile(), LDBase->isNonTemporal(),
5045                        LDBase->isInvariant(), LDBase->getAlignment());
5046   }
5047   if (NumElems == 4 && LastLoadedElt == 1 &&
5048       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5049     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5050     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5051     SDValue ResNode =
5052         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
5053                                 LDBase->getPointerInfo(),
5054                                 LDBase->getAlignment(),
5055                                 false/*isVolatile*/, true/*ReadMem*/,
5056                                 false/*WriteMem*/);
5057
5058     // Make sure the newly-created LOAD is in the same position as LDBase in
5059     // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5060     // update uses of LDBase's output chain to use the TokenFactor.
5061     if (LDBase->hasAnyUseOfValue(1)) {
5062       SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5063                              SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5064       DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5065       DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5066                              SDValue(ResNode.getNode(), 1));
5067     }
5068
5069     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5070   }
5071   return SDValue();
5072 }
5073
5074 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5075 /// to generate a splat value for the following cases:
5076 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
5077 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5078 /// a scalar load, or a constant.
5079 /// The VBROADCAST node is returned when a pattern is found,
5080 /// or SDValue() otherwise.
5081 SDValue
5082 X86TargetLowering::LowerVectorBroadcast(SDValue Op, SelectionDAG &DAG) const {
5083   if (!Subtarget->hasFp256())
5084     return SDValue();
5085
5086   EVT VT = Op.getValueType();
5087   DebugLoc dl = Op.getDebugLoc();
5088
5089   assert((VT.is128BitVector() || VT.is256BitVector()) &&
5090          "Unsupported vector type for broadcast.");
5091
5092   SDValue Ld;
5093   bool ConstSplatVal;
5094
5095   switch (Op.getOpcode()) {
5096     default:
5097       // Unknown pattern found.
5098       return SDValue();
5099
5100     case ISD::BUILD_VECTOR: {
5101       // The BUILD_VECTOR node must be a splat.
5102       if (!isSplatVector(Op.getNode()))
5103         return SDValue();
5104
5105       Ld = Op.getOperand(0);
5106       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5107                      Ld.getOpcode() == ISD::ConstantFP);
5108
5109       // The suspected load node has several users. Make sure that all
5110       // of its users are from the BUILD_VECTOR node.
5111       // Constants may have multiple users.
5112       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5113         return SDValue();
5114       break;
5115     }
5116
5117     case ISD::VECTOR_SHUFFLE: {
5118       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5119
5120       // Shuffles must have a splat mask where the first element is
5121       // broadcasted.
5122       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5123         return SDValue();
5124
5125       SDValue Sc = Op.getOperand(0);
5126       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5127           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5128
5129         if (!Subtarget->hasInt256())
5130           return SDValue();
5131
5132         // Use the register form of the broadcast instruction available on AVX2.
5133         if (VT.is256BitVector())
5134           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5135         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5136       }
5137
5138       Ld = Sc.getOperand(0);
5139       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5140                        Ld.getOpcode() == ISD::ConstantFP);
5141
5142       // The scalar_to_vector node and the suspected
5143       // load node must have exactly one user.
5144       // Constants may have multiple users.
5145       if (!ConstSplatVal && (!Sc.hasOneUse() || !Ld.hasOneUse()))
5146         return SDValue();
5147       break;
5148     }
5149   }
5150
5151   bool Is256 = VT.is256BitVector();
5152
5153   // Handle the broadcasting a single constant scalar from the constant pool
5154   // into a vector. On Sandybridge it is still better to load a constant vector
5155   // from the constant pool and not to broadcast it from a scalar.
5156   if (ConstSplatVal && Subtarget->hasInt256()) {
5157     EVT CVT = Ld.getValueType();
5158     assert(!CVT.isVector() && "Must not broadcast a vector type");
5159     unsigned ScalarSize = CVT.getSizeInBits();
5160
5161     if (ScalarSize == 32 || (Is256 && ScalarSize == 64)) {
5162       const Constant *C = 0;
5163       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5164         C = CI->getConstantIntValue();
5165       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5166         C = CF->getConstantFPValue();
5167
5168       assert(C && "Invalid constant type");
5169
5170       SDValue CP = DAG.getConstantPool(C, getPointerTy());
5171       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5172       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5173                        MachinePointerInfo::getConstantPool(),
5174                        false, false, false, Alignment);
5175
5176       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5177     }
5178   }
5179
5180   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5181   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5182
5183   // Handle AVX2 in-register broadcasts.
5184   if (!IsLoad && Subtarget->hasInt256() &&
5185       (ScalarSize == 32 || (Is256 && ScalarSize == 64)))
5186     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5187
5188   // The scalar source must be a normal load.
5189   if (!IsLoad)
5190     return SDValue();
5191
5192   if (ScalarSize == 32 || (Is256 && ScalarSize == 64))
5193     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5194
5195   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5196   // double since there is no vbroadcastsd xmm
5197   if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
5198     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5199       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5200   }
5201
5202   // Unsupported broadcast.
5203   return SDValue();
5204 }
5205
5206 SDValue
5207 X86TargetLowering::buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) const {
5208   EVT VT = Op.getValueType();
5209
5210   // Skip if insert_vec_elt is not supported.
5211   if (!isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
5212     return SDValue();
5213
5214   DebugLoc DL = Op.getDebugLoc();
5215   unsigned NumElems = Op.getNumOperands();
5216
5217   SDValue VecIn1;
5218   SDValue VecIn2;
5219   SmallVector<unsigned, 4> InsertIndices;
5220   SmallVector<int, 8> Mask(NumElems, -1);
5221
5222   for (unsigned i = 0; i != NumElems; ++i) {
5223     unsigned Opc = Op.getOperand(i).getOpcode();
5224
5225     if (Opc == ISD::UNDEF)
5226       continue;
5227
5228     if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5229       // Quit if more than 1 elements need inserting.
5230       if (InsertIndices.size() > 1)
5231         return SDValue();
5232
5233       InsertIndices.push_back(i);
5234       continue;
5235     }
5236
5237     SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5238     SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5239
5240     // Quit if extracted from vector of different type.
5241     if (ExtractedFromVec.getValueType() != VT)
5242       return SDValue();
5243
5244     // Quit if non-constant index.
5245     if (!isa<ConstantSDNode>(ExtIdx))
5246       return SDValue();
5247
5248     if (VecIn1.getNode() == 0)
5249       VecIn1 = ExtractedFromVec;
5250     else if (VecIn1 != ExtractedFromVec) {
5251       if (VecIn2.getNode() == 0)
5252         VecIn2 = ExtractedFromVec;
5253       else if (VecIn2 != ExtractedFromVec)
5254         // Quit if more than 2 vectors to shuffle
5255         return SDValue();
5256     }
5257
5258     unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5259
5260     if (ExtractedFromVec == VecIn1)
5261       Mask[i] = Idx;
5262     else if (ExtractedFromVec == VecIn2)
5263       Mask[i] = Idx + NumElems;
5264   }
5265
5266   if (VecIn1.getNode() == 0)
5267     return SDValue();
5268
5269   VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5270   SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5271   for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5272     unsigned Idx = InsertIndices[i];
5273     NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5274                      DAG.getIntPtrConstant(Idx));
5275   }
5276
5277   return NV;
5278 }
5279
5280 SDValue
5281 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5282   DebugLoc dl = Op.getDebugLoc();
5283
5284   EVT VT = Op.getValueType();
5285   EVT ExtVT = VT.getVectorElementType();
5286   unsigned NumElems = Op.getNumOperands();
5287
5288   // Vectors containing all zeros can be matched by pxor and xorps later
5289   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5290     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5291     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5292     if (VT == MVT::v4i32 || VT == MVT::v8i32)
5293       return Op;
5294
5295     return getZeroVector(VT, Subtarget, DAG, dl);
5296   }
5297
5298   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5299   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5300   // vpcmpeqd on 256-bit vectors.
5301   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5302     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
5303       return Op;
5304
5305     return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
5306   }
5307
5308   SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
5309   if (Broadcast.getNode())
5310     return Broadcast;
5311
5312   unsigned EVTBits = ExtVT.getSizeInBits();
5313
5314   unsigned NumZero  = 0;
5315   unsigned NumNonZero = 0;
5316   unsigned NonZeros = 0;
5317   bool IsAllConstants = true;
5318   SmallSet<SDValue, 8> Values;
5319   for (unsigned i = 0; i < NumElems; ++i) {
5320     SDValue Elt = Op.getOperand(i);
5321     if (Elt.getOpcode() == ISD::UNDEF)
5322       continue;
5323     Values.insert(Elt);
5324     if (Elt.getOpcode() != ISD::Constant &&
5325         Elt.getOpcode() != ISD::ConstantFP)
5326       IsAllConstants = false;
5327     if (X86::isZeroNode(Elt))
5328       NumZero++;
5329     else {
5330       NonZeros |= (1 << i);
5331       NumNonZero++;
5332     }
5333   }
5334
5335   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5336   if (NumNonZero == 0)
5337     return DAG.getUNDEF(VT);
5338
5339   // Special case for single non-zero, non-undef, element.
5340   if (NumNonZero == 1) {
5341     unsigned Idx = CountTrailingZeros_32(NonZeros);
5342     SDValue Item = Op.getOperand(Idx);
5343
5344     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5345     // the value are obviously zero, truncate the value to i32 and do the
5346     // insertion that way.  Only do this if the value is non-constant or if the
5347     // value is a constant being inserted into element 0.  It is cheaper to do
5348     // a constant pool load than it is to do a movd + shuffle.
5349     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5350         (!IsAllConstants || Idx == 0)) {
5351       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5352         // Handle SSE only.
5353         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5354         EVT VecVT = MVT::v4i32;
5355         unsigned VecElts = 4;
5356
5357         // Truncate the value (which may itself be a constant) to i32, and
5358         // convert it to a vector with movd (S2V+shuffle to zero extend).
5359         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5360         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5361         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5362
5363         // Now we have our 32-bit value zero extended in the low element of
5364         // a vector.  If Idx != 0, swizzle it into place.
5365         if (Idx != 0) {
5366           SmallVector<int, 4> Mask;
5367           Mask.push_back(Idx);
5368           for (unsigned i = 1; i != VecElts; ++i)
5369             Mask.push_back(i);
5370           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5371                                       &Mask[0]);
5372         }
5373         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5374       }
5375     }
5376
5377     // If we have a constant or non-constant insertion into the low element of
5378     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5379     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5380     // depending on what the source datatype is.
5381     if (Idx == 0) {
5382       if (NumZero == 0)
5383         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5384
5385       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5386           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5387         if (VT.is256BitVector()) {
5388           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5389           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5390                              Item, DAG.getIntPtrConstant(0));
5391         }
5392         assert(VT.is128BitVector() && "Expected an SSE value type!");
5393         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5394         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5395         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5396       }
5397
5398       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5399         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5400         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5401         if (VT.is256BitVector()) {
5402           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5403           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5404         } else {
5405           assert(VT.is128BitVector() && "Expected an SSE value type!");
5406           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5407         }
5408         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5409       }
5410     }
5411
5412     // Is it a vector logical left shift?
5413     if (NumElems == 2 && Idx == 1 &&
5414         X86::isZeroNode(Op.getOperand(0)) &&
5415         !X86::isZeroNode(Op.getOperand(1))) {
5416       unsigned NumBits = VT.getSizeInBits();
5417       return getVShift(true, VT,
5418                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5419                                    VT, Op.getOperand(1)),
5420                        NumBits/2, DAG, *this, dl);
5421     }
5422
5423     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5424       return SDValue();
5425
5426     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5427     // is a non-constant being inserted into an element other than the low one,
5428     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5429     // movd/movss) to move this into the low element, then shuffle it into
5430     // place.
5431     if (EVTBits == 32) {
5432       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5433
5434       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5435       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5436       SmallVector<int, 8> MaskVec;
5437       for (unsigned i = 0; i != NumElems; ++i)
5438         MaskVec.push_back(i == Idx ? 0 : 1);
5439       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5440     }
5441   }
5442
5443   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5444   if (Values.size() == 1) {
5445     if (EVTBits == 32) {
5446       // Instead of a shuffle like this:
5447       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5448       // Check if it's possible to issue this instead.
5449       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5450       unsigned Idx = CountTrailingZeros_32(NonZeros);
5451       SDValue Item = Op.getOperand(Idx);
5452       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5453         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5454     }
5455     return SDValue();
5456   }
5457
5458   // A vector full of immediates; various special cases are already
5459   // handled, so this is best done with a single constant-pool load.
5460   if (IsAllConstants)
5461     return SDValue();
5462
5463   // For AVX-length vectors, build the individual 128-bit pieces and use
5464   // shuffles to put them in place.
5465   if (VT.is256BitVector()) {
5466     SmallVector<SDValue, 32> V;
5467     for (unsigned i = 0; i != NumElems; ++i)
5468       V.push_back(Op.getOperand(i));
5469
5470     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5471
5472     // Build both the lower and upper subvector.
5473     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5474     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5475                                 NumElems/2);
5476
5477     // Recreate the wider vector with the lower and upper part.
5478     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5479   }
5480
5481   // Let legalizer expand 2-wide build_vectors.
5482   if (EVTBits == 64) {
5483     if (NumNonZero == 1) {
5484       // One half is zero or undef.
5485       unsigned Idx = CountTrailingZeros_32(NonZeros);
5486       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5487                                  Op.getOperand(Idx));
5488       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5489     }
5490     return SDValue();
5491   }
5492
5493   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5494   if (EVTBits == 8 && NumElems == 16) {
5495     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5496                                         Subtarget, *this);
5497     if (V.getNode()) return V;
5498   }
5499
5500   if (EVTBits == 16 && NumElems == 8) {
5501     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
5502                                       Subtarget, *this);
5503     if (V.getNode()) return V;
5504   }
5505
5506   // If element VT is == 32 bits, turn it into a number of shuffles.
5507   SmallVector<SDValue, 8> V(NumElems);
5508   if (NumElems == 4 && NumZero > 0) {
5509     for (unsigned i = 0; i < 4; ++i) {
5510       bool isZero = !(NonZeros & (1 << i));
5511       if (isZero)
5512         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
5513       else
5514         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5515     }
5516
5517     for (unsigned i = 0; i < 2; ++i) {
5518       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5519         default: break;
5520         case 0:
5521           V[i] = V[i*2];  // Must be a zero vector.
5522           break;
5523         case 1:
5524           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
5525           break;
5526         case 2:
5527           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
5528           break;
5529         case 3:
5530           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
5531           break;
5532       }
5533     }
5534
5535     bool Reverse1 = (NonZeros & 0x3) == 2;
5536     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5537     int MaskVec[] = {
5538       Reverse1 ? 1 : 0,
5539       Reverse1 ? 0 : 1,
5540       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
5541       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
5542     };
5543     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
5544   }
5545
5546   if (Values.size() > 1 && VT.is128BitVector()) {
5547     // Check for a build vector of consecutive loads.
5548     for (unsigned i = 0; i < NumElems; ++i)
5549       V[i] = Op.getOperand(i);
5550
5551     // Check for elements which are consecutive loads.
5552     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5553     if (LD.getNode())
5554       return LD;
5555
5556     // Check for a build vector from mostly shuffle plus few inserting.
5557     SDValue Sh = buildFromShuffleMostly(Op, DAG);
5558     if (Sh.getNode())
5559       return Sh;
5560
5561     // For SSE 4.1, use insertps to put the high elements into the low element.
5562     if (getSubtarget()->hasSSE41()) {
5563       SDValue Result;
5564       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5565         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5566       else
5567         Result = DAG.getUNDEF(VT);
5568
5569       for (unsigned i = 1; i < NumElems; ++i) {
5570         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5571         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
5572                              Op.getOperand(i), DAG.getIntPtrConstant(i));
5573       }
5574       return Result;
5575     }
5576
5577     // Otherwise, expand into a number of unpckl*, start by extending each of
5578     // our (non-undef) elements to the full vector width with the element in the
5579     // bottom slot of the vector (which generates no code for SSE).
5580     for (unsigned i = 0; i < NumElems; ++i) {
5581       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5582         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5583       else
5584         V[i] = DAG.getUNDEF(VT);
5585     }
5586
5587     // Next, we iteratively mix elements, e.g. for v4f32:
5588     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5589     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5590     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
5591     unsigned EltStride = NumElems >> 1;
5592     while (EltStride != 0) {
5593       for (unsigned i = 0; i < EltStride; ++i) {
5594         // If V[i+EltStride] is undef and this is the first round of mixing,
5595         // then it is safe to just drop this shuffle: V[i] is already in the
5596         // right place, the one element (since it's the first round) being
5597         // inserted as undef can be dropped.  This isn't safe for successive
5598         // rounds because they will permute elements within both vectors.
5599         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5600             EltStride == NumElems/2)
5601           continue;
5602
5603         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
5604       }
5605       EltStride >>= 1;
5606     }
5607     return V[0];
5608   }
5609   return SDValue();
5610 }
5611
5612 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5613 // to create 256-bit vectors from two other 128-bit ones.
5614 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5615   DebugLoc dl = Op.getDebugLoc();
5616   EVT ResVT = Op.getValueType();
5617
5618   assert(ResVT.is256BitVector() && "Value type must be 256-bit wide");
5619
5620   SDValue V1 = Op.getOperand(0);
5621   SDValue V2 = Op.getOperand(1);
5622   unsigned NumElems = ResVT.getVectorNumElements();
5623
5624   return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
5625 }
5626
5627 static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5628   assert(Op.getNumOperands() == 2);
5629
5630   // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5631   // from two other 128-bit ones.
5632   return LowerAVXCONCAT_VECTORS(Op, DAG);
5633 }
5634
5635 // Try to lower a shuffle node into a simple blend instruction.
5636 static SDValue
5637 LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
5638                            const X86Subtarget *Subtarget, SelectionDAG &DAG) {
5639   SDValue V1 = SVOp->getOperand(0);
5640   SDValue V2 = SVOp->getOperand(1);
5641   DebugLoc dl = SVOp->getDebugLoc();
5642   EVT VT = SVOp->getValueType(0);
5643   EVT EltVT = VT.getVectorElementType();
5644   unsigned NumElems = VT.getVectorNumElements();
5645
5646   if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
5647     return SDValue();
5648   if (!Subtarget->hasInt256() && VT == MVT::v16i16)
5649     return SDValue();
5650
5651   // Check the mask for BLEND and build the value.
5652   unsigned MaskValue = 0;
5653   // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
5654   unsigned NumLanes = (NumElems-1)/8 + 1; 
5655   unsigned NumElemsInLane = NumElems / NumLanes;
5656
5657   // Blend for v16i16 should be symetric for the both lanes.
5658   for (unsigned i = 0; i < NumElemsInLane; ++i) {
5659
5660     int SndLaneEltIdx = (NumLanes == 2) ? 
5661       SVOp->getMaskElt(i + NumElemsInLane) : -1;
5662     int EltIdx = SVOp->getMaskElt(i);
5663
5664     if ((EltIdx == -1 || EltIdx == (int)i) && 
5665         (SndLaneEltIdx == -1 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
5666       continue;
5667
5668     if (((unsigned)EltIdx == (i + NumElems)) && 
5669         (SndLaneEltIdx == -1 || 
5670          (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
5671       MaskValue |= (1<<i);
5672     else 
5673       return SDValue();
5674   }
5675
5676   // Convert i32 vectors to floating point if it is not AVX2.
5677   // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
5678   EVT BlendVT = VT;
5679   if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
5680     BlendVT = EVT::getVectorVT(*DAG.getContext(), 
5681                               EVT::getFloatingPointVT(EltVT.getSizeInBits()), 
5682                               NumElems);
5683     V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
5684     V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
5685   }
5686   
5687   SDValue Ret =  DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
5688                              DAG.getConstant(MaskValue, MVT::i32));
5689   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
5690 }
5691
5692 // v8i16 shuffles - Prefer shuffles in the following order:
5693 // 1. [all]   pshuflw, pshufhw, optional move
5694 // 2. [ssse3] 1 x pshufb
5695 // 3. [ssse3] 2 x pshufb + 1 x por
5696 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
5697 static SDValue
5698 LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
5699                          SelectionDAG &DAG) {
5700   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5701   SDValue V1 = SVOp->getOperand(0);
5702   SDValue V2 = SVOp->getOperand(1);
5703   DebugLoc dl = SVOp->getDebugLoc();
5704   SmallVector<int, 8> MaskVals;
5705
5706   // Determine if more than 1 of the words in each of the low and high quadwords
5707   // of the result come from the same quadword of one of the two inputs.  Undef
5708   // mask values count as coming from any quadword, for better codegen.
5709   unsigned LoQuad[] = { 0, 0, 0, 0 };
5710   unsigned HiQuad[] = { 0, 0, 0, 0 };
5711   std::bitset<4> InputQuads;
5712   for (unsigned i = 0; i < 8; ++i) {
5713     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
5714     int EltIdx = SVOp->getMaskElt(i);
5715     MaskVals.push_back(EltIdx);
5716     if (EltIdx < 0) {
5717       ++Quad[0];
5718       ++Quad[1];
5719       ++Quad[2];
5720       ++Quad[3];
5721       continue;
5722     }
5723     ++Quad[EltIdx / 4];
5724     InputQuads.set(EltIdx / 4);
5725   }
5726
5727   int BestLoQuad = -1;
5728   unsigned MaxQuad = 1;
5729   for (unsigned i = 0; i < 4; ++i) {
5730     if (LoQuad[i] > MaxQuad) {
5731       BestLoQuad = i;
5732       MaxQuad = LoQuad[i];
5733     }
5734   }
5735
5736   int BestHiQuad = -1;
5737   MaxQuad = 1;
5738   for (unsigned i = 0; i < 4; ++i) {
5739     if (HiQuad[i] > MaxQuad) {
5740       BestHiQuad = i;
5741       MaxQuad = HiQuad[i];
5742     }
5743   }
5744
5745   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
5746   // of the two input vectors, shuffle them into one input vector so only a
5747   // single pshufb instruction is necessary. If There are more than 2 input
5748   // quads, disable the next transformation since it does not help SSSE3.
5749   bool V1Used = InputQuads[0] || InputQuads[1];
5750   bool V2Used = InputQuads[2] || InputQuads[3];
5751   if (Subtarget->hasSSSE3()) {
5752     if (InputQuads.count() == 2 && V1Used && V2Used) {
5753       BestLoQuad = InputQuads[0] ? 0 : 1;
5754       BestHiQuad = InputQuads[2] ? 2 : 3;
5755     }
5756     if (InputQuads.count() > 2) {
5757       BestLoQuad = -1;
5758       BestHiQuad = -1;
5759     }
5760   }
5761
5762   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5763   // the shuffle mask.  If a quad is scored as -1, that means that it contains
5764   // words from all 4 input quadwords.
5765   SDValue NewV;
5766   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
5767     int MaskV[] = {
5768       BestLoQuad < 0 ? 0 : BestLoQuad,
5769       BestHiQuad < 0 ? 1 : BestHiQuad
5770     };
5771     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
5772                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5773                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5774     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
5775
5776     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5777     // source words for the shuffle, to aid later transformations.
5778     bool AllWordsInNewV = true;
5779     bool InOrder[2] = { true, true };
5780     for (unsigned i = 0; i != 8; ++i) {
5781       int idx = MaskVals[i];
5782       if (idx != (int)i)
5783         InOrder[i/4] = false;
5784       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
5785         continue;
5786       AllWordsInNewV = false;
5787       break;
5788     }
5789
5790     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5791     if (AllWordsInNewV) {
5792       for (int i = 0; i != 8; ++i) {
5793         int idx = MaskVals[i];
5794         if (idx < 0)
5795           continue;
5796         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
5797         if ((idx != i) && idx < 4)
5798           pshufhw = false;
5799         if ((idx != i) && idx > 3)
5800           pshuflw = false;
5801       }
5802       V1 = NewV;
5803       V2Used = false;
5804       BestLoQuad = 0;
5805       BestHiQuad = 1;
5806     }
5807
5808     // If we've eliminated the use of V2, and the new mask is a pshuflw or
5809     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
5810     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
5811       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5812       unsigned TargetMask = 0;
5813       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
5814                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
5815       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
5816       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
5817                              getShufflePSHUFLWImmediate(SVOp);
5818       V1 = NewV.getOperand(0);
5819       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
5820     }
5821   }
5822
5823   // If we have SSSE3, and all words of the result are from 1 input vector,
5824   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
5825   // is present, fall back to case 4.
5826   if (Subtarget->hasSSSE3()) {
5827     SmallVector<SDValue,16> pshufbMask;
5828
5829     // If we have elements from both input vectors, set the high bit of the
5830     // shuffle mask element to zero out elements that come from V2 in the V1
5831     // mask, and elements that come from V1 in the V2 mask, so that the two
5832     // results can be OR'd together.
5833     bool TwoInputs = V1Used && V2Used;
5834     for (unsigned i = 0; i != 8; ++i) {
5835       int EltIdx = MaskVals[i] * 2;
5836       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
5837       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
5838       pshufbMask.push_back(DAG.getConstant(Idx0,   MVT::i8));
5839       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
5840     }
5841     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
5842     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5843                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5844                                  MVT::v16i8, &pshufbMask[0], 16));
5845     if (!TwoInputs)
5846       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5847
5848     // Calculate the shuffle mask for the second input, shuffle it, and
5849     // OR it with the first shuffled input.
5850     pshufbMask.clear();
5851     for (unsigned i = 0; i != 8; ++i) {
5852       int EltIdx = MaskVals[i] * 2;
5853       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
5854       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
5855       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
5856       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
5857     }
5858     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
5859     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5860                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5861                                  MVT::v16i8, &pshufbMask[0], 16));
5862     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5863     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5864   }
5865
5866   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5867   // and update MaskVals with new element order.
5868   std::bitset<8> InOrder;
5869   if (BestLoQuad >= 0) {
5870     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
5871     for (int i = 0; i != 4; ++i) {
5872       int idx = MaskVals[i];
5873       if (idx < 0) {
5874         InOrder.set(i);
5875       } else if ((idx / 4) == BestLoQuad) {
5876         MaskV[i] = idx & 3;
5877         InOrder.set(i);
5878       }
5879     }
5880     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5881                                 &MaskV[0]);
5882
5883     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
5884       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
5885       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5886                                   NewV.getOperand(0),
5887                                   getShufflePSHUFLWImmediate(SVOp), DAG);
5888     }
5889   }
5890
5891   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5892   // and update MaskVals with the new element order.
5893   if (BestHiQuad >= 0) {
5894     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
5895     for (unsigned i = 4; i != 8; ++i) {
5896       int idx = MaskVals[i];
5897       if (idx < 0) {
5898         InOrder.set(i);
5899       } else if ((idx / 4) == BestHiQuad) {
5900         MaskV[i] = (idx & 3) + 4;
5901         InOrder.set(i);
5902       }
5903     }
5904     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5905                                 &MaskV[0]);
5906
5907     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
5908       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
5909       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5910                                   NewV.getOperand(0),
5911                                   getShufflePSHUFHWImmediate(SVOp), DAG);
5912     }
5913   }
5914
5915   // In case BestHi & BestLo were both -1, which means each quadword has a word
5916   // from each of the four input quadwords, calculate the InOrder bitvector now
5917   // before falling through to the insert/extract cleanup.
5918   if (BestLoQuad == -1 && BestHiQuad == -1) {
5919     NewV = V1;
5920     for (int i = 0; i != 8; ++i)
5921       if (MaskVals[i] < 0 || MaskVals[i] == i)
5922         InOrder.set(i);
5923   }
5924
5925   // The other elements are put in the right place using pextrw and pinsrw.
5926   for (unsigned i = 0; i != 8; ++i) {
5927     if (InOrder[i])
5928       continue;
5929     int EltIdx = MaskVals[i];
5930     if (EltIdx < 0)
5931       continue;
5932     SDValue ExtOp = (EltIdx < 8) ?
5933       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
5934                   DAG.getIntPtrConstant(EltIdx)) :
5935       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
5936                   DAG.getIntPtrConstant(EltIdx - 8));
5937     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
5938                        DAG.getIntPtrConstant(i));
5939   }
5940   return NewV;
5941 }
5942
5943 // v16i8 shuffles - Prefer shuffles in the following order:
5944 // 1. [ssse3] 1 x pshufb
5945 // 2. [ssse3] 2 x pshufb + 1 x por
5946 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
5947 static
5948 SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
5949                                  SelectionDAG &DAG,
5950                                  const X86TargetLowering &TLI) {
5951   SDValue V1 = SVOp->getOperand(0);
5952   SDValue V2 = SVOp->getOperand(1);
5953   DebugLoc dl = SVOp->getDebugLoc();
5954   ArrayRef<int> MaskVals = SVOp->getMask();
5955
5956   // If we have SSSE3, case 1 is generated when all result bytes come from
5957   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
5958   // present, fall back to case 3.
5959
5960   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5961   if (TLI.getSubtarget()->hasSSSE3()) {
5962     SmallVector<SDValue,16> pshufbMask;
5963
5964     // If all result elements are from one input vector, then only translate
5965     // undef mask values to 0x80 (zero out result) in the pshufb mask.
5966     //
5967     // Otherwise, we have elements from both input vectors, and must zero out
5968     // elements that come from V2 in the first mask, and V1 in the second mask
5969     // so that we can OR them together.
5970     for (unsigned i = 0; i != 16; ++i) {
5971       int EltIdx = MaskVals[i];
5972       if (EltIdx < 0 || EltIdx >= 16)
5973         EltIdx = 0x80;
5974       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5975     }
5976     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5977                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5978                                  MVT::v16i8, &pshufbMask[0], 16));
5979
5980     // As PSHUFB will zero elements with negative indices, it's safe to ignore
5981     // the 2nd operand if it's undefined or zero.
5982     if (V2.getOpcode() == ISD::UNDEF ||
5983         ISD::isBuildVectorAllZeros(V2.getNode()))
5984       return V1;
5985
5986     // Calculate the shuffle mask for the second input, shuffle it, and
5987     // OR it with the first shuffled input.
5988     pshufbMask.clear();
5989     for (unsigned i = 0; i != 16; ++i) {
5990       int EltIdx = MaskVals[i];
5991       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
5992       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5993     }
5994     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5995                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5996                                  MVT::v16i8, &pshufbMask[0], 16));
5997     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5998   }
5999
6000   // No SSSE3 - Calculate in place words and then fix all out of place words
6001   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
6002   // the 16 different words that comprise the two doublequadword input vectors.
6003   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6004   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
6005   SDValue NewV = V1;
6006   for (int i = 0; i != 8; ++i) {
6007     int Elt0 = MaskVals[i*2];
6008     int Elt1 = MaskVals[i*2+1];
6009
6010     // This word of the result is all undef, skip it.
6011     if (Elt0 < 0 && Elt1 < 0)
6012       continue;
6013
6014     // This word of the result is already in the correct place, skip it.
6015     if ((Elt0 == i*2) && (Elt1 == i*2+1))
6016       continue;
6017
6018     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6019     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6020     SDValue InsElt;
6021
6022     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6023     // using a single extract together, load it and store it.
6024     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6025       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6026                            DAG.getIntPtrConstant(Elt1 / 2));
6027       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6028                         DAG.getIntPtrConstant(i));
6029       continue;
6030     }
6031
6032     // If Elt1 is defined, extract it from the appropriate source.  If the
6033     // source byte is not also odd, shift the extracted word left 8 bits
6034     // otherwise clear the bottom 8 bits if we need to do an or.
6035     if (Elt1 >= 0) {
6036       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6037                            DAG.getIntPtrConstant(Elt1 / 2));
6038       if ((Elt1 & 1) == 0)
6039         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6040                              DAG.getConstant(8,
6041                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6042       else if (Elt0 >= 0)
6043         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6044                              DAG.getConstant(0xFF00, MVT::i16));
6045     }
6046     // If Elt0 is defined, extract it from the appropriate source.  If the
6047     // source byte is not also even, shift the extracted word right 8 bits. If
6048     // Elt1 was also defined, OR the extracted values together before
6049     // inserting them in the result.
6050     if (Elt0 >= 0) {
6051       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6052                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6053       if ((Elt0 & 1) != 0)
6054         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6055                               DAG.getConstant(8,
6056                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6057       else if (Elt1 >= 0)
6058         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6059                              DAG.getConstant(0x00FF, MVT::i16));
6060       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6061                          : InsElt0;
6062     }
6063     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6064                        DAG.getIntPtrConstant(i));
6065   }
6066   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6067 }
6068
6069 // v32i8 shuffles - Translate to VPSHUFB if possible.
6070 static
6071 SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
6072                                  const X86Subtarget *Subtarget,
6073                                  SelectionDAG &DAG) {
6074   EVT VT = SVOp->getValueType(0);
6075   SDValue V1 = SVOp->getOperand(0);
6076   SDValue V2 = SVOp->getOperand(1);
6077   DebugLoc dl = SVOp->getDebugLoc();
6078   SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
6079
6080   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6081   bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6082   bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
6083
6084   // VPSHUFB may be generated if
6085   // (1) one of input vector is undefined or zeroinitializer.
6086   // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6087   // And (2) the mask indexes don't cross the 128-bit lane.
6088   if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
6089       (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
6090     return SDValue();
6091
6092   if (V1IsAllZero && !V2IsAllZero) {
6093     CommuteVectorShuffleMask(MaskVals, 32);
6094     V1 = V2;
6095   }
6096   SmallVector<SDValue, 32> pshufbMask;
6097   for (unsigned i = 0; i != 32; i++) {
6098     int EltIdx = MaskVals[i];
6099     if (EltIdx < 0 || EltIdx >= 32)
6100       EltIdx = 0x80;
6101     else {
6102       if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6103         // Cross lane is not allowed.
6104         return SDValue();
6105       EltIdx &= 0xf;
6106     }
6107     pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6108   }
6109   return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6110                       DAG.getNode(ISD::BUILD_VECTOR, dl,
6111                                   MVT::v32i8, &pshufbMask[0], 32));
6112 }
6113
6114 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6115 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6116 /// done when every pair / quad of shuffle mask elements point to elements in
6117 /// the right sequence. e.g.
6118 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6119 static
6120 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6121                                  SelectionDAG &DAG, DebugLoc dl) {
6122   MVT VT = SVOp->getValueType(0).getSimpleVT();
6123   unsigned NumElems = VT.getVectorNumElements();
6124   MVT NewVT;
6125   unsigned Scale;
6126   switch (VT.SimpleTy) {
6127   default: llvm_unreachable("Unexpected!");
6128   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6129   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6130   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6131   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6132   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6133   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6134   }
6135
6136   SmallVector<int, 8> MaskVec;
6137   for (unsigned i = 0; i != NumElems; i += Scale) {
6138     int StartIdx = -1;
6139     for (unsigned j = 0; j != Scale; ++j) {
6140       int EltIdx = SVOp->getMaskElt(i+j);
6141       if (EltIdx < 0)
6142         continue;
6143       if (StartIdx < 0)
6144         StartIdx = (EltIdx / Scale);
6145       if (EltIdx != (int)(StartIdx*Scale + j))
6146         return SDValue();
6147     }
6148     MaskVec.push_back(StartIdx);
6149   }
6150
6151   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6152   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6153   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6154 }
6155
6156 /// getVZextMovL - Return a zero-extending vector move low node.
6157 ///
6158 static SDValue getVZextMovL(EVT VT, EVT OpVT,
6159                             SDValue SrcOp, SelectionDAG &DAG,
6160                             const X86Subtarget *Subtarget, DebugLoc dl) {
6161   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6162     LoadSDNode *LD = NULL;
6163     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6164       LD = dyn_cast<LoadSDNode>(SrcOp);
6165     if (!LD) {
6166       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6167       // instead.
6168       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6169       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6170           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6171           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6172           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6173         // PR2108
6174         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6175         return DAG.getNode(ISD::BITCAST, dl, VT,
6176                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6177                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6178                                                    OpVT,
6179                                                    SrcOp.getOperand(0)
6180                                                           .getOperand(0))));
6181       }
6182     }
6183   }
6184
6185   return DAG.getNode(ISD::BITCAST, dl, VT,
6186                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6187                                  DAG.getNode(ISD::BITCAST, dl,
6188                                              OpVT, SrcOp)));
6189 }
6190
6191 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6192 /// which could not be matched by any known target speficic shuffle
6193 static SDValue
6194 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6195
6196   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6197   if (NewOp.getNode())
6198     return NewOp;
6199
6200   EVT VT = SVOp->getValueType(0);
6201
6202   unsigned NumElems = VT.getVectorNumElements();
6203   unsigned NumLaneElems = NumElems / 2;
6204
6205   DebugLoc dl = SVOp->getDebugLoc();
6206   MVT EltVT = VT.getVectorElementType().getSimpleVT();
6207   EVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6208   SDValue Output[2];
6209
6210   SmallVector<int, 16> Mask;
6211   for (unsigned l = 0; l < 2; ++l) {
6212     // Build a shuffle mask for the output, discovering on the fly which
6213     // input vectors to use as shuffle operands (recorded in InputUsed).
6214     // If building a suitable shuffle vector proves too hard, then bail
6215     // out with UseBuildVector set.
6216     bool UseBuildVector = false;
6217     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6218     unsigned LaneStart = l * NumLaneElems;
6219     for (unsigned i = 0; i != NumLaneElems; ++i) {
6220       // The mask element.  This indexes into the input.
6221       int Idx = SVOp->getMaskElt(i+LaneStart);
6222       if (Idx < 0) {
6223         // the mask element does not index into any input vector.
6224         Mask.push_back(-1);
6225         continue;
6226       }
6227
6228       // The input vector this mask element indexes into.
6229       int Input = Idx / NumLaneElems;
6230
6231       // Turn the index into an offset from the start of the input vector.
6232       Idx -= Input * NumLaneElems;
6233
6234       // Find or create a shuffle vector operand to hold this input.
6235       unsigned OpNo;
6236       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6237         if (InputUsed[OpNo] == Input)
6238           // This input vector is already an operand.
6239           break;
6240         if (InputUsed[OpNo] < 0) {
6241           // Create a new operand for this input vector.
6242           InputUsed[OpNo] = Input;
6243           break;
6244         }
6245       }
6246
6247       if (OpNo >= array_lengthof(InputUsed)) {
6248         // More than two input vectors used!  Give up on trying to create a
6249         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6250         UseBuildVector = true;
6251         break;
6252       }
6253
6254       // Add the mask index for the new shuffle vector.
6255       Mask.push_back(Idx + OpNo * NumLaneElems);
6256     }
6257
6258     if (UseBuildVector) {
6259       SmallVector<SDValue, 16> SVOps;
6260       for (unsigned i = 0; i != NumLaneElems; ++i) {
6261         // The mask element.  This indexes into the input.
6262         int Idx = SVOp->getMaskElt(i+LaneStart);
6263         if (Idx < 0) {
6264           SVOps.push_back(DAG.getUNDEF(EltVT));
6265           continue;
6266         }
6267
6268         // The input vector this mask element indexes into.
6269         int Input = Idx / NumElems;
6270
6271         // Turn the index into an offset from the start of the input vector.
6272         Idx -= Input * NumElems;
6273
6274         // Extract the vector element by hand.
6275         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6276                                     SVOp->getOperand(Input),
6277                                     DAG.getIntPtrConstant(Idx)));
6278       }
6279
6280       // Construct the output using a BUILD_VECTOR.
6281       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6282                               SVOps.size());
6283     } else if (InputUsed[0] < 0) {
6284       // No input vectors were used! The result is undefined.
6285       Output[l] = DAG.getUNDEF(NVT);
6286     } else {
6287       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6288                                         (InputUsed[0] % 2) * NumLaneElems,
6289                                         DAG, dl);
6290       // If only one input was used, use an undefined vector for the other.
6291       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6292         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6293                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6294       // At least one input vector was used. Create a new shuffle vector.
6295       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6296     }
6297
6298     Mask.clear();
6299   }
6300
6301   // Concatenate the result back
6302   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6303 }
6304
6305 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6306 /// 4 elements, and match them with several different shuffle types.
6307 static SDValue
6308 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6309   SDValue V1 = SVOp->getOperand(0);
6310   SDValue V2 = SVOp->getOperand(1);
6311   DebugLoc dl = SVOp->getDebugLoc();
6312   EVT VT = SVOp->getValueType(0);
6313
6314   assert(VT.is128BitVector() && "Unsupported vector size");
6315
6316   std::pair<int, int> Locs[4];
6317   int Mask1[] = { -1, -1, -1, -1 };
6318   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6319
6320   unsigned NumHi = 0;
6321   unsigned NumLo = 0;
6322   for (unsigned i = 0; i != 4; ++i) {
6323     int Idx = PermMask[i];
6324     if (Idx < 0) {
6325       Locs[i] = std::make_pair(-1, -1);
6326     } else {
6327       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6328       if (Idx < 4) {
6329         Locs[i] = std::make_pair(0, NumLo);
6330         Mask1[NumLo] = Idx;
6331         NumLo++;
6332       } else {
6333         Locs[i] = std::make_pair(1, NumHi);
6334         if (2+NumHi < 4)
6335           Mask1[2+NumHi] = Idx;
6336         NumHi++;
6337       }
6338     }
6339   }
6340
6341   if (NumLo <= 2 && NumHi <= 2) {
6342     // If no more than two elements come from either vector. This can be
6343     // implemented with two shuffles. First shuffle gather the elements.
6344     // The second shuffle, which takes the first shuffle as both of its
6345     // vector operands, put the elements into the right order.
6346     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6347
6348     int Mask2[] = { -1, -1, -1, -1 };
6349
6350     for (unsigned i = 0; i != 4; ++i)
6351       if (Locs[i].first != -1) {
6352         unsigned Idx = (i < 2) ? 0 : 4;
6353         Idx += Locs[i].first * 2 + Locs[i].second;
6354         Mask2[i] = Idx;
6355       }
6356
6357     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6358   }
6359
6360   if (NumLo == 3 || NumHi == 3) {
6361     // Otherwise, we must have three elements from one vector, call it X, and
6362     // one element from the other, call it Y.  First, use a shufps to build an
6363     // intermediate vector with the one element from Y and the element from X
6364     // that will be in the same half in the final destination (the indexes don't
6365     // matter). Then, use a shufps to build the final vector, taking the half
6366     // containing the element from Y from the intermediate, and the other half
6367     // from X.
6368     if (NumHi == 3) {
6369       // Normalize it so the 3 elements come from V1.
6370       CommuteVectorShuffleMask(PermMask, 4);
6371       std::swap(V1, V2);
6372     }
6373
6374     // Find the element from V2.
6375     unsigned HiIndex;
6376     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6377       int Val = PermMask[HiIndex];
6378       if (Val < 0)
6379         continue;
6380       if (Val >= 4)
6381         break;
6382     }
6383
6384     Mask1[0] = PermMask[HiIndex];
6385     Mask1[1] = -1;
6386     Mask1[2] = PermMask[HiIndex^1];
6387     Mask1[3] = -1;
6388     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6389
6390     if (HiIndex >= 2) {
6391       Mask1[0] = PermMask[0];
6392       Mask1[1] = PermMask[1];
6393       Mask1[2] = HiIndex & 1 ? 6 : 4;
6394       Mask1[3] = HiIndex & 1 ? 4 : 6;
6395       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6396     }
6397
6398     Mask1[0] = HiIndex & 1 ? 2 : 0;
6399     Mask1[1] = HiIndex & 1 ? 0 : 2;
6400     Mask1[2] = PermMask[2];
6401     Mask1[3] = PermMask[3];
6402     if (Mask1[2] >= 0)
6403       Mask1[2] += 4;
6404     if (Mask1[3] >= 0)
6405       Mask1[3] += 4;
6406     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6407   }
6408
6409   // Break it into (shuffle shuffle_hi, shuffle_lo).
6410   int LoMask[] = { -1, -1, -1, -1 };
6411   int HiMask[] = { -1, -1, -1, -1 };
6412
6413   int *MaskPtr = LoMask;
6414   unsigned MaskIdx = 0;
6415   unsigned LoIdx = 0;
6416   unsigned HiIdx = 2;
6417   for (unsigned i = 0; i != 4; ++i) {
6418     if (i == 2) {
6419       MaskPtr = HiMask;
6420       MaskIdx = 1;
6421       LoIdx = 0;
6422       HiIdx = 2;
6423     }
6424     int Idx = PermMask[i];
6425     if (Idx < 0) {
6426       Locs[i] = std::make_pair(-1, -1);
6427     } else if (Idx < 4) {
6428       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6429       MaskPtr[LoIdx] = Idx;
6430       LoIdx++;
6431     } else {
6432       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6433       MaskPtr[HiIdx] = Idx;
6434       HiIdx++;
6435     }
6436   }
6437
6438   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6439   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6440   int MaskOps[] = { -1, -1, -1, -1 };
6441   for (unsigned i = 0; i != 4; ++i)
6442     if (Locs[i].first != -1)
6443       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6444   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6445 }
6446
6447 static bool MayFoldVectorLoad(SDValue V) {
6448   while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6449     V = V.getOperand(0);
6450
6451   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6452     V = V.getOperand(0);
6453   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6454       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6455     // BUILD_VECTOR (load), undef
6456     V = V.getOperand(0);
6457
6458   return MayFoldLoad(V);
6459 }
6460
6461 // FIXME: the version above should always be used. Since there's
6462 // a bug where several vector shuffles can't be folded because the
6463 // DAG is not updated during lowering and a node claims to have two
6464 // uses while it only has one, use this version, and let isel match
6465 // another instruction if the load really happens to have more than
6466 // one use. Remove this version after this bug get fixed.
6467 // rdar://8434668, PR8156
6468 static bool RelaxedMayFoldVectorLoad(SDValue V) {
6469   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6470     V = V.getOperand(0);
6471   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6472     V = V.getOperand(0);
6473   if (ISD::isNormalLoad(V.getNode()))
6474     return true;
6475   return false;
6476 }
6477
6478 static
6479 SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6480   EVT VT = Op.getValueType();
6481
6482   // Canonizalize to v2f64.
6483   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6484   return DAG.getNode(ISD::BITCAST, dl, VT,
6485                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6486                                           V1, DAG));
6487 }
6488
6489 static
6490 SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6491                         bool HasSSE2) {
6492   SDValue V1 = Op.getOperand(0);
6493   SDValue V2 = Op.getOperand(1);
6494   EVT VT = Op.getValueType();
6495
6496   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6497
6498   if (HasSSE2 && VT == MVT::v2f64)
6499     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6500
6501   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6502   return DAG.getNode(ISD::BITCAST, dl, VT,
6503                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6504                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6505                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
6506 }
6507
6508 static
6509 SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6510   SDValue V1 = Op.getOperand(0);
6511   SDValue V2 = Op.getOperand(1);
6512   EVT VT = Op.getValueType();
6513
6514   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6515          "unsupported shuffle type");
6516
6517   if (V2.getOpcode() == ISD::UNDEF)
6518     V2 = V1;
6519
6520   // v4i32 or v4f32
6521   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6522 }
6523
6524 static
6525 SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6526   SDValue V1 = Op.getOperand(0);
6527   SDValue V2 = Op.getOperand(1);
6528   EVT VT = Op.getValueType();
6529   unsigned NumElems = VT.getVectorNumElements();
6530
6531   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6532   // operand of these instructions is only memory, so check if there's a
6533   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6534   // same masks.
6535   bool CanFoldLoad = false;
6536
6537   // Trivial case, when V2 comes from a load.
6538   if (MayFoldVectorLoad(V2))
6539     CanFoldLoad = true;
6540
6541   // When V1 is a load, it can be folded later into a store in isel, example:
6542   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6543   //    turns into:
6544   //  (MOVLPSmr addr:$src1, VR128:$src2)
6545   // So, recognize this potential and also use MOVLPS or MOVLPD
6546   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
6547     CanFoldLoad = true;
6548
6549   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6550   if (CanFoldLoad) {
6551     if (HasSSE2 && NumElems == 2)
6552       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6553
6554     if (NumElems == 4)
6555       // If we don't care about the second element, proceed to use movss.
6556       if (SVOp->getMaskElt(1) != -1)
6557         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6558   }
6559
6560   // movl and movlp will both match v2i64, but v2i64 is never matched by
6561   // movl earlier because we make it strict to avoid messing with the movlp load
6562   // folding logic (see the code above getMOVLP call). Match it here then,
6563   // this is horrible, but will stay like this until we move all shuffle
6564   // matching to x86 specific nodes. Note that for the 1st condition all
6565   // types are matched with movsd.
6566   if (HasSSE2) {
6567     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6568     // as to remove this logic from here, as much as possible
6569     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
6570       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6571     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6572   }
6573
6574   assert(VT != MVT::v4i32 && "unsupported shuffle type");
6575
6576   // Invert the operand order and use SHUFPS to match it.
6577   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
6578                               getShuffleSHUFImmediate(SVOp), DAG);
6579 }
6580
6581 // Reduce a vector shuffle to zext.
6582 SDValue
6583 X86TargetLowering::lowerVectorIntExtend(SDValue Op, SelectionDAG &DAG) const {
6584   // PMOVZX is only available from SSE41.
6585   if (!Subtarget->hasSSE41())
6586     return SDValue();
6587
6588   EVT VT = Op.getValueType();
6589
6590   // Only AVX2 support 256-bit vector integer extending.
6591   if (!Subtarget->hasInt256() && VT.is256BitVector())
6592     return SDValue();
6593
6594   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6595   DebugLoc DL = Op.getDebugLoc();
6596   SDValue V1 = Op.getOperand(0);
6597   SDValue V2 = Op.getOperand(1);
6598   unsigned NumElems = VT.getVectorNumElements();
6599
6600   // Extending is an unary operation and the element type of the source vector
6601   // won't be equal to or larger than i64.
6602   if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
6603       VT.getVectorElementType() == MVT::i64)
6604     return SDValue();
6605
6606   // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
6607   unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
6608   while ((1U << Shift) < NumElems) {
6609     if (SVOp->getMaskElt(1U << Shift) == 1)
6610       break;
6611     Shift += 1;
6612     // The maximal ratio is 8, i.e. from i8 to i64.
6613     if (Shift > 3)
6614       return SDValue();
6615   }
6616
6617   // Check the shuffle mask.
6618   unsigned Mask = (1U << Shift) - 1;
6619   for (unsigned i = 0; i != NumElems; ++i) {
6620     int EltIdx = SVOp->getMaskElt(i);
6621     if ((i & Mask) != 0 && EltIdx != -1)
6622       return SDValue();
6623     if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
6624       return SDValue();
6625   }
6626
6627   unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
6628   EVT NeVT = EVT::getIntegerVT(*DAG.getContext(), NBits);
6629   EVT NVT = EVT::getVectorVT(*DAG.getContext(), NeVT, NumElems >> Shift);
6630
6631   if (!isTypeLegal(NVT))
6632     return SDValue();
6633
6634   // Simplify the operand as it's prepared to be fed into shuffle.
6635   unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
6636   if (V1.getOpcode() == ISD::BITCAST &&
6637       V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
6638       V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
6639       V1.getOperand(0)
6640         .getOperand(0).getValueType().getSizeInBits() == SignificantBits) {
6641     // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
6642     SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
6643     ConstantSDNode *CIdx =
6644       dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
6645     // If it's foldable, i.e. normal load with single use, we will let code
6646     // selection to fold it. Otherwise, we will short the conversion sequence.
6647     if (CIdx && CIdx->getZExtValue() == 0 &&
6648         (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse()))
6649       V1 = DAG.getNode(ISD::BITCAST, DL, V1.getValueType(), V);
6650   }
6651
6652   return DAG.getNode(ISD::BITCAST, DL, VT,
6653                      DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
6654 }
6655
6656 SDValue
6657 X86TargetLowering::NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG) const {
6658   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6659   EVT VT = Op.getValueType();
6660   DebugLoc dl = Op.getDebugLoc();
6661   SDValue V1 = Op.getOperand(0);
6662   SDValue V2 = Op.getOperand(1);
6663
6664   if (isZeroShuffle(SVOp))
6665     return getZeroVector(VT, Subtarget, DAG, dl);
6666
6667   // Handle splat operations
6668   if (SVOp->isSplat()) {
6669     unsigned NumElem = VT.getVectorNumElements();
6670     int Size = VT.getSizeInBits();
6671
6672     // Use vbroadcast whenever the splat comes from a foldable load
6673     SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
6674     if (Broadcast.getNode())
6675       return Broadcast;
6676
6677     // Handle splats by matching through known shuffle masks
6678     if ((Size == 128 && NumElem <= 4) ||
6679         (Size == 256 && NumElem <= 8))
6680       return SDValue();
6681
6682     // All remaning splats are promoted to target supported vector shuffles.
6683     return PromoteSplat(SVOp, DAG);
6684   }
6685
6686   // Check integer expanding shuffles.
6687   SDValue NewOp = lowerVectorIntExtend(Op, DAG);
6688   if (NewOp.getNode())
6689     return NewOp;
6690
6691   // If the shuffle can be profitably rewritten as a narrower shuffle, then
6692   // do it!
6693   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
6694       VT == MVT::v16i16 || VT == MVT::v32i8) {
6695     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6696     if (NewOp.getNode())
6697       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
6698   } else if ((VT == MVT::v4i32 ||
6699              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6700     // FIXME: Figure out a cleaner way to do this.
6701     // Try to make use of movq to zero out the top part.
6702     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6703       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6704       if (NewOp.getNode()) {
6705         EVT NewVT = NewOp.getValueType();
6706         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
6707                                NewVT, true, false))
6708           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
6709                               DAG, Subtarget, dl);
6710       }
6711     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6712       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6713       if (NewOp.getNode()) {
6714         EVT NewVT = NewOp.getValueType();
6715         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
6716           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
6717                               DAG, Subtarget, dl);
6718       }
6719     }
6720   }
6721   return SDValue();
6722 }
6723
6724 SDValue
6725 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
6726   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6727   SDValue V1 = Op.getOperand(0);
6728   SDValue V2 = Op.getOperand(1);
6729   EVT VT = Op.getValueType();
6730   DebugLoc dl = Op.getDebugLoc();
6731   unsigned NumElems = VT.getVectorNumElements();
6732   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6733   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6734   bool V1IsSplat = false;
6735   bool V2IsSplat = false;
6736   bool HasSSE2 = Subtarget->hasSSE2();
6737   bool HasFp256    = Subtarget->hasFp256();
6738   bool HasInt256   = Subtarget->hasInt256();
6739   MachineFunction &MF = DAG.getMachineFunction();
6740   bool OptForSize = MF.getFunction()->getFnAttributes().
6741     hasAttribute(Attributes::OptimizeForSize);
6742
6743   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
6744
6745   if (V1IsUndef && V2IsUndef)
6746     return DAG.getUNDEF(VT);
6747
6748   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
6749
6750   // Vector shuffle lowering takes 3 steps:
6751   //
6752   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6753   //    narrowing and commutation of operands should be handled.
6754   // 2) Matching of shuffles with known shuffle masks to x86 target specific
6755   //    shuffle nodes.
6756   // 3) Rewriting of unmatched masks into new generic shuffle operations,
6757   //    so the shuffle can be broken into other shuffles and the legalizer can
6758   //    try the lowering again.
6759   //
6760   // The general idea is that no vector_shuffle operation should be left to
6761   // be matched during isel, all of them must be converted to a target specific
6762   // node here.
6763
6764   // Normalize the input vectors. Here splats, zeroed vectors, profitable
6765   // narrowing and commutation of operands should be handled. The actual code
6766   // doesn't include all of those, work in progress...
6767   SDValue NewOp = NormalizeVectorShuffle(Op, DAG);
6768   if (NewOp.getNode())
6769     return NewOp;
6770
6771   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
6772
6773   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6774   // unpckh_undef). Only use pshufd if speed is more important than size.
6775   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
6776     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
6777   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
6778     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
6779
6780   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
6781       V2IsUndef && RelaxedMayFoldVectorLoad(V1))
6782     return getMOVDDup(Op, dl, V1, DAG);
6783
6784   if (isMOVHLPS_v_undef_Mask(M, VT))
6785     return getMOVHighToLow(Op, dl, DAG);
6786
6787   // Use to match splats
6788   if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
6789       (VT == MVT::v2f64 || VT == MVT::v2i64))
6790     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
6791
6792   if (isPSHUFDMask(M, VT)) {
6793     // The actual implementation will match the mask in the if above and then
6794     // during isel it can match several different instructions, not only pshufd
6795     // as its name says, sad but true, emulate the behavior for now...
6796     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6797       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6798
6799     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
6800
6801     if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
6802       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask, DAG);
6803
6804     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
6805       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6806
6807     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
6808                                 TargetMask, DAG);
6809   }
6810
6811   // Check if this can be converted into a logical shift.
6812   bool isLeft = false;
6813   unsigned ShAmt = 0;
6814   SDValue ShVal;
6815   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
6816   if (isShift && ShVal.hasOneUse()) {
6817     // If the shifted value has multiple uses, it may be cheaper to use
6818     // v_set0 + movlhps or movhlps, etc.
6819     EVT EltVT = VT.getVectorElementType();
6820     ShAmt *= EltVT.getSizeInBits();
6821     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6822   }
6823
6824   if (isMOVLMask(M, VT)) {
6825     if (ISD::isBuildVectorAllZeros(V1.getNode()))
6826       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
6827     if (!isMOVLPMask(M, VT)) {
6828       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
6829         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6830
6831       if (VT == MVT::v4i32 || VT == MVT::v4f32)
6832         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6833     }
6834   }
6835
6836   // FIXME: fold these into legal mask.
6837   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
6838     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
6839
6840   if (isMOVHLPSMask(M, VT))
6841     return getMOVHighToLow(Op, dl, DAG);
6842
6843   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
6844     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
6845
6846   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
6847     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
6848
6849   if (isMOVLPMask(M, VT))
6850     return getMOVLP(Op, dl, DAG, HasSSE2);
6851
6852   if (ShouldXformToMOVHLPS(M, VT) ||
6853       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
6854     return CommuteVectorShuffle(SVOp, DAG);
6855
6856   if (isShift) {
6857     // No better options. Use a vshldq / vsrldq.
6858     EVT EltVT = VT.getVectorElementType();
6859     ShAmt *= EltVT.getSizeInBits();
6860     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6861   }
6862
6863   bool Commuted = false;
6864   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
6865   // 1,1,1,1 -> v8i16 though.
6866   V1IsSplat = isSplatVector(V1.getNode());
6867   V2IsSplat = isSplatVector(V2.getNode());
6868
6869   // Canonicalize the splat or undef, if present, to be on the RHS.
6870   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
6871     CommuteVectorShuffleMask(M, NumElems);
6872     std::swap(V1, V2);
6873     std::swap(V1IsSplat, V2IsSplat);
6874     Commuted = true;
6875   }
6876
6877   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
6878     // Shuffling low element of v1 into undef, just return v1.
6879     if (V2IsUndef)
6880       return V1;
6881     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6882     // the instruction selector will not match, so get a canonical MOVL with
6883     // swapped operands to undo the commute.
6884     return getMOVL(DAG, dl, VT, V2, V1);
6885   }
6886
6887   if (isUNPCKLMask(M, VT, HasInt256))
6888     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
6889
6890   if (isUNPCKHMask(M, VT, HasInt256))
6891     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
6892
6893   if (V2IsSplat) {
6894     // Normalize mask so all entries that point to V2 points to its first
6895     // element then try to match unpck{h|l} again. If match, return a
6896     // new vector_shuffle with the corrected mask.p
6897     SmallVector<int, 8> NewMask(M.begin(), M.end());
6898     NormalizeMask(NewMask, NumElems);
6899     if (isUNPCKLMask(NewMask, VT, HasInt256, true))
6900       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
6901     if (isUNPCKHMask(NewMask, VT, HasInt256, true))
6902       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
6903   }
6904
6905   if (Commuted) {
6906     // Commute is back and try unpck* again.
6907     // FIXME: this seems wrong.
6908     CommuteVectorShuffleMask(M, NumElems);
6909     std::swap(V1, V2);
6910     std::swap(V1IsSplat, V2IsSplat);
6911     Commuted = false;
6912
6913     if (isUNPCKLMask(M, VT, HasInt256))
6914       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
6915
6916     if (isUNPCKHMask(M, VT, HasInt256))
6917       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
6918   }
6919
6920   // Normalize the node to match x86 shuffle ops if needed
6921   if (!V2IsUndef && (isSHUFPMask(M, VT, HasFp256, /* Commuted */ true)))
6922     return CommuteVectorShuffle(SVOp, DAG);
6923
6924   // The checks below are all present in isShuffleMaskLegal, but they are
6925   // inlined here right now to enable us to directly emit target specific
6926   // nodes, and remove one by one until they don't return Op anymore.
6927
6928   if (isPALIGNRMask(M, VT, Subtarget))
6929     return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6930                                 getShufflePALIGNRImmediate(SVOp),
6931                                 DAG);
6932
6933   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6934       SVOp->getSplatIndex() == 0 && V2IsUndef) {
6935     if (VT == MVT::v2f64 || VT == MVT::v2i64)
6936       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
6937   }
6938
6939   if (isPSHUFHWMask(M, VT, HasInt256))
6940     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6941                                 getShufflePSHUFHWImmediate(SVOp),
6942                                 DAG);
6943
6944   if (isPSHUFLWMask(M, VT, HasInt256))
6945     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6946                                 getShufflePSHUFLWImmediate(SVOp),
6947                                 DAG);
6948
6949   if (isSHUFPMask(M, VT, HasFp256))
6950     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
6951                                 getShuffleSHUFImmediate(SVOp), DAG);
6952
6953   if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
6954     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
6955   if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
6956     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
6957
6958   //===--------------------------------------------------------------------===//
6959   // Generate target specific nodes for 128 or 256-bit shuffles only
6960   // supported in the AVX instruction set.
6961   //
6962
6963   // Handle VMOVDDUPY permutations
6964   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
6965     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6966
6967   // Handle VPERMILPS/D* permutations
6968   if (isVPERMILPMask(M, VT, HasFp256)) {
6969     if (HasInt256 && VT == MVT::v8i32)
6970       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
6971                                   getShuffleSHUFImmediate(SVOp), DAG);
6972     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
6973                                 getShuffleSHUFImmediate(SVOp), DAG);
6974   }
6975
6976   // Handle VPERM2F128/VPERM2I128 permutations
6977   if (isVPERM2X128Mask(M, VT, HasFp256))
6978     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
6979                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
6980
6981   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
6982   if (BlendOp.getNode())
6983     return BlendOp;
6984
6985   if (V2IsUndef && HasInt256 && (VT == MVT::v8i32 || VT == MVT::v8f32)) {
6986     SmallVector<SDValue, 8> permclMask;
6987     for (unsigned i = 0; i != 8; ++i) {
6988       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MVT::i32));
6989     }
6990     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32,
6991                                &permclMask[0], 8);
6992     // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
6993     return DAG.getNode(X86ISD::VPERMV, dl, VT,
6994                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
6995   }
6996
6997   if (V2IsUndef && HasInt256 && (VT == MVT::v4i64 || VT == MVT::v4f64))
6998     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1,
6999                                 getShuffleCLImmediate(SVOp), DAG);
7000
7001
7002   //===--------------------------------------------------------------------===//
7003   // Since no target specific shuffle was selected for this generic one,
7004   // lower it into other known shuffles. FIXME: this isn't true yet, but
7005   // this is the plan.
7006   //
7007
7008   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7009   if (VT == MVT::v8i16) {
7010     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
7011     if (NewOp.getNode())
7012       return NewOp;
7013   }
7014
7015   if (VT == MVT::v16i8) {
7016     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
7017     if (NewOp.getNode())
7018       return NewOp;
7019   }
7020
7021   if (VT == MVT::v32i8) {
7022     SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
7023     if (NewOp.getNode())
7024       return NewOp;
7025   }
7026
7027   // Handle all 128-bit wide vectors with 4 elements, and match them with
7028   // several different shuffle types.
7029   if (NumElems == 4 && VT.is128BitVector())
7030     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7031
7032   // Handle general 256-bit shuffles
7033   if (VT.is256BitVector())
7034     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7035
7036   return SDValue();
7037 }
7038
7039 SDValue
7040 X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
7041                                                 SelectionDAG &DAG) const {
7042   EVT VT = Op.getValueType();
7043   DebugLoc dl = Op.getDebugLoc();
7044
7045   if (!Op.getOperand(0).getValueType().is128BitVector())
7046     return SDValue();
7047
7048   if (VT.getSizeInBits() == 8) {
7049     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7050                                   Op.getOperand(0), Op.getOperand(1));
7051     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7052                                   DAG.getValueType(VT));
7053     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7054   }
7055
7056   if (VT.getSizeInBits() == 16) {
7057     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7058     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7059     if (Idx == 0)
7060       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7061                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7062                                      DAG.getNode(ISD::BITCAST, dl,
7063                                                  MVT::v4i32,
7064                                                  Op.getOperand(0)),
7065                                      Op.getOperand(1)));
7066     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7067                                   Op.getOperand(0), Op.getOperand(1));
7068     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7069                                   DAG.getValueType(VT));
7070     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7071   }
7072
7073   if (VT == MVT::f32) {
7074     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7075     // the result back to FR32 register. It's only worth matching if the
7076     // result has a single use which is a store or a bitcast to i32.  And in
7077     // the case of a store, it's not worth it if the index is a constant 0,
7078     // because a MOVSSmr can be used instead, which is smaller and faster.
7079     if (!Op.hasOneUse())
7080       return SDValue();
7081     SDNode *User = *Op.getNode()->use_begin();
7082     if ((User->getOpcode() != ISD::STORE ||
7083          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7084           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7085         (User->getOpcode() != ISD::BITCAST ||
7086          User->getValueType(0) != MVT::i32))
7087       return SDValue();
7088     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7089                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7090                                               Op.getOperand(0)),
7091                                               Op.getOperand(1));
7092     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7093   }
7094
7095   if (VT == MVT::i32 || VT == MVT::i64) {
7096     // ExtractPS/pextrq works with constant index.
7097     if (isa<ConstantSDNode>(Op.getOperand(1)))
7098       return Op;
7099   }
7100   return SDValue();
7101 }
7102
7103
7104 SDValue
7105 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7106                                            SelectionDAG &DAG) const {
7107   if (!isa<ConstantSDNode>(Op.getOperand(1)))
7108     return SDValue();
7109
7110   SDValue Vec = Op.getOperand(0);
7111   EVT VecVT = Vec.getValueType();
7112
7113   // If this is a 256-bit vector result, first extract the 128-bit vector and
7114   // then extract the element from the 128-bit vector.
7115   if (VecVT.is256BitVector()) {
7116     DebugLoc dl = Op.getNode()->getDebugLoc();
7117     unsigned NumElems = VecVT.getVectorNumElements();
7118     SDValue Idx = Op.getOperand(1);
7119     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7120
7121     // Get the 128-bit vector.
7122     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
7123
7124     if (IdxVal >= NumElems/2)
7125       IdxVal -= NumElems/2;
7126     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7127                        DAG.getConstant(IdxVal, MVT::i32));
7128   }
7129
7130   assert(VecVT.is128BitVector() && "Unexpected vector length");
7131
7132   if (Subtarget->hasSSE41()) {
7133     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7134     if (Res.getNode())
7135       return Res;
7136   }
7137
7138   EVT VT = Op.getValueType();
7139   DebugLoc dl = Op.getDebugLoc();
7140   // TODO: handle v16i8.
7141   if (VT.getSizeInBits() == 16) {
7142     SDValue Vec = Op.getOperand(0);
7143     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7144     if (Idx == 0)
7145       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7146                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7147                                      DAG.getNode(ISD::BITCAST, dl,
7148                                                  MVT::v4i32, Vec),
7149                                      Op.getOperand(1)));
7150     // Transform it so it match pextrw which produces a 32-bit result.
7151     EVT EltVT = MVT::i32;
7152     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7153                                   Op.getOperand(0), Op.getOperand(1));
7154     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7155                                   DAG.getValueType(VT));
7156     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7157   }
7158
7159   if (VT.getSizeInBits() == 32) {
7160     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7161     if (Idx == 0)
7162       return Op;
7163
7164     // SHUFPS the element to the lowest double word, then movss.
7165     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7166     EVT VVT = Op.getOperand(0).getValueType();
7167     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7168                                        DAG.getUNDEF(VVT), Mask);
7169     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7170                        DAG.getIntPtrConstant(0));
7171   }
7172
7173   if (VT.getSizeInBits() == 64) {
7174     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7175     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7176     //        to match extract_elt for f64.
7177     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7178     if (Idx == 0)
7179       return Op;
7180
7181     // UNPCKHPD the element to the lowest double word, then movsd.
7182     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7183     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7184     int Mask[2] = { 1, -1 };
7185     EVT VVT = Op.getOperand(0).getValueType();
7186     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7187                                        DAG.getUNDEF(VVT), Mask);
7188     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7189                        DAG.getIntPtrConstant(0));
7190   }
7191
7192   return SDValue();
7193 }
7194
7195 SDValue
7196 X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
7197                                                SelectionDAG &DAG) const {
7198   EVT VT = Op.getValueType();
7199   EVT EltVT = VT.getVectorElementType();
7200   DebugLoc dl = Op.getDebugLoc();
7201
7202   SDValue N0 = Op.getOperand(0);
7203   SDValue N1 = Op.getOperand(1);
7204   SDValue N2 = Op.getOperand(2);
7205
7206   if (!VT.is128BitVector())
7207     return SDValue();
7208
7209   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7210       isa<ConstantSDNode>(N2)) {
7211     unsigned Opc;
7212     if (VT == MVT::v8i16)
7213       Opc = X86ISD::PINSRW;
7214     else if (VT == MVT::v16i8)
7215       Opc = X86ISD::PINSRB;
7216     else
7217       Opc = X86ISD::PINSRB;
7218
7219     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7220     // argument.
7221     if (N1.getValueType() != MVT::i32)
7222       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7223     if (N2.getValueType() != MVT::i32)
7224       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7225     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7226   }
7227
7228   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7229     // Bits [7:6] of the constant are the source select.  This will always be
7230     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7231     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7232     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7233     // Bits [5:4] of the constant are the destination select.  This is the
7234     //  value of the incoming immediate.
7235     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7236     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7237     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7238     // Create this as a scalar to vector..
7239     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7240     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7241   }
7242
7243   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7244     // PINSR* works with constant index.
7245     return Op;
7246   }
7247   return SDValue();
7248 }
7249
7250 SDValue
7251 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7252   EVT VT = Op.getValueType();
7253   EVT EltVT = VT.getVectorElementType();
7254
7255   DebugLoc dl = Op.getDebugLoc();
7256   SDValue N0 = Op.getOperand(0);
7257   SDValue N1 = Op.getOperand(1);
7258   SDValue N2 = Op.getOperand(2);
7259
7260   // If this is a 256-bit vector result, first extract the 128-bit vector,
7261   // insert the element into the extracted half and then place it back.
7262   if (VT.is256BitVector()) {
7263     if (!isa<ConstantSDNode>(N2))
7264       return SDValue();
7265
7266     // Get the desired 128-bit vector half.
7267     unsigned NumElems = VT.getVectorNumElements();
7268     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7269     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7270
7271     // Insert the element into the desired half.
7272     bool Upper = IdxVal >= NumElems/2;
7273     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7274                  DAG.getConstant(Upper ? IdxVal-NumElems/2 : IdxVal, MVT::i32));
7275
7276     // Insert the changed part back to the 256-bit vector
7277     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7278   }
7279
7280   if (Subtarget->hasSSE41())
7281     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7282
7283   if (EltVT == MVT::i8)
7284     return SDValue();
7285
7286   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7287     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7288     // as its second argument.
7289     if (N1.getValueType() != MVT::i32)
7290       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7291     if (N2.getValueType() != MVT::i32)
7292       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7293     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7294   }
7295   return SDValue();
7296 }
7297
7298 static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
7299   LLVMContext *Context = DAG.getContext();
7300   DebugLoc dl = Op.getDebugLoc();
7301   EVT OpVT = Op.getValueType();
7302
7303   // If this is a 256-bit vector result, first insert into a 128-bit
7304   // vector and then insert into the 256-bit vector.
7305   if (!OpVT.is128BitVector()) {
7306     // Insert into a 128-bit vector.
7307     EVT VT128 = EVT::getVectorVT(*Context,
7308                                  OpVT.getVectorElementType(),
7309                                  OpVT.getVectorNumElements() / 2);
7310
7311     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7312
7313     // Insert the 128-bit vector.
7314     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7315   }
7316
7317   if (OpVT == MVT::v1i64 &&
7318       Op.getOperand(0).getValueType() == MVT::i64)
7319     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7320
7321   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7322   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7323   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7324                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7325 }
7326
7327 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7328 // a simple subregister reference or explicit instructions to grab
7329 // upper bits of a vector.
7330 static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7331                                       SelectionDAG &DAG) {
7332   if (Subtarget->hasFp256()) {
7333     DebugLoc dl = Op.getNode()->getDebugLoc();
7334     SDValue Vec = Op.getNode()->getOperand(0);
7335     SDValue Idx = Op.getNode()->getOperand(1);
7336
7337     if (Op.getNode()->getValueType(0).is128BitVector() &&
7338         Vec.getNode()->getValueType(0).is256BitVector() &&
7339         isa<ConstantSDNode>(Idx)) {
7340       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7341       return Extract128BitVector(Vec, IdxVal, DAG, dl);
7342     }
7343   }
7344   return SDValue();
7345 }
7346
7347 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7348 // simple superregister reference or explicit instructions to insert
7349 // the upper bits of a vector.
7350 static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7351                                      SelectionDAG &DAG) {
7352   if (Subtarget->hasFp256()) {
7353     DebugLoc dl = Op.getNode()->getDebugLoc();
7354     SDValue Vec = Op.getNode()->getOperand(0);
7355     SDValue SubVec = Op.getNode()->getOperand(1);
7356     SDValue Idx = Op.getNode()->getOperand(2);
7357
7358     if (Op.getNode()->getValueType(0).is256BitVector() &&
7359         SubVec.getNode()->getValueType(0).is128BitVector() &&
7360         isa<ConstantSDNode>(Idx)) {
7361       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7362       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7363     }
7364   }
7365   return SDValue();
7366 }
7367
7368 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7369 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7370 // one of the above mentioned nodes. It has to be wrapped because otherwise
7371 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7372 // be used to form addressing mode. These wrapped nodes will be selected
7373 // into MOV32ri.
7374 SDValue
7375 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7376   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7377
7378   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7379   // global base reg.
7380   unsigned char OpFlag = 0;
7381   unsigned WrapperKind = X86ISD::Wrapper;
7382   CodeModel::Model M = getTargetMachine().getCodeModel();
7383
7384   if (Subtarget->isPICStyleRIPRel() &&
7385       (M == CodeModel::Small || M == CodeModel::Kernel))
7386     WrapperKind = X86ISD::WrapperRIP;
7387   else if (Subtarget->isPICStyleGOT())
7388     OpFlag = X86II::MO_GOTOFF;
7389   else if (Subtarget->isPICStyleStubPIC())
7390     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7391
7392   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7393                                              CP->getAlignment(),
7394                                              CP->getOffset(), OpFlag);
7395   DebugLoc DL = CP->getDebugLoc();
7396   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7397   // With PIC, the address is actually $g + Offset.
7398   if (OpFlag) {
7399     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7400                          DAG.getNode(X86ISD::GlobalBaseReg,
7401                                      DebugLoc(), getPointerTy()),
7402                          Result);
7403   }
7404
7405   return Result;
7406 }
7407
7408 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7409   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7410
7411   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7412   // global base reg.
7413   unsigned char OpFlag = 0;
7414   unsigned WrapperKind = X86ISD::Wrapper;
7415   CodeModel::Model M = getTargetMachine().getCodeModel();
7416
7417   if (Subtarget->isPICStyleRIPRel() &&
7418       (M == CodeModel::Small || M == CodeModel::Kernel))
7419     WrapperKind = X86ISD::WrapperRIP;
7420   else if (Subtarget->isPICStyleGOT())
7421     OpFlag = X86II::MO_GOTOFF;
7422   else if (Subtarget->isPICStyleStubPIC())
7423     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7424
7425   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7426                                           OpFlag);
7427   DebugLoc DL = JT->getDebugLoc();
7428   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7429
7430   // With PIC, the address is actually $g + Offset.
7431   if (OpFlag)
7432     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7433                          DAG.getNode(X86ISD::GlobalBaseReg,
7434                                      DebugLoc(), getPointerTy()),
7435                          Result);
7436
7437   return Result;
7438 }
7439
7440 SDValue
7441 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7442   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7443
7444   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7445   // global base reg.
7446   unsigned char OpFlag = 0;
7447   unsigned WrapperKind = X86ISD::Wrapper;
7448   CodeModel::Model M = getTargetMachine().getCodeModel();
7449
7450   if (Subtarget->isPICStyleRIPRel() &&
7451       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7452     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7453       OpFlag = X86II::MO_GOTPCREL;
7454     WrapperKind = X86ISD::WrapperRIP;
7455   } else if (Subtarget->isPICStyleGOT()) {
7456     OpFlag = X86II::MO_GOT;
7457   } else if (Subtarget->isPICStyleStubPIC()) {
7458     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7459   } else if (Subtarget->isPICStyleStubNoDynamic()) {
7460     OpFlag = X86II::MO_DARWIN_NONLAZY;
7461   }
7462
7463   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
7464
7465   DebugLoc DL = Op.getDebugLoc();
7466   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7467
7468
7469   // With PIC, the address is actually $g + Offset.
7470   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
7471       !Subtarget->is64Bit()) {
7472     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7473                          DAG.getNode(X86ISD::GlobalBaseReg,
7474                                      DebugLoc(), getPointerTy()),
7475                          Result);
7476   }
7477
7478   // For symbols that require a load from a stub to get the address, emit the
7479   // load.
7480   if (isGlobalStubReference(OpFlag))
7481     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7482                          MachinePointerInfo::getGOT(), false, false, false, 0);
7483
7484   return Result;
7485 }
7486
7487 SDValue
7488 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
7489   // Create the TargetBlockAddressAddress node.
7490   unsigned char OpFlags =
7491     Subtarget->ClassifyBlockAddressReference();
7492   CodeModel::Model M = getTargetMachine().getCodeModel();
7493   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
7494   int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
7495   DebugLoc dl = Op.getDebugLoc();
7496   SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
7497                                              OpFlags);
7498
7499   if (Subtarget->isPICStyleRIPRel() &&
7500       (M == CodeModel::Small || M == CodeModel::Kernel))
7501     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7502   else
7503     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
7504
7505   // With PIC, the address is actually $g + Offset.
7506   if (isGlobalRelativeToPICBase(OpFlags)) {
7507     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7508                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7509                          Result);
7510   }
7511
7512   return Result;
7513 }
7514
7515 SDValue
7516 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
7517                                       int64_t Offset,
7518                                       SelectionDAG &DAG) const {
7519   // Create the TargetGlobalAddress node, folding in the constant
7520   // offset if it is legal.
7521   unsigned char OpFlags =
7522     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
7523   CodeModel::Model M = getTargetMachine().getCodeModel();
7524   SDValue Result;
7525   if (OpFlags == X86II::MO_NO_FLAG &&
7526       X86::isOffsetSuitableForCodeModel(Offset, M)) {
7527     // A direct static reference to a global.
7528     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
7529     Offset = 0;
7530   } else {
7531     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
7532   }
7533
7534   if (Subtarget->isPICStyleRIPRel() &&
7535       (M == CodeModel::Small || M == CodeModel::Kernel))
7536     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7537   else
7538     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
7539
7540   // With PIC, the address is actually $g + Offset.
7541   if (isGlobalRelativeToPICBase(OpFlags)) {
7542     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7543                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7544                          Result);
7545   }
7546
7547   // For globals that require a load from a stub to get the address, emit the
7548   // load.
7549   if (isGlobalStubReference(OpFlags))
7550     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
7551                          MachinePointerInfo::getGOT(), false, false, false, 0);
7552
7553   // If there was a non-zero offset that we didn't fold, create an explicit
7554   // addition for it.
7555   if (Offset != 0)
7556     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
7557                          DAG.getConstant(Offset, getPointerTy()));
7558
7559   return Result;
7560 }
7561
7562 SDValue
7563 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
7564   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
7565   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
7566   return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
7567 }
7568
7569 static SDValue
7570 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
7571            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
7572            unsigned char OperandFlags, bool LocalDynamic = false) {
7573   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7574   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7575   DebugLoc dl = GA->getDebugLoc();
7576   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7577                                            GA->getValueType(0),
7578                                            GA->getOffset(),
7579                                            OperandFlags);
7580
7581   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
7582                                            : X86ISD::TLSADDR;
7583
7584   if (InFlag) {
7585     SDValue Ops[] = { Chain,  TGA, *InFlag };
7586     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, 3);
7587   } else {
7588     SDValue Ops[]  = { Chain, TGA };
7589     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, 2);
7590   }
7591
7592   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
7593   MFI->setAdjustsStack(true);
7594
7595   SDValue Flag = Chain.getValue(1);
7596   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
7597 }
7598
7599 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
7600 static SDValue
7601 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7602                                 const EVT PtrVT) {
7603   SDValue InFlag;
7604   DebugLoc dl = GA->getDebugLoc();  // ? function entry point might be better
7605   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
7606                                    DAG.getNode(X86ISD::GlobalBaseReg,
7607                                                DebugLoc(), PtrVT), InFlag);
7608   InFlag = Chain.getValue(1);
7609
7610   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
7611 }
7612
7613 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
7614 static SDValue
7615 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7616                                 const EVT PtrVT) {
7617   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7618                     X86::RAX, X86II::MO_TLSGD);
7619 }
7620
7621 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
7622                                            SelectionDAG &DAG,
7623                                            const EVT PtrVT,
7624                                            bool is64Bit) {
7625   DebugLoc dl = GA->getDebugLoc();
7626
7627   // Get the start address of the TLS block for this module.
7628   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
7629       .getInfo<X86MachineFunctionInfo>();
7630   MFI->incNumLocalDynamicTLSAccesses();
7631
7632   SDValue Base;
7633   if (is64Bit) {
7634     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
7635                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
7636   } else {
7637     SDValue InFlag;
7638     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
7639         DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), PtrVT), InFlag);
7640     InFlag = Chain.getValue(1);
7641     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
7642                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
7643   }
7644
7645   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
7646   // of Base.
7647
7648   // Build x@dtpoff.
7649   unsigned char OperandFlags = X86II::MO_DTPOFF;
7650   unsigned WrapperKind = X86ISD::Wrapper;
7651   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7652                                            GA->getValueType(0),
7653                                            GA->getOffset(), OperandFlags);
7654   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
7655
7656   // Add x@dtpoff with the base.
7657   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
7658 }
7659
7660 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
7661 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7662                                    const EVT PtrVT, TLSModel::Model model,
7663                                    bool is64Bit, bool isPIC) {
7664   DebugLoc dl = GA->getDebugLoc();
7665
7666   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7667   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7668                                                          is64Bit ? 257 : 256));
7669
7670   SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
7671                                       DAG.getIntPtrConstant(0),
7672                                       MachinePointerInfo(Ptr),
7673                                       false, false, false, 0);
7674
7675   unsigned char OperandFlags = 0;
7676   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
7677   // initialexec.
7678   unsigned WrapperKind = X86ISD::Wrapper;
7679   if (model == TLSModel::LocalExec) {
7680     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
7681   } else if (model == TLSModel::InitialExec) {
7682     if (is64Bit) {
7683       OperandFlags = X86II::MO_GOTTPOFF;
7684       WrapperKind = X86ISD::WrapperRIP;
7685     } else {
7686       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
7687     }
7688   } else {
7689     llvm_unreachable("Unexpected model");
7690   }
7691
7692   // emit "addl x@ntpoff,%eax" (local exec)
7693   // or "addl x@indntpoff,%eax" (initial exec)
7694   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
7695   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7696                                            GA->getValueType(0),
7697                                            GA->getOffset(), OperandFlags);
7698   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
7699
7700   if (model == TLSModel::InitialExec) {
7701     if (isPIC && !is64Bit) {
7702       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
7703                           DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), PtrVT),
7704                            Offset);
7705     }
7706
7707     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
7708                          MachinePointerInfo::getGOT(), false, false, false,
7709                          0);
7710   }
7711
7712   // The address of the thread local variable is the add of the thread
7713   // pointer with the offset of the variable.
7714   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
7715 }
7716
7717 SDValue
7718 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
7719
7720   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
7721   const GlobalValue *GV = GA->getGlobal();
7722
7723   if (Subtarget->isTargetELF()) {
7724     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
7725
7726     switch (model) {
7727       case TLSModel::GeneralDynamic:
7728         if (Subtarget->is64Bit())
7729           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7730         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
7731       case TLSModel::LocalDynamic:
7732         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
7733                                            Subtarget->is64Bit());
7734       case TLSModel::InitialExec:
7735       case TLSModel::LocalExec:
7736         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7737                                    Subtarget->is64Bit(),
7738                          getTargetMachine().getRelocationModel() == Reloc::PIC_);
7739     }
7740     llvm_unreachable("Unknown TLS model.");
7741   }
7742
7743   if (Subtarget->isTargetDarwin()) {
7744     // Darwin only has one model of TLS.  Lower to that.
7745     unsigned char OpFlag = 0;
7746     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7747                            X86ISD::WrapperRIP : X86ISD::Wrapper;
7748
7749     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7750     // global base reg.
7751     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7752                   !Subtarget->is64Bit();
7753     if (PIC32)
7754       OpFlag = X86II::MO_TLVP_PIC_BASE;
7755     else
7756       OpFlag = X86II::MO_TLVP;
7757     DebugLoc DL = Op.getDebugLoc();
7758     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
7759                                                 GA->getValueType(0),
7760                                                 GA->getOffset(), OpFlag);
7761     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7762
7763     // With PIC32, the address is actually $g + Offset.
7764     if (PIC32)
7765       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7766                            DAG.getNode(X86ISD::GlobalBaseReg,
7767                                        DebugLoc(), getPointerTy()),
7768                            Offset);
7769
7770     // Lowering the machine isd will make sure everything is in the right
7771     // location.
7772     SDValue Chain = DAG.getEntryNode();
7773     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7774     SDValue Args[] = { Chain, Offset };
7775     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
7776
7777     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7778     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7779     MFI->setAdjustsStack(true);
7780
7781     // And our return value (tls address) is in the standard call return value
7782     // location.
7783     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7784     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
7785                               Chain.getValue(1));
7786   }
7787
7788   if (Subtarget->isTargetWindows()) {
7789     // Just use the implicit TLS architecture
7790     // Need to generate someting similar to:
7791     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
7792     //                                  ; from TEB
7793     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
7794     //   mov     rcx, qword [rdx+rcx*8]
7795     //   mov     eax, .tls$:tlsvar
7796     //   [rax+rcx] contains the address
7797     // Windows 64bit: gs:0x58
7798     // Windows 32bit: fs:__tls_array
7799
7800     // If GV is an alias then use the aliasee for determining
7801     // thread-localness.
7802     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7803       GV = GA->resolveAliasedGlobal(false);
7804     DebugLoc dl = GA->getDebugLoc();
7805     SDValue Chain = DAG.getEntryNode();
7806
7807     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
7808     // %gs:0x58 (64-bit).
7809     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
7810                                         ? Type::getInt8PtrTy(*DAG.getContext(),
7811                                                              256)
7812                                         : Type::getInt32PtrTy(*DAG.getContext(),
7813                                                               257));
7814
7815     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain,
7816                                         Subtarget->is64Bit()
7817                                         ? DAG.getIntPtrConstant(0x58)
7818                                         : DAG.getExternalSymbol("_tls_array",
7819                                                                 getPointerTy()),
7820                                         MachinePointerInfo(Ptr),
7821                                         false, false, false, 0);
7822
7823     // Load the _tls_index variable
7824     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
7825     if (Subtarget->is64Bit())
7826       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
7827                            IDX, MachinePointerInfo(), MVT::i32,
7828                            false, false, 0);
7829     else
7830       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
7831                         false, false, false, 0);
7832
7833     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
7834                                     getPointerTy());
7835     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
7836
7837     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
7838     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
7839                       false, false, false, 0);
7840
7841     // Get the offset of start of .tls section
7842     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7843                                              GA->getValueType(0),
7844                                              GA->getOffset(), X86II::MO_SECREL);
7845     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
7846
7847     // The address of the thread local variable is the add of the thread
7848     // pointer with the offset of the variable.
7849     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
7850   }
7851
7852   llvm_unreachable("TLS not implemented for this target.");
7853 }
7854
7855
7856 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
7857 /// and take a 2 x i32 value to shift plus a shift amount.
7858 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
7859   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
7860   EVT VT = Op.getValueType();
7861   unsigned VTBits = VT.getSizeInBits();
7862   DebugLoc dl = Op.getDebugLoc();
7863   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
7864   SDValue ShOpLo = Op.getOperand(0);
7865   SDValue ShOpHi = Op.getOperand(1);
7866   SDValue ShAmt  = Op.getOperand(2);
7867   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
7868                                      DAG.getConstant(VTBits - 1, MVT::i8))
7869                        : DAG.getConstant(0, VT);
7870
7871   SDValue Tmp2, Tmp3;
7872   if (Op.getOpcode() == ISD::SHL_PARTS) {
7873     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7874     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
7875   } else {
7876     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7877     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
7878   }
7879
7880   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7881                                 DAG.getConstant(VTBits, MVT::i8));
7882   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
7883                              AndNode, DAG.getConstant(0, MVT::i8));
7884
7885   SDValue Hi, Lo;
7886   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
7887   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7888   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
7889
7890   if (Op.getOpcode() == ISD::SHL_PARTS) {
7891     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7892     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
7893   } else {
7894     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7895     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
7896   }
7897
7898   SDValue Ops[2] = { Lo, Hi };
7899   return DAG.getMergeValues(Ops, 2, dl);
7900 }
7901
7902 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7903                                            SelectionDAG &DAG) const {
7904   EVT SrcVT = Op.getOperand(0).getValueType();
7905
7906   if (SrcVT.isVector())
7907     return SDValue();
7908
7909   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
7910          "Unknown SINT_TO_FP to lower!");
7911
7912   // These are really Legal; return the operand so the caller accepts it as
7913   // Legal.
7914   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
7915     return Op;
7916   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
7917       Subtarget->is64Bit()) {
7918     return Op;
7919   }
7920
7921   DebugLoc dl = Op.getDebugLoc();
7922   unsigned Size = SrcVT.getSizeInBits()/8;
7923   MachineFunction &MF = DAG.getMachineFunction();
7924   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
7925   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7926   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7927                                StackSlot,
7928                                MachinePointerInfo::getFixedStack(SSFI),
7929                                false, false, 0);
7930   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7931 }
7932
7933 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
7934                                      SDValue StackSlot,
7935                                      SelectionDAG &DAG) const {
7936   // Build the FILD
7937   DebugLoc DL = Op.getDebugLoc();
7938   SDVTList Tys;
7939   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
7940   if (useSSE)
7941     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
7942   else
7943     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
7944
7945   unsigned ByteSize = SrcVT.getSizeInBits()/8;
7946
7947   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7948   MachineMemOperand *MMO;
7949   if (FI) {
7950     int SSFI = FI->getIndex();
7951     MMO =
7952       DAG.getMachineFunction()
7953       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7954                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
7955   } else {
7956     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7957     StackSlot = StackSlot.getOperand(1);
7958   }
7959   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
7960   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7961                                            X86ISD::FILD, DL,
7962                                            Tys, Ops, array_lengthof(Ops),
7963                                            SrcVT, MMO);
7964
7965   if (useSSE) {
7966     Chain = Result.getValue(1);
7967     SDValue InFlag = Result.getValue(2);
7968
7969     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7970     // shouldn't be necessary except that RFP cannot be live across
7971     // multiple blocks. When stackifier is fixed, they can be uncoupled.
7972     MachineFunction &MF = DAG.getMachineFunction();
7973     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7974     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
7975     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7976     Tys = DAG.getVTList(MVT::Other);
7977     SDValue Ops[] = {
7978       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7979     };
7980     MachineMemOperand *MMO =
7981       DAG.getMachineFunction()
7982       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7983                             MachineMemOperand::MOStore, SSFISize, SSFISize);
7984
7985     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7986                                     Ops, array_lengthof(Ops),
7987                                     Op.getValueType(), MMO);
7988     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
7989                          MachinePointerInfo::getFixedStack(SSFI),
7990                          false, false, false, 0);
7991   }
7992
7993   return Result;
7994 }
7995
7996 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
7997 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7998                                                SelectionDAG &DAG) const {
7999   // This algorithm is not obvious. Here it is what we're trying to output:
8000   /*
8001      movq       %rax,  %xmm0
8002      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8003      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8004      #ifdef __SSE3__
8005        haddpd   %xmm0, %xmm0
8006      #else
8007        pshufd   $0x4e, %xmm0, %xmm1
8008        addpd    %xmm1, %xmm0
8009      #endif
8010   */
8011
8012   DebugLoc dl = Op.getDebugLoc();
8013   LLVMContext *Context = DAG.getContext();
8014
8015   // Build some magic constants.
8016   const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
8017   Constant *C0 = ConstantDataVector::get(*Context, CV0);
8018   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
8019
8020   SmallVector<Constant*,2> CV1;
8021   CV1.push_back(
8022         ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
8023   CV1.push_back(
8024         ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
8025   Constant *C1 = ConstantVector::get(CV1);
8026   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
8027
8028   // Load the 64-bit value into an XMM register.
8029   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8030                             Op.getOperand(0));
8031   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
8032                               MachinePointerInfo::getConstantPool(),
8033                               false, false, false, 16);
8034   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8035                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8036                               CLod0);
8037
8038   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
8039                               MachinePointerInfo::getConstantPool(),
8040                               false, false, false, 16);
8041   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
8042   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
8043   SDValue Result;
8044
8045   if (Subtarget->hasSSE3()) {
8046     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8047     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8048   } else {
8049     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8050     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8051                                            S2F, 0x4E, DAG);
8052     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8053                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8054                          Sub);
8055   }
8056
8057   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
8058                      DAG.getIntPtrConstant(0));
8059 }
8060
8061 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
8062 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8063                                                SelectionDAG &DAG) const {
8064   DebugLoc dl = Op.getDebugLoc();
8065   // FP constant to bias correct the final result.
8066   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
8067                                    MVT::f64);
8068
8069   // Load the 32-bit value into an XMM register.
8070   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
8071                              Op.getOperand(0));
8072
8073   // Zero out the upper parts of the register.
8074   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
8075
8076   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8077                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
8078                      DAG.getIntPtrConstant(0));
8079
8080   // Or the load with the bias.
8081   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
8082                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8083                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8084                                                    MVT::v2f64, Load)),
8085                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8086                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
8087                                                    MVT::v2f64, Bias)));
8088   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8089                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8090                    DAG.getIntPtrConstant(0));
8091
8092   // Subtract the bias.
8093   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8094
8095   // Handle final rounding.
8096   EVT DestVT = Op.getValueType();
8097
8098   if (DestVT.bitsLT(MVT::f64))
8099     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8100                        DAG.getIntPtrConstant(0));
8101   if (DestVT.bitsGT(MVT::f64))
8102     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8103
8104   // Handle final rounding.
8105   return Sub;
8106 }
8107
8108 SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8109                                                SelectionDAG &DAG) const {
8110   SDValue N0 = Op.getOperand(0);
8111   EVT SVT = N0.getValueType();
8112   DebugLoc dl = Op.getDebugLoc();
8113
8114   assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8115           SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8116          "Custom UINT_TO_FP is not supported!");
8117
8118   EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32, SVT.getVectorNumElements());
8119   return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8120                      DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8121 }
8122
8123 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8124                                            SelectionDAG &DAG) const {
8125   SDValue N0 = Op.getOperand(0);
8126   DebugLoc dl = Op.getDebugLoc();
8127
8128   if (Op.getValueType().isVector())
8129     return lowerUINT_TO_FP_vec(Op, DAG);
8130
8131   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8132   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8133   // the optimization here.
8134   if (DAG.SignBitIsZero(N0))
8135     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8136
8137   EVT SrcVT = N0.getValueType();
8138   EVT DstVT = Op.getValueType();
8139   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8140     return LowerUINT_TO_FP_i64(Op, DAG);
8141   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8142     return LowerUINT_TO_FP_i32(Op, DAG);
8143   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
8144     return SDValue();
8145
8146   // Make a 64-bit buffer, and use it to build an FILD.
8147   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8148   if (SrcVT == MVT::i32) {
8149     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8150     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8151                                      getPointerTy(), StackSlot, WordOff);
8152     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8153                                   StackSlot, MachinePointerInfo(),
8154                                   false, false, 0);
8155     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8156                                   OffsetSlot, MachinePointerInfo(),
8157                                   false, false, 0);
8158     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8159     return Fild;
8160   }
8161
8162   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8163   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8164                                StackSlot, MachinePointerInfo(),
8165                                false, false, 0);
8166   // For i64 source, we need to add the appropriate power of 2 if the input
8167   // was negative.  This is the same as the optimization in
8168   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8169   // we must be careful to do the computation in x87 extended precision, not
8170   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8171   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8172   MachineMemOperand *MMO =
8173     DAG.getMachineFunction()
8174     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8175                           MachineMemOperand::MOLoad, 8, 8);
8176
8177   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8178   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8179   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
8180                                          MVT::i64, MMO);
8181
8182   APInt FF(32, 0x5F800000ULL);
8183
8184   // Check whether the sign bit is set.
8185   SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
8186                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8187                                  ISD::SETLT);
8188
8189   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8190   SDValue FudgePtr = DAG.getConstantPool(
8191                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8192                                          getPointerTy());
8193
8194   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8195   SDValue Zero = DAG.getIntPtrConstant(0);
8196   SDValue Four = DAG.getIntPtrConstant(4);
8197   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8198                                Zero, Four);
8199   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8200
8201   // Load the value out, extending it from f32 to f80.
8202   // FIXME: Avoid the extend by constructing the right constant pool?
8203   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8204                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8205                                  MVT::f32, false, false, 4);
8206   // Extend everything to 80 bits to force it to be done on x87.
8207   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8208   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8209 }
8210
8211 std::pair<SDValue,SDValue> X86TargetLowering::
8212 FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned, bool IsReplace) const {
8213   DebugLoc DL = Op.getDebugLoc();
8214
8215   EVT DstTy = Op.getValueType();
8216
8217   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
8218     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8219     DstTy = MVT::i64;
8220   }
8221
8222   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8223          DstTy.getSimpleVT() >= MVT::i16 &&
8224          "Unknown FP_TO_INT to lower!");
8225
8226   // These are really Legal.
8227   if (DstTy == MVT::i32 &&
8228       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8229     return std::make_pair(SDValue(), SDValue());
8230   if (Subtarget->is64Bit() &&
8231       DstTy == MVT::i64 &&
8232       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8233     return std::make_pair(SDValue(), SDValue());
8234
8235   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8236   // stack slot, or into the FTOL runtime function.
8237   MachineFunction &MF = DAG.getMachineFunction();
8238   unsigned MemSize = DstTy.getSizeInBits()/8;
8239   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8240   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8241
8242   unsigned Opc;
8243   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8244     Opc = X86ISD::WIN_FTOL;
8245   else
8246     switch (DstTy.getSimpleVT().SimpleTy) {
8247     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8248     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8249     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8250     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8251     }
8252
8253   SDValue Chain = DAG.getEntryNode();
8254   SDValue Value = Op.getOperand(0);
8255   EVT TheVT = Op.getOperand(0).getValueType();
8256   // FIXME This causes a redundant load/store if the SSE-class value is already
8257   // in memory, such as if it is on the callstack.
8258   if (isScalarFPTypeInSSEReg(TheVT)) {
8259     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8260     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8261                          MachinePointerInfo::getFixedStack(SSFI),
8262                          false, false, 0);
8263     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8264     SDValue Ops[] = {
8265       Chain, StackSlot, DAG.getValueType(TheVT)
8266     };
8267
8268     MachineMemOperand *MMO =
8269       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8270                               MachineMemOperand::MOLoad, MemSize, MemSize);
8271     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
8272                                     DstTy, MMO);
8273     Chain = Value.getValue(1);
8274     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8275     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8276   }
8277
8278   MachineMemOperand *MMO =
8279     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8280                             MachineMemOperand::MOStore, MemSize, MemSize);
8281
8282   if (Opc != X86ISD::WIN_FTOL) {
8283     // Build the FP_TO_INT*_IN_MEM
8284     SDValue Ops[] = { Chain, Value, StackSlot };
8285     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8286                                            Ops, 3, DstTy, MMO);
8287     return std::make_pair(FIST, StackSlot);
8288   } else {
8289     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8290       DAG.getVTList(MVT::Other, MVT::Glue),
8291       Chain, Value);
8292     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8293       MVT::i32, ftol.getValue(1));
8294     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8295       MVT::i32, eax.getValue(2));
8296     SDValue Ops[] = { eax, edx };
8297     SDValue pair = IsReplace
8298       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, 2)
8299       : DAG.getMergeValues(Ops, 2, DL);
8300     return std::make_pair(pair, SDValue());
8301   }
8302 }
8303
8304 SDValue X86TargetLowering::lowerZERO_EXTEND(SDValue Op, SelectionDAG &DAG) const {
8305   DebugLoc DL = Op.getDebugLoc();
8306   EVT VT = Op.getValueType();
8307   SDValue In = Op.getOperand(0);
8308   EVT SVT = In.getValueType();
8309
8310   if (!VT.is256BitVector() || !SVT.is128BitVector() ||
8311       VT.getVectorNumElements() != SVT.getVectorNumElements())
8312     return SDValue();
8313
8314   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8315
8316   // AVX2 has better support of integer extending.
8317   if (Subtarget->hasInt256())
8318     return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8319
8320   SDValue Lo = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32, In);
8321   static const int Mask[] = {4, 5, 6, 7, -1, -1, -1, -1};
8322   SDValue Hi = DAG.getNode(X86ISD::VZEXT, DL, MVT::v4i32,
8323                            DAG.getVectorShuffle(MVT::v8i16, DL, In, DAG.getUNDEF(MVT::v8i16), &Mask[0]));
8324
8325   return DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v8i32, Lo, Hi);
8326 }
8327
8328 SDValue X86TargetLowering::lowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
8329   DebugLoc DL = Op.getDebugLoc();
8330   EVT VT = Op.getValueType();
8331   EVT SVT = Op.getOperand(0).getValueType();
8332
8333   if (!VT.is128BitVector() || !SVT.is256BitVector() ||
8334       VT.getVectorNumElements() != SVT.getVectorNumElements())
8335     return SDValue();
8336
8337   assert(Subtarget->hasFp256() && "256-bit vector is observed without AVX!");
8338
8339   unsigned NumElems = VT.getVectorNumElements();
8340   EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
8341                              NumElems * 2);
8342
8343   SDValue In = Op.getOperand(0);
8344   SmallVector<int, 16> MaskVec(NumElems * 2, -1);
8345   // Prepare truncation shuffle mask
8346   for (unsigned i = 0; i != NumElems; ++i)
8347     MaskVec[i] = i * 2;
8348   SDValue V = DAG.getVectorShuffle(NVT, DL,
8349                                    DAG.getNode(ISD::BITCAST, DL, NVT, In),
8350                                    DAG.getUNDEF(NVT), &MaskVec[0]);
8351   return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
8352                      DAG.getIntPtrConstant(0));
8353 }
8354
8355 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
8356                                            SelectionDAG &DAG) const {
8357   if (Op.getValueType().isVector()) {
8358     if (Op.getValueType() == MVT::v8i16)
8359       return DAG.getNode(ISD::TRUNCATE, Op.getDebugLoc(), Op.getValueType(),
8360                          DAG.getNode(ISD::FP_TO_SINT, Op.getDebugLoc(),
8361                                      MVT::v8i32, Op.getOperand(0)));
8362     return SDValue();
8363   }
8364
8365   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8366     /*IsSigned=*/ true, /*IsReplace=*/ false);
8367   SDValue FIST = Vals.first, StackSlot = Vals.second;
8368   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
8369   if (FIST.getNode() == 0) return Op;
8370
8371   if (StackSlot.getNode())
8372     // Load the result.
8373     return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8374                        FIST, StackSlot, MachinePointerInfo(),
8375                        false, false, false, 0);
8376
8377   // The node is the result.
8378   return FIST;
8379 }
8380
8381 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
8382                                            SelectionDAG &DAG) const {
8383   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8384     /*IsSigned=*/ false, /*IsReplace=*/ false);
8385   SDValue FIST = Vals.first, StackSlot = Vals.second;
8386   assert(FIST.getNode() && "Unexpected failure");
8387
8388   if (StackSlot.getNode())
8389     // Load the result.
8390     return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8391                        FIST, StackSlot, MachinePointerInfo(),
8392                        false, false, false, 0);
8393
8394   // The node is the result.
8395   return FIST;
8396 }
8397
8398 SDValue X86TargetLowering::lowerFP_EXTEND(SDValue Op,
8399                                           SelectionDAG &DAG) const {
8400   DebugLoc DL = Op.getDebugLoc();
8401   EVT VT = Op.getValueType();
8402   SDValue In = Op.getOperand(0);
8403   EVT SVT = In.getValueType();
8404
8405   assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
8406
8407   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
8408                      DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
8409                                  In, DAG.getUNDEF(SVT)));
8410 }
8411
8412 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
8413   LLVMContext *Context = DAG.getContext();
8414   DebugLoc dl = Op.getDebugLoc();
8415   EVT VT = Op.getValueType();
8416   EVT EltVT = VT;
8417   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
8418   if (VT.isVector()) {
8419     EltVT = VT.getVectorElementType();
8420     NumElts = VT.getVectorNumElements();
8421   }
8422   Constant *C;
8423   if (EltVT == MVT::f64)
8424     C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
8425   else
8426     C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
8427   C = ConstantVector::getSplat(NumElts, C);
8428   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
8429   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
8430   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8431                              MachinePointerInfo::getConstantPool(),
8432                              false, false, false, Alignment);
8433   if (VT.isVector()) {
8434     MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
8435     return DAG.getNode(ISD::BITCAST, dl, VT,
8436                        DAG.getNode(ISD::AND, dl, ANDVT,
8437                                    DAG.getNode(ISD::BITCAST, dl, ANDVT,
8438                                                Op.getOperand(0)),
8439                                    DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
8440   }
8441   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
8442 }
8443
8444 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
8445   LLVMContext *Context = DAG.getContext();
8446   DebugLoc dl = Op.getDebugLoc();
8447   EVT VT = Op.getValueType();
8448   EVT EltVT = VT;
8449   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
8450   if (VT.isVector()) {
8451     EltVT = VT.getVectorElementType();
8452     NumElts = VT.getVectorNumElements();
8453   }
8454   Constant *C;
8455   if (EltVT == MVT::f64)
8456     C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
8457   else
8458     C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
8459   C = ConstantVector::getSplat(NumElts, C);
8460   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
8461   unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
8462   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8463                              MachinePointerInfo::getConstantPool(),
8464                              false, false, false, Alignment);
8465   if (VT.isVector()) {
8466     MVT XORVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
8467     return DAG.getNode(ISD::BITCAST, dl, VT,
8468                        DAG.getNode(ISD::XOR, dl, XORVT,
8469                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
8470                                                Op.getOperand(0)),
8471                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
8472   }
8473
8474   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
8475 }
8476
8477 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
8478   LLVMContext *Context = DAG.getContext();
8479   SDValue Op0 = Op.getOperand(0);
8480   SDValue Op1 = Op.getOperand(1);
8481   DebugLoc dl = Op.getDebugLoc();
8482   EVT VT = Op.getValueType();
8483   EVT SrcVT = Op1.getValueType();
8484
8485   // If second operand is smaller, extend it first.
8486   if (SrcVT.bitsLT(VT)) {
8487     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
8488     SrcVT = VT;
8489   }
8490   // And if it is bigger, shrink it first.
8491   if (SrcVT.bitsGT(VT)) {
8492     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
8493     SrcVT = VT;
8494   }
8495
8496   // At this point the operands and the result should have the same
8497   // type, and that won't be f80 since that is not custom lowered.
8498
8499   // First get the sign bit of second operand.
8500   SmallVector<Constant*,4> CV;
8501   if (SrcVT == MVT::f64) {
8502     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
8503     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
8504   } else {
8505     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
8506     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8507     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8508     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8509   }
8510   Constant *C = ConstantVector::get(CV);
8511   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8512   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
8513                               MachinePointerInfo::getConstantPool(),
8514                               false, false, false, 16);
8515   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
8516
8517   // Shift sign bit right or left if the two operands have different types.
8518   if (SrcVT.bitsGT(VT)) {
8519     // Op0 is MVT::f32, Op1 is MVT::f64.
8520     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
8521     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
8522                           DAG.getConstant(32, MVT::i32));
8523     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
8524     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
8525                           DAG.getIntPtrConstant(0));
8526   }
8527
8528   // Clear first operand sign bit.
8529   CV.clear();
8530   if (VT == MVT::f64) {
8531     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8532     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
8533   } else {
8534     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8535     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8536     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8537     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8538   }
8539   C = ConstantVector::get(CV);
8540   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8541   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8542                               MachinePointerInfo::getConstantPool(),
8543                               false, false, false, 16);
8544   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
8545
8546   // Or the value with the sign bit.
8547   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
8548 }
8549
8550 static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
8551   SDValue N0 = Op.getOperand(0);
8552   DebugLoc dl = Op.getDebugLoc();
8553   EVT VT = Op.getValueType();
8554
8555   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8556   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8557                                   DAG.getConstant(1, VT));
8558   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8559 }
8560
8561 // LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
8562 //
8563 SDValue X86TargetLowering::LowerVectorAllZeroTest(SDValue Op, SelectionDAG &DAG) const {
8564   assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
8565
8566   if (!Subtarget->hasSSE41())
8567     return SDValue();
8568
8569   if (!Op->hasOneUse())
8570     return SDValue();
8571
8572   SDNode *N = Op.getNode();
8573   DebugLoc DL = N->getDebugLoc();
8574
8575   SmallVector<SDValue, 8> Opnds;
8576   DenseMap<SDValue, unsigned> VecInMap;
8577   EVT VT = MVT::Other;
8578
8579   // Recognize a special case where a vector is casted into wide integer to
8580   // test all 0s.
8581   Opnds.push_back(N->getOperand(0));
8582   Opnds.push_back(N->getOperand(1));
8583
8584   for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
8585     SmallVector<SDValue, 8>::const_iterator I = Opnds.begin() + Slot;
8586     // BFS traverse all OR'd operands.
8587     if (I->getOpcode() == ISD::OR) {
8588       Opnds.push_back(I->getOperand(0));
8589       Opnds.push_back(I->getOperand(1));
8590       // Re-evaluate the number of nodes to be traversed.
8591       e += 2; // 2 more nodes (LHS and RHS) are pushed.
8592       continue;
8593     }
8594
8595     // Quit if a non-EXTRACT_VECTOR_ELT
8596     if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
8597       return SDValue();
8598
8599     // Quit if without a constant index.
8600     SDValue Idx = I->getOperand(1);
8601     if (!isa<ConstantSDNode>(Idx))
8602       return SDValue();
8603
8604     SDValue ExtractedFromVec = I->getOperand(0);
8605     DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
8606     if (M == VecInMap.end()) {
8607       VT = ExtractedFromVec.getValueType();
8608       // Quit if not 128/256-bit vector.
8609       if (!VT.is128BitVector() && !VT.is256BitVector())
8610         return SDValue();
8611       // Quit if not the same type.
8612       if (VecInMap.begin() != VecInMap.end() &&
8613           VT != VecInMap.begin()->first.getValueType())
8614         return SDValue();
8615       M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
8616     }
8617     M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
8618   }
8619
8620   assert((VT.is128BitVector() || VT.is256BitVector()) &&
8621          "Not extracted from 128-/256-bit vector.");
8622
8623   unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
8624   SmallVector<SDValue, 8> VecIns;
8625
8626   for (DenseMap<SDValue, unsigned>::const_iterator
8627         I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
8628     // Quit if not all elements are used.
8629     if (I->second != FullMask)
8630       return SDValue();
8631     VecIns.push_back(I->first);
8632   }
8633
8634   EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
8635
8636   // Cast all vectors into TestVT for PTEST.
8637   for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
8638     VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
8639
8640   // If more than one full vectors are evaluated, OR them first before PTEST.
8641   for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
8642     // Each iteration will OR 2 nodes and append the result until there is only
8643     // 1 node left, i.e. the final OR'd value of all vectors.
8644     SDValue LHS = VecIns[Slot];
8645     SDValue RHS = VecIns[Slot + 1];
8646     VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
8647   }
8648
8649   return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
8650                      VecIns.back(), VecIns.back());
8651 }
8652
8653 /// Emit nodes that will be selected as "test Op0,Op0", or something
8654 /// equivalent.
8655 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
8656                                     SelectionDAG &DAG) const {
8657   DebugLoc dl = Op.getDebugLoc();
8658
8659   // CF and OF aren't always set the way we want. Determine which
8660   // of these we need.
8661   bool NeedCF = false;
8662   bool NeedOF = false;
8663   switch (X86CC) {
8664   default: break;
8665   case X86::COND_A: case X86::COND_AE:
8666   case X86::COND_B: case X86::COND_BE:
8667     NeedCF = true;
8668     break;
8669   case X86::COND_G: case X86::COND_GE:
8670   case X86::COND_L: case X86::COND_LE:
8671   case X86::COND_O: case X86::COND_NO:
8672     NeedOF = true;
8673     break;
8674   }
8675
8676   // See if we can use the EFLAGS value from the operand instead of
8677   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8678   // we prove that the arithmetic won't overflow, we can't use OF or CF.
8679   if (Op.getResNo() != 0 || NeedOF || NeedCF)
8680     // Emit a CMP with 0, which is the TEST pattern.
8681     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8682                        DAG.getConstant(0, Op.getValueType()));
8683
8684   unsigned Opcode = 0;
8685   unsigned NumOperands = 0;
8686
8687   // Truncate operations may prevent the merge of the SETCC instruction
8688   // and the arithmetic intruction before it. Attempt to truncate the operands
8689   // of the arithmetic instruction and use a reduced bit-width instruction.
8690   bool NeedTruncation = false;
8691   SDValue ArithOp = Op;
8692   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
8693     SDValue Arith = Op->getOperand(0);
8694     // Both the trunc and the arithmetic op need to have one user each.
8695     if (Arith->hasOneUse())
8696       switch (Arith.getOpcode()) {
8697         default: break;
8698         case ISD::ADD:
8699         case ISD::SUB:
8700         case ISD::AND:
8701         case ISD::OR:
8702         case ISD::XOR: {
8703           NeedTruncation = true;
8704           ArithOp = Arith;
8705         }
8706       }
8707   }
8708
8709   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
8710   // which may be the result of a CAST.  We use the variable 'Op', which is the
8711   // non-casted variable when we check for possible users.
8712   switch (ArithOp.getOpcode()) {
8713   case ISD::ADD:
8714     // Due to an isel shortcoming, be conservative if this add is likely to be
8715     // selected as part of a load-modify-store instruction. When the root node
8716     // in a match is a store, isel doesn't know how to remap non-chain non-flag
8717     // uses of other nodes in the match, such as the ADD in this case. This
8718     // leads to the ADD being left around and reselected, with the result being
8719     // two adds in the output.  Alas, even if none our users are stores, that
8720     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
8721     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
8722     // climbing the DAG back to the root, and it doesn't seem to be worth the
8723     // effort.
8724     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8725          UE = Op.getNode()->use_end(); UI != UE; ++UI)
8726       if (UI->getOpcode() != ISD::CopyToReg &&
8727           UI->getOpcode() != ISD::SETCC &&
8728           UI->getOpcode() != ISD::STORE)
8729         goto default_case;
8730
8731     if (ConstantSDNode *C =
8732         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
8733       // An add of one will be selected as an INC.
8734       if (C->getAPIntValue() == 1) {
8735         Opcode = X86ISD::INC;
8736         NumOperands = 1;
8737         break;
8738       }
8739
8740       // An add of negative one (subtract of one) will be selected as a DEC.
8741       if (C->getAPIntValue().isAllOnesValue()) {
8742         Opcode = X86ISD::DEC;
8743         NumOperands = 1;
8744         break;
8745       }
8746     }
8747
8748     // Otherwise use a regular EFLAGS-setting add.
8749     Opcode = X86ISD::ADD;
8750     NumOperands = 2;
8751     break;
8752   case ISD::AND: {
8753     // If the primary and result isn't used, don't bother using X86ISD::AND,
8754     // because a TEST instruction will be better.
8755     bool NonFlagUse = false;
8756     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8757            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8758       SDNode *User = *UI;
8759       unsigned UOpNo = UI.getOperandNo();
8760       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8761         // Look pass truncate.
8762         UOpNo = User->use_begin().getOperandNo();
8763         User = *User->use_begin();
8764       }
8765
8766       if (User->getOpcode() != ISD::BRCOND &&
8767           User->getOpcode() != ISD::SETCC &&
8768           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
8769         NonFlagUse = true;
8770         break;
8771       }
8772     }
8773
8774     if (!NonFlagUse)
8775       break;
8776   }
8777     // FALL THROUGH
8778   case ISD::SUB:
8779   case ISD::OR:
8780   case ISD::XOR:
8781     // Due to the ISEL shortcoming noted above, be conservative if this op is
8782     // likely to be selected as part of a load-modify-store instruction.
8783     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8784            UE = Op.getNode()->use_end(); UI != UE; ++UI)
8785       if (UI->getOpcode() == ISD::STORE)
8786         goto default_case;
8787
8788     // Otherwise use a regular EFLAGS-setting instruction.
8789     switch (ArithOp.getOpcode()) {
8790     default: llvm_unreachable("unexpected operator!");
8791     case ISD::SUB: Opcode = X86ISD::SUB; break;
8792     case ISD::XOR: Opcode = X86ISD::XOR; break;
8793     case ISD::AND: Opcode = X86ISD::AND; break;
8794     case ISD::OR: {
8795       if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
8796         SDValue EFLAGS = LowerVectorAllZeroTest(Op, DAG);
8797         if (EFLAGS.getNode())
8798           return EFLAGS;
8799       }
8800       Opcode = X86ISD::OR;
8801       break;
8802     }
8803     }
8804
8805     NumOperands = 2;
8806     break;
8807   case X86ISD::ADD:
8808   case X86ISD::SUB:
8809   case X86ISD::INC:
8810   case X86ISD::DEC:
8811   case X86ISD::OR:
8812   case X86ISD::XOR:
8813   case X86ISD::AND:
8814     return SDValue(Op.getNode(), 1);
8815   default:
8816   default_case:
8817     break;
8818   }
8819
8820   // If we found that truncation is beneficial, perform the truncation and
8821   // update 'Op'.
8822   if (NeedTruncation) {
8823     EVT VT = Op.getValueType();
8824     SDValue WideVal = Op->getOperand(0);
8825     EVT WideVT = WideVal.getValueType();
8826     unsigned ConvertedOp = 0;
8827     // Use a target machine opcode to prevent further DAGCombine
8828     // optimizations that may separate the arithmetic operations
8829     // from the setcc node.
8830     switch (WideVal.getOpcode()) {
8831       default: break;
8832       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
8833       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
8834       case ISD::AND: ConvertedOp = X86ISD::AND; break;
8835       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
8836       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
8837     }
8838
8839     if (ConvertedOp) {
8840       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8841       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
8842         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
8843         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
8844         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
8845       }
8846     }
8847   }
8848
8849   if (Opcode == 0)
8850     // Emit a CMP with 0, which is the TEST pattern.
8851     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8852                        DAG.getConstant(0, Op.getValueType()));
8853
8854   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8855   SmallVector<SDValue, 4> Ops;
8856   for (unsigned i = 0; i != NumOperands; ++i)
8857     Ops.push_back(Op.getOperand(i));
8858
8859   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8860   DAG.ReplaceAllUsesWith(Op, New);
8861   return SDValue(New.getNode(), 1);
8862 }
8863
8864 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
8865 /// equivalent.
8866 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
8867                                    SelectionDAG &DAG) const {
8868   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8869     if (C->getAPIntValue() == 0)
8870       return EmitTest(Op0, X86CC, DAG);
8871
8872   DebugLoc dl = Op0.getDebugLoc();
8873   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
8874        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
8875     // Use SUB instead of CMP to enable CSE between SUB and CMP.
8876     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
8877     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
8878                               Op0, Op1);
8879     return SDValue(Sub.getNode(), 1);
8880   }
8881   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
8882 }
8883
8884 /// Convert a comparison if required by the subtarget.
8885 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
8886                                                  SelectionDAG &DAG) const {
8887   // If the subtarget does not support the FUCOMI instruction, floating-point
8888   // comparisons have to be converted.
8889   if (Subtarget->hasCMov() ||
8890       Cmp.getOpcode() != X86ISD::CMP ||
8891       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
8892       !Cmp.getOperand(1).getValueType().isFloatingPoint())
8893     return Cmp;
8894
8895   // The instruction selector will select an FUCOM instruction instead of
8896   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
8897   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
8898   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
8899   DebugLoc dl = Cmp.getDebugLoc();
8900   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
8901   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
8902   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
8903                             DAG.getConstant(8, MVT::i8));
8904   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
8905   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
8906 }
8907
8908 static bool isAllOnes(SDValue V) {
8909   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8910   return C && C->isAllOnesValue();
8911 }
8912
8913 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8914 /// if it's possible.
8915 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8916                                      DebugLoc dl, SelectionDAG &DAG) const {
8917   SDValue Op0 = And.getOperand(0);
8918   SDValue Op1 = And.getOperand(1);
8919   if (Op0.getOpcode() == ISD::TRUNCATE)
8920     Op0 = Op0.getOperand(0);
8921   if (Op1.getOpcode() == ISD::TRUNCATE)
8922     Op1 = Op1.getOperand(0);
8923
8924   SDValue LHS, RHS;
8925   if (Op1.getOpcode() == ISD::SHL)
8926     std::swap(Op0, Op1);
8927   if (Op0.getOpcode() == ISD::SHL) {
8928     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8929       if (And00C->getZExtValue() == 1) {
8930         // If we looked past a truncate, check that it's only truncating away
8931         // known zeros.
8932         unsigned BitWidth = Op0.getValueSizeInBits();
8933         unsigned AndBitWidth = And.getValueSizeInBits();
8934         if (BitWidth > AndBitWidth) {
8935           APInt Zeros, Ones;
8936           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
8937           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8938             return SDValue();
8939         }
8940         LHS = Op1;
8941         RHS = Op0.getOperand(1);
8942       }
8943   } else if (Op1.getOpcode() == ISD::Constant) {
8944     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8945     uint64_t AndRHSVal = AndRHS->getZExtValue();
8946     SDValue AndLHS = Op0;
8947
8948     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
8949       LHS = AndLHS.getOperand(0);
8950       RHS = AndLHS.getOperand(1);
8951     }
8952
8953     // Use BT if the immediate can't be encoded in a TEST instruction.
8954     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
8955       LHS = AndLHS;
8956       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
8957     }
8958   }
8959
8960   if (LHS.getNode()) {
8961     // If the LHS is of the form (x ^ -1) then replace the LHS with x and flip
8962     // the condition code later.
8963     bool Invert = false;
8964     if (LHS.getOpcode() == ISD::XOR && isAllOnes(LHS.getOperand(1))) {
8965       Invert = true;
8966       LHS = LHS.getOperand(0);
8967     }
8968
8969     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
8970     // instruction.  Since the shift amount is in-range-or-undefined, we know
8971     // that doing a bittest on the i32 value is ok.  We extend to i32 because
8972     // the encoding for the i16 version is larger than the i32 version.
8973     // Also promote i16 to i32 for performance / code size reason.
8974     if (LHS.getValueType() == MVT::i8 ||
8975         LHS.getValueType() == MVT::i16)
8976       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
8977
8978     // If the operand types disagree, extend the shift amount to match.  Since
8979     // BT ignores high bits (like shifts) we can use anyextend.
8980     if (LHS.getValueType() != RHS.getValueType())
8981       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
8982
8983     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8984     X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8985     // Flip the condition if the LHS was a not instruction
8986     if (Invert)
8987       Cond = X86::GetOppositeBranchCondition(Cond);
8988     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8989                        DAG.getConstant(Cond, MVT::i8), BT);
8990   }
8991
8992   return SDValue();
8993 }
8994
8995 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
8996
8997   if (Op.getValueType().isVector()) return LowerVSETCC(Op, DAG);
8998
8999   assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
9000   SDValue Op0 = Op.getOperand(0);
9001   SDValue Op1 = Op.getOperand(1);
9002   DebugLoc dl = Op.getDebugLoc();
9003   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
9004
9005   // Optimize to BT if possible.
9006   // Lower (X & (1 << N)) == 0 to BT(X, N).
9007   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
9008   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
9009   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
9010       Op1.getOpcode() == ISD::Constant &&
9011       cast<ConstantSDNode>(Op1)->isNullValue() &&
9012       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9013     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
9014     if (NewSetCC.getNode())
9015       return NewSetCC;
9016   }
9017
9018   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
9019   // these.
9020   if (Op1.getOpcode() == ISD::Constant &&
9021       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
9022        cast<ConstantSDNode>(Op1)->isNullValue()) &&
9023       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
9024
9025     // If the input is a setcc, then reuse the input setcc or use a new one with
9026     // the inverted condition.
9027     if (Op0.getOpcode() == X86ISD::SETCC) {
9028       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
9029       bool Invert = (CC == ISD::SETNE) ^
9030         cast<ConstantSDNode>(Op1)->isNullValue();
9031       if (!Invert) return Op0;
9032
9033       CCode = X86::GetOppositeBranchCondition(CCode);
9034       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9035                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
9036     }
9037   }
9038
9039   bool isFP = Op1.getValueType().isFloatingPoint();
9040   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
9041   if (X86CC == X86::COND_INVALID)
9042     return SDValue();
9043
9044   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
9045   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
9046   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9047                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
9048 }
9049
9050 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
9051 // ones, and then concatenate the result back.
9052 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
9053   EVT VT = Op.getValueType();
9054
9055   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
9056          "Unsupported value type for operation");
9057
9058   unsigned NumElems = VT.getVectorNumElements();
9059   DebugLoc dl = Op.getDebugLoc();
9060   SDValue CC = Op.getOperand(2);
9061
9062   // Extract the LHS vectors
9063   SDValue LHS = Op.getOperand(0);
9064   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9065   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
9066
9067   // Extract the RHS vectors
9068   SDValue RHS = Op.getOperand(1);
9069   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9070   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
9071
9072   // Issue the operation on the smaller types and concatenate the result back
9073   MVT EltVT = VT.getVectorElementType().getSimpleVT();
9074   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9075   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9076                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9077                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9078 }
9079
9080
9081 SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
9082   SDValue Cond;
9083   SDValue Op0 = Op.getOperand(0);
9084   SDValue Op1 = Op.getOperand(1);
9085   SDValue CC = Op.getOperand(2);
9086   EVT VT = Op.getValueType();
9087   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9088   bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
9089   DebugLoc dl = Op.getDebugLoc();
9090
9091   if (isFP) {
9092 #ifndef NDEBUG
9093     EVT EltVT = Op0.getValueType().getVectorElementType();
9094     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9095 #endif
9096
9097     unsigned SSECC;
9098     bool Swap = false;
9099
9100     // SSE Condition code mapping:
9101     //  0 - EQ
9102     //  1 - LT
9103     //  2 - LE
9104     //  3 - UNORD
9105     //  4 - NEQ
9106     //  5 - NLT
9107     //  6 - NLE
9108     //  7 - ORD
9109     switch (SetCCOpcode) {
9110     default: llvm_unreachable("Unexpected SETCC condition");
9111     case ISD::SETOEQ:
9112     case ISD::SETEQ:  SSECC = 0; break;
9113     case ISD::SETOGT:
9114     case ISD::SETGT: Swap = true; // Fallthrough
9115     case ISD::SETLT:
9116     case ISD::SETOLT: SSECC = 1; break;
9117     case ISD::SETOGE:
9118     case ISD::SETGE: Swap = true; // Fallthrough
9119     case ISD::SETLE:
9120     case ISD::SETOLE: SSECC = 2; break;
9121     case ISD::SETUO:  SSECC = 3; break;
9122     case ISD::SETUNE:
9123     case ISD::SETNE:  SSECC = 4; break;
9124     case ISD::SETULE: Swap = true; // Fallthrough
9125     case ISD::SETUGE: SSECC = 5; break;
9126     case ISD::SETULT: Swap = true; // Fallthrough
9127     case ISD::SETUGT: SSECC = 6; break;
9128     case ISD::SETO:   SSECC = 7; break;
9129     case ISD::SETUEQ:
9130     case ISD::SETONE: SSECC = 8; break;
9131     }
9132     if (Swap)
9133       std::swap(Op0, Op1);
9134
9135     // In the two special cases we can't handle, emit two comparisons.
9136     if (SSECC == 8) {
9137       unsigned CC0, CC1;
9138       unsigned CombineOpc;
9139       if (SetCCOpcode == ISD::SETUEQ) {
9140         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9141       } else {
9142         assert(SetCCOpcode == ISD::SETONE);
9143         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
9144       }
9145
9146       SDValue Cmp0 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9147                                  DAG.getConstant(CC0, MVT::i8));
9148       SDValue Cmp1 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9149                                  DAG.getConstant(CC1, MVT::i8));
9150       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
9151     }
9152     // Handle all other FP comparisons here.
9153     return DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
9154                        DAG.getConstant(SSECC, MVT::i8));
9155   }
9156
9157   // Break 256-bit integer vector compare into smaller ones.
9158   if (VT.is256BitVector() && !Subtarget->hasInt256())
9159     return Lower256IntVSETCC(Op, DAG);
9160
9161   // We are handling one of the integer comparisons here.  Since SSE only has
9162   // GT and EQ comparisons for integer, swapping operands and multiple
9163   // operations may be required for some comparisons.
9164   unsigned Opc;
9165   bool Swap = false, Invert = false, FlipSigns = false;
9166
9167   switch (SetCCOpcode) {
9168   default: llvm_unreachable("Unexpected SETCC condition");
9169   case ISD::SETNE:  Invert = true;
9170   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
9171   case ISD::SETLT:  Swap = true;
9172   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
9173   case ISD::SETGE:  Swap = true;
9174   case ISD::SETLE:  Opc = X86ISD::PCMPGT; Invert = true; break;
9175   case ISD::SETULT: Swap = true;
9176   case ISD::SETUGT: Opc = X86ISD::PCMPGT; FlipSigns = true; break;
9177   case ISD::SETUGE: Swap = true;
9178   case ISD::SETULE: Opc = X86ISD::PCMPGT; FlipSigns = true; Invert = true; break;
9179   }
9180   if (Swap)
9181     std::swap(Op0, Op1);
9182
9183   // Check that the operation in question is available (most are plain SSE2,
9184   // but PCMPGTQ and PCMPEQQ have different requirements).
9185   if (VT == MVT::v2i64) {
9186     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42())
9187       return SDValue();
9188     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41())
9189       return SDValue();
9190   }
9191
9192   // Since SSE has no unsigned integer comparisons, we need to flip  the sign
9193   // bits of the inputs before performing those operations.
9194   if (FlipSigns) {
9195     EVT EltVT = VT.getVectorElementType();
9196     SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
9197                                       EltVT);
9198     std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
9199     SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
9200                                     SignBits.size());
9201     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
9202     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
9203   }
9204
9205   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
9206
9207   // If the logical-not of the result is required, perform that now.
9208   if (Invert)
9209     Result = DAG.getNOT(dl, Result, VT);
9210
9211   return Result;
9212 }
9213
9214 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
9215 static bool isX86LogicalCmp(SDValue Op) {
9216   unsigned Opc = Op.getNode()->getOpcode();
9217   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
9218       Opc == X86ISD::SAHF)
9219     return true;
9220   if (Op.getResNo() == 1 &&
9221       (Opc == X86ISD::ADD ||
9222        Opc == X86ISD::SUB ||
9223        Opc == X86ISD::ADC ||
9224        Opc == X86ISD::SBB ||
9225        Opc == X86ISD::SMUL ||
9226        Opc == X86ISD::UMUL ||
9227        Opc == X86ISD::INC ||
9228        Opc == X86ISD::DEC ||
9229        Opc == X86ISD::OR ||
9230        Opc == X86ISD::XOR ||
9231        Opc == X86ISD::AND))
9232     return true;
9233
9234   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
9235     return true;
9236
9237   return false;
9238 }
9239
9240 static bool isZero(SDValue V) {
9241   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9242   return C && C->isNullValue();
9243 }
9244
9245 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
9246   if (V.getOpcode() != ISD::TRUNCATE)
9247     return false;
9248
9249   SDValue VOp0 = V.getOperand(0);
9250   unsigned InBits = VOp0.getValueSizeInBits();
9251   unsigned Bits = V.getValueSizeInBits();
9252   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
9253 }
9254
9255 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
9256   bool addTest = true;
9257   SDValue Cond  = Op.getOperand(0);
9258   SDValue Op1 = Op.getOperand(1);
9259   SDValue Op2 = Op.getOperand(2);
9260   DebugLoc DL = Op.getDebugLoc();
9261   SDValue CC;
9262
9263   if (Cond.getOpcode() == ISD::SETCC) {
9264     SDValue NewCond = LowerSETCC(Cond, DAG);
9265     if (NewCond.getNode())
9266       Cond = NewCond;
9267   }
9268
9269   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
9270   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
9271   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
9272   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
9273   if (Cond.getOpcode() == X86ISD::SETCC &&
9274       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
9275       isZero(Cond.getOperand(1).getOperand(1))) {
9276     SDValue Cmp = Cond.getOperand(1);
9277
9278     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
9279
9280     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
9281         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
9282       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
9283
9284       SDValue CmpOp0 = Cmp.getOperand(0);
9285       // Apply further optimizations for special cases
9286       // (select (x != 0), -1, 0) -> neg & sbb
9287       // (select (x == 0), 0, -1) -> neg & sbb
9288       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
9289         if (YC->isNullValue() &&
9290             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
9291           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
9292           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
9293                                     DAG.getConstant(0, CmpOp0.getValueType()),
9294                                     CmpOp0);
9295           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
9296                                     DAG.getConstant(X86::COND_B, MVT::i8),
9297                                     SDValue(Neg.getNode(), 1));
9298           return Res;
9299         }
9300
9301       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
9302                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
9303       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
9304
9305       SDValue Res =   // Res = 0 or -1.
9306         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
9307                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
9308
9309       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
9310         Res = DAG.getNOT(DL, Res, Res.getValueType());
9311
9312       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
9313       if (N2C == 0 || !N2C->isNullValue())
9314         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
9315       return Res;
9316     }
9317   }
9318
9319   // Look past (and (setcc_carry (cmp ...)), 1).
9320   if (Cond.getOpcode() == ISD::AND &&
9321       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
9322     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
9323     if (C && C->getAPIntValue() == 1)
9324       Cond = Cond.getOperand(0);
9325   }
9326
9327   // If condition flag is set by a X86ISD::CMP, then use it as the condition
9328   // setting operand in place of the X86ISD::SETCC.
9329   unsigned CondOpcode = Cond.getOpcode();
9330   if (CondOpcode == X86ISD::SETCC ||
9331       CondOpcode == X86ISD::SETCC_CARRY) {
9332     CC = Cond.getOperand(0);
9333
9334     SDValue Cmp = Cond.getOperand(1);
9335     unsigned Opc = Cmp.getOpcode();
9336     EVT VT = Op.getValueType();
9337
9338     bool IllegalFPCMov = false;
9339     if (VT.isFloatingPoint() && !VT.isVector() &&
9340         !isScalarFPTypeInSSEReg(VT))  // FPStack?
9341       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
9342
9343     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
9344         Opc == X86ISD::BT) { // FIXME
9345       Cond = Cmp;
9346       addTest = false;
9347     }
9348   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
9349              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
9350              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
9351               Cond.getOperand(0).getValueType() != MVT::i8)) {
9352     SDValue LHS = Cond.getOperand(0);
9353     SDValue RHS = Cond.getOperand(1);
9354     unsigned X86Opcode;
9355     unsigned X86Cond;
9356     SDVTList VTs;
9357     switch (CondOpcode) {
9358     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
9359     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
9360     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
9361     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
9362     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
9363     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
9364     default: llvm_unreachable("unexpected overflowing operator");
9365     }
9366     if (CondOpcode == ISD::UMULO)
9367       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
9368                           MVT::i32);
9369     else
9370       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
9371
9372     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
9373
9374     if (CondOpcode == ISD::UMULO)
9375       Cond = X86Op.getValue(2);
9376     else
9377       Cond = X86Op.getValue(1);
9378
9379     CC = DAG.getConstant(X86Cond, MVT::i8);
9380     addTest = false;
9381   }
9382
9383   if (addTest) {
9384     // Look pass the truncate if the high bits are known zero.
9385     if (isTruncWithZeroHighBitsInput(Cond, DAG))
9386         Cond = Cond.getOperand(0);
9387
9388     // We know the result of AND is compared against zero. Try to match
9389     // it to BT.
9390     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
9391       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
9392       if (NewSetCC.getNode()) {
9393         CC = NewSetCC.getOperand(0);
9394         Cond = NewSetCC.getOperand(1);
9395         addTest = false;
9396       }
9397     }
9398   }
9399
9400   if (addTest) {
9401     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9402     Cond = EmitTest(Cond, X86::COND_NE, DAG);
9403   }
9404
9405   // a <  b ? -1 :  0 -> RES = ~setcc_carry
9406   // a <  b ?  0 : -1 -> RES = setcc_carry
9407   // a >= b ? -1 :  0 -> RES = setcc_carry
9408   // a >= b ?  0 : -1 -> RES = ~setcc_carry
9409   if (Cond.getOpcode() == X86ISD::SUB) {
9410     Cond = ConvertCmpIfNecessary(Cond, DAG);
9411     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
9412
9413     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
9414         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
9415       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
9416                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
9417       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
9418         return DAG.getNOT(DL, Res, Res.getValueType());
9419       return Res;
9420     }
9421   }
9422
9423   // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
9424   // widen the cmov and push the truncate through. This avoids introducing a new
9425   // branch during isel and doesn't add any extensions.
9426   if (Op.getValueType() == MVT::i8 &&
9427       Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
9428     SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
9429     if (T1.getValueType() == T2.getValueType() &&
9430         // Blacklist CopyFromReg to avoid partial register stalls.
9431         T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
9432       SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
9433       SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
9434       return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
9435     }
9436   }
9437
9438   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
9439   // condition is true.
9440   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
9441   SDValue Ops[] = { Op2, Op1, CC, Cond };
9442   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
9443 }
9444
9445 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
9446 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
9447 // from the AND / OR.
9448 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
9449   Opc = Op.getOpcode();
9450   if (Opc != ISD::OR && Opc != ISD::AND)
9451     return false;
9452   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
9453           Op.getOperand(0).hasOneUse() &&
9454           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
9455           Op.getOperand(1).hasOneUse());
9456 }
9457
9458 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
9459 // 1 and that the SETCC node has a single use.
9460 static bool isXor1OfSetCC(SDValue Op) {
9461   if (Op.getOpcode() != ISD::XOR)
9462     return false;
9463   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9464   if (N1C && N1C->getAPIntValue() == 1) {
9465     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
9466       Op.getOperand(0).hasOneUse();
9467   }
9468   return false;
9469 }
9470
9471 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
9472   bool addTest = true;
9473   SDValue Chain = Op.getOperand(0);
9474   SDValue Cond  = Op.getOperand(1);
9475   SDValue Dest  = Op.getOperand(2);
9476   DebugLoc dl = Op.getDebugLoc();
9477   SDValue CC;
9478   bool Inverted = false;
9479
9480   if (Cond.getOpcode() == ISD::SETCC) {
9481     // Check for setcc([su]{add,sub,mul}o == 0).
9482     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
9483         isa<ConstantSDNode>(Cond.getOperand(1)) &&
9484         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
9485         Cond.getOperand(0).getResNo() == 1 &&
9486         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
9487          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
9488          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
9489          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
9490          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
9491          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
9492       Inverted = true;
9493       Cond = Cond.getOperand(0);
9494     } else {
9495       SDValue NewCond = LowerSETCC(Cond, DAG);
9496       if (NewCond.getNode())
9497         Cond = NewCond;
9498     }
9499   }
9500 #if 0
9501   // FIXME: LowerXALUO doesn't handle these!!
9502   else if (Cond.getOpcode() == X86ISD::ADD  ||
9503            Cond.getOpcode() == X86ISD::SUB  ||
9504            Cond.getOpcode() == X86ISD::SMUL ||
9505            Cond.getOpcode() == X86ISD::UMUL)
9506     Cond = LowerXALUO(Cond, DAG);
9507 #endif
9508
9509   // Look pass (and (setcc_carry (cmp ...)), 1).
9510   if (Cond.getOpcode() == ISD::AND &&
9511       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
9512     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
9513     if (C && C->getAPIntValue() == 1)
9514       Cond = Cond.getOperand(0);
9515   }
9516
9517   // If condition flag is set by a X86ISD::CMP, then use it as the condition
9518   // setting operand in place of the X86ISD::SETCC.
9519   unsigned CondOpcode = Cond.getOpcode();
9520   if (CondOpcode == X86ISD::SETCC ||
9521       CondOpcode == X86ISD::SETCC_CARRY) {
9522     CC = Cond.getOperand(0);
9523
9524     SDValue Cmp = Cond.getOperand(1);
9525     unsigned Opc = Cmp.getOpcode();
9526     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
9527     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
9528       Cond = Cmp;
9529       addTest = false;
9530     } else {
9531       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
9532       default: break;
9533       case X86::COND_O:
9534       case X86::COND_B:
9535         // These can only come from an arithmetic instruction with overflow,
9536         // e.g. SADDO, UADDO.
9537         Cond = Cond.getNode()->getOperand(1);
9538         addTest = false;
9539         break;
9540       }
9541     }
9542   }
9543   CondOpcode = Cond.getOpcode();
9544   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
9545       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
9546       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
9547        Cond.getOperand(0).getValueType() != MVT::i8)) {
9548     SDValue LHS = Cond.getOperand(0);
9549     SDValue RHS = Cond.getOperand(1);
9550     unsigned X86Opcode;
9551     unsigned X86Cond;
9552     SDVTList VTs;
9553     switch (CondOpcode) {
9554     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
9555     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
9556     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
9557     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
9558     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
9559     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
9560     default: llvm_unreachable("unexpected overflowing operator");
9561     }
9562     if (Inverted)
9563       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
9564     if (CondOpcode == ISD::UMULO)
9565       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
9566                           MVT::i32);
9567     else
9568       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
9569
9570     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
9571
9572     if (CondOpcode == ISD::UMULO)
9573       Cond = X86Op.getValue(2);
9574     else
9575       Cond = X86Op.getValue(1);
9576
9577     CC = DAG.getConstant(X86Cond, MVT::i8);
9578     addTest = false;
9579   } else {
9580     unsigned CondOpc;
9581     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
9582       SDValue Cmp = Cond.getOperand(0).getOperand(1);
9583       if (CondOpc == ISD::OR) {
9584         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
9585         // two branches instead of an explicit OR instruction with a
9586         // separate test.
9587         if (Cmp == Cond.getOperand(1).getOperand(1) &&
9588             isX86LogicalCmp(Cmp)) {
9589           CC = Cond.getOperand(0).getOperand(0);
9590           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9591                               Chain, Dest, CC, Cmp);
9592           CC = Cond.getOperand(1).getOperand(0);
9593           Cond = Cmp;
9594           addTest = false;
9595         }
9596       } else { // ISD::AND
9597         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
9598         // two branches instead of an explicit AND instruction with a
9599         // separate test. However, we only do this if this block doesn't
9600         // have a fall-through edge, because this requires an explicit
9601         // jmp when the condition is false.
9602         if (Cmp == Cond.getOperand(1).getOperand(1) &&
9603             isX86LogicalCmp(Cmp) &&
9604             Op.getNode()->hasOneUse()) {
9605           X86::CondCode CCode =
9606             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9607           CCode = X86::GetOppositeBranchCondition(CCode);
9608           CC = DAG.getConstant(CCode, MVT::i8);
9609           SDNode *User = *Op.getNode()->use_begin();
9610           // Look for an unconditional branch following this conditional branch.
9611           // We need this because we need to reverse the successors in order
9612           // to implement FCMP_OEQ.
9613           if (User->getOpcode() == ISD::BR) {
9614             SDValue FalseBB = User->getOperand(1);
9615             SDNode *NewBR =
9616               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9617             assert(NewBR == User);
9618             (void)NewBR;
9619             Dest = FalseBB;
9620
9621             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9622                                 Chain, Dest, CC, Cmp);
9623             X86::CondCode CCode =
9624               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
9625             CCode = X86::GetOppositeBranchCondition(CCode);
9626             CC = DAG.getConstant(CCode, MVT::i8);
9627             Cond = Cmp;
9628             addTest = false;
9629           }
9630         }
9631       }
9632     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
9633       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
9634       // It should be transformed during dag combiner except when the condition
9635       // is set by a arithmetics with overflow node.
9636       X86::CondCode CCode =
9637         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9638       CCode = X86::GetOppositeBranchCondition(CCode);
9639       CC = DAG.getConstant(CCode, MVT::i8);
9640       Cond = Cond.getOperand(0).getOperand(1);
9641       addTest = false;
9642     } else if (Cond.getOpcode() == ISD::SETCC &&
9643                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
9644       // For FCMP_OEQ, we can emit
9645       // two branches instead of an explicit AND instruction with a
9646       // separate test. However, we only do this if this block doesn't
9647       // have a fall-through edge, because this requires an explicit
9648       // jmp when the condition is false.
9649       if (Op.getNode()->hasOneUse()) {
9650         SDNode *User = *Op.getNode()->use_begin();
9651         // Look for an unconditional branch following this conditional branch.
9652         // We need this because we need to reverse the successors in order
9653         // to implement FCMP_OEQ.
9654         if (User->getOpcode() == ISD::BR) {
9655           SDValue FalseBB = User->getOperand(1);
9656           SDNode *NewBR =
9657             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9658           assert(NewBR == User);
9659           (void)NewBR;
9660           Dest = FalseBB;
9661
9662           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9663                                     Cond.getOperand(0), Cond.getOperand(1));
9664           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
9665           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9666           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9667                               Chain, Dest, CC, Cmp);
9668           CC = DAG.getConstant(X86::COND_P, MVT::i8);
9669           Cond = Cmp;
9670           addTest = false;
9671         }
9672       }
9673     } else if (Cond.getOpcode() == ISD::SETCC &&
9674                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
9675       // For FCMP_UNE, we can emit
9676       // two branches instead of an explicit AND instruction with a
9677       // separate test. However, we only do this if this block doesn't
9678       // have a fall-through edge, because this requires an explicit
9679       // jmp when the condition is false.
9680       if (Op.getNode()->hasOneUse()) {
9681         SDNode *User = *Op.getNode()->use_begin();
9682         // Look for an unconditional branch following this conditional branch.
9683         // We need this because we need to reverse the successors in order
9684         // to implement FCMP_UNE.
9685         if (User->getOpcode() == ISD::BR) {
9686           SDValue FalseBB = User->getOperand(1);
9687           SDNode *NewBR =
9688             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9689           assert(NewBR == User);
9690           (void)NewBR;
9691
9692           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9693                                     Cond.getOperand(0), Cond.getOperand(1));
9694           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
9695           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9696           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9697                               Chain, Dest, CC, Cmp);
9698           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
9699           Cond = Cmp;
9700           addTest = false;
9701           Dest = FalseBB;
9702         }
9703       }
9704     }
9705   }
9706
9707   if (addTest) {
9708     // Look pass the truncate if the high bits are known zero.
9709     if (isTruncWithZeroHighBitsInput(Cond, DAG))
9710         Cond = Cond.getOperand(0);
9711
9712     // We know the result of AND is compared against zero. Try to match
9713     // it to BT.
9714     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
9715       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
9716       if (NewSetCC.getNode()) {
9717         CC = NewSetCC.getOperand(0);
9718         Cond = NewSetCC.getOperand(1);
9719         addTest = false;
9720       }
9721     }
9722   }
9723
9724   if (addTest) {
9725     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9726     Cond = EmitTest(Cond, X86::COND_NE, DAG);
9727   }
9728   Cond = ConvertCmpIfNecessary(Cond, DAG);
9729   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9730                      Chain, Dest, CC, Cond);
9731 }
9732
9733
9734 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
9735 // Calls to _alloca is needed to probe the stack when allocating more than 4k
9736 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
9737 // that the guard pages used by the OS virtual memory manager are allocated in
9738 // correct sequence.
9739 SDValue
9740 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
9741                                            SelectionDAG &DAG) const {
9742   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
9743           getTargetMachine().Options.EnableSegmentedStacks) &&
9744          "This should be used only on Windows targets or when segmented stacks "
9745          "are being used");
9746   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
9747   DebugLoc dl = Op.getDebugLoc();
9748
9749   // Get the inputs.
9750   SDValue Chain = Op.getOperand(0);
9751   SDValue Size  = Op.getOperand(1);
9752   // FIXME: Ensure alignment here
9753
9754   bool Is64Bit = Subtarget->is64Bit();
9755   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
9756
9757   if (getTargetMachine().Options.EnableSegmentedStacks) {
9758     MachineFunction &MF = DAG.getMachineFunction();
9759     MachineRegisterInfo &MRI = MF.getRegInfo();
9760
9761     if (Is64Bit) {
9762       // The 64 bit implementation of segmented stacks needs to clobber both r10
9763       // r11. This makes it impossible to use it along with nested parameters.
9764       const Function *F = MF.getFunction();
9765
9766       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
9767            I != E; ++I)
9768         if (I->hasNestAttr())
9769           report_fatal_error("Cannot use segmented stacks with functions that "
9770                              "have nested arguments.");
9771     }
9772
9773     const TargetRegisterClass *AddrRegClass =
9774       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
9775     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
9776     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
9777     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
9778                                 DAG.getRegister(Vreg, SPTy));
9779     SDValue Ops1[2] = { Value, Chain };
9780     return DAG.getMergeValues(Ops1, 2, dl);
9781   } else {
9782     SDValue Flag;
9783     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
9784
9785     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
9786     Flag = Chain.getValue(1);
9787     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
9788
9789     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
9790     Flag = Chain.getValue(1);
9791
9792     Chain = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
9793                                SPTy).getValue(1);
9794
9795     SDValue Ops1[2] = { Chain.getValue(0), Chain };
9796     return DAG.getMergeValues(Ops1, 2, dl);
9797   }
9798 }
9799
9800 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
9801   MachineFunction &MF = DAG.getMachineFunction();
9802   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
9803
9804   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9805   DebugLoc DL = Op.getDebugLoc();
9806
9807   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
9808     // vastart just stores the address of the VarArgsFrameIndex slot into the
9809     // memory location argument.
9810     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9811                                    getPointerTy());
9812     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
9813                         MachinePointerInfo(SV), false, false, 0);
9814   }
9815
9816   // __va_list_tag:
9817   //   gp_offset         (0 - 6 * 8)
9818   //   fp_offset         (48 - 48 + 8 * 16)
9819   //   overflow_arg_area (point to parameters coming in memory).
9820   //   reg_save_area
9821   SmallVector<SDValue, 8> MemOps;
9822   SDValue FIN = Op.getOperand(1);
9823   // Store gp_offset
9824   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
9825                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
9826                                                MVT::i32),
9827                                FIN, MachinePointerInfo(SV), false, false, 0);
9828   MemOps.push_back(Store);
9829
9830   // Store fp_offset
9831   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9832                     FIN, DAG.getIntPtrConstant(4));
9833   Store = DAG.getStore(Op.getOperand(0), DL,
9834                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
9835                                        MVT::i32),
9836                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
9837   MemOps.push_back(Store);
9838
9839   // Store ptr to overflow_arg_area
9840   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9841                     FIN, DAG.getIntPtrConstant(4));
9842   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9843                                     getPointerTy());
9844   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
9845                        MachinePointerInfo(SV, 8),
9846                        false, false, 0);
9847   MemOps.push_back(Store);
9848
9849   // Store ptr to reg_save_area.
9850   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9851                     FIN, DAG.getIntPtrConstant(8));
9852   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
9853                                     getPointerTy());
9854   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
9855                        MachinePointerInfo(SV, 16), false, false, 0);
9856   MemOps.push_back(Store);
9857   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
9858                      &MemOps[0], MemOps.size());
9859 }
9860
9861 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
9862   assert(Subtarget->is64Bit() &&
9863          "LowerVAARG only handles 64-bit va_arg!");
9864   assert((Subtarget->isTargetLinux() ||
9865           Subtarget->isTargetDarwin()) &&
9866           "Unhandled target in LowerVAARG");
9867   assert(Op.getNode()->getNumOperands() == 4);
9868   SDValue Chain = Op.getOperand(0);
9869   SDValue SrcPtr = Op.getOperand(1);
9870   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9871   unsigned Align = Op.getConstantOperandVal(3);
9872   DebugLoc dl = Op.getDebugLoc();
9873
9874   EVT ArgVT = Op.getNode()->getValueType(0);
9875   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
9876   uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
9877   uint8_t ArgMode;
9878
9879   // Decide which area this value should be read from.
9880   // TODO: Implement the AMD64 ABI in its entirety. This simple
9881   // selection mechanism works only for the basic types.
9882   if (ArgVT == MVT::f80) {
9883     llvm_unreachable("va_arg for f80 not yet implemented");
9884   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
9885     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
9886   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
9887     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
9888   } else {
9889     llvm_unreachable("Unhandled argument type in LowerVAARG");
9890   }
9891
9892   if (ArgMode == 2) {
9893     // Sanity Check: Make sure using fp_offset makes sense.
9894     assert(!getTargetMachine().Options.UseSoftFloat &&
9895            !(DAG.getMachineFunction()
9896                 .getFunction()->getFnAttributes()
9897                 .hasAttribute(Attributes::NoImplicitFloat)) &&
9898            Subtarget->hasSSE1());
9899   }
9900
9901   // Insert VAARG_64 node into the DAG
9902   // VAARG_64 returns two values: Variable Argument Address, Chain
9903   SmallVector<SDValue, 11> InstOps;
9904   InstOps.push_back(Chain);
9905   InstOps.push_back(SrcPtr);
9906   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
9907   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
9908   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
9909   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
9910   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
9911                                           VTs, &InstOps[0], InstOps.size(),
9912                                           MVT::i64,
9913                                           MachinePointerInfo(SV),
9914                                           /*Align=*/0,
9915                                           /*Volatile=*/false,
9916                                           /*ReadMem=*/true,
9917                                           /*WriteMem=*/true);
9918   Chain = VAARG.getValue(1);
9919
9920   // Load the next argument and return it
9921   return DAG.getLoad(ArgVT, dl,
9922                      Chain,
9923                      VAARG,
9924                      MachinePointerInfo(),
9925                      false, false, false, 0);
9926 }
9927
9928 static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
9929                            SelectionDAG &DAG) {
9930   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
9931   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
9932   SDValue Chain = Op.getOperand(0);
9933   SDValue DstPtr = Op.getOperand(1);
9934   SDValue SrcPtr = Op.getOperand(2);
9935   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
9936   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
9937   DebugLoc DL = Op.getDebugLoc();
9938
9939   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
9940                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
9941                        false,
9942                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
9943 }
9944
9945 // getTargetVShiftNOde - Handle vector element shifts where the shift amount
9946 // may or may not be a constant. Takes immediate version of shift as input.
9947 static SDValue getTargetVShiftNode(unsigned Opc, DebugLoc dl, EVT VT,
9948                                    SDValue SrcOp, SDValue ShAmt,
9949                                    SelectionDAG &DAG) {
9950   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
9951
9952   if (isa<ConstantSDNode>(ShAmt)) {
9953     // Constant may be a TargetConstant. Use a regular constant.
9954     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
9955     switch (Opc) {
9956       default: llvm_unreachable("Unknown target vector shift node");
9957       case X86ISD::VSHLI:
9958       case X86ISD::VSRLI:
9959       case X86ISD::VSRAI:
9960         return DAG.getNode(Opc, dl, VT, SrcOp,
9961                            DAG.getConstant(ShiftAmt, MVT::i32));
9962     }
9963   }
9964
9965   // Change opcode to non-immediate version
9966   switch (Opc) {
9967     default: llvm_unreachable("Unknown target vector shift node");
9968     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
9969     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
9970     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
9971   }
9972
9973   // Need to build a vector containing shift amount
9974   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
9975   SDValue ShOps[4];
9976   ShOps[0] = ShAmt;
9977   ShOps[1] = DAG.getConstant(0, MVT::i32);
9978   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
9979   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
9980
9981   // The return type has to be a 128-bit type with the same element
9982   // type as the input type.
9983   MVT EltVT = VT.getVectorElementType().getSimpleVT();
9984   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
9985
9986   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
9987   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
9988 }
9989
9990 static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
9991   DebugLoc dl = Op.getDebugLoc();
9992   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9993   switch (IntNo) {
9994   default: return SDValue();    // Don't custom lower most intrinsics.
9995   // Comparison intrinsics.
9996   case Intrinsic::x86_sse_comieq_ss:
9997   case Intrinsic::x86_sse_comilt_ss:
9998   case Intrinsic::x86_sse_comile_ss:
9999   case Intrinsic::x86_sse_comigt_ss:
10000   case Intrinsic::x86_sse_comige_ss:
10001   case Intrinsic::x86_sse_comineq_ss:
10002   case Intrinsic::x86_sse_ucomieq_ss:
10003   case Intrinsic::x86_sse_ucomilt_ss:
10004   case Intrinsic::x86_sse_ucomile_ss:
10005   case Intrinsic::x86_sse_ucomigt_ss:
10006   case Intrinsic::x86_sse_ucomige_ss:
10007   case Intrinsic::x86_sse_ucomineq_ss:
10008   case Intrinsic::x86_sse2_comieq_sd:
10009   case Intrinsic::x86_sse2_comilt_sd:
10010   case Intrinsic::x86_sse2_comile_sd:
10011   case Intrinsic::x86_sse2_comigt_sd:
10012   case Intrinsic::x86_sse2_comige_sd:
10013   case Intrinsic::x86_sse2_comineq_sd:
10014   case Intrinsic::x86_sse2_ucomieq_sd:
10015   case Intrinsic::x86_sse2_ucomilt_sd:
10016   case Intrinsic::x86_sse2_ucomile_sd:
10017   case Intrinsic::x86_sse2_ucomigt_sd:
10018   case Intrinsic::x86_sse2_ucomige_sd:
10019   case Intrinsic::x86_sse2_ucomineq_sd: {
10020     unsigned Opc;
10021     ISD::CondCode CC;
10022     switch (IntNo) {
10023     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10024     case Intrinsic::x86_sse_comieq_ss:
10025     case Intrinsic::x86_sse2_comieq_sd:
10026       Opc = X86ISD::COMI;
10027       CC = ISD::SETEQ;
10028       break;
10029     case Intrinsic::x86_sse_comilt_ss:
10030     case Intrinsic::x86_sse2_comilt_sd:
10031       Opc = X86ISD::COMI;
10032       CC = ISD::SETLT;
10033       break;
10034     case Intrinsic::x86_sse_comile_ss:
10035     case Intrinsic::x86_sse2_comile_sd:
10036       Opc = X86ISD::COMI;
10037       CC = ISD::SETLE;
10038       break;
10039     case Intrinsic::x86_sse_comigt_ss:
10040     case Intrinsic::x86_sse2_comigt_sd:
10041       Opc = X86ISD::COMI;
10042       CC = ISD::SETGT;
10043       break;
10044     case Intrinsic::x86_sse_comige_ss:
10045     case Intrinsic::x86_sse2_comige_sd:
10046       Opc = X86ISD::COMI;
10047       CC = ISD::SETGE;
10048       break;
10049     case Intrinsic::x86_sse_comineq_ss:
10050     case Intrinsic::x86_sse2_comineq_sd:
10051       Opc = X86ISD::COMI;
10052       CC = ISD::SETNE;
10053       break;
10054     case Intrinsic::x86_sse_ucomieq_ss:
10055     case Intrinsic::x86_sse2_ucomieq_sd:
10056       Opc = X86ISD::UCOMI;
10057       CC = ISD::SETEQ;
10058       break;
10059     case Intrinsic::x86_sse_ucomilt_ss:
10060     case Intrinsic::x86_sse2_ucomilt_sd:
10061       Opc = X86ISD::UCOMI;
10062       CC = ISD::SETLT;
10063       break;
10064     case Intrinsic::x86_sse_ucomile_ss:
10065     case Intrinsic::x86_sse2_ucomile_sd:
10066       Opc = X86ISD::UCOMI;
10067       CC = ISD::SETLE;
10068       break;
10069     case Intrinsic::x86_sse_ucomigt_ss:
10070     case Intrinsic::x86_sse2_ucomigt_sd:
10071       Opc = X86ISD::UCOMI;
10072       CC = ISD::SETGT;
10073       break;
10074     case Intrinsic::x86_sse_ucomige_ss:
10075     case Intrinsic::x86_sse2_ucomige_sd:
10076       Opc = X86ISD::UCOMI;
10077       CC = ISD::SETGE;
10078       break;
10079     case Intrinsic::x86_sse_ucomineq_ss:
10080     case Intrinsic::x86_sse2_ucomineq_sd:
10081       Opc = X86ISD::UCOMI;
10082       CC = ISD::SETNE;
10083       break;
10084     }
10085
10086     SDValue LHS = Op.getOperand(1);
10087     SDValue RHS = Op.getOperand(2);
10088     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
10089     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
10090     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
10091     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10092                                 DAG.getConstant(X86CC, MVT::i8), Cond);
10093     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10094   }
10095
10096   // Arithmetic intrinsics.
10097   case Intrinsic::x86_sse2_pmulu_dq:
10098   case Intrinsic::x86_avx2_pmulu_dq:
10099     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
10100                        Op.getOperand(1), Op.getOperand(2));
10101
10102   // SSE3/AVX horizontal add/sub intrinsics
10103   case Intrinsic::x86_sse3_hadd_ps:
10104   case Intrinsic::x86_sse3_hadd_pd:
10105   case Intrinsic::x86_avx_hadd_ps_256:
10106   case Intrinsic::x86_avx_hadd_pd_256:
10107   case Intrinsic::x86_sse3_hsub_ps:
10108   case Intrinsic::x86_sse3_hsub_pd:
10109   case Intrinsic::x86_avx_hsub_ps_256:
10110   case Intrinsic::x86_avx_hsub_pd_256:
10111   case Intrinsic::x86_ssse3_phadd_w_128:
10112   case Intrinsic::x86_ssse3_phadd_d_128:
10113   case Intrinsic::x86_avx2_phadd_w:
10114   case Intrinsic::x86_avx2_phadd_d:
10115   case Intrinsic::x86_ssse3_phsub_w_128:
10116   case Intrinsic::x86_ssse3_phsub_d_128:
10117   case Intrinsic::x86_avx2_phsub_w:
10118   case Intrinsic::x86_avx2_phsub_d: {
10119     unsigned Opcode;
10120     switch (IntNo) {
10121     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10122     case Intrinsic::x86_sse3_hadd_ps:
10123     case Intrinsic::x86_sse3_hadd_pd:
10124     case Intrinsic::x86_avx_hadd_ps_256:
10125     case Intrinsic::x86_avx_hadd_pd_256:
10126       Opcode = X86ISD::FHADD;
10127       break;
10128     case Intrinsic::x86_sse3_hsub_ps:
10129     case Intrinsic::x86_sse3_hsub_pd:
10130     case Intrinsic::x86_avx_hsub_ps_256:
10131     case Intrinsic::x86_avx_hsub_pd_256:
10132       Opcode = X86ISD::FHSUB;
10133       break;
10134     case Intrinsic::x86_ssse3_phadd_w_128:
10135     case Intrinsic::x86_ssse3_phadd_d_128:
10136     case Intrinsic::x86_avx2_phadd_w:
10137     case Intrinsic::x86_avx2_phadd_d:
10138       Opcode = X86ISD::HADD;
10139       break;
10140     case Intrinsic::x86_ssse3_phsub_w_128:
10141     case Intrinsic::x86_ssse3_phsub_d_128:
10142     case Intrinsic::x86_avx2_phsub_w:
10143     case Intrinsic::x86_avx2_phsub_d:
10144       Opcode = X86ISD::HSUB;
10145       break;
10146     }
10147     return DAG.getNode(Opcode, dl, Op.getValueType(),
10148                        Op.getOperand(1), Op.getOperand(2));
10149   }
10150
10151   // AVX2 variable shift intrinsics
10152   case Intrinsic::x86_avx2_psllv_d:
10153   case Intrinsic::x86_avx2_psllv_q:
10154   case Intrinsic::x86_avx2_psllv_d_256:
10155   case Intrinsic::x86_avx2_psllv_q_256:
10156   case Intrinsic::x86_avx2_psrlv_d:
10157   case Intrinsic::x86_avx2_psrlv_q:
10158   case Intrinsic::x86_avx2_psrlv_d_256:
10159   case Intrinsic::x86_avx2_psrlv_q_256:
10160   case Intrinsic::x86_avx2_psrav_d:
10161   case Intrinsic::x86_avx2_psrav_d_256: {
10162     unsigned Opcode;
10163     switch (IntNo) {
10164     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10165     case Intrinsic::x86_avx2_psllv_d:
10166     case Intrinsic::x86_avx2_psllv_q:
10167     case Intrinsic::x86_avx2_psllv_d_256:
10168     case Intrinsic::x86_avx2_psllv_q_256:
10169       Opcode = ISD::SHL;
10170       break;
10171     case Intrinsic::x86_avx2_psrlv_d:
10172     case Intrinsic::x86_avx2_psrlv_q:
10173     case Intrinsic::x86_avx2_psrlv_d_256:
10174     case Intrinsic::x86_avx2_psrlv_q_256:
10175       Opcode = ISD::SRL;
10176       break;
10177     case Intrinsic::x86_avx2_psrav_d:
10178     case Intrinsic::x86_avx2_psrav_d_256:
10179       Opcode = ISD::SRA;
10180       break;
10181     }
10182     return DAG.getNode(Opcode, dl, Op.getValueType(),
10183                        Op.getOperand(1), Op.getOperand(2));
10184   }
10185
10186   case Intrinsic::x86_ssse3_pshuf_b_128:
10187   case Intrinsic::x86_avx2_pshuf_b:
10188     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
10189                        Op.getOperand(1), Op.getOperand(2));
10190
10191   case Intrinsic::x86_ssse3_psign_b_128:
10192   case Intrinsic::x86_ssse3_psign_w_128:
10193   case Intrinsic::x86_ssse3_psign_d_128:
10194   case Intrinsic::x86_avx2_psign_b:
10195   case Intrinsic::x86_avx2_psign_w:
10196   case Intrinsic::x86_avx2_psign_d:
10197     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
10198                        Op.getOperand(1), Op.getOperand(2));
10199
10200   case Intrinsic::x86_sse41_insertps:
10201     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
10202                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
10203
10204   case Intrinsic::x86_avx_vperm2f128_ps_256:
10205   case Intrinsic::x86_avx_vperm2f128_pd_256:
10206   case Intrinsic::x86_avx_vperm2f128_si_256:
10207   case Intrinsic::x86_avx2_vperm2i128:
10208     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
10209                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
10210
10211   case Intrinsic::x86_avx2_permd:
10212   case Intrinsic::x86_avx2_permps:
10213     // Operands intentionally swapped. Mask is last operand to intrinsic,
10214     // but second operand for node/intruction.
10215     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
10216                        Op.getOperand(2), Op.getOperand(1));
10217
10218   // ptest and testp intrinsics. The intrinsic these come from are designed to
10219   // return an integer value, not just an instruction so lower it to the ptest
10220   // or testp pattern and a setcc for the result.
10221   case Intrinsic::x86_sse41_ptestz:
10222   case Intrinsic::x86_sse41_ptestc:
10223   case Intrinsic::x86_sse41_ptestnzc:
10224   case Intrinsic::x86_avx_ptestz_256:
10225   case Intrinsic::x86_avx_ptestc_256:
10226   case Intrinsic::x86_avx_ptestnzc_256:
10227   case Intrinsic::x86_avx_vtestz_ps:
10228   case Intrinsic::x86_avx_vtestc_ps:
10229   case Intrinsic::x86_avx_vtestnzc_ps:
10230   case Intrinsic::x86_avx_vtestz_pd:
10231   case Intrinsic::x86_avx_vtestc_pd:
10232   case Intrinsic::x86_avx_vtestnzc_pd:
10233   case Intrinsic::x86_avx_vtestz_ps_256:
10234   case Intrinsic::x86_avx_vtestc_ps_256:
10235   case Intrinsic::x86_avx_vtestnzc_ps_256:
10236   case Intrinsic::x86_avx_vtestz_pd_256:
10237   case Intrinsic::x86_avx_vtestc_pd_256:
10238   case Intrinsic::x86_avx_vtestnzc_pd_256: {
10239     bool IsTestPacked = false;
10240     unsigned X86CC;
10241     switch (IntNo) {
10242     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
10243     case Intrinsic::x86_avx_vtestz_ps:
10244     case Intrinsic::x86_avx_vtestz_pd:
10245     case Intrinsic::x86_avx_vtestz_ps_256:
10246     case Intrinsic::x86_avx_vtestz_pd_256:
10247       IsTestPacked = true; // Fallthrough
10248     case Intrinsic::x86_sse41_ptestz:
10249     case Intrinsic::x86_avx_ptestz_256:
10250       // ZF = 1
10251       X86CC = X86::COND_E;
10252       break;
10253     case Intrinsic::x86_avx_vtestc_ps:
10254     case Intrinsic::x86_avx_vtestc_pd:
10255     case Intrinsic::x86_avx_vtestc_ps_256:
10256     case Intrinsic::x86_avx_vtestc_pd_256:
10257       IsTestPacked = true; // Fallthrough
10258     case Intrinsic::x86_sse41_ptestc:
10259     case Intrinsic::x86_avx_ptestc_256:
10260       // CF = 1
10261       X86CC = X86::COND_B;
10262       break;
10263     case Intrinsic::x86_avx_vtestnzc_ps:
10264     case Intrinsic::x86_avx_vtestnzc_pd:
10265     case Intrinsic::x86_avx_vtestnzc_ps_256:
10266     case Intrinsic::x86_avx_vtestnzc_pd_256:
10267       IsTestPacked = true; // Fallthrough
10268     case Intrinsic::x86_sse41_ptestnzc:
10269     case Intrinsic::x86_avx_ptestnzc_256:
10270       // ZF and CF = 0
10271       X86CC = X86::COND_A;
10272       break;
10273     }
10274
10275     SDValue LHS = Op.getOperand(1);
10276     SDValue RHS = Op.getOperand(2);
10277     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
10278     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
10279     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
10280     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
10281     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10282   }
10283
10284   // SSE/AVX shift intrinsics
10285   case Intrinsic::x86_sse2_psll_w:
10286   case Intrinsic::x86_sse2_psll_d:
10287   case Intrinsic::x86_sse2_psll_q:
10288   case Intrinsic::x86_avx2_psll_w:
10289   case Intrinsic::x86_avx2_psll_d:
10290   case Intrinsic::x86_avx2_psll_q:
10291   case Intrinsic::x86_sse2_psrl_w:
10292   case Intrinsic::x86_sse2_psrl_d:
10293   case Intrinsic::x86_sse2_psrl_q:
10294   case Intrinsic::x86_avx2_psrl_w:
10295   case Intrinsic::x86_avx2_psrl_d:
10296   case Intrinsic::x86_avx2_psrl_q:
10297   case Intrinsic::x86_sse2_psra_w:
10298   case Intrinsic::x86_sse2_psra_d:
10299   case Intrinsic::x86_avx2_psra_w:
10300   case Intrinsic::x86_avx2_psra_d: {
10301     unsigned Opcode;
10302     switch (IntNo) {
10303     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10304     case Intrinsic::x86_sse2_psll_w:
10305     case Intrinsic::x86_sse2_psll_d:
10306     case Intrinsic::x86_sse2_psll_q:
10307     case Intrinsic::x86_avx2_psll_w:
10308     case Intrinsic::x86_avx2_psll_d:
10309     case Intrinsic::x86_avx2_psll_q:
10310       Opcode = X86ISD::VSHL;
10311       break;
10312     case Intrinsic::x86_sse2_psrl_w:
10313     case Intrinsic::x86_sse2_psrl_d:
10314     case Intrinsic::x86_sse2_psrl_q:
10315     case Intrinsic::x86_avx2_psrl_w:
10316     case Intrinsic::x86_avx2_psrl_d:
10317     case Intrinsic::x86_avx2_psrl_q:
10318       Opcode = X86ISD::VSRL;
10319       break;
10320     case Intrinsic::x86_sse2_psra_w:
10321     case Intrinsic::x86_sse2_psra_d:
10322     case Intrinsic::x86_avx2_psra_w:
10323     case Intrinsic::x86_avx2_psra_d:
10324       Opcode = X86ISD::VSRA;
10325       break;
10326     }
10327     return DAG.getNode(Opcode, dl, Op.getValueType(),
10328                        Op.getOperand(1), Op.getOperand(2));
10329   }
10330
10331   // SSE/AVX immediate shift intrinsics
10332   case Intrinsic::x86_sse2_pslli_w:
10333   case Intrinsic::x86_sse2_pslli_d:
10334   case Intrinsic::x86_sse2_pslli_q:
10335   case Intrinsic::x86_avx2_pslli_w:
10336   case Intrinsic::x86_avx2_pslli_d:
10337   case Intrinsic::x86_avx2_pslli_q:
10338   case Intrinsic::x86_sse2_psrli_w:
10339   case Intrinsic::x86_sse2_psrli_d:
10340   case Intrinsic::x86_sse2_psrli_q:
10341   case Intrinsic::x86_avx2_psrli_w:
10342   case Intrinsic::x86_avx2_psrli_d:
10343   case Intrinsic::x86_avx2_psrli_q:
10344   case Intrinsic::x86_sse2_psrai_w:
10345   case Intrinsic::x86_sse2_psrai_d:
10346   case Intrinsic::x86_avx2_psrai_w:
10347   case Intrinsic::x86_avx2_psrai_d: {
10348     unsigned Opcode;
10349     switch (IntNo) {
10350     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10351     case Intrinsic::x86_sse2_pslli_w:
10352     case Intrinsic::x86_sse2_pslli_d:
10353     case Intrinsic::x86_sse2_pslli_q:
10354     case Intrinsic::x86_avx2_pslli_w:
10355     case Intrinsic::x86_avx2_pslli_d:
10356     case Intrinsic::x86_avx2_pslli_q:
10357       Opcode = X86ISD::VSHLI;
10358       break;
10359     case Intrinsic::x86_sse2_psrli_w:
10360     case Intrinsic::x86_sse2_psrli_d:
10361     case Intrinsic::x86_sse2_psrli_q:
10362     case Intrinsic::x86_avx2_psrli_w:
10363     case Intrinsic::x86_avx2_psrli_d:
10364     case Intrinsic::x86_avx2_psrli_q:
10365       Opcode = X86ISD::VSRLI;
10366       break;
10367     case Intrinsic::x86_sse2_psrai_w:
10368     case Intrinsic::x86_sse2_psrai_d:
10369     case Intrinsic::x86_avx2_psrai_w:
10370     case Intrinsic::x86_avx2_psrai_d:
10371       Opcode = X86ISD::VSRAI;
10372       break;
10373     }
10374     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
10375                                Op.getOperand(1), Op.getOperand(2), DAG);
10376   }
10377
10378   case Intrinsic::x86_sse42_pcmpistria128:
10379   case Intrinsic::x86_sse42_pcmpestria128:
10380   case Intrinsic::x86_sse42_pcmpistric128:
10381   case Intrinsic::x86_sse42_pcmpestric128:
10382   case Intrinsic::x86_sse42_pcmpistrio128:
10383   case Intrinsic::x86_sse42_pcmpestrio128:
10384   case Intrinsic::x86_sse42_pcmpistris128:
10385   case Intrinsic::x86_sse42_pcmpestris128:
10386   case Intrinsic::x86_sse42_pcmpistriz128:
10387   case Intrinsic::x86_sse42_pcmpestriz128: {
10388     unsigned Opcode;
10389     unsigned X86CC;
10390     switch (IntNo) {
10391     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10392     case Intrinsic::x86_sse42_pcmpistria128:
10393       Opcode = X86ISD::PCMPISTRI;
10394       X86CC = X86::COND_A;
10395       break;
10396     case Intrinsic::x86_sse42_pcmpestria128:
10397       Opcode = X86ISD::PCMPESTRI;
10398       X86CC = X86::COND_A;
10399       break;
10400     case Intrinsic::x86_sse42_pcmpistric128:
10401       Opcode = X86ISD::PCMPISTRI;
10402       X86CC = X86::COND_B;
10403       break;
10404     case Intrinsic::x86_sse42_pcmpestric128:
10405       Opcode = X86ISD::PCMPESTRI;
10406       X86CC = X86::COND_B;
10407       break;
10408     case Intrinsic::x86_sse42_pcmpistrio128:
10409       Opcode = X86ISD::PCMPISTRI;
10410       X86CC = X86::COND_O;
10411       break;
10412     case Intrinsic::x86_sse42_pcmpestrio128:
10413       Opcode = X86ISD::PCMPESTRI;
10414       X86CC = X86::COND_O;
10415       break;
10416     case Intrinsic::x86_sse42_pcmpistris128:
10417       Opcode = X86ISD::PCMPISTRI;
10418       X86CC = X86::COND_S;
10419       break;
10420     case Intrinsic::x86_sse42_pcmpestris128:
10421       Opcode = X86ISD::PCMPESTRI;
10422       X86CC = X86::COND_S;
10423       break;
10424     case Intrinsic::x86_sse42_pcmpistriz128:
10425       Opcode = X86ISD::PCMPISTRI;
10426       X86CC = X86::COND_E;
10427       break;
10428     case Intrinsic::x86_sse42_pcmpestriz128:
10429       Opcode = X86ISD::PCMPESTRI;
10430       X86CC = X86::COND_E;
10431       break;
10432     }
10433     SmallVector<SDValue, 5> NewOps;
10434     NewOps.append(Op->op_begin()+1, Op->op_end());
10435     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10436     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
10437     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10438                                 DAG.getConstant(X86CC, MVT::i8),
10439                                 SDValue(PCMP.getNode(), 1));
10440     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10441   }
10442
10443   case Intrinsic::x86_sse42_pcmpistri128:
10444   case Intrinsic::x86_sse42_pcmpestri128: {
10445     unsigned Opcode;
10446     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
10447       Opcode = X86ISD::PCMPISTRI;
10448     else
10449       Opcode = X86ISD::PCMPESTRI;
10450
10451     SmallVector<SDValue, 5> NewOps;
10452     NewOps.append(Op->op_begin()+1, Op->op_end());
10453     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10454     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
10455   }
10456   case Intrinsic::x86_fma_vfmadd_ps:
10457   case Intrinsic::x86_fma_vfmadd_pd:
10458   case Intrinsic::x86_fma_vfmsub_ps:
10459   case Intrinsic::x86_fma_vfmsub_pd:
10460   case Intrinsic::x86_fma_vfnmadd_ps:
10461   case Intrinsic::x86_fma_vfnmadd_pd:
10462   case Intrinsic::x86_fma_vfnmsub_ps:
10463   case Intrinsic::x86_fma_vfnmsub_pd:
10464   case Intrinsic::x86_fma_vfmaddsub_ps:
10465   case Intrinsic::x86_fma_vfmaddsub_pd:
10466   case Intrinsic::x86_fma_vfmsubadd_ps:
10467   case Intrinsic::x86_fma_vfmsubadd_pd:
10468   case Intrinsic::x86_fma_vfmadd_ps_256:
10469   case Intrinsic::x86_fma_vfmadd_pd_256:
10470   case Intrinsic::x86_fma_vfmsub_ps_256:
10471   case Intrinsic::x86_fma_vfmsub_pd_256:
10472   case Intrinsic::x86_fma_vfnmadd_ps_256:
10473   case Intrinsic::x86_fma_vfnmadd_pd_256:
10474   case Intrinsic::x86_fma_vfnmsub_ps_256:
10475   case Intrinsic::x86_fma_vfnmsub_pd_256:
10476   case Intrinsic::x86_fma_vfmaddsub_ps_256:
10477   case Intrinsic::x86_fma_vfmaddsub_pd_256:
10478   case Intrinsic::x86_fma_vfmsubadd_ps_256:
10479   case Intrinsic::x86_fma_vfmsubadd_pd_256: {
10480     unsigned Opc;
10481     switch (IntNo) {
10482     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10483     case Intrinsic::x86_fma_vfmadd_ps:
10484     case Intrinsic::x86_fma_vfmadd_pd:
10485     case Intrinsic::x86_fma_vfmadd_ps_256:
10486     case Intrinsic::x86_fma_vfmadd_pd_256:
10487       Opc = X86ISD::FMADD;
10488       break;
10489     case Intrinsic::x86_fma_vfmsub_ps:
10490     case Intrinsic::x86_fma_vfmsub_pd:
10491     case Intrinsic::x86_fma_vfmsub_ps_256:
10492     case Intrinsic::x86_fma_vfmsub_pd_256:
10493       Opc = X86ISD::FMSUB;
10494       break;
10495     case Intrinsic::x86_fma_vfnmadd_ps:
10496     case Intrinsic::x86_fma_vfnmadd_pd:
10497     case Intrinsic::x86_fma_vfnmadd_ps_256:
10498     case Intrinsic::x86_fma_vfnmadd_pd_256:
10499       Opc = X86ISD::FNMADD;
10500       break;
10501     case Intrinsic::x86_fma_vfnmsub_ps:
10502     case Intrinsic::x86_fma_vfnmsub_pd:
10503     case Intrinsic::x86_fma_vfnmsub_ps_256:
10504     case Intrinsic::x86_fma_vfnmsub_pd_256:
10505       Opc = X86ISD::FNMSUB;
10506       break;
10507     case Intrinsic::x86_fma_vfmaddsub_ps:
10508     case Intrinsic::x86_fma_vfmaddsub_pd:
10509     case Intrinsic::x86_fma_vfmaddsub_ps_256:
10510     case Intrinsic::x86_fma_vfmaddsub_pd_256:
10511       Opc = X86ISD::FMADDSUB;
10512       break;
10513     case Intrinsic::x86_fma_vfmsubadd_ps:
10514     case Intrinsic::x86_fma_vfmsubadd_pd:
10515     case Intrinsic::x86_fma_vfmsubadd_ps_256:
10516     case Intrinsic::x86_fma_vfmsubadd_pd_256:
10517       Opc = X86ISD::FMSUBADD;
10518       break;
10519     }
10520
10521     return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
10522                        Op.getOperand(2), Op.getOperand(3));
10523   }
10524   }
10525 }
10526
10527 static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) {
10528   DebugLoc dl = Op.getDebugLoc();
10529   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10530   switch (IntNo) {
10531   default: return SDValue();    // Don't custom lower most intrinsics.
10532
10533   // RDRAND intrinsics.
10534   case Intrinsic::x86_rdrand_16:
10535   case Intrinsic::x86_rdrand_32:
10536   case Intrinsic::x86_rdrand_64: {
10537     // Emit the node with the right value type.
10538     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
10539     SDValue Result = DAG.getNode(X86ISD::RDRAND, dl, VTs, Op.getOperand(0));
10540
10541     // If the value returned by RDRAND was valid (CF=1), return 1. Otherwise
10542     // return the value from Rand, which is always 0, casted to i32.
10543     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
10544                       DAG.getConstant(1, Op->getValueType(1)),
10545                       DAG.getConstant(X86::COND_B, MVT::i32),
10546                       SDValue(Result.getNode(), 1) };
10547     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
10548                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
10549                                   Ops, 4);
10550
10551     // Return { result, isValid, chain }.
10552     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
10553                        SDValue(Result.getNode(), 2));
10554   }
10555   }
10556 }
10557
10558 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
10559                                            SelectionDAG &DAG) const {
10560   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10561   MFI->setReturnAddressIsTaken(true);
10562
10563   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10564   DebugLoc dl = Op.getDebugLoc();
10565   EVT PtrVT = getPointerTy();
10566
10567   if (Depth > 0) {
10568     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
10569     SDValue Offset =
10570       DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
10571     return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
10572                        DAG.getNode(ISD::ADD, dl, PtrVT,
10573                                    FrameAddr, Offset),
10574                        MachinePointerInfo(), false, false, false, 0);
10575   }
10576
10577   // Just load the return address.
10578   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
10579   return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
10580                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
10581 }
10582
10583 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
10584   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10585   MFI->setFrameAddressIsTaken(true);
10586
10587   EVT VT = Op.getValueType();
10588   DebugLoc dl = Op.getDebugLoc();  // FIXME probably not meaningful
10589   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10590   unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
10591   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
10592   while (Depth--)
10593     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
10594                             MachinePointerInfo(),
10595                             false, false, false, 0);
10596   return FrameAddr;
10597 }
10598
10599 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
10600                                                      SelectionDAG &DAG) const {
10601   return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
10602 }
10603
10604 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
10605   SDValue Chain     = Op.getOperand(0);
10606   SDValue Offset    = Op.getOperand(1);
10607   SDValue Handler   = Op.getOperand(2);
10608   DebugLoc dl       = Op.getDebugLoc();
10609
10610   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
10611                                      Subtarget->is64Bit() ? X86::RBP : X86::EBP,
10612                                      getPointerTy());
10613   unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
10614
10615   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
10616                                   DAG.getIntPtrConstant(RegInfo->getSlotSize()));
10617   StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
10618   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
10619                        false, false, 0);
10620   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
10621
10622   return DAG.getNode(X86ISD::EH_RETURN, dl,
10623                      MVT::Other,
10624                      Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
10625 }
10626
10627 SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
10628                                                SelectionDAG &DAG) const {
10629   DebugLoc DL = Op.getDebugLoc();
10630   return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
10631                      DAG.getVTList(MVT::i32, MVT::Other),
10632                      Op.getOperand(0), Op.getOperand(1));
10633 }
10634
10635 SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
10636                                                 SelectionDAG &DAG) const {
10637   DebugLoc DL = Op.getDebugLoc();
10638   return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
10639                      Op.getOperand(0), Op.getOperand(1));
10640 }
10641
10642 static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
10643   return Op.getOperand(0);
10644 }
10645
10646 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
10647                                                 SelectionDAG &DAG) const {
10648   SDValue Root = Op.getOperand(0);
10649   SDValue Trmp = Op.getOperand(1); // trampoline
10650   SDValue FPtr = Op.getOperand(2); // nested function
10651   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
10652   DebugLoc dl  = Op.getDebugLoc();
10653
10654   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10655   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
10656
10657   if (Subtarget->is64Bit()) {
10658     SDValue OutChains[6];
10659
10660     // Large code-model.
10661     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
10662     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
10663
10664     const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
10665     const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
10666
10667     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
10668
10669     // Load the pointer to the nested function into R11.
10670     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
10671     SDValue Addr = Trmp;
10672     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
10673                                 Addr, MachinePointerInfo(TrmpAddr),
10674                                 false, false, 0);
10675
10676     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10677                        DAG.getConstant(2, MVT::i64));
10678     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
10679                                 MachinePointerInfo(TrmpAddr, 2),
10680                                 false, false, 2);
10681
10682     // Load the 'nest' parameter value into R10.
10683     // R10 is specified in X86CallingConv.td
10684     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
10685     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10686                        DAG.getConstant(10, MVT::i64));
10687     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
10688                                 Addr, MachinePointerInfo(TrmpAddr, 10),
10689                                 false, false, 0);
10690
10691     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10692                        DAG.getConstant(12, MVT::i64));
10693     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
10694                                 MachinePointerInfo(TrmpAddr, 12),
10695                                 false, false, 2);
10696
10697     // Jump to the nested function.
10698     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
10699     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10700                        DAG.getConstant(20, MVT::i64));
10701     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
10702                                 Addr, MachinePointerInfo(TrmpAddr, 20),
10703                                 false, false, 0);
10704
10705     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
10706     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10707                        DAG.getConstant(22, MVT::i64));
10708     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
10709                                 MachinePointerInfo(TrmpAddr, 22),
10710                                 false, false, 0);
10711
10712     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
10713   } else {
10714     const Function *Func =
10715       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
10716     CallingConv::ID CC = Func->getCallingConv();
10717     unsigned NestReg;
10718
10719     switch (CC) {
10720     default:
10721       llvm_unreachable("Unsupported calling convention");
10722     case CallingConv::C:
10723     case CallingConv::X86_StdCall: {
10724       // Pass 'nest' parameter in ECX.
10725       // Must be kept in sync with X86CallingConv.td
10726       NestReg = X86::ECX;
10727
10728       // Check that ECX wasn't needed by an 'inreg' parameter.
10729       FunctionType *FTy = Func->getFunctionType();
10730       const AttrListPtr &Attrs = Func->getAttributes();
10731
10732       if (!Attrs.isEmpty() && !Func->isVarArg()) {
10733         unsigned InRegCount = 0;
10734         unsigned Idx = 1;
10735
10736         for (FunctionType::param_iterator I = FTy->param_begin(),
10737              E = FTy->param_end(); I != E; ++I, ++Idx)
10738           if (Attrs.getParamAttributes(Idx).hasAttribute(Attributes::InReg))
10739             // FIXME: should only count parameters that are lowered to integers.
10740             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
10741
10742         if (InRegCount > 2) {
10743           report_fatal_error("Nest register in use - reduce number of inreg"
10744                              " parameters!");
10745         }
10746       }
10747       break;
10748     }
10749     case CallingConv::X86_FastCall:
10750     case CallingConv::X86_ThisCall:
10751     case CallingConv::Fast:
10752       // Pass 'nest' parameter in EAX.
10753       // Must be kept in sync with X86CallingConv.td
10754       NestReg = X86::EAX;
10755       break;
10756     }
10757
10758     SDValue OutChains[4];
10759     SDValue Addr, Disp;
10760
10761     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10762                        DAG.getConstant(10, MVT::i32));
10763     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
10764
10765     // This is storing the opcode for MOV32ri.
10766     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
10767     const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
10768     OutChains[0] = DAG.getStore(Root, dl,
10769                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
10770                                 Trmp, MachinePointerInfo(TrmpAddr),
10771                                 false, false, 0);
10772
10773     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10774                        DAG.getConstant(1, MVT::i32));
10775     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
10776                                 MachinePointerInfo(TrmpAddr, 1),
10777                                 false, false, 1);
10778
10779     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
10780     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10781                        DAG.getConstant(5, MVT::i32));
10782     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
10783                                 MachinePointerInfo(TrmpAddr, 5),
10784                                 false, false, 1);
10785
10786     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10787                        DAG.getConstant(6, MVT::i32));
10788     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
10789                                 MachinePointerInfo(TrmpAddr, 6),
10790                                 false, false, 1);
10791
10792     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
10793   }
10794 }
10795
10796 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
10797                                             SelectionDAG &DAG) const {
10798   /*
10799    The rounding mode is in bits 11:10 of FPSR, and has the following
10800    settings:
10801      00 Round to nearest
10802      01 Round to -inf
10803      10 Round to +inf
10804      11 Round to 0
10805
10806   FLT_ROUNDS, on the other hand, expects the following:
10807     -1 Undefined
10808      0 Round to 0
10809      1 Round to nearest
10810      2 Round to +inf
10811      3 Round to -inf
10812
10813   To perform the conversion, we do:
10814     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
10815   */
10816
10817   MachineFunction &MF = DAG.getMachineFunction();
10818   const TargetMachine &TM = MF.getTarget();
10819   const TargetFrameLowering &TFI = *TM.getFrameLowering();
10820   unsigned StackAlignment = TFI.getStackAlignment();
10821   EVT VT = Op.getValueType();
10822   DebugLoc DL = Op.getDebugLoc();
10823
10824   // Save FP Control Word to stack slot
10825   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
10826   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
10827
10828
10829   MachineMemOperand *MMO =
10830    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
10831                            MachineMemOperand::MOStore, 2, 2);
10832
10833   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
10834   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
10835                                           DAG.getVTList(MVT::Other),
10836                                           Ops, 2, MVT::i16, MMO);
10837
10838   // Load FP Control Word from stack slot
10839   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
10840                             MachinePointerInfo(), false, false, false, 0);
10841
10842   // Transform as necessary
10843   SDValue CWD1 =
10844     DAG.getNode(ISD::SRL, DL, MVT::i16,
10845                 DAG.getNode(ISD::AND, DL, MVT::i16,
10846                             CWD, DAG.getConstant(0x800, MVT::i16)),
10847                 DAG.getConstant(11, MVT::i8));
10848   SDValue CWD2 =
10849     DAG.getNode(ISD::SRL, DL, MVT::i16,
10850                 DAG.getNode(ISD::AND, DL, MVT::i16,
10851                             CWD, DAG.getConstant(0x400, MVT::i16)),
10852                 DAG.getConstant(9, MVT::i8));
10853
10854   SDValue RetVal =
10855     DAG.getNode(ISD::AND, DL, MVT::i16,
10856                 DAG.getNode(ISD::ADD, DL, MVT::i16,
10857                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
10858                             DAG.getConstant(1, MVT::i16)),
10859                 DAG.getConstant(3, MVT::i16));
10860
10861
10862   return DAG.getNode((VT.getSizeInBits() < 16 ?
10863                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
10864 }
10865
10866 static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
10867   EVT VT = Op.getValueType();
10868   EVT OpVT = VT;
10869   unsigned NumBits = VT.getSizeInBits();
10870   DebugLoc dl = Op.getDebugLoc();
10871
10872   Op = Op.getOperand(0);
10873   if (VT == MVT::i8) {
10874     // Zero extend to i32 since there is not an i8 bsr.
10875     OpVT = MVT::i32;
10876     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
10877   }
10878
10879   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
10880   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
10881   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
10882
10883   // If src is zero (i.e. bsr sets ZF), returns NumBits.
10884   SDValue Ops[] = {
10885     Op,
10886     DAG.getConstant(NumBits+NumBits-1, OpVT),
10887     DAG.getConstant(X86::COND_E, MVT::i8),
10888     Op.getValue(1)
10889   };
10890   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
10891
10892   // Finally xor with NumBits-1.
10893   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
10894
10895   if (VT == MVT::i8)
10896     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
10897   return Op;
10898 }
10899
10900 static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
10901   EVT VT = Op.getValueType();
10902   EVT OpVT = VT;
10903   unsigned NumBits = VT.getSizeInBits();
10904   DebugLoc dl = Op.getDebugLoc();
10905
10906   Op = Op.getOperand(0);
10907   if (VT == MVT::i8) {
10908     // Zero extend to i32 since there is not an i8 bsr.
10909     OpVT = MVT::i32;
10910     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
10911   }
10912
10913   // Issue a bsr (scan bits in reverse).
10914   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
10915   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
10916
10917   // And xor with NumBits-1.
10918   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
10919
10920   if (VT == MVT::i8)
10921     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
10922   return Op;
10923 }
10924
10925 static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
10926   EVT VT = Op.getValueType();
10927   unsigned NumBits = VT.getSizeInBits();
10928   DebugLoc dl = Op.getDebugLoc();
10929   Op = Op.getOperand(0);
10930
10931   // Issue a bsf (scan bits forward) which also sets EFLAGS.
10932   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
10933   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
10934
10935   // If src is zero (i.e. bsf sets ZF), returns NumBits.
10936   SDValue Ops[] = {
10937     Op,
10938     DAG.getConstant(NumBits, VT),
10939     DAG.getConstant(X86::COND_E, MVT::i8),
10940     Op.getValue(1)
10941   };
10942   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
10943 }
10944
10945 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
10946 // ones, and then concatenate the result back.
10947 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
10948   EVT VT = Op.getValueType();
10949
10950   assert(VT.is256BitVector() && VT.isInteger() &&
10951          "Unsupported value type for operation");
10952
10953   unsigned NumElems = VT.getVectorNumElements();
10954   DebugLoc dl = Op.getDebugLoc();
10955
10956   // Extract the LHS vectors
10957   SDValue LHS = Op.getOperand(0);
10958   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
10959   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
10960
10961   // Extract the RHS vectors
10962   SDValue RHS = Op.getOperand(1);
10963   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
10964   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
10965
10966   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10967   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10968
10969   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
10970                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
10971                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
10972 }
10973
10974 static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
10975   assert(Op.getValueType().is256BitVector() &&
10976          Op.getValueType().isInteger() &&
10977          "Only handle AVX 256-bit vector integer operation");
10978   return Lower256IntArith(Op, DAG);
10979 }
10980
10981 static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
10982   assert(Op.getValueType().is256BitVector() &&
10983          Op.getValueType().isInteger() &&
10984          "Only handle AVX 256-bit vector integer operation");
10985   return Lower256IntArith(Op, DAG);
10986 }
10987
10988 static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
10989                         SelectionDAG &DAG) {
10990   EVT VT = Op.getValueType();
10991
10992   // Decompose 256-bit ops into smaller 128-bit ops.
10993   if (VT.is256BitVector() && !Subtarget->hasInt256())
10994     return Lower256IntArith(Op, DAG);
10995
10996   assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
10997          "Only know how to lower V2I64/V4I64 multiply");
10998
10999   DebugLoc dl = Op.getDebugLoc();
11000
11001   //  Ahi = psrlqi(a, 32);
11002   //  Bhi = psrlqi(b, 32);
11003   //
11004   //  AloBlo = pmuludq(a, b);
11005   //  AloBhi = pmuludq(a, Bhi);
11006   //  AhiBlo = pmuludq(Ahi, b);
11007
11008   //  AloBhi = psllqi(AloBhi, 32);
11009   //  AhiBlo = psllqi(AhiBlo, 32);
11010   //  return AloBlo + AloBhi + AhiBlo;
11011
11012   SDValue A = Op.getOperand(0);
11013   SDValue B = Op.getOperand(1);
11014
11015   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
11016
11017   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
11018   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
11019
11020   // Bit cast to 32-bit vectors for MULUDQ
11021   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
11022   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
11023   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
11024   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
11025   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
11026
11027   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
11028   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
11029   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
11030
11031   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
11032   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
11033
11034   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
11035   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
11036 }
11037
11038 SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
11039
11040   EVT VT = Op.getValueType();
11041   DebugLoc dl = Op.getDebugLoc();
11042   SDValue R = Op.getOperand(0);
11043   SDValue Amt = Op.getOperand(1);
11044   LLVMContext *Context = DAG.getContext();
11045
11046   if (!Subtarget->hasSSE2())
11047     return SDValue();
11048
11049   // Optimize shl/srl/sra with constant shift amount.
11050   if (isSplatVector(Amt.getNode())) {
11051     SDValue SclrAmt = Amt->getOperand(0);
11052     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
11053       uint64_t ShiftAmt = C->getZExtValue();
11054
11055       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
11056           (Subtarget->hasInt256() &&
11057            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16))) {
11058         if (Op.getOpcode() == ISD::SHL)
11059           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
11060                              DAG.getConstant(ShiftAmt, MVT::i32));
11061         if (Op.getOpcode() == ISD::SRL)
11062           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
11063                              DAG.getConstant(ShiftAmt, MVT::i32));
11064         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
11065           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
11066                              DAG.getConstant(ShiftAmt, MVT::i32));
11067       }
11068
11069       if (VT == MVT::v16i8) {
11070         if (Op.getOpcode() == ISD::SHL) {
11071           // Make a large shift.
11072           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
11073                                     DAG.getConstant(ShiftAmt, MVT::i32));
11074           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
11075           // Zero out the rightmost bits.
11076           SmallVector<SDValue, 16> V(16,
11077                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
11078                                                      MVT::i8));
11079           return DAG.getNode(ISD::AND, dl, VT, SHL,
11080                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
11081         }
11082         if (Op.getOpcode() == ISD::SRL) {
11083           // Make a large shift.
11084           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
11085                                     DAG.getConstant(ShiftAmt, MVT::i32));
11086           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
11087           // Zero out the leftmost bits.
11088           SmallVector<SDValue, 16> V(16,
11089                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
11090                                                      MVT::i8));
11091           return DAG.getNode(ISD::AND, dl, VT, SRL,
11092                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
11093         }
11094         if (Op.getOpcode() == ISD::SRA) {
11095           if (ShiftAmt == 7) {
11096             // R s>> 7  ===  R s< 0
11097             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
11098             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
11099           }
11100
11101           // R s>> a === ((R u>> a) ^ m) - m
11102           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
11103           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
11104                                                          MVT::i8));
11105           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
11106           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
11107           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
11108           return Res;
11109         }
11110         llvm_unreachable("Unknown shift opcode.");
11111       }
11112
11113       if (Subtarget->hasInt256() && VT == MVT::v32i8) {
11114         if (Op.getOpcode() == ISD::SHL) {
11115           // Make a large shift.
11116           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
11117                                     DAG.getConstant(ShiftAmt, MVT::i32));
11118           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
11119           // Zero out the rightmost bits.
11120           SmallVector<SDValue, 32> V(32,
11121                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
11122                                                      MVT::i8));
11123           return DAG.getNode(ISD::AND, dl, VT, SHL,
11124                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
11125         }
11126         if (Op.getOpcode() == ISD::SRL) {
11127           // Make a large shift.
11128           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
11129                                     DAG.getConstant(ShiftAmt, MVT::i32));
11130           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
11131           // Zero out the leftmost bits.
11132           SmallVector<SDValue, 32> V(32,
11133                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
11134                                                      MVT::i8));
11135           return DAG.getNode(ISD::AND, dl, VT, SRL,
11136                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
11137         }
11138         if (Op.getOpcode() == ISD::SRA) {
11139           if (ShiftAmt == 7) {
11140             // R s>> 7  ===  R s< 0
11141             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
11142             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
11143           }
11144
11145           // R s>> a === ((R u>> a) ^ m) - m
11146           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
11147           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
11148                                                          MVT::i8));
11149           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
11150           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
11151           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
11152           return Res;
11153         }
11154         llvm_unreachable("Unknown shift opcode.");
11155       }
11156     }
11157   }
11158
11159   // Lower SHL with variable shift amount.
11160   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
11161     Op = DAG.getNode(X86ISD::VSHLI, dl, VT, Op.getOperand(1),
11162                      DAG.getConstant(23, MVT::i32));
11163
11164     const uint32_t CV[] = { 0x3f800000U, 0x3f800000U, 0x3f800000U, 0x3f800000U};
11165     Constant *C = ConstantDataVector::get(*Context, CV);
11166     SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
11167     SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
11168                                  MachinePointerInfo::getConstantPool(),
11169                                  false, false, false, 16);
11170
11171     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
11172     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
11173     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
11174     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
11175   }
11176   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
11177     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
11178
11179     // a = a << 5;
11180     Op = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, Op.getOperand(1),
11181                      DAG.getConstant(5, MVT::i32));
11182     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
11183
11184     // Turn 'a' into a mask suitable for VSELECT
11185     SDValue VSelM = DAG.getConstant(0x80, VT);
11186     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
11187     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
11188
11189     SDValue CM1 = DAG.getConstant(0x0f, VT);
11190     SDValue CM2 = DAG.getConstant(0x3f, VT);
11191
11192     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
11193     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
11194     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
11195                             DAG.getConstant(4, MVT::i32), DAG);
11196     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
11197     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
11198
11199     // a += a
11200     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
11201     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
11202     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
11203
11204     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
11205     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
11206     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
11207                             DAG.getConstant(2, MVT::i32), DAG);
11208     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
11209     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
11210
11211     // a += a
11212     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
11213     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
11214     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
11215
11216     // return VSELECT(r, r+r, a);
11217     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
11218                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
11219     return R;
11220   }
11221
11222   // Decompose 256-bit shifts into smaller 128-bit shifts.
11223   if (VT.is256BitVector()) {
11224     unsigned NumElems = VT.getVectorNumElements();
11225     MVT EltVT = VT.getVectorElementType().getSimpleVT();
11226     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
11227
11228     // Extract the two vectors
11229     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
11230     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
11231
11232     // Recreate the shift amount vectors
11233     SDValue Amt1, Amt2;
11234     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
11235       // Constant shift amount
11236       SmallVector<SDValue, 4> Amt1Csts;
11237       SmallVector<SDValue, 4> Amt2Csts;
11238       for (unsigned i = 0; i != NumElems/2; ++i)
11239         Amt1Csts.push_back(Amt->getOperand(i));
11240       for (unsigned i = NumElems/2; i != NumElems; ++i)
11241         Amt2Csts.push_back(Amt->getOperand(i));
11242
11243       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
11244                                  &Amt1Csts[0], NumElems/2);
11245       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
11246                                  &Amt2Csts[0], NumElems/2);
11247     } else {
11248       // Variable shift amount
11249       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
11250       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
11251     }
11252
11253     // Issue new vector shifts for the smaller types
11254     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
11255     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
11256
11257     // Concatenate the result back
11258     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
11259   }
11260
11261   return SDValue();
11262 }
11263
11264 static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
11265   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
11266   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
11267   // looks for this combo and may remove the "setcc" instruction if the "setcc"
11268   // has only one use.
11269   SDNode *N = Op.getNode();
11270   SDValue LHS = N->getOperand(0);
11271   SDValue RHS = N->getOperand(1);
11272   unsigned BaseOp = 0;
11273   unsigned Cond = 0;
11274   DebugLoc DL = Op.getDebugLoc();
11275   switch (Op.getOpcode()) {
11276   default: llvm_unreachable("Unknown ovf instruction!");
11277   case ISD::SADDO:
11278     // A subtract of one will be selected as a INC. Note that INC doesn't
11279     // set CF, so we can't do this for UADDO.
11280     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11281       if (C->isOne()) {
11282         BaseOp = X86ISD::INC;
11283         Cond = X86::COND_O;
11284         break;
11285       }
11286     BaseOp = X86ISD::ADD;
11287     Cond = X86::COND_O;
11288     break;
11289   case ISD::UADDO:
11290     BaseOp = X86ISD::ADD;
11291     Cond = X86::COND_B;
11292     break;
11293   case ISD::SSUBO:
11294     // A subtract of one will be selected as a DEC. Note that DEC doesn't
11295     // set CF, so we can't do this for USUBO.
11296     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
11297       if (C->isOne()) {
11298         BaseOp = X86ISD::DEC;
11299         Cond = X86::COND_O;
11300         break;
11301       }
11302     BaseOp = X86ISD::SUB;
11303     Cond = X86::COND_O;
11304     break;
11305   case ISD::USUBO:
11306     BaseOp = X86ISD::SUB;
11307     Cond = X86::COND_B;
11308     break;
11309   case ISD::SMULO:
11310     BaseOp = X86ISD::SMUL;
11311     Cond = X86::COND_O;
11312     break;
11313   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
11314     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
11315                                  MVT::i32);
11316     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
11317
11318     SDValue SetCC =
11319       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11320                   DAG.getConstant(X86::COND_O, MVT::i32),
11321                   SDValue(Sum.getNode(), 2));
11322
11323     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
11324   }
11325   }
11326
11327   // Also sets EFLAGS.
11328   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
11329   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
11330
11331   SDValue SetCC =
11332     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
11333                 DAG.getConstant(Cond, MVT::i32),
11334                 SDValue(Sum.getNode(), 1));
11335
11336   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
11337 }
11338
11339 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
11340                                                   SelectionDAG &DAG) const {
11341   DebugLoc dl = Op.getDebugLoc();
11342   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
11343   EVT VT = Op.getValueType();
11344
11345   if (!Subtarget->hasSSE2() || !VT.isVector())
11346     return SDValue();
11347
11348   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
11349                       ExtraVT.getScalarType().getSizeInBits();
11350   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
11351
11352   switch (VT.getSimpleVT().SimpleTy) {
11353     default: return SDValue();
11354     case MVT::v8i32:
11355     case MVT::v16i16:
11356       if (!Subtarget->hasFp256())
11357         return SDValue();
11358       if (!Subtarget->hasInt256()) {
11359         // needs to be split
11360         unsigned NumElems = VT.getVectorNumElements();
11361
11362         // Extract the LHS vectors
11363         SDValue LHS = Op.getOperand(0);
11364         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
11365         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
11366
11367         MVT EltVT = VT.getVectorElementType().getSimpleVT();
11368         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
11369
11370         EVT ExtraEltVT = ExtraVT.getVectorElementType();
11371         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
11372         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
11373                                    ExtraNumElems/2);
11374         SDValue Extra = DAG.getValueType(ExtraVT);
11375
11376         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
11377         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
11378
11379         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
11380       }
11381       // fall through
11382     case MVT::v4i32:
11383     case MVT::v8i16: {
11384       SDValue Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT,
11385                                          Op.getOperand(0), ShAmt, DAG);
11386       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
11387     }
11388   }
11389 }
11390
11391
11392 static SDValue LowerMEMBARRIER(SDValue Op, const X86Subtarget *Subtarget,
11393                               SelectionDAG &DAG) {
11394   DebugLoc dl = Op.getDebugLoc();
11395
11396   // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
11397   // There isn't any reason to disable it if the target processor supports it.
11398   if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
11399     SDValue Chain = Op.getOperand(0);
11400     SDValue Zero = DAG.getConstant(0, MVT::i32);
11401     SDValue Ops[] = {
11402       DAG.getRegister(X86::ESP, MVT::i32), // Base
11403       DAG.getTargetConstant(1, MVT::i8),   // Scale
11404       DAG.getRegister(0, MVT::i32),        // Index
11405       DAG.getTargetConstant(0, MVT::i32),  // Disp
11406       DAG.getRegister(0, MVT::i32),        // Segment.
11407       Zero,
11408       Chain
11409     };
11410     SDNode *Res =
11411       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
11412                           array_lengthof(Ops));
11413     return SDValue(Res, 0);
11414   }
11415
11416   unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
11417   if (!isDev)
11418     return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
11419
11420   unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11421   unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
11422   unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
11423   unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
11424
11425   // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
11426   if (!Op1 && !Op2 && !Op3 && Op4)
11427     return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
11428
11429   // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
11430   if (Op1 && !Op2 && !Op3 && !Op4)
11431     return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
11432
11433   // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
11434   //           (MFENCE)>;
11435   return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
11436 }
11437
11438 static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
11439                                  SelectionDAG &DAG) {
11440   DebugLoc dl = Op.getDebugLoc();
11441   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
11442     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
11443   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
11444     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
11445
11446   // The only fence that needs an instruction is a sequentially-consistent
11447   // cross-thread fence.
11448   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
11449     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
11450     // no-sse2). There isn't any reason to disable it if the target processor
11451     // supports it.
11452     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
11453       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
11454
11455     SDValue Chain = Op.getOperand(0);
11456     SDValue Zero = DAG.getConstant(0, MVT::i32);
11457     SDValue Ops[] = {
11458       DAG.getRegister(X86::ESP, MVT::i32), // Base
11459       DAG.getTargetConstant(1, MVT::i8),   // Scale
11460       DAG.getRegister(0, MVT::i32),        // Index
11461       DAG.getTargetConstant(0, MVT::i32),  // Disp
11462       DAG.getRegister(0, MVT::i32),        // Segment.
11463       Zero,
11464       Chain
11465     };
11466     SDNode *Res =
11467       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
11468                          array_lengthof(Ops));
11469     return SDValue(Res, 0);
11470   }
11471
11472   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
11473   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
11474 }
11475
11476
11477 static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
11478                              SelectionDAG &DAG) {
11479   EVT T = Op.getValueType();
11480   DebugLoc DL = Op.getDebugLoc();
11481   unsigned Reg = 0;
11482   unsigned size = 0;
11483   switch(T.getSimpleVT().SimpleTy) {
11484   default: llvm_unreachable("Invalid value type!");
11485   case MVT::i8:  Reg = X86::AL;  size = 1; break;
11486   case MVT::i16: Reg = X86::AX;  size = 2; break;
11487   case MVT::i32: Reg = X86::EAX; size = 4; break;
11488   case MVT::i64:
11489     assert(Subtarget->is64Bit() && "Node not type legal!");
11490     Reg = X86::RAX; size = 8;
11491     break;
11492   }
11493   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
11494                                     Op.getOperand(2), SDValue());
11495   SDValue Ops[] = { cpIn.getValue(0),
11496                     Op.getOperand(1),
11497                     Op.getOperand(3),
11498                     DAG.getTargetConstant(size, MVT::i8),
11499                     cpIn.getValue(1) };
11500   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11501   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
11502   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
11503                                            Ops, 5, T, MMO);
11504   SDValue cpOut =
11505     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
11506   return cpOut;
11507 }
11508
11509 static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
11510                                      SelectionDAG &DAG) {
11511   assert(Subtarget->is64Bit() && "Result not type legalized?");
11512   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11513   SDValue TheChain = Op.getOperand(0);
11514   DebugLoc dl = Op.getDebugLoc();
11515   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
11516   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
11517   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
11518                                    rax.getValue(2));
11519   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
11520                             DAG.getConstant(32, MVT::i8));
11521   SDValue Ops[] = {
11522     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
11523     rdx.getValue(1)
11524   };
11525   return DAG.getMergeValues(Ops, 2, dl);
11526 }
11527
11528 SDValue X86TargetLowering::LowerBITCAST(SDValue Op, SelectionDAG &DAG) const {
11529   EVT SrcVT = Op.getOperand(0).getValueType();
11530   EVT DstVT = Op.getValueType();
11531   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
11532          Subtarget->hasMMX() && "Unexpected custom BITCAST");
11533   assert((DstVT == MVT::i64 ||
11534           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
11535          "Unexpected custom BITCAST");
11536   // i64 <=> MMX conversions are Legal.
11537   if (SrcVT==MVT::i64 && DstVT.isVector())
11538     return Op;
11539   if (DstVT==MVT::i64 && SrcVT.isVector())
11540     return Op;
11541   // MMX <=> MMX conversions are Legal.
11542   if (SrcVT.isVector() && DstVT.isVector())
11543     return Op;
11544   // All other conversions need to be expanded.
11545   return SDValue();
11546 }
11547
11548 static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
11549   SDNode *Node = Op.getNode();
11550   DebugLoc dl = Node->getDebugLoc();
11551   EVT T = Node->getValueType(0);
11552   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
11553                               DAG.getConstant(0, T), Node->getOperand(2));
11554   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
11555                        cast<AtomicSDNode>(Node)->getMemoryVT(),
11556                        Node->getOperand(0),
11557                        Node->getOperand(1), negOp,
11558                        cast<AtomicSDNode>(Node)->getSrcValue(),
11559                        cast<AtomicSDNode>(Node)->getAlignment(),
11560                        cast<AtomicSDNode>(Node)->getOrdering(),
11561                        cast<AtomicSDNode>(Node)->getSynchScope());
11562 }
11563
11564 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
11565   SDNode *Node = Op.getNode();
11566   DebugLoc dl = Node->getDebugLoc();
11567   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
11568
11569   // Convert seq_cst store -> xchg
11570   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
11571   // FIXME: On 32-bit, store -> fist or movq would be more efficient
11572   //        (The only way to get a 16-byte store is cmpxchg16b)
11573   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
11574   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
11575       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
11576     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
11577                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
11578                                  Node->getOperand(0),
11579                                  Node->getOperand(1), Node->getOperand(2),
11580                                  cast<AtomicSDNode>(Node)->getMemOperand(),
11581                                  cast<AtomicSDNode>(Node)->getOrdering(),
11582                                  cast<AtomicSDNode>(Node)->getSynchScope());
11583     return Swap.getValue(1);
11584   }
11585   // Other atomic stores have a simple pattern.
11586   return Op;
11587 }
11588
11589 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
11590   EVT VT = Op.getNode()->getValueType(0);
11591
11592   // Let legalize expand this if it isn't a legal type yet.
11593   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
11594     return SDValue();
11595
11596   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
11597
11598   unsigned Opc;
11599   bool ExtraOp = false;
11600   switch (Op.getOpcode()) {
11601   default: llvm_unreachable("Invalid code");
11602   case ISD::ADDC: Opc = X86ISD::ADD; break;
11603   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
11604   case ISD::SUBC: Opc = X86ISD::SUB; break;
11605   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
11606   }
11607
11608   if (!ExtraOp)
11609     return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
11610                        Op.getOperand(1));
11611   return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
11612                      Op.getOperand(1), Op.getOperand(2));
11613 }
11614
11615 /// LowerOperation - Provide custom lowering hooks for some operations.
11616 ///
11617 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
11618   switch (Op.getOpcode()) {
11619   default: llvm_unreachable("Should not custom lower this!");
11620   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
11621   case ISD::MEMBARRIER:         return LowerMEMBARRIER(Op, Subtarget, DAG);
11622   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op, Subtarget, DAG);
11623   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op, Subtarget, DAG);
11624   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
11625   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
11626   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
11627   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
11628   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
11629   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
11630   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
11631   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
11632   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
11633   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
11634   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
11635   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
11636   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
11637   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
11638   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
11639   case ISD::SHL_PARTS:
11640   case ISD::SRA_PARTS:
11641   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
11642   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
11643   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
11644   case ISD::TRUNCATE:           return lowerTRUNCATE(Op, DAG);
11645   case ISD::ZERO_EXTEND:        return lowerZERO_EXTEND(Op, DAG);
11646   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
11647   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
11648   case ISD::FP_EXTEND:          return lowerFP_EXTEND(Op, DAG);
11649   case ISD::FABS:               return LowerFABS(Op, DAG);
11650   case ISD::FNEG:               return LowerFNEG(Op, DAG);
11651   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
11652   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
11653   case ISD::SETCC:              return LowerSETCC(Op, DAG);
11654   case ISD::SELECT:             return LowerSELECT(Op, DAG);
11655   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
11656   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
11657   case ISD::VASTART:            return LowerVASTART(Op, DAG);
11658   case ISD::VAARG:              return LowerVAARG(Op, DAG);
11659   case ISD::VACOPY:             return LowerVACOPY(Op, Subtarget, DAG);
11660   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
11661   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, DAG);
11662   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
11663   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
11664   case ISD::FRAME_TO_ARGS_OFFSET:
11665                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
11666   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
11667   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
11668   case ISD::EH_SJLJ_SETJMP:     return lowerEH_SJLJ_SETJMP(Op, DAG);
11669   case ISD::EH_SJLJ_LONGJMP:    return lowerEH_SJLJ_LONGJMP(Op, DAG);
11670   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
11671   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
11672   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
11673   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
11674   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
11675   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
11676   case ISD::MUL:                return LowerMUL(Op, Subtarget, DAG);
11677   case ISD::SRA:
11678   case ISD::SRL:
11679   case ISD::SHL:                return LowerShift(Op, DAG);
11680   case ISD::SADDO:
11681   case ISD::UADDO:
11682   case ISD::SSUBO:
11683   case ISD::USUBO:
11684   case ISD::SMULO:
11685   case ISD::UMULO:              return LowerXALUO(Op, DAG);
11686   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
11687   case ISD::BITCAST:            return LowerBITCAST(Op, DAG);
11688   case ISD::ADDC:
11689   case ISD::ADDE:
11690   case ISD::SUBC:
11691   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
11692   case ISD::ADD:                return LowerADD(Op, DAG);
11693   case ISD::SUB:                return LowerSUB(Op, DAG);
11694   }
11695 }
11696
11697 static void ReplaceATOMIC_LOAD(SDNode *Node,
11698                                   SmallVectorImpl<SDValue> &Results,
11699                                   SelectionDAG &DAG) {
11700   DebugLoc dl = Node->getDebugLoc();
11701   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
11702
11703   // Convert wide load -> cmpxchg8b/cmpxchg16b
11704   // FIXME: On 32-bit, load -> fild or movq would be more efficient
11705   //        (The only way to get a 16-byte load is cmpxchg16b)
11706   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
11707   SDValue Zero = DAG.getConstant(0, VT);
11708   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
11709                                Node->getOperand(0),
11710                                Node->getOperand(1), Zero, Zero,
11711                                cast<AtomicSDNode>(Node)->getMemOperand(),
11712                                cast<AtomicSDNode>(Node)->getOrdering(),
11713                                cast<AtomicSDNode>(Node)->getSynchScope());
11714   Results.push_back(Swap.getValue(0));
11715   Results.push_back(Swap.getValue(1));
11716 }
11717
11718 static void
11719 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
11720                         SelectionDAG &DAG, unsigned NewOp) {
11721   DebugLoc dl = Node->getDebugLoc();
11722   assert (Node->getValueType(0) == MVT::i64 &&
11723           "Only know how to expand i64 atomics");
11724
11725   SDValue Chain = Node->getOperand(0);
11726   SDValue In1 = Node->getOperand(1);
11727   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
11728                              Node->getOperand(2), DAG.getIntPtrConstant(0));
11729   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
11730                              Node->getOperand(2), DAG.getIntPtrConstant(1));
11731   SDValue Ops[] = { Chain, In1, In2L, In2H };
11732   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
11733   SDValue Result =
11734     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
11735                             cast<MemSDNode>(Node)->getMemOperand());
11736   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
11737   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
11738   Results.push_back(Result.getValue(2));
11739 }
11740
11741 /// ReplaceNodeResults - Replace a node with an illegal result type
11742 /// with a new node built out of custom code.
11743 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
11744                                            SmallVectorImpl<SDValue>&Results,
11745                                            SelectionDAG &DAG) const {
11746   DebugLoc dl = N->getDebugLoc();
11747   switch (N->getOpcode()) {
11748   default:
11749     llvm_unreachable("Do not know how to custom type legalize this operation!");
11750   case ISD::SIGN_EXTEND_INREG:
11751   case ISD::ADDC:
11752   case ISD::ADDE:
11753   case ISD::SUBC:
11754   case ISD::SUBE:
11755     // We don't want to expand or promote these.
11756     return;
11757   case ISD::FP_TO_SINT:
11758   case ISD::FP_TO_UINT: {
11759     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
11760
11761     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
11762       return;
11763
11764     std::pair<SDValue,SDValue> Vals =
11765         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
11766     SDValue FIST = Vals.first, StackSlot = Vals.second;
11767     if (FIST.getNode() != 0) {
11768       EVT VT = N->getValueType(0);
11769       // Return a load from the stack slot.
11770       if (StackSlot.getNode() != 0)
11771         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
11772                                       MachinePointerInfo(),
11773                                       false, false, false, 0));
11774       else
11775         Results.push_back(FIST);
11776     }
11777     return;
11778   }
11779   case ISD::UINT_TO_FP: {
11780     if (N->getOperand(0).getValueType() != MVT::v2i32 &&
11781         N->getValueType(0) != MVT::v2f32)
11782       return;
11783     SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
11784                                  N->getOperand(0));
11785     SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
11786                                      MVT::f64);
11787     SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
11788     SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
11789                              DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
11790     Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
11791     SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
11792     Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
11793     return;
11794   }
11795   case ISD::FP_ROUND: {
11796     SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
11797     Results.push_back(V);
11798     return;
11799   }
11800   case ISD::READCYCLECOUNTER: {
11801     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11802     SDValue TheChain = N->getOperand(0);
11803     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
11804     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
11805                                      rd.getValue(1));
11806     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
11807                                      eax.getValue(2));
11808     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
11809     SDValue Ops[] = { eax, edx };
11810     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
11811     Results.push_back(edx.getValue(1));
11812     return;
11813   }
11814   case ISD::ATOMIC_CMP_SWAP: {
11815     EVT T = N->getValueType(0);
11816     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
11817     bool Regs64bit = T == MVT::i128;
11818     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
11819     SDValue cpInL, cpInH;
11820     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
11821                         DAG.getConstant(0, HalfT));
11822     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
11823                         DAG.getConstant(1, HalfT));
11824     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
11825                              Regs64bit ? X86::RAX : X86::EAX,
11826                              cpInL, SDValue());
11827     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
11828                              Regs64bit ? X86::RDX : X86::EDX,
11829                              cpInH, cpInL.getValue(1));
11830     SDValue swapInL, swapInH;
11831     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
11832                           DAG.getConstant(0, HalfT));
11833     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
11834                           DAG.getConstant(1, HalfT));
11835     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
11836                                Regs64bit ? X86::RBX : X86::EBX,
11837                                swapInL, cpInH.getValue(1));
11838     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
11839                                Regs64bit ? X86::RCX : X86::ECX,
11840                                swapInH, swapInL.getValue(1));
11841     SDValue Ops[] = { swapInH.getValue(0),
11842                       N->getOperand(1),
11843                       swapInH.getValue(1) };
11844     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11845     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
11846     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
11847                                   X86ISD::LCMPXCHG8_DAG;
11848     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
11849                                              Ops, 3, T, MMO);
11850     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
11851                                         Regs64bit ? X86::RAX : X86::EAX,
11852                                         HalfT, Result.getValue(1));
11853     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
11854                                         Regs64bit ? X86::RDX : X86::EDX,
11855                                         HalfT, cpOutL.getValue(2));
11856     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
11857     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
11858     Results.push_back(cpOutH.getValue(1));
11859     return;
11860   }
11861   case ISD::ATOMIC_LOAD_ADD:
11862   case ISD::ATOMIC_LOAD_AND:
11863   case ISD::ATOMIC_LOAD_NAND:
11864   case ISD::ATOMIC_LOAD_OR:
11865   case ISD::ATOMIC_LOAD_SUB:
11866   case ISD::ATOMIC_LOAD_XOR:
11867   case ISD::ATOMIC_LOAD_MAX:
11868   case ISD::ATOMIC_LOAD_MIN:
11869   case ISD::ATOMIC_LOAD_UMAX:
11870   case ISD::ATOMIC_LOAD_UMIN:
11871   case ISD::ATOMIC_SWAP: {
11872     unsigned Opc;
11873     switch (N->getOpcode()) {
11874     default: llvm_unreachable("Unexpected opcode");
11875     case ISD::ATOMIC_LOAD_ADD:
11876       Opc = X86ISD::ATOMADD64_DAG;
11877       break;
11878     case ISD::ATOMIC_LOAD_AND:
11879       Opc = X86ISD::ATOMAND64_DAG;
11880       break;
11881     case ISD::ATOMIC_LOAD_NAND:
11882       Opc = X86ISD::ATOMNAND64_DAG;
11883       break;
11884     case ISD::ATOMIC_LOAD_OR:
11885       Opc = X86ISD::ATOMOR64_DAG;
11886       break;
11887     case ISD::ATOMIC_LOAD_SUB:
11888       Opc = X86ISD::ATOMSUB64_DAG;
11889       break;
11890     case ISD::ATOMIC_LOAD_XOR:
11891       Opc = X86ISD::ATOMXOR64_DAG;
11892       break;
11893     case ISD::ATOMIC_LOAD_MAX:
11894       Opc = X86ISD::ATOMMAX64_DAG;
11895       break;
11896     case ISD::ATOMIC_LOAD_MIN:
11897       Opc = X86ISD::ATOMMIN64_DAG;
11898       break;
11899     case ISD::ATOMIC_LOAD_UMAX:
11900       Opc = X86ISD::ATOMUMAX64_DAG;
11901       break;
11902     case ISD::ATOMIC_LOAD_UMIN:
11903       Opc = X86ISD::ATOMUMIN64_DAG;
11904       break;
11905     case ISD::ATOMIC_SWAP:
11906       Opc = X86ISD::ATOMSWAP64_DAG;
11907       break;
11908     }
11909     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
11910     return;
11911   }
11912   case ISD::ATOMIC_LOAD:
11913     ReplaceATOMIC_LOAD(N, Results, DAG);
11914   }
11915 }
11916
11917 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
11918   switch (Opcode) {
11919   default: return NULL;
11920   case X86ISD::BSF:                return "X86ISD::BSF";
11921   case X86ISD::BSR:                return "X86ISD::BSR";
11922   case X86ISD::SHLD:               return "X86ISD::SHLD";
11923   case X86ISD::SHRD:               return "X86ISD::SHRD";
11924   case X86ISD::FAND:               return "X86ISD::FAND";
11925   case X86ISD::FOR:                return "X86ISD::FOR";
11926   case X86ISD::FXOR:               return "X86ISD::FXOR";
11927   case X86ISD::FSRL:               return "X86ISD::FSRL";
11928   case X86ISD::FILD:               return "X86ISD::FILD";
11929   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
11930   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
11931   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
11932   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
11933   case X86ISD::FLD:                return "X86ISD::FLD";
11934   case X86ISD::FST:                return "X86ISD::FST";
11935   case X86ISD::CALL:               return "X86ISD::CALL";
11936   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
11937   case X86ISD::BT:                 return "X86ISD::BT";
11938   case X86ISD::CMP:                return "X86ISD::CMP";
11939   case X86ISD::COMI:               return "X86ISD::COMI";
11940   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
11941   case X86ISD::SETCC:              return "X86ISD::SETCC";
11942   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
11943   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
11944   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
11945   case X86ISD::CMOV:               return "X86ISD::CMOV";
11946   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
11947   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
11948   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
11949   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
11950   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
11951   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
11952   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
11953   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
11954   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
11955   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
11956   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
11957   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
11958   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
11959   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
11960   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
11961   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
11962   case X86ISD::BLENDI:             return "X86ISD::BLENDI";
11963   case X86ISD::HADD:               return "X86ISD::HADD";
11964   case X86ISD::HSUB:               return "X86ISD::HSUB";
11965   case X86ISD::FHADD:              return "X86ISD::FHADD";
11966   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
11967   case X86ISD::FMAX:               return "X86ISD::FMAX";
11968   case X86ISD::FMIN:               return "X86ISD::FMIN";
11969   case X86ISD::FMAXC:              return "X86ISD::FMAXC";
11970   case X86ISD::FMINC:              return "X86ISD::FMINC";
11971   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
11972   case X86ISD::FRCP:               return "X86ISD::FRCP";
11973   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
11974   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
11975   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
11976   case X86ISD::EH_SJLJ_SETJMP:     return "X86ISD::EH_SJLJ_SETJMP";
11977   case X86ISD::EH_SJLJ_LONGJMP:    return "X86ISD::EH_SJLJ_LONGJMP";
11978   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
11979   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
11980   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
11981   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
11982   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
11983   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
11984   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
11985   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
11986   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
11987   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
11988   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
11989   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
11990   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
11991   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
11992   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
11993   case X86ISD::VZEXT:              return "X86ISD::VZEXT";
11994   case X86ISD::VSEXT:              return "X86ISD::VSEXT";
11995   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
11996   case X86ISD::VFPROUND:           return "X86ISD::VFPROUND";
11997   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
11998   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
11999   case X86ISD::VSHL:               return "X86ISD::VSHL";
12000   case X86ISD::VSRL:               return "X86ISD::VSRL";
12001   case X86ISD::VSRA:               return "X86ISD::VSRA";
12002   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
12003   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
12004   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
12005   case X86ISD::CMPP:               return "X86ISD::CMPP";
12006   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
12007   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
12008   case X86ISD::ADD:                return "X86ISD::ADD";
12009   case X86ISD::SUB:                return "X86ISD::SUB";
12010   case X86ISD::ADC:                return "X86ISD::ADC";
12011   case X86ISD::SBB:                return "X86ISD::SBB";
12012   case X86ISD::SMUL:               return "X86ISD::SMUL";
12013   case X86ISD::UMUL:               return "X86ISD::UMUL";
12014   case X86ISD::INC:                return "X86ISD::INC";
12015   case X86ISD::DEC:                return "X86ISD::DEC";
12016   case X86ISD::OR:                 return "X86ISD::OR";
12017   case X86ISD::XOR:                return "X86ISD::XOR";
12018   case X86ISD::AND:                return "X86ISD::AND";
12019   case X86ISD::ANDN:               return "X86ISD::ANDN";
12020   case X86ISD::BLSI:               return "X86ISD::BLSI";
12021   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
12022   case X86ISD::BLSR:               return "X86ISD::BLSR";
12023   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
12024   case X86ISD::PTEST:              return "X86ISD::PTEST";
12025   case X86ISD::TESTP:              return "X86ISD::TESTP";
12026   case X86ISD::PALIGN:             return "X86ISD::PALIGN";
12027   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
12028   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
12029   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
12030   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
12031   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
12032   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
12033   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
12034   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
12035   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
12036   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
12037   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
12038   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
12039   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
12040   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
12041   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
12042   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
12043   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
12044   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
12045   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
12046   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
12047   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
12048   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
12049   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
12050   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
12051   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
12052   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
12053   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
12054   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
12055   case X86ISD::SAHF:               return "X86ISD::SAHF";
12056   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
12057   case X86ISD::FMADD:              return "X86ISD::FMADD";
12058   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
12059   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
12060   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
12061   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
12062   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
12063   case X86ISD::PCMPESTRI:          return "X86ISD::PCMPESTRI";
12064   case X86ISD::PCMPISTRI:          return "X86ISD::PCMPISTRI";
12065   }
12066 }
12067
12068 // isLegalAddressingMode - Return true if the addressing mode represented
12069 // by AM is legal for this target, for a load/store of the specified type.
12070 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
12071                                               Type *Ty) const {
12072   // X86 supports extremely general addressing modes.
12073   CodeModel::Model M = getTargetMachine().getCodeModel();
12074   Reloc::Model R = getTargetMachine().getRelocationModel();
12075
12076   // X86 allows a sign-extended 32-bit immediate field as a displacement.
12077   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
12078     return false;
12079
12080   if (AM.BaseGV) {
12081     unsigned GVFlags =
12082       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
12083
12084     // If a reference to this global requires an extra load, we can't fold it.
12085     if (isGlobalStubReference(GVFlags))
12086       return false;
12087
12088     // If BaseGV requires a register for the PIC base, we cannot also have a
12089     // BaseReg specified.
12090     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
12091       return false;
12092
12093     // If lower 4G is not available, then we must use rip-relative addressing.
12094     if ((M != CodeModel::Small || R != Reloc::Static) &&
12095         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
12096       return false;
12097   }
12098
12099   switch (AM.Scale) {
12100   case 0:
12101   case 1:
12102   case 2:
12103   case 4:
12104   case 8:
12105     // These scales always work.
12106     break;
12107   case 3:
12108   case 5:
12109   case 9:
12110     // These scales are formed with basereg+scalereg.  Only accept if there is
12111     // no basereg yet.
12112     if (AM.HasBaseReg)
12113       return false;
12114     break;
12115   default:  // Other stuff never works.
12116     return false;
12117   }
12118
12119   return true;
12120 }
12121
12122
12123 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
12124   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
12125     return false;
12126   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
12127   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
12128   if (NumBits1 <= NumBits2)
12129     return false;
12130   return true;
12131 }
12132
12133 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
12134   return Imm == (int32_t)Imm;
12135 }
12136
12137 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
12138   // Can also use sub to handle negated immediates.
12139   return Imm == (int32_t)Imm;
12140 }
12141
12142 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
12143   if (!VT1.isInteger() || !VT2.isInteger())
12144     return false;
12145   unsigned NumBits1 = VT1.getSizeInBits();
12146   unsigned NumBits2 = VT2.getSizeInBits();
12147   if (NumBits1 <= NumBits2)
12148     return false;
12149   return true;
12150 }
12151
12152 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
12153   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
12154   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
12155 }
12156
12157 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
12158   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
12159   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
12160 }
12161
12162 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
12163   // i16 instructions are longer (0x66 prefix) and potentially slower.
12164   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
12165 }
12166
12167 /// isShuffleMaskLegal - Targets can use this to indicate that they only
12168 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
12169 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
12170 /// are assumed to be legal.
12171 bool
12172 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
12173                                       EVT VT) const {
12174   // Very little shuffling can be done for 64-bit vectors right now.
12175   if (VT.getSizeInBits() == 64)
12176     return false;
12177
12178   // FIXME: pshufb, blends, shifts.
12179   return (VT.getVectorNumElements() == 2 ||
12180           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
12181           isMOVLMask(M, VT) ||
12182           isSHUFPMask(M, VT, Subtarget->hasFp256()) ||
12183           isPSHUFDMask(M, VT) ||
12184           isPSHUFHWMask(M, VT, Subtarget->hasInt256()) ||
12185           isPSHUFLWMask(M, VT, Subtarget->hasInt256()) ||
12186           isPALIGNRMask(M, VT, Subtarget) ||
12187           isUNPCKLMask(M, VT, Subtarget->hasInt256()) ||
12188           isUNPCKHMask(M, VT, Subtarget->hasInt256()) ||
12189           isUNPCKL_v_undef_Mask(M, VT, Subtarget->hasInt256()) ||
12190           isUNPCKH_v_undef_Mask(M, VT, Subtarget->hasInt256()));
12191 }
12192
12193 bool
12194 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
12195                                           EVT VT) const {
12196   unsigned NumElts = VT.getVectorNumElements();
12197   // FIXME: This collection of masks seems suspect.
12198   if (NumElts == 2)
12199     return true;
12200   if (NumElts == 4 && VT.is128BitVector()) {
12201     return (isMOVLMask(Mask, VT)  ||
12202             isCommutedMOVLMask(Mask, VT, true) ||
12203             isSHUFPMask(Mask, VT, Subtarget->hasFp256()) ||
12204             isSHUFPMask(Mask, VT, Subtarget->hasFp256(), /* Commuted */ true));
12205   }
12206   return false;
12207 }
12208
12209 //===----------------------------------------------------------------------===//
12210 //                           X86 Scheduler Hooks
12211 //===----------------------------------------------------------------------===//
12212
12213 /// Utility function to emit xbegin specifying the start of an RTM region.
12214 static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
12215                                      const TargetInstrInfo *TII) {
12216   DebugLoc DL = MI->getDebugLoc();
12217
12218   const BasicBlock *BB = MBB->getBasicBlock();
12219   MachineFunction::iterator I = MBB;
12220   ++I;
12221
12222   // For the v = xbegin(), we generate
12223   //
12224   // thisMBB:
12225   //  xbegin sinkMBB
12226   //
12227   // mainMBB:
12228   //  eax = -1
12229   //
12230   // sinkMBB:
12231   //  v = eax
12232
12233   MachineBasicBlock *thisMBB = MBB;
12234   MachineFunction *MF = MBB->getParent();
12235   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
12236   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
12237   MF->insert(I, mainMBB);
12238   MF->insert(I, sinkMBB);
12239
12240   // Transfer the remainder of BB and its successor edges to sinkMBB.
12241   sinkMBB->splice(sinkMBB->begin(), MBB,
12242                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
12243   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
12244
12245   // thisMBB:
12246   //  xbegin sinkMBB
12247   //  # fallthrough to mainMBB
12248   //  # abortion to sinkMBB
12249   BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
12250   thisMBB->addSuccessor(mainMBB);
12251   thisMBB->addSuccessor(sinkMBB);
12252
12253   // mainMBB:
12254   //  EAX = -1
12255   BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
12256   mainMBB->addSuccessor(sinkMBB);
12257
12258   // sinkMBB:
12259   // EAX is live into the sinkMBB
12260   sinkMBB->addLiveIn(X86::EAX);
12261   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
12262           TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
12263     .addReg(X86::EAX);
12264
12265   MI->eraseFromParent();
12266   return sinkMBB;
12267 }
12268
12269 // Get CMPXCHG opcode for the specified data type.
12270 static unsigned getCmpXChgOpcode(EVT VT) {
12271   switch (VT.getSimpleVT().SimpleTy) {
12272   case MVT::i8:  return X86::LCMPXCHG8;
12273   case MVT::i16: return X86::LCMPXCHG16;
12274   case MVT::i32: return X86::LCMPXCHG32;
12275   case MVT::i64: return X86::LCMPXCHG64;
12276   default:
12277     break;
12278   }
12279   llvm_unreachable("Invalid operand size!");
12280 }
12281
12282 // Get LOAD opcode for the specified data type.
12283 static unsigned getLoadOpcode(EVT VT) {
12284   switch (VT.getSimpleVT().SimpleTy) {
12285   case MVT::i8:  return X86::MOV8rm;
12286   case MVT::i16: return X86::MOV16rm;
12287   case MVT::i32: return X86::MOV32rm;
12288   case MVT::i64: return X86::MOV64rm;
12289   default:
12290     break;
12291   }
12292   llvm_unreachable("Invalid operand size!");
12293 }
12294
12295 // Get opcode of the non-atomic one from the specified atomic instruction.
12296 static unsigned getNonAtomicOpcode(unsigned Opc) {
12297   switch (Opc) {
12298   case X86::ATOMAND8:  return X86::AND8rr;
12299   case X86::ATOMAND16: return X86::AND16rr;
12300   case X86::ATOMAND32: return X86::AND32rr;
12301   case X86::ATOMAND64: return X86::AND64rr;
12302   case X86::ATOMOR8:   return X86::OR8rr;
12303   case X86::ATOMOR16:  return X86::OR16rr;
12304   case X86::ATOMOR32:  return X86::OR32rr;
12305   case X86::ATOMOR64:  return X86::OR64rr;
12306   case X86::ATOMXOR8:  return X86::XOR8rr;
12307   case X86::ATOMXOR16: return X86::XOR16rr;
12308   case X86::ATOMXOR32: return X86::XOR32rr;
12309   case X86::ATOMXOR64: return X86::XOR64rr;
12310   }
12311   llvm_unreachable("Unhandled atomic-load-op opcode!");
12312 }
12313
12314 // Get opcode of the non-atomic one from the specified atomic instruction with
12315 // extra opcode.
12316 static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
12317                                                unsigned &ExtraOpc) {
12318   switch (Opc) {
12319   case X86::ATOMNAND8:  ExtraOpc = X86::NOT8r;   return X86::AND8rr;
12320   case X86::ATOMNAND16: ExtraOpc = X86::NOT16r;  return X86::AND16rr;
12321   case X86::ATOMNAND32: ExtraOpc = X86::NOT32r;  return X86::AND32rr;
12322   case X86::ATOMNAND64: ExtraOpc = X86::NOT64r;  return X86::AND64rr;
12323   case X86::ATOMMAX8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVL32rr;
12324   case X86::ATOMMAX16:  ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
12325   case X86::ATOMMAX32:  ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
12326   case X86::ATOMMAX64:  ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
12327   case X86::ATOMMIN8:   ExtraOpc = X86::CMP8rr;  return X86::CMOVG32rr;
12328   case X86::ATOMMIN16:  ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
12329   case X86::ATOMMIN32:  ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
12330   case X86::ATOMMIN64:  ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
12331   case X86::ATOMUMAX8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVB32rr;
12332   case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
12333   case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
12334   case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
12335   case X86::ATOMUMIN8:  ExtraOpc = X86::CMP8rr;  return X86::CMOVA32rr;
12336   case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
12337   case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
12338   case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
12339   }
12340   llvm_unreachable("Unhandled atomic-load-op opcode!");
12341 }
12342
12343 // Get opcode of the non-atomic one from the specified atomic instruction for
12344 // 64-bit data type on 32-bit target.
12345 static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
12346   switch (Opc) {
12347   case X86::ATOMAND6432:  HiOpc = X86::AND32rr; return X86::AND32rr;
12348   case X86::ATOMOR6432:   HiOpc = X86::OR32rr;  return X86::OR32rr;
12349   case X86::ATOMXOR6432:  HiOpc = X86::XOR32rr; return X86::XOR32rr;
12350   case X86::ATOMADD6432:  HiOpc = X86::ADC32rr; return X86::ADD32rr;
12351   case X86::ATOMSUB6432:  HiOpc = X86::SBB32rr; return X86::SUB32rr;
12352   case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
12353   case X86::ATOMMAX6432:  HiOpc = X86::SETLr;   return X86::SETLr;
12354   case X86::ATOMMIN6432:  HiOpc = X86::SETGr;   return X86::SETGr;
12355   case X86::ATOMUMAX6432: HiOpc = X86::SETBr;   return X86::SETBr;
12356   case X86::ATOMUMIN6432: HiOpc = X86::SETAr;   return X86::SETAr;
12357   }
12358   llvm_unreachable("Unhandled atomic-load-op opcode!");
12359 }
12360
12361 // Get opcode of the non-atomic one from the specified atomic instruction for
12362 // 64-bit data type on 32-bit target with extra opcode.
12363 static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
12364                                                    unsigned &HiOpc,
12365                                                    unsigned &ExtraOpc) {
12366   switch (Opc) {
12367   case X86::ATOMNAND6432:
12368     ExtraOpc = X86::NOT32r;
12369     HiOpc = X86::AND32rr;
12370     return X86::AND32rr;
12371   }
12372   llvm_unreachable("Unhandled atomic-load-op opcode!");
12373 }
12374
12375 // Get pseudo CMOV opcode from the specified data type.
12376 static unsigned getPseudoCMOVOpc(EVT VT) {
12377   switch (VT.getSimpleVT().SimpleTy) {
12378   case MVT::i8:  return X86::CMOV_GR8;
12379   case MVT::i16: return X86::CMOV_GR16;
12380   case MVT::i32: return X86::CMOV_GR32;
12381   default:
12382     break;
12383   }
12384   llvm_unreachable("Unknown CMOV opcode!");
12385 }
12386
12387 // EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
12388 // They will be translated into a spin-loop or compare-exchange loop from
12389 //
12390 //    ...
12391 //    dst = atomic-fetch-op MI.addr, MI.val
12392 //    ...
12393 //
12394 // to
12395 //
12396 //    ...
12397 //    EAX = LOAD MI.addr
12398 // loop:
12399 //    t1 = OP MI.val, EAX
12400 //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
12401 //    JNE loop
12402 // sink:
12403 //    dst = EAX
12404 //    ...
12405 MachineBasicBlock *
12406 X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
12407                                        MachineBasicBlock *MBB) const {
12408   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12409   DebugLoc DL = MI->getDebugLoc();
12410
12411   MachineFunction *MF = MBB->getParent();
12412   MachineRegisterInfo &MRI = MF->getRegInfo();
12413
12414   const BasicBlock *BB = MBB->getBasicBlock();
12415   MachineFunction::iterator I = MBB;
12416   ++I;
12417
12418   assert(MI->getNumOperands() <= X86::AddrNumOperands + 2 &&
12419          "Unexpected number of operands");
12420
12421   assert(MI->hasOneMemOperand() &&
12422          "Expected atomic-load-op to have one memoperand");
12423
12424   // Memory Reference
12425   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
12426   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
12427
12428   unsigned DstReg, SrcReg;
12429   unsigned MemOpndSlot;
12430
12431   unsigned CurOp = 0;
12432
12433   DstReg = MI->getOperand(CurOp++).getReg();
12434   MemOpndSlot = CurOp;
12435   CurOp += X86::AddrNumOperands;
12436   SrcReg = MI->getOperand(CurOp++).getReg();
12437
12438   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
12439   MVT::SimpleValueType VT = *RC->vt_begin();
12440   unsigned AccPhyReg = getX86SubSuperRegister(X86::EAX, VT);
12441
12442   unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
12443   unsigned LOADOpc = getLoadOpcode(VT);
12444
12445   // For the atomic load-arith operator, we generate
12446   //
12447   //  thisMBB:
12448   //    EAX = LOAD [MI.addr]
12449   //  mainMBB:
12450   //    t1 = OP MI.val, EAX
12451   //    LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
12452   //    JNE mainMBB
12453   //  sinkMBB:
12454
12455   MachineBasicBlock *thisMBB = MBB;
12456   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
12457   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
12458   MF->insert(I, mainMBB);
12459   MF->insert(I, sinkMBB);
12460
12461   MachineInstrBuilder MIB;
12462
12463   // Transfer the remainder of BB and its successor edges to sinkMBB.
12464   sinkMBB->splice(sinkMBB->begin(), MBB,
12465                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
12466   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
12467
12468   // thisMBB:
12469   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), AccPhyReg);
12470   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
12471     MIB.addOperand(MI->getOperand(MemOpndSlot + i));
12472   MIB.setMemRefs(MMOBegin, MMOEnd);
12473
12474   thisMBB->addSuccessor(mainMBB);
12475
12476   // mainMBB:
12477   MachineBasicBlock *origMainMBB = mainMBB;
12478   mainMBB->addLiveIn(AccPhyReg);
12479
12480   // Copy AccPhyReg as it is used more than once.
12481   unsigned AccReg = MRI.createVirtualRegister(RC);
12482   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), AccReg)
12483     .addReg(AccPhyReg);
12484
12485   unsigned t1 = MRI.createVirtualRegister(RC);
12486   unsigned Opc = MI->getOpcode();
12487   switch (Opc) {
12488   default:
12489     llvm_unreachable("Unhandled atomic-load-op opcode!");
12490   case X86::ATOMAND8:
12491   case X86::ATOMAND16:
12492   case X86::ATOMAND32:
12493   case X86::ATOMAND64:
12494   case X86::ATOMOR8:
12495   case X86::ATOMOR16:
12496   case X86::ATOMOR32:
12497   case X86::ATOMOR64:
12498   case X86::ATOMXOR8:
12499   case X86::ATOMXOR16:
12500   case X86::ATOMXOR32:
12501   case X86::ATOMXOR64: {
12502     unsigned ARITHOpc = getNonAtomicOpcode(Opc);
12503     BuildMI(mainMBB, DL, TII->get(ARITHOpc), t1).addReg(SrcReg)
12504       .addReg(AccReg);
12505     break;
12506   }
12507   case X86::ATOMNAND8:
12508   case X86::ATOMNAND16:
12509   case X86::ATOMNAND32:
12510   case X86::ATOMNAND64: {
12511     unsigned t2 = MRI.createVirtualRegister(RC);
12512     unsigned NOTOpc;
12513     unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
12514     BuildMI(mainMBB, DL, TII->get(ANDOpc), t2).addReg(SrcReg)
12515       .addReg(AccReg);
12516     BuildMI(mainMBB, DL, TII->get(NOTOpc), t1).addReg(t2);
12517     break;
12518   }
12519   case X86::ATOMMAX8:
12520   case X86::ATOMMAX16:
12521   case X86::ATOMMAX32:
12522   case X86::ATOMMAX64:
12523   case X86::ATOMMIN8:
12524   case X86::ATOMMIN16:
12525   case X86::ATOMMIN32:
12526   case X86::ATOMMIN64:
12527   case X86::ATOMUMAX8:
12528   case X86::ATOMUMAX16:
12529   case X86::ATOMUMAX32:
12530   case X86::ATOMUMAX64:
12531   case X86::ATOMUMIN8:
12532   case X86::ATOMUMIN16:
12533   case X86::ATOMUMIN32:
12534   case X86::ATOMUMIN64: {
12535     unsigned CMPOpc;
12536     unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
12537
12538     BuildMI(mainMBB, DL, TII->get(CMPOpc))
12539       .addReg(SrcReg)
12540       .addReg(AccReg);
12541
12542     if (Subtarget->hasCMov()) {
12543       if (VT != MVT::i8) {
12544         // Native support
12545         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t1)
12546           .addReg(SrcReg)
12547           .addReg(AccReg);
12548       } else {
12549         // Promote i8 to i32 to use CMOV32
12550         const TargetRegisterClass *RC32 = getRegClassFor(MVT::i32);
12551         unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
12552         unsigned AccReg32 = MRI.createVirtualRegister(RC32);
12553         unsigned t2 = MRI.createVirtualRegister(RC32);
12554
12555         unsigned Undef = MRI.createVirtualRegister(RC32);
12556         BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
12557
12558         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
12559           .addReg(Undef)
12560           .addReg(SrcReg)
12561           .addImm(X86::sub_8bit);
12562         BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
12563           .addReg(Undef)
12564           .addReg(AccReg)
12565           .addImm(X86::sub_8bit);
12566
12567         BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
12568           .addReg(SrcReg32)
12569           .addReg(AccReg32);
12570
12571         BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t1)
12572           .addReg(t2, 0, X86::sub_8bit);
12573       }
12574     } else {
12575       // Use pseudo select and lower them.
12576       assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
12577              "Invalid atomic-load-op transformation!");
12578       unsigned SelOpc = getPseudoCMOVOpc(VT);
12579       X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
12580       assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
12581       MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t1)
12582               .addReg(SrcReg).addReg(AccReg)
12583               .addImm(CC);
12584       mainMBB = EmitLoweredSelect(MIB, mainMBB);
12585     }
12586     break;
12587   }
12588   }
12589
12590   // Copy AccPhyReg back from virtual register.
12591   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), AccPhyReg)
12592     .addReg(AccReg);
12593
12594   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
12595   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
12596     MIB.addOperand(MI->getOperand(MemOpndSlot + i));
12597   MIB.addReg(t1);
12598   MIB.setMemRefs(MMOBegin, MMOEnd);
12599
12600   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
12601
12602   mainMBB->addSuccessor(origMainMBB);
12603   mainMBB->addSuccessor(sinkMBB);
12604
12605   // sinkMBB:
12606   sinkMBB->addLiveIn(AccPhyReg);
12607
12608   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
12609           TII->get(TargetOpcode::COPY), DstReg)
12610     .addReg(AccPhyReg);
12611
12612   MI->eraseFromParent();
12613   return sinkMBB;
12614 }
12615
12616 // EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
12617 // instructions. They will be translated into a spin-loop or compare-exchange
12618 // loop from
12619 //
12620 //    ...
12621 //    dst = atomic-fetch-op MI.addr, MI.val
12622 //    ...
12623 //
12624 // to
12625 //
12626 //    ...
12627 //    EAX = LOAD [MI.addr + 0]
12628 //    EDX = LOAD [MI.addr + 4]
12629 // loop:
12630 //    EBX = OP MI.val.lo, EAX
12631 //    ECX = OP MI.val.hi, EDX
12632 //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
12633 //    JNE loop
12634 // sink:
12635 //    dst = EDX:EAX
12636 //    ...
12637 MachineBasicBlock *
12638 X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
12639                                            MachineBasicBlock *MBB) const {
12640   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12641   DebugLoc DL = MI->getDebugLoc();
12642
12643   MachineFunction *MF = MBB->getParent();
12644   MachineRegisterInfo &MRI = MF->getRegInfo();
12645
12646   const BasicBlock *BB = MBB->getBasicBlock();
12647   MachineFunction::iterator I = MBB;
12648   ++I;
12649
12650   assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
12651          "Unexpected number of operands");
12652
12653   assert(MI->hasOneMemOperand() &&
12654          "Expected atomic-load-op32 to have one memoperand");
12655
12656   // Memory Reference
12657   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
12658   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
12659
12660   unsigned DstLoReg, DstHiReg;
12661   unsigned SrcLoReg, SrcHiReg;
12662   unsigned MemOpndSlot;
12663
12664   unsigned CurOp = 0;
12665
12666   DstLoReg = MI->getOperand(CurOp++).getReg();
12667   DstHiReg = MI->getOperand(CurOp++).getReg();
12668   MemOpndSlot = CurOp;
12669   CurOp += X86::AddrNumOperands;
12670   SrcLoReg = MI->getOperand(CurOp++).getReg();
12671   SrcHiReg = MI->getOperand(CurOp++).getReg();
12672
12673   const TargetRegisterClass *RC = &X86::GR32RegClass;
12674   const TargetRegisterClass *RC8 = &X86::GR8RegClass;
12675
12676   unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
12677   unsigned LOADOpc = X86::MOV32rm;
12678
12679   // For the atomic load-arith operator, we generate
12680   //
12681   //  thisMBB:
12682   //    EAX = LOAD [MI.addr + 0]
12683   //    EDX = LOAD [MI.addr + 4]
12684   //  mainMBB:
12685   //    EBX = OP MI.vallo, EAX
12686   //    ECX = OP MI.valhi, EDX
12687   //    LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
12688   //    JNE mainMBB
12689   //  sinkMBB:
12690
12691   MachineBasicBlock *thisMBB = MBB;
12692   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
12693   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
12694   MF->insert(I, mainMBB);
12695   MF->insert(I, sinkMBB);
12696
12697   MachineInstrBuilder MIB;
12698
12699   // Transfer the remainder of BB and its successor edges to sinkMBB.
12700   sinkMBB->splice(sinkMBB->begin(), MBB,
12701                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
12702   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
12703
12704   // thisMBB:
12705   // Lo
12706   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), X86::EAX);
12707   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
12708     MIB.addOperand(MI->getOperand(MemOpndSlot + i));
12709   MIB.setMemRefs(MMOBegin, MMOEnd);
12710   // Hi
12711   MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), X86::EDX);
12712   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
12713     if (i == X86::AddrDisp)
12714       MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
12715     else
12716       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
12717   }
12718   MIB.setMemRefs(MMOBegin, MMOEnd);
12719
12720   thisMBB->addSuccessor(mainMBB);
12721
12722   // mainMBB:
12723   MachineBasicBlock *origMainMBB = mainMBB;
12724   mainMBB->addLiveIn(X86::EAX);
12725   mainMBB->addLiveIn(X86::EDX);
12726
12727   // Copy EDX:EAX as they are used more than once.
12728   unsigned LoReg = MRI.createVirtualRegister(RC);
12729   unsigned HiReg = MRI.createVirtualRegister(RC);
12730   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), LoReg).addReg(X86::EAX);
12731   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), HiReg).addReg(X86::EDX);
12732
12733   unsigned t1L = MRI.createVirtualRegister(RC);
12734   unsigned t1H = MRI.createVirtualRegister(RC);
12735
12736   unsigned Opc = MI->getOpcode();
12737   switch (Opc) {
12738   default:
12739     llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
12740   case X86::ATOMAND6432:
12741   case X86::ATOMOR6432:
12742   case X86::ATOMXOR6432:
12743   case X86::ATOMADD6432:
12744   case X86::ATOMSUB6432: {
12745     unsigned HiOpc;
12746     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
12747     BuildMI(mainMBB, DL, TII->get(LoOpc), t1L).addReg(LoReg).addReg(SrcLoReg);
12748     BuildMI(mainMBB, DL, TII->get(HiOpc), t1H).addReg(HiReg).addReg(SrcHiReg);
12749     break;
12750   }
12751   case X86::ATOMNAND6432: {
12752     unsigned HiOpc, NOTOpc;
12753     unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
12754     unsigned t2L = MRI.createVirtualRegister(RC);
12755     unsigned t2H = MRI.createVirtualRegister(RC);
12756     BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg).addReg(LoReg);
12757     BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg).addReg(HiReg);
12758     BuildMI(mainMBB, DL, TII->get(NOTOpc), t1L).addReg(t2L);
12759     BuildMI(mainMBB, DL, TII->get(NOTOpc), t1H).addReg(t2H);
12760     break;
12761   }
12762   case X86::ATOMMAX6432:
12763   case X86::ATOMMIN6432:
12764   case X86::ATOMUMAX6432:
12765   case X86::ATOMUMIN6432: {
12766     unsigned HiOpc;
12767     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
12768     unsigned cL = MRI.createVirtualRegister(RC8);
12769     unsigned cH = MRI.createVirtualRegister(RC8);
12770     unsigned cL32 = MRI.createVirtualRegister(RC);
12771     unsigned cH32 = MRI.createVirtualRegister(RC);
12772     unsigned cc = MRI.createVirtualRegister(RC);
12773     // cl := cmp src_lo, lo
12774     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
12775       .addReg(SrcLoReg).addReg(LoReg);
12776     BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
12777     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
12778     // ch := cmp src_hi, hi
12779     BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
12780       .addReg(SrcHiReg).addReg(HiReg);
12781     BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
12782     BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
12783     // cc := if (src_hi == hi) ? cl : ch;
12784     if (Subtarget->hasCMov()) {
12785       BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
12786         .addReg(cH32).addReg(cL32);
12787     } else {
12788       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
12789               .addReg(cH32).addReg(cL32)
12790               .addImm(X86::COND_E);
12791       mainMBB = EmitLoweredSelect(MIB, mainMBB);
12792     }
12793     BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
12794     if (Subtarget->hasCMov()) {
12795       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t1L)
12796         .addReg(SrcLoReg).addReg(LoReg);
12797       BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t1H)
12798         .addReg(SrcHiReg).addReg(HiReg);
12799     } else {
12800       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t1L)
12801               .addReg(SrcLoReg).addReg(LoReg)
12802               .addImm(X86::COND_NE);
12803       mainMBB = EmitLoweredSelect(MIB, mainMBB);
12804       MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t1H)
12805               .addReg(SrcHiReg).addReg(HiReg)
12806               .addImm(X86::COND_NE);
12807       mainMBB = EmitLoweredSelect(MIB, mainMBB);
12808     }
12809     break;
12810   }
12811   case X86::ATOMSWAP6432: {
12812     unsigned HiOpc;
12813     unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
12814     BuildMI(mainMBB, DL, TII->get(LoOpc), t1L).addReg(SrcLoReg);
12815     BuildMI(mainMBB, DL, TII->get(HiOpc), t1H).addReg(SrcHiReg);
12816     break;
12817   }
12818   }
12819
12820   // Copy EDX:EAX back from HiReg:LoReg
12821   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(LoReg);
12822   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(HiReg);
12823   // Copy ECX:EBX from t1H:t1L
12824   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t1L);
12825   BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t1H);
12826
12827   MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
12828   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
12829     MIB.addOperand(MI->getOperand(MemOpndSlot + i));
12830   MIB.setMemRefs(MMOBegin, MMOEnd);
12831
12832   BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
12833
12834   mainMBB->addSuccessor(origMainMBB);
12835   mainMBB->addSuccessor(sinkMBB);
12836
12837   // sinkMBB:
12838   sinkMBB->addLiveIn(X86::EAX);
12839   sinkMBB->addLiveIn(X86::EDX);
12840
12841   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
12842           TII->get(TargetOpcode::COPY), DstLoReg)
12843     .addReg(X86::EAX);
12844   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
12845           TII->get(TargetOpcode::COPY), DstHiReg)
12846     .addReg(X86::EDX);
12847
12848   MI->eraseFromParent();
12849   return sinkMBB;
12850 }
12851
12852 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
12853 // or XMM0_V32I8 in AVX all of this code can be replaced with that
12854 // in the .td file.
12855 static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
12856                                        const TargetInstrInfo *TII) {
12857   unsigned Opc;
12858   switch (MI->getOpcode()) {
12859   default: llvm_unreachable("illegal opcode!");
12860   case X86::PCMPISTRM128REG:  Opc = X86::PCMPISTRM128rr;  break;
12861   case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
12862   case X86::PCMPISTRM128MEM:  Opc = X86::PCMPISTRM128rm;  break;
12863   case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
12864   case X86::PCMPESTRM128REG:  Opc = X86::PCMPESTRM128rr;  break;
12865   case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
12866   case X86::PCMPESTRM128MEM:  Opc = X86::PCMPESTRM128rm;  break;
12867   case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
12868   }
12869
12870   DebugLoc dl = MI->getDebugLoc();
12871   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
12872
12873   unsigned NumArgs = MI->getNumOperands();
12874   for (unsigned i = 1; i < NumArgs; ++i) {
12875     MachineOperand &Op = MI->getOperand(i);
12876     if (!(Op.isReg() && Op.isImplicit()))
12877       MIB.addOperand(Op);
12878   }
12879   if (MI->hasOneMemOperand())
12880     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
12881
12882   BuildMI(*BB, MI, dl,
12883     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
12884     .addReg(X86::XMM0);
12885
12886   MI->eraseFromParent();
12887   return BB;
12888 }
12889
12890 // FIXME: Custom handling because TableGen doesn't support multiple implicit
12891 // defs in an instruction pattern
12892 static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
12893                                        const TargetInstrInfo *TII) {
12894   unsigned Opc;
12895   switch (MI->getOpcode()) {
12896   default: llvm_unreachable("illegal opcode!");
12897   case X86::PCMPISTRIREG:  Opc = X86::PCMPISTRIrr;  break;
12898   case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
12899   case X86::PCMPISTRIMEM:  Opc = X86::PCMPISTRIrm;  break;
12900   case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
12901   case X86::PCMPESTRIREG:  Opc = X86::PCMPESTRIrr;  break;
12902   case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
12903   case X86::PCMPESTRIMEM:  Opc = X86::PCMPESTRIrm;  break;
12904   case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
12905   }
12906
12907   DebugLoc dl = MI->getDebugLoc();
12908   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
12909
12910   unsigned NumArgs = MI->getNumOperands(); // remove the results
12911   for (unsigned i = 1; i < NumArgs; ++i) {
12912     MachineOperand &Op = MI->getOperand(i);
12913     if (!(Op.isReg() && Op.isImplicit()))
12914       MIB.addOperand(Op);
12915   }
12916   if (MI->hasOneMemOperand())
12917     MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
12918
12919   BuildMI(*BB, MI, dl,
12920     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
12921     .addReg(X86::ECX);
12922
12923   MI->eraseFromParent();
12924   return BB;
12925 }
12926
12927 static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
12928                                        const TargetInstrInfo *TII,
12929                                        const X86Subtarget* Subtarget) {
12930   DebugLoc dl = MI->getDebugLoc();
12931
12932   // Address into RAX/EAX, other two args into ECX, EDX.
12933   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
12934   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
12935   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
12936   for (int i = 0; i < X86::AddrNumOperands; ++i)
12937     MIB.addOperand(MI->getOperand(i));
12938
12939   unsigned ValOps = X86::AddrNumOperands;
12940   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
12941     .addReg(MI->getOperand(ValOps).getReg());
12942   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
12943     .addReg(MI->getOperand(ValOps+1).getReg());
12944
12945   // The instruction doesn't actually take any operands though.
12946   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
12947
12948   MI->eraseFromParent(); // The pseudo is gone now.
12949   return BB;
12950 }
12951
12952 MachineBasicBlock *
12953 X86TargetLowering::EmitVAARG64WithCustomInserter(
12954                    MachineInstr *MI,
12955                    MachineBasicBlock *MBB) const {
12956   // Emit va_arg instruction on X86-64.
12957
12958   // Operands to this pseudo-instruction:
12959   // 0  ) Output        : destination address (reg)
12960   // 1-5) Input         : va_list address (addr, i64mem)
12961   // 6  ) ArgSize       : Size (in bytes) of vararg type
12962   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
12963   // 8  ) Align         : Alignment of type
12964   // 9  ) EFLAGS (implicit-def)
12965
12966   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
12967   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
12968
12969   unsigned DestReg = MI->getOperand(0).getReg();
12970   MachineOperand &Base = MI->getOperand(1);
12971   MachineOperand &Scale = MI->getOperand(2);
12972   MachineOperand &Index = MI->getOperand(3);
12973   MachineOperand &Disp = MI->getOperand(4);
12974   MachineOperand &Segment = MI->getOperand(5);
12975   unsigned ArgSize = MI->getOperand(6).getImm();
12976   unsigned ArgMode = MI->getOperand(7).getImm();
12977   unsigned Align = MI->getOperand(8).getImm();
12978
12979   // Memory Reference
12980   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
12981   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
12982   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
12983
12984   // Machine Information
12985   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12986   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
12987   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
12988   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
12989   DebugLoc DL = MI->getDebugLoc();
12990
12991   // struct va_list {
12992   //   i32   gp_offset
12993   //   i32   fp_offset
12994   //   i64   overflow_area (address)
12995   //   i64   reg_save_area (address)
12996   // }
12997   // sizeof(va_list) = 24
12998   // alignment(va_list) = 8
12999
13000   unsigned TotalNumIntRegs = 6;
13001   unsigned TotalNumXMMRegs = 8;
13002   bool UseGPOffset = (ArgMode == 1);
13003   bool UseFPOffset = (ArgMode == 2);
13004   unsigned MaxOffset = TotalNumIntRegs * 8 +
13005                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
13006
13007   /* Align ArgSize to a multiple of 8 */
13008   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
13009   bool NeedsAlign = (Align > 8);
13010
13011   MachineBasicBlock *thisMBB = MBB;
13012   MachineBasicBlock *overflowMBB;
13013   MachineBasicBlock *offsetMBB;
13014   MachineBasicBlock *endMBB;
13015
13016   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
13017   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
13018   unsigned OffsetReg = 0;
13019
13020   if (!UseGPOffset && !UseFPOffset) {
13021     // If we only pull from the overflow region, we don't create a branch.
13022     // We don't need to alter control flow.
13023     OffsetDestReg = 0; // unused
13024     OverflowDestReg = DestReg;
13025
13026     offsetMBB = NULL;
13027     overflowMBB = thisMBB;
13028     endMBB = thisMBB;
13029   } else {
13030     // First emit code to check if gp_offset (or fp_offset) is below the bound.
13031     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
13032     // If not, pull from overflow_area. (branch to overflowMBB)
13033     //
13034     //       thisMBB
13035     //         |     .
13036     //         |        .
13037     //     offsetMBB   overflowMBB
13038     //         |        .
13039     //         |     .
13040     //        endMBB
13041
13042     // Registers for the PHI in endMBB
13043     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
13044     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
13045
13046     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
13047     MachineFunction *MF = MBB->getParent();
13048     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13049     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13050     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13051
13052     MachineFunction::iterator MBBIter = MBB;
13053     ++MBBIter;
13054
13055     // Insert the new basic blocks
13056     MF->insert(MBBIter, offsetMBB);
13057     MF->insert(MBBIter, overflowMBB);
13058     MF->insert(MBBIter, endMBB);
13059
13060     // Transfer the remainder of MBB and its successor edges to endMBB.
13061     endMBB->splice(endMBB->begin(), thisMBB,
13062                     llvm::next(MachineBasicBlock::iterator(MI)),
13063                     thisMBB->end());
13064     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
13065
13066     // Make offsetMBB and overflowMBB successors of thisMBB
13067     thisMBB->addSuccessor(offsetMBB);
13068     thisMBB->addSuccessor(overflowMBB);
13069
13070     // endMBB is a successor of both offsetMBB and overflowMBB
13071     offsetMBB->addSuccessor(endMBB);
13072     overflowMBB->addSuccessor(endMBB);
13073
13074     // Load the offset value into a register
13075     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
13076     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
13077       .addOperand(Base)
13078       .addOperand(Scale)
13079       .addOperand(Index)
13080       .addDisp(Disp, UseFPOffset ? 4 : 0)
13081       .addOperand(Segment)
13082       .setMemRefs(MMOBegin, MMOEnd);
13083
13084     // Check if there is enough room left to pull this argument.
13085     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
13086       .addReg(OffsetReg)
13087       .addImm(MaxOffset + 8 - ArgSizeA8);
13088
13089     // Branch to "overflowMBB" if offset >= max
13090     // Fall through to "offsetMBB" otherwise
13091     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
13092       .addMBB(overflowMBB);
13093   }
13094
13095   // In offsetMBB, emit code to use the reg_save_area.
13096   if (offsetMBB) {
13097     assert(OffsetReg != 0);
13098
13099     // Read the reg_save_area address.
13100     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
13101     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
13102       .addOperand(Base)
13103       .addOperand(Scale)
13104       .addOperand(Index)
13105       .addDisp(Disp, 16)
13106       .addOperand(Segment)
13107       .setMemRefs(MMOBegin, MMOEnd);
13108
13109     // Zero-extend the offset
13110     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
13111       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
13112         .addImm(0)
13113         .addReg(OffsetReg)
13114         .addImm(X86::sub_32bit);
13115
13116     // Add the offset to the reg_save_area to get the final address.
13117     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
13118       .addReg(OffsetReg64)
13119       .addReg(RegSaveReg);
13120
13121     // Compute the offset for the next argument
13122     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
13123     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
13124       .addReg(OffsetReg)
13125       .addImm(UseFPOffset ? 16 : 8);
13126
13127     // Store it back into the va_list.
13128     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
13129       .addOperand(Base)
13130       .addOperand(Scale)
13131       .addOperand(Index)
13132       .addDisp(Disp, UseFPOffset ? 4 : 0)
13133       .addOperand(Segment)
13134       .addReg(NextOffsetReg)
13135       .setMemRefs(MMOBegin, MMOEnd);
13136
13137     // Jump to endMBB
13138     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
13139       .addMBB(endMBB);
13140   }
13141
13142   //
13143   // Emit code to use overflow area
13144   //
13145
13146   // Load the overflow_area address into a register.
13147   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
13148   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
13149     .addOperand(Base)
13150     .addOperand(Scale)
13151     .addOperand(Index)
13152     .addDisp(Disp, 8)
13153     .addOperand(Segment)
13154     .setMemRefs(MMOBegin, MMOEnd);
13155
13156   // If we need to align it, do so. Otherwise, just copy the address
13157   // to OverflowDestReg.
13158   if (NeedsAlign) {
13159     // Align the overflow address
13160     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
13161     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
13162
13163     // aligned_addr = (addr + (align-1)) & ~(align-1)
13164     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
13165       .addReg(OverflowAddrReg)
13166       .addImm(Align-1);
13167
13168     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
13169       .addReg(TmpReg)
13170       .addImm(~(uint64_t)(Align-1));
13171   } else {
13172     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
13173       .addReg(OverflowAddrReg);
13174   }
13175
13176   // Compute the next overflow address after this argument.
13177   // (the overflow address should be kept 8-byte aligned)
13178   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
13179   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
13180     .addReg(OverflowDestReg)
13181     .addImm(ArgSizeA8);
13182
13183   // Store the new overflow address.
13184   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
13185     .addOperand(Base)
13186     .addOperand(Scale)
13187     .addOperand(Index)
13188     .addDisp(Disp, 8)
13189     .addOperand(Segment)
13190     .addReg(NextAddrReg)
13191     .setMemRefs(MMOBegin, MMOEnd);
13192
13193   // If we branched, emit the PHI to the front of endMBB.
13194   if (offsetMBB) {
13195     BuildMI(*endMBB, endMBB->begin(), DL,
13196             TII->get(X86::PHI), DestReg)
13197       .addReg(OffsetDestReg).addMBB(offsetMBB)
13198       .addReg(OverflowDestReg).addMBB(overflowMBB);
13199   }
13200
13201   // Erase the pseudo instruction
13202   MI->eraseFromParent();
13203
13204   return endMBB;
13205 }
13206
13207 MachineBasicBlock *
13208 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
13209                                                  MachineInstr *MI,
13210                                                  MachineBasicBlock *MBB) const {
13211   // Emit code to save XMM registers to the stack. The ABI says that the
13212   // number of registers to save is given in %al, so it's theoretically
13213   // possible to do an indirect jump trick to avoid saving all of them,
13214   // however this code takes a simpler approach and just executes all
13215   // of the stores if %al is non-zero. It's less code, and it's probably
13216   // easier on the hardware branch predictor, and stores aren't all that
13217   // expensive anyway.
13218
13219   // Create the new basic blocks. One block contains all the XMM stores,
13220   // and one block is the final destination regardless of whether any
13221   // stores were performed.
13222   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
13223   MachineFunction *F = MBB->getParent();
13224   MachineFunction::iterator MBBIter = MBB;
13225   ++MBBIter;
13226   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
13227   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
13228   F->insert(MBBIter, XMMSaveMBB);
13229   F->insert(MBBIter, EndMBB);
13230
13231   // Transfer the remainder of MBB and its successor edges to EndMBB.
13232   EndMBB->splice(EndMBB->begin(), MBB,
13233                  llvm::next(MachineBasicBlock::iterator(MI)),
13234                  MBB->end());
13235   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
13236
13237   // The original block will now fall through to the XMM save block.
13238   MBB->addSuccessor(XMMSaveMBB);
13239   // The XMMSaveMBB will fall through to the end block.
13240   XMMSaveMBB->addSuccessor(EndMBB);
13241
13242   // Now add the instructions.
13243   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13244   DebugLoc DL = MI->getDebugLoc();
13245
13246   unsigned CountReg = MI->getOperand(0).getReg();
13247   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
13248   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
13249
13250   if (!Subtarget->isTargetWin64()) {
13251     // If %al is 0, branch around the XMM save block.
13252     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
13253     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
13254     MBB->addSuccessor(EndMBB);
13255   }
13256
13257   unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
13258   // In the XMM save block, save all the XMM argument registers.
13259   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
13260     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
13261     MachineMemOperand *MMO =
13262       F->getMachineMemOperand(
13263           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
13264         MachineMemOperand::MOStore,
13265         /*Size=*/16, /*Align=*/16);
13266     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
13267       .addFrameIndex(RegSaveFrameIndex)
13268       .addImm(/*Scale=*/1)
13269       .addReg(/*IndexReg=*/0)
13270       .addImm(/*Disp=*/Offset)
13271       .addReg(/*Segment=*/0)
13272       .addReg(MI->getOperand(i).getReg())
13273       .addMemOperand(MMO);
13274   }
13275
13276   MI->eraseFromParent();   // The pseudo instruction is gone now.
13277
13278   return EndMBB;
13279 }
13280
13281 // The EFLAGS operand of SelectItr might be missing a kill marker
13282 // because there were multiple uses of EFLAGS, and ISel didn't know
13283 // which to mark. Figure out whether SelectItr should have had a
13284 // kill marker, and set it if it should. Returns the correct kill
13285 // marker value.
13286 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
13287                                      MachineBasicBlock* BB,
13288                                      const TargetRegisterInfo* TRI) {
13289   // Scan forward through BB for a use/def of EFLAGS.
13290   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
13291   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
13292     const MachineInstr& mi = *miI;
13293     if (mi.readsRegister(X86::EFLAGS))
13294       return false;
13295     if (mi.definesRegister(X86::EFLAGS))
13296       break; // Should have kill-flag - update below.
13297   }
13298
13299   // If we hit the end of the block, check whether EFLAGS is live into a
13300   // successor.
13301   if (miI == BB->end()) {
13302     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
13303                                           sEnd = BB->succ_end();
13304          sItr != sEnd; ++sItr) {
13305       MachineBasicBlock* succ = *sItr;
13306       if (succ->isLiveIn(X86::EFLAGS))
13307         return false;
13308     }
13309   }
13310
13311   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
13312   // out. SelectMI should have a kill flag on EFLAGS.
13313   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
13314   return true;
13315 }
13316
13317 MachineBasicBlock *
13318 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
13319                                      MachineBasicBlock *BB) const {
13320   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13321   DebugLoc DL = MI->getDebugLoc();
13322
13323   // To "insert" a SELECT_CC instruction, we actually have to insert the
13324   // diamond control-flow pattern.  The incoming instruction knows the
13325   // destination vreg to set, the condition code register to branch on, the
13326   // true/false values to select between, and a branch opcode to use.
13327   const BasicBlock *LLVM_BB = BB->getBasicBlock();
13328   MachineFunction::iterator It = BB;
13329   ++It;
13330
13331   //  thisMBB:
13332   //  ...
13333   //   TrueVal = ...
13334   //   cmpTY ccX, r1, r2
13335   //   bCC copy1MBB
13336   //   fallthrough --> copy0MBB
13337   MachineBasicBlock *thisMBB = BB;
13338   MachineFunction *F = BB->getParent();
13339   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
13340   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
13341   F->insert(It, copy0MBB);
13342   F->insert(It, sinkMBB);
13343
13344   // If the EFLAGS register isn't dead in the terminator, then claim that it's
13345   // live into the sink and copy blocks.
13346   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
13347   if (!MI->killsRegister(X86::EFLAGS) &&
13348       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
13349     copy0MBB->addLiveIn(X86::EFLAGS);
13350     sinkMBB->addLiveIn(X86::EFLAGS);
13351   }
13352
13353   // Transfer the remainder of BB and its successor edges to sinkMBB.
13354   sinkMBB->splice(sinkMBB->begin(), BB,
13355                   llvm::next(MachineBasicBlock::iterator(MI)),
13356                   BB->end());
13357   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
13358
13359   // Add the true and fallthrough blocks as its successors.
13360   BB->addSuccessor(copy0MBB);
13361   BB->addSuccessor(sinkMBB);
13362
13363   // Create the conditional branch instruction.
13364   unsigned Opc =
13365     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
13366   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
13367
13368   //  copy0MBB:
13369   //   %FalseValue = ...
13370   //   # fallthrough to sinkMBB
13371   copy0MBB->addSuccessor(sinkMBB);
13372
13373   //  sinkMBB:
13374   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
13375   //  ...
13376   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13377           TII->get(X86::PHI), MI->getOperand(0).getReg())
13378     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
13379     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
13380
13381   MI->eraseFromParent();   // The pseudo instruction is gone now.
13382   return sinkMBB;
13383 }
13384
13385 MachineBasicBlock *
13386 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
13387                                         bool Is64Bit) const {
13388   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13389   DebugLoc DL = MI->getDebugLoc();
13390   MachineFunction *MF = BB->getParent();
13391   const BasicBlock *LLVM_BB = BB->getBasicBlock();
13392
13393   assert(getTargetMachine().Options.EnableSegmentedStacks);
13394
13395   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
13396   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
13397
13398   // BB:
13399   //  ... [Till the alloca]
13400   // If stacklet is not large enough, jump to mallocMBB
13401   //
13402   // bumpMBB:
13403   //  Allocate by subtracting from RSP
13404   //  Jump to continueMBB
13405   //
13406   // mallocMBB:
13407   //  Allocate by call to runtime
13408   //
13409   // continueMBB:
13410   //  ...
13411   //  [rest of original BB]
13412   //
13413
13414   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13415   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13416   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
13417
13418   MachineRegisterInfo &MRI = MF->getRegInfo();
13419   const TargetRegisterClass *AddrRegClass =
13420     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
13421
13422   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
13423     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
13424     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
13425     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
13426     sizeVReg = MI->getOperand(1).getReg(),
13427     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
13428
13429   MachineFunction::iterator MBBIter = BB;
13430   ++MBBIter;
13431
13432   MF->insert(MBBIter, bumpMBB);
13433   MF->insert(MBBIter, mallocMBB);
13434   MF->insert(MBBIter, continueMBB);
13435
13436   continueMBB->splice(continueMBB->begin(), BB, llvm::next
13437                       (MachineBasicBlock::iterator(MI)), BB->end());
13438   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
13439
13440   // Add code to the main basic block to check if the stack limit has been hit,
13441   // and if so, jump to mallocMBB otherwise to bumpMBB.
13442   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
13443   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
13444     .addReg(tmpSPVReg).addReg(sizeVReg);
13445   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
13446     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
13447     .addReg(SPLimitVReg);
13448   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
13449
13450   // bumpMBB simply decreases the stack pointer, since we know the current
13451   // stacklet has enough space.
13452   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
13453     .addReg(SPLimitVReg);
13454   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
13455     .addReg(SPLimitVReg);
13456   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
13457
13458   // Calls into a routine in libgcc to allocate more space from the heap.
13459   const uint32_t *RegMask =
13460     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
13461   if (Is64Bit) {
13462     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
13463       .addReg(sizeVReg);
13464     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
13465       .addExternalSymbol("__morestack_allocate_stack_space")
13466       .addRegMask(RegMask)
13467       .addReg(X86::RDI, RegState::Implicit)
13468       .addReg(X86::RAX, RegState::ImplicitDefine);
13469   } else {
13470     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
13471       .addImm(12);
13472     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
13473     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
13474       .addExternalSymbol("__morestack_allocate_stack_space")
13475       .addRegMask(RegMask)
13476       .addReg(X86::EAX, RegState::ImplicitDefine);
13477   }
13478
13479   if (!Is64Bit)
13480     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
13481       .addImm(16);
13482
13483   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
13484     .addReg(Is64Bit ? X86::RAX : X86::EAX);
13485   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
13486
13487   // Set up the CFG correctly.
13488   BB->addSuccessor(bumpMBB);
13489   BB->addSuccessor(mallocMBB);
13490   mallocMBB->addSuccessor(continueMBB);
13491   bumpMBB->addSuccessor(continueMBB);
13492
13493   // Take care of the PHI nodes.
13494   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
13495           MI->getOperand(0).getReg())
13496     .addReg(mallocPtrVReg).addMBB(mallocMBB)
13497     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
13498
13499   // Delete the original pseudo instruction.
13500   MI->eraseFromParent();
13501
13502   // And we're done.
13503   return continueMBB;
13504 }
13505
13506 MachineBasicBlock *
13507 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
13508                                           MachineBasicBlock *BB) const {
13509   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13510   DebugLoc DL = MI->getDebugLoc();
13511
13512   assert(!Subtarget->isTargetEnvMacho());
13513
13514   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
13515   // non-trivial part is impdef of ESP.
13516
13517   if (Subtarget->isTargetWin64()) {
13518     if (Subtarget->isTargetCygMing()) {
13519       // ___chkstk(Mingw64):
13520       // Clobbers R10, R11, RAX and EFLAGS.
13521       // Updates RSP.
13522       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
13523         .addExternalSymbol("___chkstk")
13524         .addReg(X86::RAX, RegState::Implicit)
13525         .addReg(X86::RSP, RegState::Implicit)
13526         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
13527         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
13528         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
13529     } else {
13530       // __chkstk(MSVCRT): does not update stack pointer.
13531       // Clobbers R10, R11 and EFLAGS.
13532       // FIXME: RAX(allocated size) might be reused and not killed.
13533       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
13534         .addExternalSymbol("__chkstk")
13535         .addReg(X86::RAX, RegState::Implicit)
13536         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
13537       // RAX has the offset to subtracted from RSP.
13538       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
13539         .addReg(X86::RSP)
13540         .addReg(X86::RAX);
13541     }
13542   } else {
13543     const char *StackProbeSymbol =
13544       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
13545
13546     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
13547       .addExternalSymbol(StackProbeSymbol)
13548       .addReg(X86::EAX, RegState::Implicit)
13549       .addReg(X86::ESP, RegState::Implicit)
13550       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
13551       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
13552       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
13553   }
13554
13555   MI->eraseFromParent();   // The pseudo instruction is gone now.
13556   return BB;
13557 }
13558
13559 MachineBasicBlock *
13560 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
13561                                       MachineBasicBlock *BB) const {
13562   // This is pretty easy.  We're taking the value that we received from
13563   // our load from the relocation, sticking it in either RDI (x86-64)
13564   // or EAX and doing an indirect call.  The return value will then
13565   // be in the normal return register.
13566   const X86InstrInfo *TII
13567     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
13568   DebugLoc DL = MI->getDebugLoc();
13569   MachineFunction *F = BB->getParent();
13570
13571   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
13572   assert(MI->getOperand(3).isGlobal() && "This should be a global");
13573
13574   // Get a register mask for the lowered call.
13575   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
13576   // proper register mask.
13577   const uint32_t *RegMask =
13578     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
13579   if (Subtarget->is64Bit()) {
13580     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
13581                                       TII->get(X86::MOV64rm), X86::RDI)
13582     .addReg(X86::RIP)
13583     .addImm(0).addReg(0)
13584     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
13585                       MI->getOperand(3).getTargetFlags())
13586     .addReg(0);
13587     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
13588     addDirectMem(MIB, X86::RDI);
13589     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
13590   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
13591     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
13592                                       TII->get(X86::MOV32rm), X86::EAX)
13593     .addReg(0)
13594     .addImm(0).addReg(0)
13595     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
13596                       MI->getOperand(3).getTargetFlags())
13597     .addReg(0);
13598     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
13599     addDirectMem(MIB, X86::EAX);
13600     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
13601   } else {
13602     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
13603                                       TII->get(X86::MOV32rm), X86::EAX)
13604     .addReg(TII->getGlobalBaseReg(F))
13605     .addImm(0).addReg(0)
13606     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
13607                       MI->getOperand(3).getTargetFlags())
13608     .addReg(0);
13609     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
13610     addDirectMem(MIB, X86::EAX);
13611     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
13612   }
13613
13614   MI->eraseFromParent(); // The pseudo instruction is gone now.
13615   return BB;
13616 }
13617
13618 MachineBasicBlock *
13619 X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
13620                                     MachineBasicBlock *MBB) const {
13621   DebugLoc DL = MI->getDebugLoc();
13622   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13623
13624   MachineFunction *MF = MBB->getParent();
13625   MachineRegisterInfo &MRI = MF->getRegInfo();
13626
13627   const BasicBlock *BB = MBB->getBasicBlock();
13628   MachineFunction::iterator I = MBB;
13629   ++I;
13630
13631   // Memory Reference
13632   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
13633   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
13634
13635   unsigned DstReg;
13636   unsigned MemOpndSlot = 0;
13637
13638   unsigned CurOp = 0;
13639
13640   DstReg = MI->getOperand(CurOp++).getReg();
13641   const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
13642   assert(RC->hasType(MVT::i32) && "Invalid destination!");
13643   unsigned mainDstReg = MRI.createVirtualRegister(RC);
13644   unsigned restoreDstReg = MRI.createVirtualRegister(RC);
13645
13646   MemOpndSlot = CurOp;
13647
13648   MVT PVT = getPointerTy();
13649   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
13650          "Invalid Pointer Size!");
13651
13652   // For v = setjmp(buf), we generate
13653   //
13654   // thisMBB:
13655   //  buf[LabelOffset] = restoreMBB
13656   //  SjLjSetup restoreMBB
13657   //
13658   // mainMBB:
13659   //  v_main = 0
13660   //
13661   // sinkMBB:
13662   //  v = phi(main, restore)
13663   //
13664   // restoreMBB:
13665   //  v_restore = 1
13666
13667   MachineBasicBlock *thisMBB = MBB;
13668   MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
13669   MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
13670   MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
13671   MF->insert(I, mainMBB);
13672   MF->insert(I, sinkMBB);
13673   MF->push_back(restoreMBB);
13674
13675   MachineInstrBuilder MIB;
13676
13677   // Transfer the remainder of BB and its successor edges to sinkMBB.
13678   sinkMBB->splice(sinkMBB->begin(), MBB,
13679                   llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
13680   sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
13681
13682   // thisMBB:
13683   unsigned PtrStoreOpc = 0;
13684   unsigned LabelReg = 0;
13685   const int64_t LabelOffset = 1 * PVT.getStoreSize();
13686   Reloc::Model RM = getTargetMachine().getRelocationModel();
13687   bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
13688                      (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
13689
13690   // Prepare IP either in reg or imm.
13691   if (!UseImmLabel) {
13692     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
13693     const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
13694     LabelReg = MRI.createVirtualRegister(PtrRC);
13695     if (Subtarget->is64Bit()) {
13696       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
13697               .addReg(X86::RIP)
13698               .addImm(0)
13699               .addReg(0)
13700               .addMBB(restoreMBB)
13701               .addReg(0);
13702     } else {
13703       const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
13704       MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
13705               .addReg(XII->getGlobalBaseReg(MF))
13706               .addImm(0)
13707               .addReg(0)
13708               .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
13709               .addReg(0);
13710     }
13711   } else
13712     PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
13713   // Store IP
13714   MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
13715   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
13716     if (i == X86::AddrDisp)
13717       MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
13718     else
13719       MIB.addOperand(MI->getOperand(MemOpndSlot + i));
13720   }
13721   if (!UseImmLabel)
13722     MIB.addReg(LabelReg);
13723   else
13724     MIB.addMBB(restoreMBB);
13725   MIB.setMemRefs(MMOBegin, MMOEnd);
13726   // Setup
13727   MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
13728           .addMBB(restoreMBB);
13729   MIB.addRegMask(RegInfo->getNoPreservedMask());
13730   thisMBB->addSuccessor(mainMBB);
13731   thisMBB->addSuccessor(restoreMBB);
13732
13733   // mainMBB:
13734   //  EAX = 0
13735   BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
13736   mainMBB->addSuccessor(sinkMBB);
13737
13738   // sinkMBB:
13739   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
13740           TII->get(X86::PHI), DstReg)
13741     .addReg(mainDstReg).addMBB(mainMBB)
13742     .addReg(restoreDstReg).addMBB(restoreMBB);
13743
13744   // restoreMBB:
13745   BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
13746   BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
13747   restoreMBB->addSuccessor(sinkMBB);
13748
13749   MI->eraseFromParent();
13750   return sinkMBB;
13751 }
13752
13753 MachineBasicBlock *
13754 X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
13755                                      MachineBasicBlock *MBB) const {
13756   DebugLoc DL = MI->getDebugLoc();
13757   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13758
13759   MachineFunction *MF = MBB->getParent();
13760   MachineRegisterInfo &MRI = MF->getRegInfo();
13761
13762   // Memory Reference
13763   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
13764   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
13765
13766   MVT PVT = getPointerTy();
13767   assert((PVT == MVT::i64 || PVT == MVT::i32) &&
13768          "Invalid Pointer Size!");
13769
13770   const TargetRegisterClass *RC =
13771     (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
13772   unsigned Tmp = MRI.createVirtualRegister(RC);
13773   // Since FP is only updated here but NOT referenced, it's treated as GPR.
13774   unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
13775   unsigned SP = RegInfo->getStackRegister();
13776
13777   MachineInstrBuilder MIB;
13778
13779   const int64_t LabelOffset = 1 * PVT.getStoreSize();
13780   const int64_t SPOffset = 2 * PVT.getStoreSize();
13781
13782   unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
13783   unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
13784
13785   // Reload FP
13786   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
13787   for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
13788     MIB.addOperand(MI->getOperand(i));
13789   MIB.setMemRefs(MMOBegin, MMOEnd);
13790   // Reload IP
13791   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
13792   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
13793     if (i == X86::AddrDisp)
13794       MIB.addDisp(MI->getOperand(i), LabelOffset);
13795     else
13796       MIB.addOperand(MI->getOperand(i));
13797   }
13798   MIB.setMemRefs(MMOBegin, MMOEnd);
13799   // Reload SP
13800   MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
13801   for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
13802     if (i == X86::AddrDisp)
13803       MIB.addDisp(MI->getOperand(i), SPOffset);
13804     else
13805       MIB.addOperand(MI->getOperand(i));
13806   }
13807   MIB.setMemRefs(MMOBegin, MMOEnd);
13808   // Jump
13809   BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
13810
13811   MI->eraseFromParent();
13812   return MBB;
13813 }
13814
13815 MachineBasicBlock *
13816 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
13817                                                MachineBasicBlock *BB) const {
13818   switch (MI->getOpcode()) {
13819   default: llvm_unreachable("Unexpected instr type to insert");
13820   case X86::TAILJMPd64:
13821   case X86::TAILJMPr64:
13822   case X86::TAILJMPm64:
13823     llvm_unreachable("TAILJMP64 would not be touched here.");
13824   case X86::TCRETURNdi64:
13825   case X86::TCRETURNri64:
13826   case X86::TCRETURNmi64:
13827     return BB;
13828   case X86::WIN_ALLOCA:
13829     return EmitLoweredWinAlloca(MI, BB);
13830   case X86::SEG_ALLOCA_32:
13831     return EmitLoweredSegAlloca(MI, BB, false);
13832   case X86::SEG_ALLOCA_64:
13833     return EmitLoweredSegAlloca(MI, BB, true);
13834   case X86::TLSCall_32:
13835   case X86::TLSCall_64:
13836     return EmitLoweredTLSCall(MI, BB);
13837   case X86::CMOV_GR8:
13838   case X86::CMOV_FR32:
13839   case X86::CMOV_FR64:
13840   case X86::CMOV_V4F32:
13841   case X86::CMOV_V2F64:
13842   case X86::CMOV_V2I64:
13843   case X86::CMOV_V8F32:
13844   case X86::CMOV_V4F64:
13845   case X86::CMOV_V4I64:
13846   case X86::CMOV_GR16:
13847   case X86::CMOV_GR32:
13848   case X86::CMOV_RFP32:
13849   case X86::CMOV_RFP64:
13850   case X86::CMOV_RFP80:
13851     return EmitLoweredSelect(MI, BB);
13852
13853   case X86::FP32_TO_INT16_IN_MEM:
13854   case X86::FP32_TO_INT32_IN_MEM:
13855   case X86::FP32_TO_INT64_IN_MEM:
13856   case X86::FP64_TO_INT16_IN_MEM:
13857   case X86::FP64_TO_INT32_IN_MEM:
13858   case X86::FP64_TO_INT64_IN_MEM:
13859   case X86::FP80_TO_INT16_IN_MEM:
13860   case X86::FP80_TO_INT32_IN_MEM:
13861   case X86::FP80_TO_INT64_IN_MEM: {
13862     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
13863     DebugLoc DL = MI->getDebugLoc();
13864
13865     // Change the floating point control register to use "round towards zero"
13866     // mode when truncating to an integer value.
13867     MachineFunction *F = BB->getParent();
13868     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
13869     addFrameReference(BuildMI(*BB, MI, DL,
13870                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
13871
13872     // Load the old value of the high byte of the control word...
13873     unsigned OldCW =
13874       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
13875     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
13876                       CWFrameIdx);
13877
13878     // Set the high part to be round to zero...
13879     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
13880       .addImm(0xC7F);
13881
13882     // Reload the modified control word now...
13883     addFrameReference(BuildMI(*BB, MI, DL,
13884                               TII->get(X86::FLDCW16m)), CWFrameIdx);
13885
13886     // Restore the memory image of control word to original value
13887     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
13888       .addReg(OldCW);
13889
13890     // Get the X86 opcode to use.
13891     unsigned Opc;
13892     switch (MI->getOpcode()) {
13893     default: llvm_unreachable("illegal opcode!");
13894     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
13895     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
13896     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
13897     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
13898     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
13899     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
13900     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
13901     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
13902     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
13903     }
13904
13905     X86AddressMode AM;
13906     MachineOperand &Op = MI->getOperand(0);
13907     if (Op.isReg()) {
13908       AM.BaseType = X86AddressMode::RegBase;
13909       AM.Base.Reg = Op.getReg();
13910     } else {
13911       AM.BaseType = X86AddressMode::FrameIndexBase;
13912       AM.Base.FrameIndex = Op.getIndex();
13913     }
13914     Op = MI->getOperand(1);
13915     if (Op.isImm())
13916       AM.Scale = Op.getImm();
13917     Op = MI->getOperand(2);
13918     if (Op.isImm())
13919       AM.IndexReg = Op.getImm();
13920     Op = MI->getOperand(3);
13921     if (Op.isGlobal()) {
13922       AM.GV = Op.getGlobal();
13923     } else {
13924       AM.Disp = Op.getImm();
13925     }
13926     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
13927                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
13928
13929     // Reload the original control word now.
13930     addFrameReference(BuildMI(*BB, MI, DL,
13931                               TII->get(X86::FLDCW16m)), CWFrameIdx);
13932
13933     MI->eraseFromParent();   // The pseudo instruction is gone now.
13934     return BB;
13935   }
13936     // String/text processing lowering.
13937   case X86::PCMPISTRM128REG:
13938   case X86::VPCMPISTRM128REG:
13939   case X86::PCMPISTRM128MEM:
13940   case X86::VPCMPISTRM128MEM:
13941   case X86::PCMPESTRM128REG:
13942   case X86::VPCMPESTRM128REG:
13943   case X86::PCMPESTRM128MEM:
13944   case X86::VPCMPESTRM128MEM:
13945     assert(Subtarget->hasSSE42() &&
13946            "Target must have SSE4.2 or AVX features enabled");
13947     return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
13948
13949   // String/text processing lowering.
13950   case X86::PCMPISTRIREG:
13951   case X86::VPCMPISTRIREG:
13952   case X86::PCMPISTRIMEM:
13953   case X86::VPCMPISTRIMEM:
13954   case X86::PCMPESTRIREG:
13955   case X86::VPCMPESTRIREG:
13956   case X86::PCMPESTRIMEM:
13957   case X86::VPCMPESTRIMEM:
13958     assert(Subtarget->hasSSE42() &&
13959            "Target must have SSE4.2 or AVX features enabled");
13960     return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
13961
13962   // Thread synchronization.
13963   case X86::MONITOR:
13964     return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
13965
13966   // xbegin
13967   case X86::XBEGIN:
13968     return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
13969
13970   // Atomic Lowering.
13971   case X86::ATOMAND8:
13972   case X86::ATOMAND16:
13973   case X86::ATOMAND32:
13974   case X86::ATOMAND64:
13975     // Fall through
13976   case X86::ATOMOR8:
13977   case X86::ATOMOR16:
13978   case X86::ATOMOR32:
13979   case X86::ATOMOR64:
13980     // Fall through
13981   case X86::ATOMXOR16:
13982   case X86::ATOMXOR8:
13983   case X86::ATOMXOR32:
13984   case X86::ATOMXOR64:
13985     // Fall through
13986   case X86::ATOMNAND8:
13987   case X86::ATOMNAND16:
13988   case X86::ATOMNAND32:
13989   case X86::ATOMNAND64:
13990     // Fall through
13991   case X86::ATOMMAX8:
13992   case X86::ATOMMAX16:
13993   case X86::ATOMMAX32:
13994   case X86::ATOMMAX64:
13995     // Fall through
13996   case X86::ATOMMIN8:
13997   case X86::ATOMMIN16:
13998   case X86::ATOMMIN32:
13999   case X86::ATOMMIN64:
14000     // Fall through
14001   case X86::ATOMUMAX8:
14002   case X86::ATOMUMAX16:
14003   case X86::ATOMUMAX32:
14004   case X86::ATOMUMAX64:
14005     // Fall through
14006   case X86::ATOMUMIN8:
14007   case X86::ATOMUMIN16:
14008   case X86::ATOMUMIN32:
14009   case X86::ATOMUMIN64:
14010     return EmitAtomicLoadArith(MI, BB);
14011
14012   // This group does 64-bit operations on a 32-bit host.
14013   case X86::ATOMAND6432:
14014   case X86::ATOMOR6432:
14015   case X86::ATOMXOR6432:
14016   case X86::ATOMNAND6432:
14017   case X86::ATOMADD6432:
14018   case X86::ATOMSUB6432:
14019   case X86::ATOMMAX6432:
14020   case X86::ATOMMIN6432:
14021   case X86::ATOMUMAX6432:
14022   case X86::ATOMUMIN6432:
14023   case X86::ATOMSWAP6432:
14024     return EmitAtomicLoadArith6432(MI, BB);
14025
14026   case X86::VASTART_SAVE_XMM_REGS:
14027     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
14028
14029   case X86::VAARG_64:
14030     return EmitVAARG64WithCustomInserter(MI, BB);
14031
14032   case X86::EH_SjLj_SetJmp32:
14033   case X86::EH_SjLj_SetJmp64:
14034     return emitEHSjLjSetJmp(MI, BB);
14035
14036   case X86::EH_SjLj_LongJmp32:
14037   case X86::EH_SjLj_LongJmp64:
14038     return emitEHSjLjLongJmp(MI, BB);
14039   }
14040 }
14041
14042 //===----------------------------------------------------------------------===//
14043 //                           X86 Optimization Hooks
14044 //===----------------------------------------------------------------------===//
14045
14046 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
14047                                                        APInt &KnownZero,
14048                                                        APInt &KnownOne,
14049                                                        const SelectionDAG &DAG,
14050                                                        unsigned Depth) const {
14051   unsigned BitWidth = KnownZero.getBitWidth();
14052   unsigned Opc = Op.getOpcode();
14053   assert((Opc >= ISD::BUILTIN_OP_END ||
14054           Opc == ISD::INTRINSIC_WO_CHAIN ||
14055           Opc == ISD::INTRINSIC_W_CHAIN ||
14056           Opc == ISD::INTRINSIC_VOID) &&
14057          "Should use MaskedValueIsZero if you don't know whether Op"
14058          " is a target node!");
14059
14060   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
14061   switch (Opc) {
14062   default: break;
14063   case X86ISD::ADD:
14064   case X86ISD::SUB:
14065   case X86ISD::ADC:
14066   case X86ISD::SBB:
14067   case X86ISD::SMUL:
14068   case X86ISD::UMUL:
14069   case X86ISD::INC:
14070   case X86ISD::DEC:
14071   case X86ISD::OR:
14072   case X86ISD::XOR:
14073   case X86ISD::AND:
14074     // These nodes' second result is a boolean.
14075     if (Op.getResNo() == 0)
14076       break;
14077     // Fallthrough
14078   case X86ISD::SETCC:
14079     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
14080     break;
14081   case ISD::INTRINSIC_WO_CHAIN: {
14082     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
14083     unsigned NumLoBits = 0;
14084     switch (IntId) {
14085     default: break;
14086     case Intrinsic::x86_sse_movmsk_ps:
14087     case Intrinsic::x86_avx_movmsk_ps_256:
14088     case Intrinsic::x86_sse2_movmsk_pd:
14089     case Intrinsic::x86_avx_movmsk_pd_256:
14090     case Intrinsic::x86_mmx_pmovmskb:
14091     case Intrinsic::x86_sse2_pmovmskb_128:
14092     case Intrinsic::x86_avx2_pmovmskb: {
14093       // High bits of movmskp{s|d}, pmovmskb are known zero.
14094       switch (IntId) {
14095         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
14096         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
14097         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
14098         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
14099         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
14100         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
14101         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
14102         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
14103       }
14104       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
14105       break;
14106     }
14107     }
14108     break;
14109   }
14110   }
14111 }
14112
14113 void X86TargetLowering::computeMaskedBitsForAnyExtend(const SDValue Op,
14114                                                       APInt &KnownZero,
14115                                                       APInt &KnownOne,
14116                                                       const SelectionDAG &DAG,
14117                                                       unsigned Depth) const {
14118   unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
14119   if (Op.getOpcode() == ISD::ANY_EXTEND) {
14120     // Implemented as a zero_extend except for i16 -> i32
14121     EVT InVT = Op.getOperand(0).getValueType();
14122     unsigned InBits = InVT.getScalarType().getSizeInBits();
14123     KnownZero = KnownZero.trunc(InBits);
14124     KnownOne = KnownOne.trunc(InBits);
14125     DAG.ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1);
14126     KnownZero = KnownZero.zext(BitWidth);
14127     KnownOne = KnownOne.zext(BitWidth);
14128     if (BitWidth != 32 || InBits != 16) {
14129       APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits);
14130       KnownZero |= NewBits;
14131     }
14132     return;
14133   } else if (ISD::isEXTLoad(Op.getNode())) {
14134     // Implemented as zextloads or implicitly zero-extended (i32 -> i64)
14135     LoadSDNode *LD = cast<LoadSDNode>(Op);
14136     EVT VT = LD->getMemoryVT();
14137     unsigned MemBits = VT.getScalarType().getSizeInBits();
14138     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits);
14139     return;
14140   }
14141   
14142   assert(0 && "Expecting an ANY_EXTEND or extload!");
14143 }
14144
14145 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
14146                                                          unsigned Depth) const {
14147   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
14148   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
14149     return Op.getValueType().getScalarType().getSizeInBits();
14150
14151   // Fallback case.
14152   return 1;
14153 }
14154
14155 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
14156 /// node is a GlobalAddress + offset.
14157 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
14158                                        const GlobalValue* &GA,
14159                                        int64_t &Offset) const {
14160   if (N->getOpcode() == X86ISD::Wrapper) {
14161     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
14162       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
14163       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
14164       return true;
14165     }
14166   }
14167   return TargetLowering::isGAPlusOffset(N, GA, Offset);
14168 }
14169
14170 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
14171 /// same as extracting the high 128-bit part of 256-bit vector and then
14172 /// inserting the result into the low part of a new 256-bit vector
14173 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
14174   EVT VT = SVOp->getValueType(0);
14175   unsigned NumElems = VT.getVectorNumElements();
14176
14177   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
14178   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
14179     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
14180         SVOp->getMaskElt(j) >= 0)
14181       return false;
14182
14183   return true;
14184 }
14185
14186 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
14187 /// same as extracting the low 128-bit part of 256-bit vector and then
14188 /// inserting the result into the high part of a new 256-bit vector
14189 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
14190   EVT VT = SVOp->getValueType(0);
14191   unsigned NumElems = VT.getVectorNumElements();
14192
14193   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
14194   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
14195     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
14196         SVOp->getMaskElt(j) >= 0)
14197       return false;
14198
14199   return true;
14200 }
14201
14202 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
14203 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
14204                                         TargetLowering::DAGCombinerInfo &DCI,
14205                                         const X86Subtarget* Subtarget) {
14206   DebugLoc dl = N->getDebugLoc();
14207   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
14208   SDValue V1 = SVOp->getOperand(0);
14209   SDValue V2 = SVOp->getOperand(1);
14210   EVT VT = SVOp->getValueType(0);
14211   unsigned NumElems = VT.getVectorNumElements();
14212
14213   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
14214       V2.getOpcode() == ISD::CONCAT_VECTORS) {
14215     //
14216     //                   0,0,0,...
14217     //                      |
14218     //    V      UNDEF    BUILD_VECTOR    UNDEF
14219     //     \      /           \           /
14220     //  CONCAT_VECTOR         CONCAT_VECTOR
14221     //         \                  /
14222     //          \                /
14223     //          RESULT: V + zero extended
14224     //
14225     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
14226         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
14227         V1.getOperand(1).getOpcode() != ISD::UNDEF)
14228       return SDValue();
14229
14230     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
14231       return SDValue();
14232
14233     // To match the shuffle mask, the first half of the mask should
14234     // be exactly the first vector, and all the rest a splat with the
14235     // first element of the second one.
14236     for (unsigned i = 0; i != NumElems/2; ++i)
14237       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
14238           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
14239         return SDValue();
14240
14241     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
14242     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
14243       if (Ld->hasNUsesOfValue(1, 0)) {
14244         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
14245         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
14246         SDValue ResNode =
14247           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2,
14248                                   Ld->getMemoryVT(),
14249                                   Ld->getPointerInfo(),
14250                                   Ld->getAlignment(),
14251                                   false/*isVolatile*/, true/*ReadMem*/,
14252                                   false/*WriteMem*/);
14253
14254         // Make sure the newly-created LOAD is in the same position as Ld in
14255         // terms of dependency. We create a TokenFactor for Ld and ResNode,
14256         // and update uses of Ld's output chain to use the TokenFactor.
14257         if (Ld->hasAnyUseOfValue(1)) {
14258           SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
14259                              SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
14260           DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
14261           DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
14262                                  SDValue(ResNode.getNode(), 1));
14263         }
14264
14265         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
14266       }
14267     }
14268
14269     // Emit a zeroed vector and insert the desired subvector on its
14270     // first half.
14271     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
14272     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
14273     return DCI.CombineTo(N, InsV);
14274   }
14275
14276   //===--------------------------------------------------------------------===//
14277   // Combine some shuffles into subvector extracts and inserts:
14278   //
14279
14280   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
14281   if (isShuffleHigh128VectorInsertLow(SVOp)) {
14282     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
14283     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
14284     return DCI.CombineTo(N, InsV);
14285   }
14286
14287   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
14288   if (isShuffleLow128VectorInsertHigh(SVOp)) {
14289     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
14290     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
14291     return DCI.CombineTo(N, InsV);
14292   }
14293
14294   return SDValue();
14295 }
14296
14297 /// PerformShuffleCombine - Performs several different shuffle combines.
14298 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
14299                                      TargetLowering::DAGCombinerInfo &DCI,
14300                                      const X86Subtarget *Subtarget) {
14301   DebugLoc dl = N->getDebugLoc();
14302   EVT VT = N->getValueType(0);
14303
14304   // Don't create instructions with illegal types after legalize types has run.
14305   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14306   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
14307     return SDValue();
14308
14309   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
14310   if (Subtarget->hasFp256() && VT.is256BitVector() &&
14311       N->getOpcode() == ISD::VECTOR_SHUFFLE)
14312     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
14313
14314   // Only handle 128 wide vector from here on.
14315   if (!VT.is128BitVector())
14316     return SDValue();
14317
14318   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
14319   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
14320   // consecutive, non-overlapping, and in the right order.
14321   SmallVector<SDValue, 16> Elts;
14322   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
14323     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
14324
14325   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
14326 }
14327
14328
14329 /// PerformTruncateCombine - Converts truncate operation to
14330 /// a sequence of vector shuffle operations.
14331 /// It is possible when we truncate 256-bit vector to 128-bit vector
14332 static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
14333                                       TargetLowering::DAGCombinerInfo &DCI,
14334                                       const X86Subtarget *Subtarget)  {
14335   if (!DCI.isBeforeLegalizeOps())
14336     return SDValue();
14337
14338   if (!Subtarget->hasFp256())
14339     return SDValue();
14340
14341   EVT VT = N->getValueType(0);
14342   SDValue Op = N->getOperand(0);
14343   EVT OpVT = Op.getValueType();
14344   DebugLoc dl = N->getDebugLoc();
14345
14346   if ((VT == MVT::v4i32) && (OpVT == MVT::v4i64)) {
14347
14348     if (Subtarget->hasInt256()) {
14349       // AVX2: v4i64 -> v4i32
14350
14351       // VPERMD
14352       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
14353
14354       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v8i32, Op);
14355       Op = DAG.getVectorShuffle(MVT::v8i32, dl, Op, DAG.getUNDEF(MVT::v8i32),
14356                                 ShufMask);
14357
14358       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, Op,
14359                          DAG.getIntPtrConstant(0));
14360     }
14361
14362     // AVX: v4i64 -> v4i32
14363     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v2i64, Op,
14364                                DAG.getIntPtrConstant(0));
14365
14366     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v2i64, Op,
14367                                DAG.getIntPtrConstant(2));
14368
14369     OpLo = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpLo);
14370     OpHi = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpHi);
14371
14372     // PSHUFD
14373     static const int ShufMask1[] = {0, 2, 0, 0};
14374
14375     SDValue Undef = DAG.getUNDEF(VT);
14376     OpLo = DAG.getVectorShuffle(VT, dl, OpLo, Undef, ShufMask1);
14377     OpHi = DAG.getVectorShuffle(VT, dl, OpHi, Undef, ShufMask1);
14378
14379     // MOVLHPS
14380     static const int ShufMask2[] = {0, 1, 4, 5};
14381
14382     return DAG.getVectorShuffle(VT, dl, OpLo, OpHi, ShufMask2);
14383   }
14384
14385   if ((VT == MVT::v8i16) && (OpVT == MVT::v8i32)) {
14386
14387     if (Subtarget->hasInt256()) {
14388       // AVX2: v8i32 -> v8i16
14389
14390       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v32i8, Op);
14391
14392       // PSHUFB
14393       SmallVector<SDValue,32> pshufbMask;
14394       for (unsigned i = 0; i < 2; ++i) {
14395         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
14396         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
14397         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
14398         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
14399         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
14400         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
14401         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
14402         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
14403         for (unsigned j = 0; j < 8; ++j)
14404           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
14405       }
14406       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v32i8,
14407                                &pshufbMask[0], 32);
14408       Op = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, Op, BV);
14409
14410       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i64, Op);
14411
14412       static const int ShufMask[] = {0,  2,  -1,  -1};
14413       Op = DAG.getVectorShuffle(MVT::v4i64, dl,  Op, DAG.getUNDEF(MVT::v4i64),
14414                                 &ShufMask[0]);
14415
14416       Op = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v2i64, Op,
14417                        DAG.getIntPtrConstant(0));
14418
14419       return DAG.getNode(ISD::BITCAST, dl, VT, Op);
14420     }
14421
14422     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i32, Op,
14423                                DAG.getIntPtrConstant(0));
14424
14425     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i32, Op,
14426                                DAG.getIntPtrConstant(4));
14427
14428     OpLo = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLo);
14429     OpHi = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpHi);
14430
14431     // PSHUFB
14432     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
14433                                    -1, -1, -1, -1, -1, -1, -1, -1};
14434
14435     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
14436     OpLo = DAG.getVectorShuffle(MVT::v16i8, dl, OpLo, Undef, ShufMask1);
14437     OpHi = DAG.getVectorShuffle(MVT::v16i8, dl, OpHi, Undef, ShufMask1);
14438
14439     OpLo = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpLo);
14440     OpHi = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpHi);
14441
14442     // MOVLHPS
14443     static const int ShufMask2[] = {0, 1, 4, 5};
14444
14445     SDValue res = DAG.getVectorShuffle(MVT::v4i32, dl, OpLo, OpHi, ShufMask2);
14446     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, res);
14447   }
14448
14449   return SDValue();
14450 }
14451
14452 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
14453 /// specific shuffle of a load can be folded into a single element load.
14454 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
14455 /// shuffles have been customed lowered so we need to handle those here.
14456 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
14457                                          TargetLowering::DAGCombinerInfo &DCI) {
14458   if (DCI.isBeforeLegalizeOps())
14459     return SDValue();
14460
14461   SDValue InVec = N->getOperand(0);
14462   SDValue EltNo = N->getOperand(1);
14463
14464   if (!isa<ConstantSDNode>(EltNo))
14465     return SDValue();
14466
14467   EVT VT = InVec.getValueType();
14468
14469   bool HasShuffleIntoBitcast = false;
14470   if (InVec.getOpcode() == ISD::BITCAST) {
14471     // Don't duplicate a load with other uses.
14472     if (!InVec.hasOneUse())
14473       return SDValue();
14474     EVT BCVT = InVec.getOperand(0).getValueType();
14475     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
14476       return SDValue();
14477     InVec = InVec.getOperand(0);
14478     HasShuffleIntoBitcast = true;
14479   }
14480
14481   if (!isTargetShuffle(InVec.getOpcode()))
14482     return SDValue();
14483
14484   // Don't duplicate a load with other uses.
14485   if (!InVec.hasOneUse())
14486     return SDValue();
14487
14488   SmallVector<int, 16> ShuffleMask;
14489   bool UnaryShuffle;
14490   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
14491                             UnaryShuffle))
14492     return SDValue();
14493
14494   // Select the input vector, guarding against out of range extract vector.
14495   unsigned NumElems = VT.getVectorNumElements();
14496   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
14497   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
14498   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
14499                                          : InVec.getOperand(1);
14500
14501   // If inputs to shuffle are the same for both ops, then allow 2 uses
14502   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
14503
14504   if (LdNode.getOpcode() == ISD::BITCAST) {
14505     // Don't duplicate a load with other uses.
14506     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
14507       return SDValue();
14508
14509     AllowedUses = 1; // only allow 1 load use if we have a bitcast
14510     LdNode = LdNode.getOperand(0);
14511   }
14512
14513   if (!ISD::isNormalLoad(LdNode.getNode()))
14514     return SDValue();
14515
14516   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
14517
14518   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
14519     return SDValue();
14520
14521   if (HasShuffleIntoBitcast) {
14522     // If there's a bitcast before the shuffle, check if the load type and
14523     // alignment is valid.
14524     unsigned Align = LN0->getAlignment();
14525     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14526     unsigned NewAlign = TLI.getDataLayout()->
14527       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
14528
14529     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
14530       return SDValue();
14531   }
14532
14533   // All checks match so transform back to vector_shuffle so that DAG combiner
14534   // can finish the job
14535   DebugLoc dl = N->getDebugLoc();
14536
14537   // Create shuffle node taking into account the case that its a unary shuffle
14538   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
14539   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
14540                                  InVec.getOperand(0), Shuffle,
14541                                  &ShuffleMask[0]);
14542   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
14543   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
14544                      EltNo);
14545 }
14546
14547 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
14548 /// generation and convert it from being a bunch of shuffles and extracts
14549 /// to a simple store and scalar loads to extract the elements.
14550 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
14551                                          TargetLowering::DAGCombinerInfo &DCI) {
14552   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
14553   if (NewOp.getNode())
14554     return NewOp;
14555
14556   SDValue InputVector = N->getOperand(0);
14557   // Detect whether we are trying to convert from mmx to i32 and the bitcast
14558   // from mmx to v2i32 has a single usage.
14559   if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
14560       InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
14561       InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
14562     return DAG.getNode(X86ISD::MMX_MOVD2W, InputVector.getDebugLoc(),
14563                        N->getValueType(0),
14564                        InputVector.getNode()->getOperand(0));
14565
14566   // Only operate on vectors of 4 elements, where the alternative shuffling
14567   // gets to be more expensive.
14568   if (InputVector.getValueType() != MVT::v4i32)
14569     return SDValue();
14570
14571   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
14572   // single use which is a sign-extend or zero-extend, and all elements are
14573   // used.
14574   SmallVector<SDNode *, 4> Uses;
14575   unsigned ExtractedElements = 0;
14576   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
14577        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
14578     if (UI.getUse().getResNo() != InputVector.getResNo())
14579       return SDValue();
14580
14581     SDNode *Extract = *UI;
14582     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
14583       return SDValue();
14584
14585     if (Extract->getValueType(0) != MVT::i32)
14586       return SDValue();
14587     if (!Extract->hasOneUse())
14588       return SDValue();
14589     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
14590         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
14591       return SDValue();
14592     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
14593       return SDValue();
14594
14595     // Record which element was extracted.
14596     ExtractedElements |=
14597       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
14598
14599     Uses.push_back(Extract);
14600   }
14601
14602   // If not all the elements were used, this may not be worthwhile.
14603   if (ExtractedElements != 15)
14604     return SDValue();
14605
14606   // Ok, we've now decided to do the transformation.
14607   DebugLoc dl = InputVector.getDebugLoc();
14608
14609   // Store the value to a temporary stack slot.
14610   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
14611   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
14612                             MachinePointerInfo(), false, false, 0);
14613
14614   // Replace each use (extract) with a load of the appropriate element.
14615   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
14616        UE = Uses.end(); UI != UE; ++UI) {
14617     SDNode *Extract = *UI;
14618
14619     // cOMpute the element's address.
14620     SDValue Idx = Extract->getOperand(1);
14621     unsigned EltSize =
14622         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
14623     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
14624     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14625     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
14626
14627     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
14628                                      StackPtr, OffsetVal);
14629
14630     // Load the scalar.
14631     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
14632                                      ScalarAddr, MachinePointerInfo(),
14633                                      false, false, false, 0);
14634
14635     // Replace the exact with the load.
14636     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
14637   }
14638
14639   // The replacement was made in place; don't return anything.
14640   return SDValue();
14641 }
14642
14643 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
14644 /// nodes.
14645 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
14646                                     TargetLowering::DAGCombinerInfo &DCI,
14647                                     const X86Subtarget *Subtarget) {
14648   DebugLoc DL = N->getDebugLoc();
14649   SDValue Cond = N->getOperand(0);
14650   // Get the LHS/RHS of the select.
14651   SDValue LHS = N->getOperand(1);
14652   SDValue RHS = N->getOperand(2);
14653   EVT VT = LHS.getValueType();
14654
14655   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
14656   // instructions match the semantics of the common C idiom x<y?x:y but not
14657   // x<=y?x:y, because of how they handle negative zero (which can be
14658   // ignored in unsafe-math mode).
14659   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
14660       VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
14661       (Subtarget->hasSSE2() ||
14662        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
14663     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
14664
14665     unsigned Opcode = 0;
14666     // Check for x CC y ? x : y.
14667     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
14668         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
14669       switch (CC) {
14670       default: break;
14671       case ISD::SETULT:
14672         // Converting this to a min would handle NaNs incorrectly, and swapping
14673         // the operands would cause it to handle comparisons between positive
14674         // and negative zero incorrectly.
14675         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
14676           if (!DAG.getTarget().Options.UnsafeFPMath &&
14677               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
14678             break;
14679           std::swap(LHS, RHS);
14680         }
14681         Opcode = X86ISD::FMIN;
14682         break;
14683       case ISD::SETOLE:
14684         // Converting this to a min would handle comparisons between positive
14685         // and negative zero incorrectly.
14686         if (!DAG.getTarget().Options.UnsafeFPMath &&
14687             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
14688           break;
14689         Opcode = X86ISD::FMIN;
14690         break;
14691       case ISD::SETULE:
14692         // Converting this to a min would handle both negative zeros and NaNs
14693         // incorrectly, but we can swap the operands to fix both.
14694         std::swap(LHS, RHS);
14695       case ISD::SETOLT:
14696       case ISD::SETLT:
14697       case ISD::SETLE:
14698         Opcode = X86ISD::FMIN;
14699         break;
14700
14701       case ISD::SETOGE:
14702         // Converting this to a max would handle comparisons between positive
14703         // and negative zero incorrectly.
14704         if (!DAG.getTarget().Options.UnsafeFPMath &&
14705             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
14706           break;
14707         Opcode = X86ISD::FMAX;
14708         break;
14709       case ISD::SETUGT:
14710         // Converting this to a max would handle NaNs incorrectly, and swapping
14711         // the operands would cause it to handle comparisons between positive
14712         // and negative zero incorrectly.
14713         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
14714           if (!DAG.getTarget().Options.UnsafeFPMath &&
14715               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
14716             break;
14717           std::swap(LHS, RHS);
14718         }
14719         Opcode = X86ISD::FMAX;
14720         break;
14721       case ISD::SETUGE:
14722         // Converting this to a max would handle both negative zeros and NaNs
14723         // incorrectly, but we can swap the operands to fix both.
14724         std::swap(LHS, RHS);
14725       case ISD::SETOGT:
14726       case ISD::SETGT:
14727       case ISD::SETGE:
14728         Opcode = X86ISD::FMAX;
14729         break;
14730       }
14731     // Check for x CC y ? y : x -- a min/max with reversed arms.
14732     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
14733                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
14734       switch (CC) {
14735       default: break;
14736       case ISD::SETOGE:
14737         // Converting this to a min would handle comparisons between positive
14738         // and negative zero incorrectly, and swapping the operands would
14739         // cause it to handle NaNs incorrectly.
14740         if (!DAG.getTarget().Options.UnsafeFPMath &&
14741             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
14742           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
14743             break;
14744           std::swap(LHS, RHS);
14745         }
14746         Opcode = X86ISD::FMIN;
14747         break;
14748       case ISD::SETUGT:
14749         // Converting this to a min would handle NaNs incorrectly.
14750         if (!DAG.getTarget().Options.UnsafeFPMath &&
14751             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
14752           break;
14753         Opcode = X86ISD::FMIN;
14754         break;
14755       case ISD::SETUGE:
14756         // Converting this to a min would handle both negative zeros and NaNs
14757         // incorrectly, but we can swap the operands to fix both.
14758         std::swap(LHS, RHS);
14759       case ISD::SETOGT:
14760       case ISD::SETGT:
14761       case ISD::SETGE:
14762         Opcode = X86ISD::FMIN;
14763         break;
14764
14765       case ISD::SETULT:
14766         // Converting this to a max would handle NaNs incorrectly.
14767         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
14768           break;
14769         Opcode = X86ISD::FMAX;
14770         break;
14771       case ISD::SETOLE:
14772         // Converting this to a max would handle comparisons between positive
14773         // and negative zero incorrectly, and swapping the operands would
14774         // cause it to handle NaNs incorrectly.
14775         if (!DAG.getTarget().Options.UnsafeFPMath &&
14776             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
14777           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
14778             break;
14779           std::swap(LHS, RHS);
14780         }
14781         Opcode = X86ISD::FMAX;
14782         break;
14783       case ISD::SETULE:
14784         // Converting this to a max would handle both negative zeros and NaNs
14785         // incorrectly, but we can swap the operands to fix both.
14786         std::swap(LHS, RHS);
14787       case ISD::SETOLT:
14788       case ISD::SETLT:
14789       case ISD::SETLE:
14790         Opcode = X86ISD::FMAX;
14791         break;
14792       }
14793     }
14794
14795     if (Opcode)
14796       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
14797   }
14798
14799   // If this is a select between two integer constants, try to do some
14800   // optimizations.
14801   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
14802     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
14803       // Don't do this for crazy integer types.
14804       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
14805         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
14806         // so that TrueC (the true value) is larger than FalseC.
14807         bool NeedsCondInvert = false;
14808
14809         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
14810             // Efficiently invertible.
14811             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
14812              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
14813               isa<ConstantSDNode>(Cond.getOperand(1))))) {
14814           NeedsCondInvert = true;
14815           std::swap(TrueC, FalseC);
14816         }
14817
14818         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
14819         if (FalseC->getAPIntValue() == 0 &&
14820             TrueC->getAPIntValue().isPowerOf2()) {
14821           if (NeedsCondInvert) // Invert the condition if needed.
14822             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
14823                                DAG.getConstant(1, Cond.getValueType()));
14824
14825           // Zero extend the condition if needed.
14826           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
14827
14828           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
14829           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
14830                              DAG.getConstant(ShAmt, MVT::i8));
14831         }
14832
14833         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
14834         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
14835           if (NeedsCondInvert) // Invert the condition if needed.
14836             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
14837                                DAG.getConstant(1, Cond.getValueType()));
14838
14839           // Zero extend the condition if needed.
14840           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
14841                              FalseC->getValueType(0), Cond);
14842           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
14843                              SDValue(FalseC, 0));
14844         }
14845
14846         // Optimize cases that will turn into an LEA instruction.  This requires
14847         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
14848         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
14849           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
14850           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
14851
14852           bool isFastMultiplier = false;
14853           if (Diff < 10) {
14854             switch ((unsigned char)Diff) {
14855               default: break;
14856               case 1:  // result = add base, cond
14857               case 2:  // result = lea base(    , cond*2)
14858               case 3:  // result = lea base(cond, cond*2)
14859               case 4:  // result = lea base(    , cond*4)
14860               case 5:  // result = lea base(cond, cond*4)
14861               case 8:  // result = lea base(    , cond*8)
14862               case 9:  // result = lea base(cond, cond*8)
14863                 isFastMultiplier = true;
14864                 break;
14865             }
14866           }
14867
14868           if (isFastMultiplier) {
14869             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
14870             if (NeedsCondInvert) // Invert the condition if needed.
14871               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
14872                                  DAG.getConstant(1, Cond.getValueType()));
14873
14874             // Zero extend the condition if needed.
14875             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
14876                                Cond);
14877             // Scale the condition by the difference.
14878             if (Diff != 1)
14879               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
14880                                  DAG.getConstant(Diff, Cond.getValueType()));
14881
14882             // Add the base if non-zero.
14883             if (FalseC->getAPIntValue() != 0)
14884               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
14885                                  SDValue(FalseC, 0));
14886             return Cond;
14887           }
14888         }
14889       }
14890   }
14891
14892   // Canonicalize max and min:
14893   // (x > y) ? x : y -> (x >= y) ? x : y
14894   // (x < y) ? x : y -> (x <= y) ? x : y
14895   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
14896   // the need for an extra compare
14897   // against zero. e.g.
14898   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
14899   // subl   %esi, %edi
14900   // testl  %edi, %edi
14901   // movl   $0, %eax
14902   // cmovgl %edi, %eax
14903   // =>
14904   // xorl   %eax, %eax
14905   // subl   %esi, $edi
14906   // cmovsl %eax, %edi
14907   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
14908       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
14909       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
14910     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
14911     switch (CC) {
14912     default: break;
14913     case ISD::SETLT:
14914     case ISD::SETGT: {
14915       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
14916       Cond = DAG.getSetCC(Cond.getDebugLoc(), Cond.getValueType(),
14917                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
14918       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
14919     }
14920     }
14921   }
14922
14923   // If we know that this node is legal then we know that it is going to be
14924   // matched by one of the SSE/AVX BLEND instructions. These instructions only
14925   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
14926   // to simplify previous instructions.
14927   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14928   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
14929       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
14930     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
14931
14932     // Don't optimize vector selects that map to mask-registers.
14933     if (BitWidth == 1)
14934       return SDValue();
14935
14936     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
14937     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
14938
14939     APInt KnownZero, KnownOne;
14940     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
14941                                           DCI.isBeforeLegalizeOps());
14942     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
14943         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
14944       DCI.CommitTargetLoweringOpt(TLO);
14945   }
14946
14947   return SDValue();
14948 }
14949
14950 // Check whether a boolean test is testing a boolean value generated by
14951 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
14952 // code.
14953 //
14954 // Simplify the following patterns:
14955 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
14956 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
14957 // to (Op EFLAGS Cond)
14958 //
14959 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
14960 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
14961 // to (Op EFLAGS !Cond)
14962 //
14963 // where Op could be BRCOND or CMOV.
14964 //
14965 static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
14966   // Quit if not CMP and SUB with its value result used.
14967   if (Cmp.getOpcode() != X86ISD::CMP &&
14968       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
14969       return SDValue();
14970
14971   // Quit if not used as a boolean value.
14972   if (CC != X86::COND_E && CC != X86::COND_NE)
14973     return SDValue();
14974
14975   // Check CMP operands. One of them should be 0 or 1 and the other should be
14976   // an SetCC or extended from it.
14977   SDValue Op1 = Cmp.getOperand(0);
14978   SDValue Op2 = Cmp.getOperand(1);
14979
14980   SDValue SetCC;
14981   const ConstantSDNode* C = 0;
14982   bool needOppositeCond = (CC == X86::COND_E);
14983
14984   if ((C = dyn_cast<ConstantSDNode>(Op1)))
14985     SetCC = Op2;
14986   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
14987     SetCC = Op1;
14988   else // Quit if all operands are not constants.
14989     return SDValue();
14990
14991   if (C->getZExtValue() == 1)
14992     needOppositeCond = !needOppositeCond;
14993   else if (C->getZExtValue() != 0)
14994     // Quit if the constant is neither 0 or 1.
14995     return SDValue();
14996
14997   // Skip 'zext' node.
14998   if (SetCC.getOpcode() == ISD::ZERO_EXTEND)
14999     SetCC = SetCC.getOperand(0);
15000
15001   switch (SetCC.getOpcode()) {
15002   case X86ISD::SETCC:
15003     // Set the condition code or opposite one if necessary.
15004     CC = X86::CondCode(SetCC.getConstantOperandVal(0));
15005     if (needOppositeCond)
15006       CC = X86::GetOppositeBranchCondition(CC);
15007     return SetCC.getOperand(1);
15008   case X86ISD::CMOV: {
15009     // Check whether false/true value has canonical one, i.e. 0 or 1.
15010     ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
15011     ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
15012     // Quit if true value is not a constant.
15013     if (!TVal)
15014       return SDValue();
15015     // Quit if false value is not a constant.
15016     if (!FVal) {
15017       // A special case for rdrand, where 0 is set if false cond is found.
15018       SDValue Op = SetCC.getOperand(0);
15019       if (Op.getOpcode() != X86ISD::RDRAND)
15020         return SDValue();
15021     }
15022     // Quit if false value is not the constant 0 or 1.
15023     bool FValIsFalse = true;
15024     if (FVal && FVal->getZExtValue() != 0) {
15025       if (FVal->getZExtValue() != 1)
15026         return SDValue();
15027       // If FVal is 1, opposite cond is needed.
15028       needOppositeCond = !needOppositeCond;
15029       FValIsFalse = false;
15030     }
15031     // Quit if TVal is not the constant opposite of FVal.
15032     if (FValIsFalse && TVal->getZExtValue() != 1)
15033       return SDValue();
15034     if (!FValIsFalse && TVal->getZExtValue() != 0)
15035       return SDValue();
15036     CC = X86::CondCode(SetCC.getConstantOperandVal(2));
15037     if (needOppositeCond)
15038       CC = X86::GetOppositeBranchCondition(CC);
15039     return SetCC.getOperand(3);
15040   }
15041   }
15042
15043   return SDValue();
15044 }
15045
15046 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
15047 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
15048                                   TargetLowering::DAGCombinerInfo &DCI,
15049                                   const X86Subtarget *Subtarget) {
15050   DebugLoc DL = N->getDebugLoc();
15051
15052   // If the flag operand isn't dead, don't touch this CMOV.
15053   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
15054     return SDValue();
15055
15056   SDValue FalseOp = N->getOperand(0);
15057   SDValue TrueOp = N->getOperand(1);
15058   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
15059   SDValue Cond = N->getOperand(3);
15060
15061   if (CC == X86::COND_E || CC == X86::COND_NE) {
15062     switch (Cond.getOpcode()) {
15063     default: break;
15064     case X86ISD::BSR:
15065     case X86ISD::BSF:
15066       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
15067       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
15068         return (CC == X86::COND_E) ? FalseOp : TrueOp;
15069     }
15070   }
15071
15072   SDValue Flags;
15073
15074   Flags = checkBoolTestSetCCCombine(Cond, CC);
15075   if (Flags.getNode() &&
15076       // Extra check as FCMOV only supports a subset of X86 cond.
15077       (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
15078     SDValue Ops[] = { FalseOp, TrueOp,
15079                       DAG.getConstant(CC, MVT::i8), Flags };
15080     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
15081                        Ops, array_lengthof(Ops));
15082   }
15083
15084   // If this is a select between two integer constants, try to do some
15085   // optimizations.  Note that the operands are ordered the opposite of SELECT
15086   // operands.
15087   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
15088     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
15089       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
15090       // larger than FalseC (the false value).
15091       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
15092         CC = X86::GetOppositeBranchCondition(CC);
15093         std::swap(TrueC, FalseC);
15094         std::swap(TrueOp, FalseOp);
15095       }
15096
15097       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
15098       // This is efficient for any integer data type (including i8/i16) and
15099       // shift amount.
15100       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
15101         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
15102                            DAG.getConstant(CC, MVT::i8), Cond);
15103
15104         // Zero extend the condition if needed.
15105         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
15106
15107         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
15108         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
15109                            DAG.getConstant(ShAmt, MVT::i8));
15110         if (N->getNumValues() == 2)  // Dead flag value?
15111           return DCI.CombineTo(N, Cond, SDValue());
15112         return Cond;
15113       }
15114
15115       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
15116       // for any integer data type, including i8/i16.
15117       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
15118         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
15119                            DAG.getConstant(CC, MVT::i8), Cond);
15120
15121         // Zero extend the condition if needed.
15122         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
15123                            FalseC->getValueType(0), Cond);
15124         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
15125                            SDValue(FalseC, 0));
15126
15127         if (N->getNumValues() == 2)  // Dead flag value?
15128           return DCI.CombineTo(N, Cond, SDValue());
15129         return Cond;
15130       }
15131
15132       // Optimize cases that will turn into an LEA instruction.  This requires
15133       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
15134       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
15135         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
15136         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
15137
15138         bool isFastMultiplier = false;
15139         if (Diff < 10) {
15140           switch ((unsigned char)Diff) {
15141           default: break;
15142           case 1:  // result = add base, cond
15143           case 2:  // result = lea base(    , cond*2)
15144           case 3:  // result = lea base(cond, cond*2)
15145           case 4:  // result = lea base(    , cond*4)
15146           case 5:  // result = lea base(cond, cond*4)
15147           case 8:  // result = lea base(    , cond*8)
15148           case 9:  // result = lea base(cond, cond*8)
15149             isFastMultiplier = true;
15150             break;
15151           }
15152         }
15153
15154         if (isFastMultiplier) {
15155           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
15156           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
15157                              DAG.getConstant(CC, MVT::i8), Cond);
15158           // Zero extend the condition if needed.
15159           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
15160                              Cond);
15161           // Scale the condition by the difference.
15162           if (Diff != 1)
15163             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
15164                                DAG.getConstant(Diff, Cond.getValueType()));
15165
15166           // Add the base if non-zero.
15167           if (FalseC->getAPIntValue() != 0)
15168             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
15169                                SDValue(FalseC, 0));
15170           if (N->getNumValues() == 2)  // Dead flag value?
15171             return DCI.CombineTo(N, Cond, SDValue());
15172           return Cond;
15173         }
15174       }
15175     }
15176   }
15177
15178   // Handle these cases:
15179   //   (select (x != c), e, c) -> select (x != c), e, x),
15180   //   (select (x == c), c, e) -> select (x == c), x, e)
15181   // where the c is an integer constant, and the "select" is the combination
15182   // of CMOV and CMP.
15183   //
15184   // The rationale for this change is that the conditional-move from a constant
15185   // needs two instructions, however, conditional-move from a register needs
15186   // only one instruction.
15187   //
15188   // CAVEAT: By replacing a constant with a symbolic value, it may obscure
15189   //  some instruction-combining opportunities. This opt needs to be
15190   //  postponed as late as possible.
15191   //
15192   if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
15193     // the DCI.xxxx conditions are provided to postpone the optimization as
15194     // late as possible.
15195
15196     ConstantSDNode *CmpAgainst = 0;
15197     if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
15198         (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
15199         dyn_cast<ConstantSDNode>(Cond.getOperand(0)) == 0) {
15200
15201       if (CC == X86::COND_NE &&
15202           CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
15203         CC = X86::GetOppositeBranchCondition(CC);
15204         std::swap(TrueOp, FalseOp);
15205       }
15206
15207       if (CC == X86::COND_E &&
15208           CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
15209         SDValue Ops[] = { FalseOp, Cond.getOperand(0),
15210                           DAG.getConstant(CC, MVT::i8), Cond };
15211         return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
15212                            array_lengthof(Ops));
15213       }
15214     }
15215   }
15216
15217   return SDValue();
15218 }
15219
15220
15221 /// PerformMulCombine - Optimize a single multiply with constant into two
15222 /// in order to implement it with two cheaper instructions, e.g.
15223 /// LEA + SHL, LEA + LEA.
15224 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
15225                                  TargetLowering::DAGCombinerInfo &DCI) {
15226   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
15227     return SDValue();
15228
15229   EVT VT = N->getValueType(0);
15230   if (VT != MVT::i64)
15231     return SDValue();
15232
15233   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
15234   if (!C)
15235     return SDValue();
15236   uint64_t MulAmt = C->getZExtValue();
15237   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
15238     return SDValue();
15239
15240   uint64_t MulAmt1 = 0;
15241   uint64_t MulAmt2 = 0;
15242   if ((MulAmt % 9) == 0) {
15243     MulAmt1 = 9;
15244     MulAmt2 = MulAmt / 9;
15245   } else if ((MulAmt % 5) == 0) {
15246     MulAmt1 = 5;
15247     MulAmt2 = MulAmt / 5;
15248   } else if ((MulAmt % 3) == 0) {
15249     MulAmt1 = 3;
15250     MulAmt2 = MulAmt / 3;
15251   }
15252   if (MulAmt2 &&
15253       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
15254     DebugLoc DL = N->getDebugLoc();
15255
15256     if (isPowerOf2_64(MulAmt2) &&
15257         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
15258       // If second multiplifer is pow2, issue it first. We want the multiply by
15259       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
15260       // is an add.
15261       std::swap(MulAmt1, MulAmt2);
15262
15263     SDValue NewMul;
15264     if (isPowerOf2_64(MulAmt1))
15265       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
15266                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
15267     else
15268       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
15269                            DAG.getConstant(MulAmt1, VT));
15270
15271     if (isPowerOf2_64(MulAmt2))
15272       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
15273                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
15274     else
15275       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
15276                            DAG.getConstant(MulAmt2, VT));
15277
15278     // Do not add new nodes to DAG combiner worklist.
15279     DCI.CombineTo(N, NewMul, false);
15280   }
15281   return SDValue();
15282 }
15283
15284 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
15285   SDValue N0 = N->getOperand(0);
15286   SDValue N1 = N->getOperand(1);
15287   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
15288   EVT VT = N0.getValueType();
15289
15290   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
15291   // since the result of setcc_c is all zero's or all ones.
15292   if (VT.isInteger() && !VT.isVector() &&
15293       N1C && N0.getOpcode() == ISD::AND &&
15294       N0.getOperand(1).getOpcode() == ISD::Constant) {
15295     SDValue N00 = N0.getOperand(0);
15296     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
15297         ((N00.getOpcode() == ISD::ANY_EXTEND ||
15298           N00.getOpcode() == ISD::ZERO_EXTEND) &&
15299          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
15300       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
15301       APInt ShAmt = N1C->getAPIntValue();
15302       Mask = Mask.shl(ShAmt);
15303       if (Mask != 0)
15304         return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
15305                            N00, DAG.getConstant(Mask, VT));
15306     }
15307   }
15308
15309
15310   // Hardware support for vector shifts is sparse which makes us scalarize the
15311   // vector operations in many cases. Also, on sandybridge ADD is faster than
15312   // shl.
15313   // (shl V, 1) -> add V,V
15314   if (isSplatVector(N1.getNode())) {
15315     assert(N0.getValueType().isVector() && "Invalid vector shift type");
15316     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
15317     // We shift all of the values by one. In many cases we do not have
15318     // hardware support for this operation. This is better expressed as an ADD
15319     // of two values.
15320     if (N1C && (1 == N1C->getZExtValue())) {
15321       return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N0);
15322     }
15323   }
15324
15325   return SDValue();
15326 }
15327
15328 /// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
15329 ///                       when possible.
15330 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
15331                                    TargetLowering::DAGCombinerInfo &DCI,
15332                                    const X86Subtarget *Subtarget) {
15333   EVT VT = N->getValueType(0);
15334   if (N->getOpcode() == ISD::SHL) {
15335     SDValue V = PerformSHLCombine(N, DAG);
15336     if (V.getNode()) return V;
15337   }
15338
15339   // On X86 with SSE2 support, we can transform this to a vector shift if
15340   // all elements are shifted by the same amount.  We can't do this in legalize
15341   // because the a constant vector is typically transformed to a constant pool
15342   // so we have no knowledge of the shift amount.
15343   if (!Subtarget->hasSSE2())
15344     return SDValue();
15345
15346   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
15347       (!Subtarget->hasInt256() ||
15348        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
15349     return SDValue();
15350
15351   SDValue ShAmtOp = N->getOperand(1);
15352   EVT EltVT = VT.getVectorElementType();
15353   DebugLoc DL = N->getDebugLoc();
15354   SDValue BaseShAmt = SDValue();
15355   if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
15356     unsigned NumElts = VT.getVectorNumElements();
15357     unsigned i = 0;
15358     for (; i != NumElts; ++i) {
15359       SDValue Arg = ShAmtOp.getOperand(i);
15360       if (Arg.getOpcode() == ISD::UNDEF) continue;
15361       BaseShAmt = Arg;
15362       break;
15363     }
15364     // Handle the case where the build_vector is all undef
15365     // FIXME: Should DAG allow this?
15366     if (i == NumElts)
15367       return SDValue();
15368
15369     for (; i != NumElts; ++i) {
15370       SDValue Arg = ShAmtOp.getOperand(i);
15371       if (Arg.getOpcode() == ISD::UNDEF) continue;
15372       if (Arg != BaseShAmt) {
15373         return SDValue();
15374       }
15375     }
15376   } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
15377              cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
15378     SDValue InVec = ShAmtOp.getOperand(0);
15379     if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
15380       unsigned NumElts = InVec.getValueType().getVectorNumElements();
15381       unsigned i = 0;
15382       for (; i != NumElts; ++i) {
15383         SDValue Arg = InVec.getOperand(i);
15384         if (Arg.getOpcode() == ISD::UNDEF) continue;
15385         BaseShAmt = Arg;
15386         break;
15387       }
15388     } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
15389        if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
15390          unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
15391          if (C->getZExtValue() == SplatIdx)
15392            BaseShAmt = InVec.getOperand(1);
15393        }
15394     }
15395     if (BaseShAmt.getNode() == 0) {
15396       // Don't create instructions with illegal types after legalize
15397       // types has run.
15398       if (!DAG.getTargetLoweringInfo().isTypeLegal(EltVT) &&
15399           !DCI.isBeforeLegalize())
15400         return SDValue();
15401
15402       BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
15403                               DAG.getIntPtrConstant(0));
15404     }
15405   } else
15406     return SDValue();
15407
15408   // The shift amount is an i32.
15409   if (EltVT.bitsGT(MVT::i32))
15410     BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
15411   else if (EltVT.bitsLT(MVT::i32))
15412     BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
15413
15414   // The shift amount is identical so we can do a vector shift.
15415   SDValue  ValOp = N->getOperand(0);
15416   switch (N->getOpcode()) {
15417   default:
15418     llvm_unreachable("Unknown shift opcode!");
15419   case ISD::SHL:
15420     switch (VT.getSimpleVT().SimpleTy) {
15421     default: return SDValue();
15422     case MVT::v2i64:
15423     case MVT::v4i32:
15424     case MVT::v8i16:
15425     case MVT::v4i64:
15426     case MVT::v8i32:
15427     case MVT::v16i16:
15428       return getTargetVShiftNode(X86ISD::VSHLI, DL, VT, ValOp, BaseShAmt, DAG);
15429     }
15430   case ISD::SRA:
15431     switch (VT.getSimpleVT().SimpleTy) {
15432     default: return SDValue();
15433     case MVT::v4i32:
15434     case MVT::v8i16:
15435     case MVT::v8i32:
15436     case MVT::v16i16:
15437       return getTargetVShiftNode(X86ISD::VSRAI, DL, VT, ValOp, BaseShAmt, DAG);
15438     }
15439   case ISD::SRL:
15440     switch (VT.getSimpleVT().SimpleTy) {
15441     default: return SDValue();
15442     case MVT::v2i64:
15443     case MVT::v4i32:
15444     case MVT::v8i16:
15445     case MVT::v4i64:
15446     case MVT::v8i32:
15447     case MVT::v16i16:
15448       return getTargetVShiftNode(X86ISD::VSRLI, DL, VT, ValOp, BaseShAmt, DAG);
15449     }
15450   }
15451 }
15452
15453
15454 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
15455 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
15456 // and friends.  Likewise for OR -> CMPNEQSS.
15457 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
15458                             TargetLowering::DAGCombinerInfo &DCI,
15459                             const X86Subtarget *Subtarget) {
15460   unsigned opcode;
15461
15462   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
15463   // we're requiring SSE2 for both.
15464   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
15465     SDValue N0 = N->getOperand(0);
15466     SDValue N1 = N->getOperand(1);
15467     SDValue CMP0 = N0->getOperand(1);
15468     SDValue CMP1 = N1->getOperand(1);
15469     DebugLoc DL = N->getDebugLoc();
15470
15471     // The SETCCs should both refer to the same CMP.
15472     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
15473       return SDValue();
15474
15475     SDValue CMP00 = CMP0->getOperand(0);
15476     SDValue CMP01 = CMP0->getOperand(1);
15477     EVT     VT    = CMP00.getValueType();
15478
15479     if (VT == MVT::f32 || VT == MVT::f64) {
15480       bool ExpectingFlags = false;
15481       // Check for any users that want flags:
15482       for (SDNode::use_iterator UI = N->use_begin(),
15483              UE = N->use_end();
15484            !ExpectingFlags && UI != UE; ++UI)
15485         switch (UI->getOpcode()) {
15486         default:
15487         case ISD::BR_CC:
15488         case ISD::BRCOND:
15489         case ISD::SELECT:
15490           ExpectingFlags = true;
15491           break;
15492         case ISD::CopyToReg:
15493         case ISD::SIGN_EXTEND:
15494         case ISD::ZERO_EXTEND:
15495         case ISD::ANY_EXTEND:
15496           break;
15497         }
15498
15499       if (!ExpectingFlags) {
15500         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
15501         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
15502
15503         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
15504           X86::CondCode tmp = cc0;
15505           cc0 = cc1;
15506           cc1 = tmp;
15507         }
15508
15509         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
15510             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
15511           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
15512           X86ISD::NodeType NTOperator = is64BitFP ?
15513             X86ISD::FSETCCsd : X86ISD::FSETCCss;
15514           // FIXME: need symbolic constants for these magic numbers.
15515           // See X86ATTInstPrinter.cpp:printSSECC().
15516           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
15517           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
15518                                               DAG.getConstant(x86cc, MVT::i8));
15519           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
15520                                               OnesOrZeroesF);
15521           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
15522                                       DAG.getConstant(1, MVT::i32));
15523           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
15524           return OneBitOfTruth;
15525         }
15526       }
15527     }
15528   }
15529   return SDValue();
15530 }
15531
15532 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
15533 /// so it can be folded inside ANDNP.
15534 static bool CanFoldXORWithAllOnes(const SDNode *N) {
15535   EVT VT = N->getValueType(0);
15536
15537   // Match direct AllOnes for 128 and 256-bit vectors
15538   if (ISD::isBuildVectorAllOnes(N))
15539     return true;
15540
15541   // Look through a bit convert.
15542   if (N->getOpcode() == ISD::BITCAST)
15543     N = N->getOperand(0).getNode();
15544
15545   // Sometimes the operand may come from a insert_subvector building a 256-bit
15546   // allones vector
15547   if (VT.is256BitVector() &&
15548       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
15549     SDValue V1 = N->getOperand(0);
15550     SDValue V2 = N->getOperand(1);
15551
15552     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
15553         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
15554         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
15555         ISD::isBuildVectorAllOnes(V2.getNode()))
15556       return true;
15557   }
15558
15559   return false;
15560 }
15561
15562 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
15563                                  TargetLowering::DAGCombinerInfo &DCI,
15564                                  const X86Subtarget *Subtarget) {
15565   if (DCI.isBeforeLegalizeOps())
15566     return SDValue();
15567
15568   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
15569   if (R.getNode())
15570     return R;
15571
15572   EVT VT = N->getValueType(0);
15573
15574   // Create ANDN, BLSI, and BLSR instructions
15575   // BLSI is X & (-X)
15576   // BLSR is X & (X-1)
15577   if (Subtarget->hasBMI() && (VT == MVT::i32 || VT == MVT::i64)) {
15578     SDValue N0 = N->getOperand(0);
15579     SDValue N1 = N->getOperand(1);
15580     DebugLoc DL = N->getDebugLoc();
15581
15582     // Check LHS for not
15583     if (N0.getOpcode() == ISD::XOR && isAllOnes(N0.getOperand(1)))
15584       return DAG.getNode(X86ISD::ANDN, DL, VT, N0.getOperand(0), N1);
15585     // Check RHS for not
15586     if (N1.getOpcode() == ISD::XOR && isAllOnes(N1.getOperand(1)))
15587       return DAG.getNode(X86ISD::ANDN, DL, VT, N1.getOperand(0), N0);
15588
15589     // Check LHS for neg
15590     if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
15591         isZero(N0.getOperand(0)))
15592       return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
15593
15594     // Check RHS for neg
15595     if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
15596         isZero(N1.getOperand(0)))
15597       return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
15598
15599     // Check LHS for X-1
15600     if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
15601         isAllOnes(N0.getOperand(1)))
15602       return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
15603
15604     // Check RHS for X-1
15605     if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
15606         isAllOnes(N1.getOperand(1)))
15607       return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
15608
15609     return SDValue();
15610   }
15611
15612   // Want to form ANDNP nodes:
15613   // 1) In the hopes of then easily combining them with OR and AND nodes
15614   //    to form PBLEND/PSIGN.
15615   // 2) To match ANDN packed intrinsics
15616   if (VT != MVT::v2i64 && VT != MVT::v4i64)
15617     return SDValue();
15618
15619   SDValue N0 = N->getOperand(0);
15620   SDValue N1 = N->getOperand(1);
15621   DebugLoc DL = N->getDebugLoc();
15622
15623   // Check LHS for vnot
15624   if (N0.getOpcode() == ISD::XOR &&
15625       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
15626       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
15627     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
15628
15629   // Check RHS for vnot
15630   if (N1.getOpcode() == ISD::XOR &&
15631       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
15632       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
15633     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
15634
15635   return SDValue();
15636 }
15637
15638 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
15639                                 TargetLowering::DAGCombinerInfo &DCI,
15640                                 const X86Subtarget *Subtarget) {
15641   if (DCI.isBeforeLegalizeOps())
15642     return SDValue();
15643
15644   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
15645   if (R.getNode())
15646     return R;
15647
15648   EVT VT = N->getValueType(0);
15649
15650   SDValue N0 = N->getOperand(0);
15651   SDValue N1 = N->getOperand(1);
15652
15653   // look for psign/blend
15654   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
15655     if (!Subtarget->hasSSSE3() ||
15656         (VT == MVT::v4i64 && !Subtarget->hasInt256()))
15657       return SDValue();
15658
15659     // Canonicalize pandn to RHS
15660     if (N0.getOpcode() == X86ISD::ANDNP)
15661       std::swap(N0, N1);
15662     // or (and (m, y), (pandn m, x))
15663     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
15664       SDValue Mask = N1.getOperand(0);
15665       SDValue X    = N1.getOperand(1);
15666       SDValue Y;
15667       if (N0.getOperand(0) == Mask)
15668         Y = N0.getOperand(1);
15669       if (N0.getOperand(1) == Mask)
15670         Y = N0.getOperand(0);
15671
15672       // Check to see if the mask appeared in both the AND and ANDNP and
15673       if (!Y.getNode())
15674         return SDValue();
15675
15676       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
15677       // Look through mask bitcast.
15678       if (Mask.getOpcode() == ISD::BITCAST)
15679         Mask = Mask.getOperand(0);
15680       if (X.getOpcode() == ISD::BITCAST)
15681         X = X.getOperand(0);
15682       if (Y.getOpcode() == ISD::BITCAST)
15683         Y = Y.getOperand(0);
15684
15685       EVT MaskVT = Mask.getValueType();
15686
15687       // Validate that the Mask operand is a vector sra node.
15688       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
15689       // there is no psrai.b
15690       if (Mask.getOpcode() != X86ISD::VSRAI)
15691         return SDValue();
15692
15693       // Check that the SRA is all signbits.
15694       SDValue SraC = Mask.getOperand(1);
15695       unsigned SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
15696       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
15697       if ((SraAmt + 1) != EltBits)
15698         return SDValue();
15699
15700       DebugLoc DL = N->getDebugLoc();
15701
15702       // Now we know we at least have a plendvb with the mask val.  See if
15703       // we can form a psignb/w/d.
15704       // psign = x.type == y.type == mask.type && y = sub(0, x);
15705       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
15706           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
15707           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
15708         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
15709                "Unsupported VT for PSIGN");
15710         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
15711         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
15712       }
15713       // PBLENDVB only available on SSE 4.1
15714       if (!Subtarget->hasSSE41())
15715         return SDValue();
15716
15717       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
15718
15719       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
15720       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
15721       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
15722       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
15723       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
15724     }
15725   }
15726
15727   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
15728     return SDValue();
15729
15730   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
15731   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
15732     std::swap(N0, N1);
15733   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
15734     return SDValue();
15735   if (!N0.hasOneUse() || !N1.hasOneUse())
15736     return SDValue();
15737
15738   SDValue ShAmt0 = N0.getOperand(1);
15739   if (ShAmt0.getValueType() != MVT::i8)
15740     return SDValue();
15741   SDValue ShAmt1 = N1.getOperand(1);
15742   if (ShAmt1.getValueType() != MVT::i8)
15743     return SDValue();
15744   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
15745     ShAmt0 = ShAmt0.getOperand(0);
15746   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
15747     ShAmt1 = ShAmt1.getOperand(0);
15748
15749   DebugLoc DL = N->getDebugLoc();
15750   unsigned Opc = X86ISD::SHLD;
15751   SDValue Op0 = N0.getOperand(0);
15752   SDValue Op1 = N1.getOperand(0);
15753   if (ShAmt0.getOpcode() == ISD::SUB) {
15754     Opc = X86ISD::SHRD;
15755     std::swap(Op0, Op1);
15756     std::swap(ShAmt0, ShAmt1);
15757   }
15758
15759   unsigned Bits = VT.getSizeInBits();
15760   if (ShAmt1.getOpcode() == ISD::SUB) {
15761     SDValue Sum = ShAmt1.getOperand(0);
15762     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
15763       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
15764       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
15765         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
15766       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
15767         return DAG.getNode(Opc, DL, VT,
15768                            Op0, Op1,
15769                            DAG.getNode(ISD::TRUNCATE, DL,
15770                                        MVT::i8, ShAmt0));
15771     }
15772   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
15773     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
15774     if (ShAmt0C &&
15775         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
15776       return DAG.getNode(Opc, DL, VT,
15777                          N0.getOperand(0), N1.getOperand(0),
15778                          DAG.getNode(ISD::TRUNCATE, DL,
15779                                        MVT::i8, ShAmt0));
15780   }
15781
15782   return SDValue();
15783 }
15784
15785 // Generate NEG and CMOV for integer abs.
15786 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
15787   EVT VT = N->getValueType(0);
15788
15789   // Since X86 does not have CMOV for 8-bit integer, we don't convert
15790   // 8-bit integer abs to NEG and CMOV.
15791   if (VT.isInteger() && VT.getSizeInBits() == 8)
15792     return SDValue();
15793
15794   SDValue N0 = N->getOperand(0);
15795   SDValue N1 = N->getOperand(1);
15796   DebugLoc DL = N->getDebugLoc();
15797
15798   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
15799   // and change it to SUB and CMOV.
15800   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
15801       N0.getOpcode() == ISD::ADD &&
15802       N0.getOperand(1) == N1 &&
15803       N1.getOpcode() == ISD::SRA &&
15804       N1.getOperand(0) == N0.getOperand(0))
15805     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
15806       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
15807         // Generate SUB & CMOV.
15808         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
15809                                   DAG.getConstant(0, VT), N0.getOperand(0));
15810
15811         SDValue Ops[] = { N0.getOperand(0), Neg,
15812                           DAG.getConstant(X86::COND_GE, MVT::i8),
15813                           SDValue(Neg.getNode(), 1) };
15814         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
15815                            Ops, array_lengthof(Ops));
15816       }
15817   return SDValue();
15818 }
15819
15820 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
15821 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
15822                                  TargetLowering::DAGCombinerInfo &DCI,
15823                                  const X86Subtarget *Subtarget) {
15824   if (DCI.isBeforeLegalizeOps())
15825     return SDValue();
15826
15827   if (Subtarget->hasCMov()) {
15828     SDValue RV = performIntegerAbsCombine(N, DAG);
15829     if (RV.getNode())
15830       return RV;
15831   }
15832
15833   // Try forming BMI if it is available.
15834   if (!Subtarget->hasBMI())
15835     return SDValue();
15836
15837   EVT VT = N->getValueType(0);
15838
15839   if (VT != MVT::i32 && VT != MVT::i64)
15840     return SDValue();
15841
15842   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
15843
15844   // Create BLSMSK instructions by finding X ^ (X-1)
15845   SDValue N0 = N->getOperand(0);
15846   SDValue N1 = N->getOperand(1);
15847   DebugLoc DL = N->getDebugLoc();
15848
15849   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
15850       isAllOnes(N0.getOperand(1)))
15851     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
15852
15853   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
15854       isAllOnes(N1.getOperand(1)))
15855     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
15856
15857   return SDValue();
15858 }
15859
15860 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
15861 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
15862                                   TargetLowering::DAGCombinerInfo &DCI,
15863                                   const X86Subtarget *Subtarget) {
15864   LoadSDNode *Ld = cast<LoadSDNode>(N);
15865   EVT RegVT = Ld->getValueType(0);
15866   EVT MemVT = Ld->getMemoryVT();
15867   DebugLoc dl = Ld->getDebugLoc();
15868   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15869
15870   ISD::LoadExtType Ext = Ld->getExtensionType();
15871
15872   // If this is a vector EXT Load then attempt to optimize it using a
15873   // shuffle. We need SSSE3 shuffles.
15874   // TODO: It is possible to support ZExt by zeroing the undef values
15875   // during the shuffle phase or after the shuffle.
15876   if (RegVT.isVector() && RegVT.isInteger() &&
15877       Ext == ISD::EXTLOAD && Subtarget->hasSSSE3()) {
15878     assert(MemVT != RegVT && "Cannot extend to the same type");
15879     assert(MemVT.isVector() && "Must load a vector from memory");
15880
15881     unsigned NumElems = RegVT.getVectorNumElements();
15882     unsigned RegSz = RegVT.getSizeInBits();
15883     unsigned MemSz = MemVT.getSizeInBits();
15884     assert(RegSz > MemSz && "Register size must be greater than the mem size");
15885
15886     // All sizes must be a power of two.
15887     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
15888       return SDValue();
15889
15890     // Attempt to load the original value using scalar loads.
15891     // Find the largest scalar type that divides the total loaded size.
15892     MVT SclrLoadTy = MVT::i8;
15893     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
15894          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
15895       MVT Tp = (MVT::SimpleValueType)tp;
15896       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
15897         SclrLoadTy = Tp;
15898       }
15899     }
15900
15901     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
15902     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
15903         (64 <= MemSz))
15904       SclrLoadTy = MVT::f64;
15905
15906     // Calculate the number of scalar loads that we need to perform
15907     // in order to load our vector from memory.
15908     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
15909
15910     // Represent our vector as a sequence of elements which are the
15911     // largest scalar that we can load.
15912     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
15913       RegSz/SclrLoadTy.getSizeInBits());
15914
15915     // Represent the data using the same element type that is stored in
15916     // memory. In practice, we ''widen'' MemVT.
15917     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
15918                                   RegSz/MemVT.getScalarType().getSizeInBits());
15919
15920     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
15921       "Invalid vector type");
15922
15923     // We can't shuffle using an illegal type.
15924     if (!TLI.isTypeLegal(WideVecVT))
15925       return SDValue();
15926
15927     SmallVector<SDValue, 8> Chains;
15928     SDValue Ptr = Ld->getBasePtr();
15929     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
15930                                         TLI.getPointerTy());
15931     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
15932
15933     for (unsigned i = 0; i < NumLoads; ++i) {
15934       // Perform a single load.
15935       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
15936                                        Ptr, Ld->getPointerInfo(),
15937                                        Ld->isVolatile(), Ld->isNonTemporal(),
15938                                        Ld->isInvariant(), Ld->getAlignment());
15939       Chains.push_back(ScalarLoad.getValue(1));
15940       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
15941       // another round of DAGCombining.
15942       if (i == 0)
15943         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
15944       else
15945         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
15946                           ScalarLoad, DAG.getIntPtrConstant(i));
15947
15948       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
15949     }
15950
15951     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
15952                                Chains.size());
15953
15954     // Bitcast the loaded value to a vector of the original element type, in
15955     // the size of the target vector type.
15956     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
15957     unsigned SizeRatio = RegSz/MemSz;
15958
15959     // Redistribute the loaded elements into the different locations.
15960     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
15961     for (unsigned i = 0; i != NumElems; ++i)
15962       ShuffleVec[i*SizeRatio] = i;
15963
15964     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
15965                                          DAG.getUNDEF(WideVecVT),
15966                                          &ShuffleVec[0]);
15967
15968     // Bitcast to the requested type.
15969     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
15970     // Replace the original load with the new sequence
15971     // and return the new chain.
15972     return DCI.CombineTo(N, Shuff, TF, true);
15973   }
15974
15975   return SDValue();
15976 }
15977
15978 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
15979 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
15980                                    const X86Subtarget *Subtarget) {
15981   StoreSDNode *St = cast<StoreSDNode>(N);
15982   EVT VT = St->getValue().getValueType();
15983   EVT StVT = St->getMemoryVT();
15984   DebugLoc dl = St->getDebugLoc();
15985   SDValue StoredVal = St->getOperand(1);
15986   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15987
15988   // If we are saving a concatenation of two XMM registers, perform two stores.
15989   // On Sandy Bridge, 256-bit memory operations are executed by two
15990   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
15991   // memory  operation.
15992   if (VT.is256BitVector() && !Subtarget->hasInt256() &&
15993       StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
15994       StoredVal.getNumOperands() == 2) {
15995     SDValue Value0 = StoredVal.getOperand(0);
15996     SDValue Value1 = StoredVal.getOperand(1);
15997
15998     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
15999     SDValue Ptr0 = St->getBasePtr();
16000     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
16001
16002     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
16003                                 St->getPointerInfo(), St->isVolatile(),
16004                                 St->isNonTemporal(), St->getAlignment());
16005     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
16006                                 St->getPointerInfo(), St->isVolatile(),
16007                                 St->isNonTemporal(), St->getAlignment());
16008     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
16009   }
16010
16011   // Optimize trunc store (of multiple scalars) to shuffle and store.
16012   // First, pack all of the elements in one place. Next, store to memory
16013   // in fewer chunks.
16014   if (St->isTruncatingStore() && VT.isVector()) {
16015     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16016     unsigned NumElems = VT.getVectorNumElements();
16017     assert(StVT != VT && "Cannot truncate to the same type");
16018     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
16019     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
16020
16021     // From, To sizes and ElemCount must be pow of two
16022     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
16023     // We are going to use the original vector elt for storing.
16024     // Accumulated smaller vector elements must be a multiple of the store size.
16025     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
16026
16027     unsigned SizeRatio  = FromSz / ToSz;
16028
16029     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
16030
16031     // Create a type on which we perform the shuffle
16032     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
16033             StVT.getScalarType(), NumElems*SizeRatio);
16034
16035     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
16036
16037     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
16038     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
16039     for (unsigned i = 0; i != NumElems; ++i)
16040       ShuffleVec[i] = i * SizeRatio;
16041
16042     // Can't shuffle using an illegal type.
16043     if (!TLI.isTypeLegal(WideVecVT))
16044       return SDValue();
16045
16046     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
16047                                          DAG.getUNDEF(WideVecVT),
16048                                          &ShuffleVec[0]);
16049     // At this point all of the data is stored at the bottom of the
16050     // register. We now need to save it to mem.
16051
16052     // Find the largest store unit
16053     MVT StoreType = MVT::i8;
16054     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
16055          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
16056       MVT Tp = (MVT::SimpleValueType)tp;
16057       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
16058         StoreType = Tp;
16059     }
16060
16061     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
16062     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
16063         (64 <= NumElems * ToSz))
16064       StoreType = MVT::f64;
16065
16066     // Bitcast the original vector into a vector of store-size units
16067     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
16068             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
16069     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
16070     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
16071     SmallVector<SDValue, 8> Chains;
16072     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
16073                                         TLI.getPointerTy());
16074     SDValue Ptr = St->getBasePtr();
16075
16076     // Perform one or more big stores into memory.
16077     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
16078       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
16079                                    StoreType, ShuffWide,
16080                                    DAG.getIntPtrConstant(i));
16081       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
16082                                 St->getPointerInfo(), St->isVolatile(),
16083                                 St->isNonTemporal(), St->getAlignment());
16084       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
16085       Chains.push_back(Ch);
16086     }
16087
16088     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
16089                                Chains.size());
16090   }
16091
16092
16093   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
16094   // the FP state in cases where an emms may be missing.
16095   // A preferable solution to the general problem is to figure out the right
16096   // places to insert EMMS.  This qualifies as a quick hack.
16097
16098   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
16099   if (VT.getSizeInBits() != 64)
16100     return SDValue();
16101
16102   const Function *F = DAG.getMachineFunction().getFunction();
16103   bool NoImplicitFloatOps = F->getFnAttributes().
16104     hasAttribute(Attributes::NoImplicitFloat);
16105   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
16106                      && Subtarget->hasSSE2();
16107   if ((VT.isVector() ||
16108        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
16109       isa<LoadSDNode>(St->getValue()) &&
16110       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
16111       St->getChain().hasOneUse() && !St->isVolatile()) {
16112     SDNode* LdVal = St->getValue().getNode();
16113     LoadSDNode *Ld = 0;
16114     int TokenFactorIndex = -1;
16115     SmallVector<SDValue, 8> Ops;
16116     SDNode* ChainVal = St->getChain().getNode();
16117     // Must be a store of a load.  We currently handle two cases:  the load
16118     // is a direct child, and it's under an intervening TokenFactor.  It is
16119     // possible to dig deeper under nested TokenFactors.
16120     if (ChainVal == LdVal)
16121       Ld = cast<LoadSDNode>(St->getChain());
16122     else if (St->getValue().hasOneUse() &&
16123              ChainVal->getOpcode() == ISD::TokenFactor) {
16124       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
16125         if (ChainVal->getOperand(i).getNode() == LdVal) {
16126           TokenFactorIndex = i;
16127           Ld = cast<LoadSDNode>(St->getValue());
16128         } else
16129           Ops.push_back(ChainVal->getOperand(i));
16130       }
16131     }
16132
16133     if (!Ld || !ISD::isNormalLoad(Ld))
16134       return SDValue();
16135
16136     // If this is not the MMX case, i.e. we are just turning i64 load/store
16137     // into f64 load/store, avoid the transformation if there are multiple
16138     // uses of the loaded value.
16139     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
16140       return SDValue();
16141
16142     DebugLoc LdDL = Ld->getDebugLoc();
16143     DebugLoc StDL = N->getDebugLoc();
16144     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
16145     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
16146     // pair instead.
16147     if (Subtarget->is64Bit() || F64IsLegal) {
16148       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
16149       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
16150                                   Ld->getPointerInfo(), Ld->isVolatile(),
16151                                   Ld->isNonTemporal(), Ld->isInvariant(),
16152                                   Ld->getAlignment());
16153       SDValue NewChain = NewLd.getValue(1);
16154       if (TokenFactorIndex != -1) {
16155         Ops.push_back(NewChain);
16156         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
16157                                Ops.size());
16158       }
16159       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
16160                           St->getPointerInfo(),
16161                           St->isVolatile(), St->isNonTemporal(),
16162                           St->getAlignment());
16163     }
16164
16165     // Otherwise, lower to two pairs of 32-bit loads / stores.
16166     SDValue LoAddr = Ld->getBasePtr();
16167     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
16168                                  DAG.getConstant(4, MVT::i32));
16169
16170     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
16171                                Ld->getPointerInfo(),
16172                                Ld->isVolatile(), Ld->isNonTemporal(),
16173                                Ld->isInvariant(), Ld->getAlignment());
16174     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
16175                                Ld->getPointerInfo().getWithOffset(4),
16176                                Ld->isVolatile(), Ld->isNonTemporal(),
16177                                Ld->isInvariant(),
16178                                MinAlign(Ld->getAlignment(), 4));
16179
16180     SDValue NewChain = LoLd.getValue(1);
16181     if (TokenFactorIndex != -1) {
16182       Ops.push_back(LoLd);
16183       Ops.push_back(HiLd);
16184       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
16185                              Ops.size());
16186     }
16187
16188     LoAddr = St->getBasePtr();
16189     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
16190                          DAG.getConstant(4, MVT::i32));
16191
16192     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
16193                                 St->getPointerInfo(),
16194                                 St->isVolatile(), St->isNonTemporal(),
16195                                 St->getAlignment());
16196     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
16197                                 St->getPointerInfo().getWithOffset(4),
16198                                 St->isVolatile(),
16199                                 St->isNonTemporal(),
16200                                 MinAlign(St->getAlignment(), 4));
16201     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
16202   }
16203   return SDValue();
16204 }
16205
16206 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
16207 /// and return the operands for the horizontal operation in LHS and RHS.  A
16208 /// horizontal operation performs the binary operation on successive elements
16209 /// of its first operand, then on successive elements of its second operand,
16210 /// returning the resulting values in a vector.  For example, if
16211 ///   A = < float a0, float a1, float a2, float a3 >
16212 /// and
16213 ///   B = < float b0, float b1, float b2, float b3 >
16214 /// then the result of doing a horizontal operation on A and B is
16215 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
16216 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
16217 /// A horizontal-op B, for some already available A and B, and if so then LHS is
16218 /// set to A, RHS to B, and the routine returns 'true'.
16219 /// Note that the binary operation should have the property that if one of the
16220 /// operands is UNDEF then the result is UNDEF.
16221 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
16222   // Look for the following pattern: if
16223   //   A = < float a0, float a1, float a2, float a3 >
16224   //   B = < float b0, float b1, float b2, float b3 >
16225   // and
16226   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
16227   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
16228   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
16229   // which is A horizontal-op B.
16230
16231   // At least one of the operands should be a vector shuffle.
16232   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
16233       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
16234     return false;
16235
16236   EVT VT = LHS.getValueType();
16237
16238   assert((VT.is128BitVector() || VT.is256BitVector()) &&
16239          "Unsupported vector type for horizontal add/sub");
16240
16241   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
16242   // operate independently on 128-bit lanes.
16243   unsigned NumElts = VT.getVectorNumElements();
16244   unsigned NumLanes = VT.getSizeInBits()/128;
16245   unsigned NumLaneElts = NumElts / NumLanes;
16246   assert((NumLaneElts % 2 == 0) &&
16247          "Vector type should have an even number of elements in each lane");
16248   unsigned HalfLaneElts = NumLaneElts/2;
16249
16250   // View LHS in the form
16251   //   LHS = VECTOR_SHUFFLE A, B, LMask
16252   // If LHS is not a shuffle then pretend it is the shuffle
16253   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
16254   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
16255   // type VT.
16256   SDValue A, B;
16257   SmallVector<int, 16> LMask(NumElts);
16258   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
16259     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
16260       A = LHS.getOperand(0);
16261     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
16262       B = LHS.getOperand(1);
16263     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
16264     std::copy(Mask.begin(), Mask.end(), LMask.begin());
16265   } else {
16266     if (LHS.getOpcode() != ISD::UNDEF)
16267       A = LHS;
16268     for (unsigned i = 0; i != NumElts; ++i)
16269       LMask[i] = i;
16270   }
16271
16272   // Likewise, view RHS in the form
16273   //   RHS = VECTOR_SHUFFLE C, D, RMask
16274   SDValue C, D;
16275   SmallVector<int, 16> RMask(NumElts);
16276   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
16277     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
16278       C = RHS.getOperand(0);
16279     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
16280       D = RHS.getOperand(1);
16281     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
16282     std::copy(Mask.begin(), Mask.end(), RMask.begin());
16283   } else {
16284     if (RHS.getOpcode() != ISD::UNDEF)
16285       C = RHS;
16286     for (unsigned i = 0; i != NumElts; ++i)
16287       RMask[i] = i;
16288   }
16289
16290   // Check that the shuffles are both shuffling the same vectors.
16291   if (!(A == C && B == D) && !(A == D && B == C))
16292     return false;
16293
16294   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
16295   if (!A.getNode() && !B.getNode())
16296     return false;
16297
16298   // If A and B occur in reverse order in RHS, then "swap" them (which means
16299   // rewriting the mask).
16300   if (A != C)
16301     CommuteVectorShuffleMask(RMask, NumElts);
16302
16303   // At this point LHS and RHS are equivalent to
16304   //   LHS = VECTOR_SHUFFLE A, B, LMask
16305   //   RHS = VECTOR_SHUFFLE A, B, RMask
16306   // Check that the masks correspond to performing a horizontal operation.
16307   for (unsigned i = 0; i != NumElts; ++i) {
16308     int LIdx = LMask[i], RIdx = RMask[i];
16309
16310     // Ignore any UNDEF components.
16311     if (LIdx < 0 || RIdx < 0 ||
16312         (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
16313         (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
16314       continue;
16315
16316     // Check that successive elements are being operated on.  If not, this is
16317     // not a horizontal operation.
16318     unsigned Src = (i/HalfLaneElts) % 2; // each lane is split between srcs
16319     unsigned LaneStart = (i/NumLaneElts) * NumLaneElts;
16320     int Index = 2*(i%HalfLaneElts) + NumElts*Src + LaneStart;
16321     if (!(LIdx == Index && RIdx == Index + 1) &&
16322         !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
16323       return false;
16324   }
16325
16326   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
16327   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
16328   return true;
16329 }
16330
16331 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
16332 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
16333                                   const X86Subtarget *Subtarget) {
16334   EVT VT = N->getValueType(0);
16335   SDValue LHS = N->getOperand(0);
16336   SDValue RHS = N->getOperand(1);
16337
16338   // Try to synthesize horizontal adds from adds of shuffles.
16339   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
16340        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
16341       isHorizontalBinOp(LHS, RHS, true))
16342     return DAG.getNode(X86ISD::FHADD, N->getDebugLoc(), VT, LHS, RHS);
16343   return SDValue();
16344 }
16345
16346 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
16347 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
16348                                   const X86Subtarget *Subtarget) {
16349   EVT VT = N->getValueType(0);
16350   SDValue LHS = N->getOperand(0);
16351   SDValue RHS = N->getOperand(1);
16352
16353   // Try to synthesize horizontal subs from subs of shuffles.
16354   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
16355        (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
16356       isHorizontalBinOp(LHS, RHS, false))
16357     return DAG.getNode(X86ISD::FHSUB, N->getDebugLoc(), VT, LHS, RHS);
16358   return SDValue();
16359 }
16360
16361 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
16362 /// X86ISD::FXOR nodes.
16363 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
16364   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
16365   // F[X]OR(0.0, x) -> x
16366   // F[X]OR(x, 0.0) -> x
16367   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
16368     if (C->getValueAPF().isPosZero())
16369       return N->getOperand(1);
16370   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
16371     if (C->getValueAPF().isPosZero())
16372       return N->getOperand(0);
16373   return SDValue();
16374 }
16375
16376 /// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
16377 /// X86ISD::FMAX nodes.
16378 static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
16379   assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
16380
16381   // Only perform optimizations if UnsafeMath is used.
16382   if (!DAG.getTarget().Options.UnsafeFPMath)
16383     return SDValue();
16384
16385   // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
16386   // into FMINC and FMAXC, which are Commutative operations.
16387   unsigned NewOp = 0;
16388   switch (N->getOpcode()) {
16389     default: llvm_unreachable("unknown opcode");
16390     case X86ISD::FMIN:  NewOp = X86ISD::FMINC; break;
16391     case X86ISD::FMAX:  NewOp = X86ISD::FMAXC; break;
16392   }
16393
16394   return DAG.getNode(NewOp, N->getDebugLoc(), N->getValueType(0),
16395                      N->getOperand(0), N->getOperand(1));
16396 }
16397
16398
16399 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
16400 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
16401   // FAND(0.0, x) -> 0.0
16402   // FAND(x, 0.0) -> 0.0
16403   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
16404     if (C->getValueAPF().isPosZero())
16405       return N->getOperand(0);
16406   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
16407     if (C->getValueAPF().isPosZero())
16408       return N->getOperand(1);
16409   return SDValue();
16410 }
16411
16412 static SDValue PerformBTCombine(SDNode *N,
16413                                 SelectionDAG &DAG,
16414                                 TargetLowering::DAGCombinerInfo &DCI) {
16415   // BT ignores high bits in the bit index operand.
16416   SDValue Op1 = N->getOperand(1);
16417   if (Op1.hasOneUse()) {
16418     unsigned BitWidth = Op1.getValueSizeInBits();
16419     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
16420     APInt KnownZero, KnownOne;
16421     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
16422                                           !DCI.isBeforeLegalizeOps());
16423     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16424     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
16425         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
16426       DCI.CommitTargetLoweringOpt(TLO);
16427   }
16428   return SDValue();
16429 }
16430
16431 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
16432   SDValue Op = N->getOperand(0);
16433   if (Op.getOpcode() == ISD::BITCAST)
16434     Op = Op.getOperand(0);
16435   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
16436   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
16437       VT.getVectorElementType().getSizeInBits() ==
16438       OpVT.getVectorElementType().getSizeInBits()) {
16439     return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
16440   }
16441   return SDValue();
16442 }
16443
16444 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
16445                                   TargetLowering::DAGCombinerInfo &DCI,
16446                                   const X86Subtarget *Subtarget) {
16447   if (!DCI.isBeforeLegalizeOps())
16448     return SDValue();
16449
16450   if (!Subtarget->hasFp256())
16451     return SDValue();
16452
16453   EVT VT = N->getValueType(0);
16454   SDValue Op = N->getOperand(0);
16455   EVT OpVT = Op.getValueType();
16456   DebugLoc dl = N->getDebugLoc();
16457
16458   if ((VT == MVT::v4i64 && OpVT == MVT::v4i32) ||
16459       (VT == MVT::v8i32 && OpVT == MVT::v8i16)) {
16460
16461     if (Subtarget->hasInt256())
16462       return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, Op);
16463
16464     // Optimize vectors in AVX mode
16465     // Sign extend  v8i16 to v8i32 and
16466     //              v4i32 to v4i64
16467     //
16468     // Divide input vector into two parts
16469     // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
16470     // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
16471     // concat the vectors to original VT
16472
16473     unsigned NumElems = OpVT.getVectorNumElements();
16474     SDValue Undef = DAG.getUNDEF(OpVT);
16475
16476     SmallVector<int,8> ShufMask1(NumElems, -1);
16477     for (unsigned i = 0; i != NumElems/2; ++i)
16478       ShufMask1[i] = i;
16479
16480     SDValue OpLo = DAG.getVectorShuffle(OpVT, dl, Op, Undef, &ShufMask1[0]);
16481
16482     SmallVector<int,8> ShufMask2(NumElems, -1);
16483     for (unsigned i = 0; i != NumElems/2; ++i)
16484       ShufMask2[i] = i + NumElems/2;
16485
16486     SDValue OpHi = DAG.getVectorShuffle(OpVT, dl, Op, Undef, &ShufMask2[0]);
16487
16488     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), VT.getScalarType(),
16489                                   VT.getVectorNumElements()/2);
16490
16491     OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
16492     OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
16493
16494     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
16495   }
16496   return SDValue();
16497 }
16498
16499 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
16500                                  const X86Subtarget* Subtarget) {
16501   DebugLoc dl = N->getDebugLoc();
16502   EVT VT = N->getValueType(0);
16503
16504   // Let legalize expand this if it isn't a legal type yet.
16505   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
16506     return SDValue();
16507
16508   EVT ScalarVT = VT.getScalarType();
16509   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
16510       (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
16511     return SDValue();
16512
16513   SDValue A = N->getOperand(0);
16514   SDValue B = N->getOperand(1);
16515   SDValue C = N->getOperand(2);
16516
16517   bool NegA = (A.getOpcode() == ISD::FNEG);
16518   bool NegB = (B.getOpcode() == ISD::FNEG);
16519   bool NegC = (C.getOpcode() == ISD::FNEG);
16520
16521   // Negative multiplication when NegA xor NegB
16522   bool NegMul = (NegA != NegB);
16523   if (NegA)
16524     A = A.getOperand(0);
16525   if (NegB)
16526     B = B.getOperand(0);
16527   if (NegC)
16528     C = C.getOperand(0);
16529
16530   unsigned Opcode;
16531   if (!NegMul)
16532     Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
16533   else
16534     Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
16535
16536   return DAG.getNode(Opcode, dl, VT, A, B, C);
16537 }
16538
16539 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
16540                                   TargetLowering::DAGCombinerInfo &DCI,
16541                                   const X86Subtarget *Subtarget) {
16542   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
16543   //           (and (i32 x86isd::setcc_carry), 1)
16544   // This eliminates the zext. This transformation is necessary because
16545   // ISD::SETCC is always legalized to i8.
16546   DebugLoc dl = N->getDebugLoc();
16547   SDValue N0 = N->getOperand(0);
16548   EVT VT = N->getValueType(0);
16549   EVT OpVT = N0.getValueType();
16550
16551   if (N0.getOpcode() == ISD::AND &&
16552       N0.hasOneUse() &&
16553       N0.getOperand(0).hasOneUse()) {
16554     SDValue N00 = N0.getOperand(0);
16555     if (N00.getOpcode() != X86ISD::SETCC_CARRY)
16556       return SDValue();
16557     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
16558     if (!C || C->getZExtValue() != 1)
16559       return SDValue();
16560     return DAG.getNode(ISD::AND, dl, VT,
16561                        DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
16562                                    N00.getOperand(0), N00.getOperand(1)),
16563                        DAG.getConstant(1, VT));
16564   }
16565
16566   // Optimize vectors in AVX mode:
16567   //
16568   //   v8i16 -> v8i32
16569   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
16570   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
16571   //   Concat upper and lower parts.
16572   //
16573   //   v4i32 -> v4i64
16574   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
16575   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
16576   //   Concat upper and lower parts.
16577   //
16578   if (!DCI.isBeforeLegalizeOps())
16579     return SDValue();
16580
16581   if (!Subtarget->hasFp256())
16582     return SDValue();
16583
16584   if (((VT == MVT::v8i32) && (OpVT == MVT::v8i16)) ||
16585       ((VT == MVT::v4i64) && (OpVT == MVT::v4i32)))  {
16586
16587     if (Subtarget->hasInt256())
16588       return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, N0);
16589
16590     SDValue ZeroVec = getZeroVector(OpVT, Subtarget, DAG, dl);
16591     SDValue OpLo = getUnpackl(DAG, dl, OpVT, N0, ZeroVec);
16592     SDValue OpHi = getUnpackh(DAG, dl, OpVT, N0, ZeroVec);
16593
16594     EVT HVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
16595                                VT.getVectorNumElements()/2);
16596
16597     OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
16598     OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
16599
16600     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
16601   }
16602
16603   return SDValue();
16604 }
16605
16606 // Optimize x == -y --> x+y == 0
16607 //          x != -y --> x+y != 0
16608 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
16609   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
16610   SDValue LHS = N->getOperand(0);
16611   SDValue RHS = N->getOperand(1);
16612
16613   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
16614     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
16615       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
16616         SDValue addV = DAG.getNode(ISD::ADD, N->getDebugLoc(),
16617                                    LHS.getValueType(), RHS, LHS.getOperand(1));
16618         return DAG.getSetCC(N->getDebugLoc(), N->getValueType(0),
16619                             addV, DAG.getConstant(0, addV.getValueType()), CC);
16620       }
16621   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
16622     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
16623       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
16624         SDValue addV = DAG.getNode(ISD::ADD, N->getDebugLoc(),
16625                                    RHS.getValueType(), LHS, RHS.getOperand(1));
16626         return DAG.getSetCC(N->getDebugLoc(), N->getValueType(0),
16627                             addV, DAG.getConstant(0, addV.getValueType()), CC);
16628       }
16629   return SDValue();
16630 }
16631
16632 // Helper function of PerformSETCCCombine. It is to materialize "setb reg" 
16633 // as "sbb reg,reg", since it can be extended without zext and produces 
16634 // an all-ones bit which is more useful than 0/1 in some cases.
16635 static SDValue MaterializeSETB(DebugLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
16636   return DAG.getNode(ISD::AND, DL, MVT::i8,
16637                      DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
16638                                  DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
16639                      DAG.getConstant(1, MVT::i8));
16640 }
16641
16642 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
16643 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
16644                                    TargetLowering::DAGCombinerInfo &DCI,
16645                                    const X86Subtarget *Subtarget) {
16646   DebugLoc DL = N->getDebugLoc();
16647   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
16648   SDValue EFLAGS = N->getOperand(1);
16649
16650   if (CC == X86::COND_A) {
16651     // Try to convert COND_A into COND_B in an attempt to facilitate 
16652     // materializing "setb reg".
16653     //
16654     // Do not flip "e > c", where "c" is a constant, because Cmp instruction
16655     // cannot take an immediate as its first operand.
16656     //
16657     if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() && 
16658         EFLAGS.getValueType().isInteger() &&
16659         !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
16660       SDValue NewSub = DAG.getNode(X86ISD::SUB, EFLAGS.getDebugLoc(),
16661                                    EFLAGS.getNode()->getVTList(),
16662                                    EFLAGS.getOperand(1), EFLAGS.getOperand(0));
16663       SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
16664       return MaterializeSETB(DL, NewEFLAGS, DAG);
16665     }
16666   }
16667
16668   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
16669   // a zext and produces an all-ones bit which is more useful than 0/1 in some
16670   // cases.
16671   if (CC == X86::COND_B)
16672     return MaterializeSETB(DL, EFLAGS, DAG);
16673
16674   SDValue Flags;
16675
16676   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
16677   if (Flags.getNode()) {
16678     SDValue Cond = DAG.getConstant(CC, MVT::i8);
16679     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
16680   }
16681
16682   return SDValue();
16683 }
16684
16685 // Optimize branch condition evaluation.
16686 //
16687 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
16688                                     TargetLowering::DAGCombinerInfo &DCI,
16689                                     const X86Subtarget *Subtarget) {
16690   DebugLoc DL = N->getDebugLoc();
16691   SDValue Chain = N->getOperand(0);
16692   SDValue Dest = N->getOperand(1);
16693   SDValue EFLAGS = N->getOperand(3);
16694   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
16695
16696   SDValue Flags;
16697
16698   Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
16699   if (Flags.getNode()) {
16700     SDValue Cond = DAG.getConstant(CC, MVT::i8);
16701     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
16702                        Flags);
16703   }
16704
16705   return SDValue();
16706 }
16707
16708 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
16709                                         const X86TargetLowering *XTLI) {
16710   SDValue Op0 = N->getOperand(0);
16711   EVT InVT = Op0->getValueType(0);
16712
16713   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
16714   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
16715     DebugLoc dl = N->getDebugLoc();
16716     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
16717     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
16718     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
16719   }
16720
16721   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
16722   // a 32-bit target where SSE doesn't support i64->FP operations.
16723   if (Op0.getOpcode() == ISD::LOAD) {
16724     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
16725     EVT VT = Ld->getValueType(0);
16726     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
16727         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
16728         !XTLI->getSubtarget()->is64Bit() &&
16729         !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
16730       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
16731                                           Ld->getChain(), Op0, DAG);
16732       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
16733       return FILDChain;
16734     }
16735   }
16736   return SDValue();
16737 }
16738
16739 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
16740 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
16741                                  X86TargetLowering::DAGCombinerInfo &DCI) {
16742   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
16743   // the result is either zero or one (depending on the input carry bit).
16744   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
16745   if (X86::isZeroNode(N->getOperand(0)) &&
16746       X86::isZeroNode(N->getOperand(1)) &&
16747       // We don't have a good way to replace an EFLAGS use, so only do this when
16748       // dead right now.
16749       SDValue(N, 1).use_empty()) {
16750     DebugLoc DL = N->getDebugLoc();
16751     EVT VT = N->getValueType(0);
16752     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
16753     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
16754                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
16755                                            DAG.getConstant(X86::COND_B,MVT::i8),
16756                                            N->getOperand(2)),
16757                                DAG.getConstant(1, VT));
16758     return DCI.CombineTo(N, Res1, CarryOut);
16759   }
16760
16761   return SDValue();
16762 }
16763
16764 // fold (add Y, (sete  X, 0)) -> adc  0, Y
16765 //      (add Y, (setne X, 0)) -> sbb -1, Y
16766 //      (sub (sete  X, 0), Y) -> sbb  0, Y
16767 //      (sub (setne X, 0), Y) -> adc -1, Y
16768 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
16769   DebugLoc DL = N->getDebugLoc();
16770
16771   // Look through ZExts.
16772   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
16773   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
16774     return SDValue();
16775
16776   SDValue SetCC = Ext.getOperand(0);
16777   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
16778     return SDValue();
16779
16780   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
16781   if (CC != X86::COND_E && CC != X86::COND_NE)
16782     return SDValue();
16783
16784   SDValue Cmp = SetCC.getOperand(1);
16785   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
16786       !X86::isZeroNode(Cmp.getOperand(1)) ||
16787       !Cmp.getOperand(0).getValueType().isInteger())
16788     return SDValue();
16789
16790   SDValue CmpOp0 = Cmp.getOperand(0);
16791   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
16792                                DAG.getConstant(1, CmpOp0.getValueType()));
16793
16794   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
16795   if (CC == X86::COND_NE)
16796     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
16797                        DL, OtherVal.getValueType(), OtherVal,
16798                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
16799   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
16800                      DL, OtherVal.getValueType(), OtherVal,
16801                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
16802 }
16803
16804 /// PerformADDCombine - Do target-specific dag combines on integer adds.
16805 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
16806                                  const X86Subtarget *Subtarget) {
16807   EVT VT = N->getValueType(0);
16808   SDValue Op0 = N->getOperand(0);
16809   SDValue Op1 = N->getOperand(1);
16810
16811   // Try to synthesize horizontal adds from adds of shuffles.
16812   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
16813        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
16814       isHorizontalBinOp(Op0, Op1, true))
16815     return DAG.getNode(X86ISD::HADD, N->getDebugLoc(), VT, Op0, Op1);
16816
16817   return OptimizeConditionalInDecrement(N, DAG);
16818 }
16819
16820 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
16821                                  const X86Subtarget *Subtarget) {
16822   SDValue Op0 = N->getOperand(0);
16823   SDValue Op1 = N->getOperand(1);
16824
16825   // X86 can't encode an immediate LHS of a sub. See if we can push the
16826   // negation into a preceding instruction.
16827   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
16828     // If the RHS of the sub is a XOR with one use and a constant, invert the
16829     // immediate. Then add one to the LHS of the sub so we can turn
16830     // X-Y -> X+~Y+1, saving one register.
16831     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
16832         isa<ConstantSDNode>(Op1.getOperand(1))) {
16833       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
16834       EVT VT = Op0.getValueType();
16835       SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
16836                                    Op1.getOperand(0),
16837                                    DAG.getConstant(~XorC, VT));
16838       return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
16839                          DAG.getConstant(C->getAPIntValue()+1, VT));
16840     }
16841   }
16842
16843   // Try to synthesize horizontal adds from adds of shuffles.
16844   EVT VT = N->getValueType(0);
16845   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
16846        (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
16847       isHorizontalBinOp(Op0, Op1, true))
16848     return DAG.getNode(X86ISD::HSUB, N->getDebugLoc(), VT, Op0, Op1);
16849
16850   return OptimizeConditionalInDecrement(N, DAG);
16851 }
16852
16853 /// performVZEXTCombine - Performs build vector combines
16854 static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
16855                                         TargetLowering::DAGCombinerInfo &DCI,
16856                                         const X86Subtarget *Subtarget) {
16857   // (vzext (bitcast (vzext (x)) -> (vzext x)
16858   SDValue In = N->getOperand(0);
16859   while (In.getOpcode() == ISD::BITCAST)
16860     In = In.getOperand(0);
16861
16862   if (In.getOpcode() != X86ISD::VZEXT)
16863     return SDValue();
16864
16865   return DAG.getNode(X86ISD::VZEXT, N->getDebugLoc(), N->getValueType(0), In.getOperand(0));
16866 }
16867
16868 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
16869                                              DAGCombinerInfo &DCI) const {
16870   SelectionDAG &DAG = DCI.DAG;
16871   switch (N->getOpcode()) {
16872   default: break;
16873   case ISD::EXTRACT_VECTOR_ELT:
16874     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
16875   case ISD::VSELECT:
16876   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
16877   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI, Subtarget);
16878   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
16879   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
16880   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
16881   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
16882   case ISD::SHL:
16883   case ISD::SRA:
16884   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
16885   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
16886   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
16887   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
16888   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
16889   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
16890   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
16891   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
16892   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
16893   case X86ISD::FXOR:
16894   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
16895   case X86ISD::FMIN:
16896   case X86ISD::FMAX:        return PerformFMinFMaxCombine(N, DAG);
16897   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
16898   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
16899   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
16900   case ISD::ANY_EXTEND:
16901   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
16902   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
16903   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG,DCI,Subtarget);
16904   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
16905   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG, DCI, Subtarget);
16906   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
16907   case X86ISD::VZEXT:       return performVZEXTCombine(N, DAG, DCI, Subtarget);
16908   case X86ISD::SHUFP:       // Handle all target specific shuffles
16909   case X86ISD::PALIGN:
16910   case X86ISD::UNPCKH:
16911   case X86ISD::UNPCKL:
16912   case X86ISD::MOVHLPS:
16913   case X86ISD::MOVLHPS:
16914   case X86ISD::PSHUFD:
16915   case X86ISD::PSHUFHW:
16916   case X86ISD::PSHUFLW:
16917   case X86ISD::MOVSS:
16918   case X86ISD::MOVSD:
16919   case X86ISD::VPERMILP:
16920   case X86ISD::VPERM2X128:
16921   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
16922   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
16923   }
16924
16925   return SDValue();
16926 }
16927
16928 /// isTypeDesirableForOp - Return true if the target has native support for
16929 /// the specified value type and it is 'desirable' to use the type for the
16930 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
16931 /// instruction encodings are longer and some i16 instructions are slow.
16932 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
16933   if (!isTypeLegal(VT))
16934     return false;
16935   if (VT != MVT::i16)
16936     return true;
16937
16938   switch (Opc) {
16939   default:
16940     return true;
16941   case ISD::LOAD:
16942   case ISD::SIGN_EXTEND:
16943   case ISD::ZERO_EXTEND:
16944   case ISD::ANY_EXTEND:
16945   case ISD::SHL:
16946   case ISD::SRL:
16947   case ISD::SUB:
16948   case ISD::ADD:
16949   case ISD::MUL:
16950   case ISD::AND:
16951   case ISD::OR:
16952   case ISD::XOR:
16953     return false;
16954   }
16955 }
16956
16957 /// IsDesirableToPromoteOp - This method query the target whether it is
16958 /// beneficial for dag combiner to promote the specified node. If true, it
16959 /// should return the desired promotion type by reference.
16960 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
16961   EVT VT = Op.getValueType();
16962   if (VT != MVT::i16)
16963     return false;
16964
16965   bool Promote = false;
16966   bool Commute = false;
16967   switch (Op.getOpcode()) {
16968   default: break;
16969   case ISD::LOAD: {
16970     LoadSDNode *LD = cast<LoadSDNode>(Op);
16971     // If the non-extending load has a single use and it's not live out, then it
16972     // might be folded.
16973     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
16974                                                      Op.hasOneUse()*/) {
16975       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
16976              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
16977         // The only case where we'd want to promote LOAD (rather then it being
16978         // promoted as an operand is when it's only use is liveout.
16979         if (UI->getOpcode() != ISD::CopyToReg)
16980           return false;
16981       }
16982     }
16983     Promote = true;
16984     break;
16985   }
16986   case ISD::SIGN_EXTEND:
16987   case ISD::ZERO_EXTEND:
16988   case ISD::ANY_EXTEND:
16989     Promote = true;
16990     break;
16991   case ISD::SHL:
16992   case ISD::SRL: {
16993     SDValue N0 = Op.getOperand(0);
16994     // Look out for (store (shl (load), x)).
16995     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
16996       return false;
16997     Promote = true;
16998     break;
16999   }
17000   case ISD::ADD:
17001   case ISD::MUL:
17002   case ISD::AND:
17003   case ISD::OR:
17004   case ISD::XOR:
17005     Commute = true;
17006     // fallthrough
17007   case ISD::SUB: {
17008     SDValue N0 = Op.getOperand(0);
17009     SDValue N1 = Op.getOperand(1);
17010     if (!Commute && MayFoldLoad(N1))
17011       return false;
17012     // Avoid disabling potential load folding opportunities.
17013     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
17014       return false;
17015     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
17016       return false;
17017     Promote = true;
17018   }
17019   }
17020
17021   PVT = MVT::i32;
17022   return Promote;
17023 }
17024
17025 //===----------------------------------------------------------------------===//
17026 //                           X86 Inline Assembly Support
17027 //===----------------------------------------------------------------------===//
17028
17029 namespace {
17030   // Helper to match a string separated by whitespace.
17031   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
17032     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
17033
17034     for (unsigned i = 0, e = args.size(); i != e; ++i) {
17035       StringRef piece(*args[i]);
17036       if (!s.startswith(piece)) // Check if the piece matches.
17037         return false;
17038
17039       s = s.substr(piece.size());
17040       StringRef::size_type pos = s.find_first_not_of(" \t");
17041       if (pos == 0) // We matched a prefix.
17042         return false;
17043
17044       s = s.substr(pos);
17045     }
17046
17047     return s.empty();
17048   }
17049   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
17050 }
17051
17052 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
17053   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
17054
17055   std::string AsmStr = IA->getAsmString();
17056
17057   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
17058   if (!Ty || Ty->getBitWidth() % 16 != 0)
17059     return false;
17060
17061   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
17062   SmallVector<StringRef, 4> AsmPieces;
17063   SplitString(AsmStr, AsmPieces, ";\n");
17064
17065   switch (AsmPieces.size()) {
17066   default: return false;
17067   case 1:
17068     // FIXME: this should verify that we are targeting a 486 or better.  If not,
17069     // we will turn this bswap into something that will be lowered to logical
17070     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
17071     // lower so don't worry about this.
17072     // bswap $0
17073     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
17074         matchAsm(AsmPieces[0], "bswapl", "$0") ||
17075         matchAsm(AsmPieces[0], "bswapq", "$0") ||
17076         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
17077         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
17078         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
17079       // No need to check constraints, nothing other than the equivalent of
17080       // "=r,0" would be valid here.
17081       return IntrinsicLowering::LowerToByteSwap(CI);
17082     }
17083
17084     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
17085     if (CI->getType()->isIntegerTy(16) &&
17086         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
17087         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
17088          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
17089       AsmPieces.clear();
17090       const std::string &ConstraintsStr = IA->getConstraintString();
17091       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
17092       std::sort(AsmPieces.begin(), AsmPieces.end());
17093       if (AsmPieces.size() == 4 &&
17094           AsmPieces[0] == "~{cc}" &&
17095           AsmPieces[1] == "~{dirflag}" &&
17096           AsmPieces[2] == "~{flags}" &&
17097           AsmPieces[3] == "~{fpsr}")
17098       return IntrinsicLowering::LowerToByteSwap(CI);
17099     }
17100     break;
17101   case 3:
17102     if (CI->getType()->isIntegerTy(32) &&
17103         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
17104         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
17105         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
17106         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
17107       AsmPieces.clear();
17108       const std::string &ConstraintsStr = IA->getConstraintString();
17109       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
17110       std::sort(AsmPieces.begin(), AsmPieces.end());
17111       if (AsmPieces.size() == 4 &&
17112           AsmPieces[0] == "~{cc}" &&
17113           AsmPieces[1] == "~{dirflag}" &&
17114           AsmPieces[2] == "~{flags}" &&
17115           AsmPieces[3] == "~{fpsr}")
17116         return IntrinsicLowering::LowerToByteSwap(CI);
17117     }
17118
17119     if (CI->getType()->isIntegerTy(64)) {
17120       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
17121       if (Constraints.size() >= 2 &&
17122           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
17123           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
17124         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
17125         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
17126             matchAsm(AsmPieces[1], "bswap", "%edx") &&
17127             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
17128           return IntrinsicLowering::LowerToByteSwap(CI);
17129       }
17130     }
17131     break;
17132   }
17133   return false;
17134 }
17135
17136
17137
17138 /// getConstraintType - Given a constraint letter, return the type of
17139 /// constraint it is for this target.
17140 X86TargetLowering::ConstraintType
17141 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
17142   if (Constraint.size() == 1) {
17143     switch (Constraint[0]) {
17144     case 'R':
17145     case 'q':
17146     case 'Q':
17147     case 'f':
17148     case 't':
17149     case 'u':
17150     case 'y':
17151     case 'x':
17152     case 'Y':
17153     case 'l':
17154       return C_RegisterClass;
17155     case 'a':
17156     case 'b':
17157     case 'c':
17158     case 'd':
17159     case 'S':
17160     case 'D':
17161     case 'A':
17162       return C_Register;
17163     case 'I':
17164     case 'J':
17165     case 'K':
17166     case 'L':
17167     case 'M':
17168     case 'N':
17169     case 'G':
17170     case 'C':
17171     case 'e':
17172     case 'Z':
17173       return C_Other;
17174     default:
17175       break;
17176     }
17177   }
17178   return TargetLowering::getConstraintType(Constraint);
17179 }
17180
17181 /// Examine constraint type and operand type and determine a weight value.
17182 /// This object must already have been set up with the operand type
17183 /// and the current alternative constraint selected.
17184 TargetLowering::ConstraintWeight
17185   X86TargetLowering::getSingleConstraintMatchWeight(
17186     AsmOperandInfo &info, const char *constraint) const {
17187   ConstraintWeight weight = CW_Invalid;
17188   Value *CallOperandVal = info.CallOperandVal;
17189     // If we don't have a value, we can't do a match,
17190     // but allow it at the lowest weight.
17191   if (CallOperandVal == NULL)
17192     return CW_Default;
17193   Type *type = CallOperandVal->getType();
17194   // Look at the constraint type.
17195   switch (*constraint) {
17196   default:
17197     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
17198   case 'R':
17199   case 'q':
17200   case 'Q':
17201   case 'a':
17202   case 'b':
17203   case 'c':
17204   case 'd':
17205   case 'S':
17206   case 'D':
17207   case 'A':
17208     if (CallOperandVal->getType()->isIntegerTy())
17209       weight = CW_SpecificReg;
17210     break;
17211   case 'f':
17212   case 't':
17213   case 'u':
17214       if (type->isFloatingPointTy())
17215         weight = CW_SpecificReg;
17216       break;
17217   case 'y':
17218       if (type->isX86_MMXTy() && Subtarget->hasMMX())
17219         weight = CW_SpecificReg;
17220       break;
17221   case 'x':
17222   case 'Y':
17223     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
17224         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
17225       weight = CW_Register;
17226     break;
17227   case 'I':
17228     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
17229       if (C->getZExtValue() <= 31)
17230         weight = CW_Constant;
17231     }
17232     break;
17233   case 'J':
17234     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17235       if (C->getZExtValue() <= 63)
17236         weight = CW_Constant;
17237     }
17238     break;
17239   case 'K':
17240     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17241       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
17242         weight = CW_Constant;
17243     }
17244     break;
17245   case 'L':
17246     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17247       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
17248         weight = CW_Constant;
17249     }
17250     break;
17251   case 'M':
17252     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17253       if (C->getZExtValue() <= 3)
17254         weight = CW_Constant;
17255     }
17256     break;
17257   case 'N':
17258     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17259       if (C->getZExtValue() <= 0xff)
17260         weight = CW_Constant;
17261     }
17262     break;
17263   case 'G':
17264   case 'C':
17265     if (dyn_cast<ConstantFP>(CallOperandVal)) {
17266       weight = CW_Constant;
17267     }
17268     break;
17269   case 'e':
17270     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17271       if ((C->getSExtValue() >= -0x80000000LL) &&
17272           (C->getSExtValue() <= 0x7fffffffLL))
17273         weight = CW_Constant;
17274     }
17275     break;
17276   case 'Z':
17277     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
17278       if (C->getZExtValue() <= 0xffffffff)
17279         weight = CW_Constant;
17280     }
17281     break;
17282   }
17283   return weight;
17284 }
17285
17286 /// LowerXConstraint - try to replace an X constraint, which matches anything,
17287 /// with another that has more specific requirements based on the type of the
17288 /// corresponding operand.
17289 const char *X86TargetLowering::
17290 LowerXConstraint(EVT ConstraintVT) const {
17291   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
17292   // 'f' like normal targets.
17293   if (ConstraintVT.isFloatingPoint()) {
17294     if (Subtarget->hasSSE2())
17295       return "Y";
17296     if (Subtarget->hasSSE1())
17297       return "x";
17298   }
17299
17300   return TargetLowering::LowerXConstraint(ConstraintVT);
17301 }
17302
17303 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
17304 /// vector.  If it is invalid, don't add anything to Ops.
17305 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
17306                                                      std::string &Constraint,
17307                                                      std::vector<SDValue>&Ops,
17308                                                      SelectionDAG &DAG) const {
17309   SDValue Result(0, 0);
17310
17311   // Only support length 1 constraints for now.
17312   if (Constraint.length() > 1) return;
17313
17314   char ConstraintLetter = Constraint[0];
17315   switch (ConstraintLetter) {
17316   default: break;
17317   case 'I':
17318     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
17319       if (C->getZExtValue() <= 31) {
17320         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17321         break;
17322       }
17323     }
17324     return;
17325   case 'J':
17326     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
17327       if (C->getZExtValue() <= 63) {
17328         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17329         break;
17330       }
17331     }
17332     return;
17333   case 'K':
17334     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
17335       if (isInt<8>(C->getSExtValue())) {
17336         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17337         break;
17338       }
17339     }
17340     return;
17341   case 'N':
17342     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
17343       if (C->getZExtValue() <= 255) {
17344         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17345         break;
17346       }
17347     }
17348     return;
17349   case 'e': {
17350     // 32-bit signed value
17351     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
17352       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
17353                                            C->getSExtValue())) {
17354         // Widen to 64 bits here to get it sign extended.
17355         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
17356         break;
17357       }
17358     // FIXME gcc accepts some relocatable values here too, but only in certain
17359     // memory models; it's complicated.
17360     }
17361     return;
17362   }
17363   case 'Z': {
17364     // 32-bit unsigned value
17365     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
17366       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
17367                                            C->getZExtValue())) {
17368         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
17369         break;
17370       }
17371     }
17372     // FIXME gcc accepts some relocatable values here too, but only in certain
17373     // memory models; it's complicated.
17374     return;
17375   }
17376   case 'i': {
17377     // Literal immediates are always ok.
17378     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
17379       // Widen to 64 bits here to get it sign extended.
17380       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
17381       break;
17382     }
17383
17384     // In any sort of PIC mode addresses need to be computed at runtime by
17385     // adding in a register or some sort of table lookup.  These can't
17386     // be used as immediates.
17387     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
17388       return;
17389
17390     // If we are in non-pic codegen mode, we allow the address of a global (with
17391     // an optional displacement) to be used with 'i'.
17392     GlobalAddressSDNode *GA = 0;
17393     int64_t Offset = 0;
17394
17395     // Match either (GA), (GA+C), (GA+C1+C2), etc.
17396     while (1) {
17397       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
17398         Offset += GA->getOffset();
17399         break;
17400       } else if (Op.getOpcode() == ISD::ADD) {
17401         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
17402           Offset += C->getZExtValue();
17403           Op = Op.getOperand(0);
17404           continue;
17405         }
17406       } else if (Op.getOpcode() == ISD::SUB) {
17407         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
17408           Offset += -C->getZExtValue();
17409           Op = Op.getOperand(0);
17410           continue;
17411         }
17412       }
17413
17414       // Otherwise, this isn't something we can handle, reject it.
17415       return;
17416     }
17417
17418     const GlobalValue *GV = GA->getGlobal();
17419     // If we require an extra load to get this address, as in PIC mode, we
17420     // can't accept it.
17421     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
17422                                                         getTargetMachine())))
17423       return;
17424
17425     Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
17426                                         GA->getValueType(0), Offset);
17427     break;
17428   }
17429   }
17430
17431   if (Result.getNode()) {
17432     Ops.push_back(Result);
17433     return;
17434   }
17435   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
17436 }
17437
17438 std::pair<unsigned, const TargetRegisterClass*>
17439 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
17440                                                 EVT VT) const {
17441   // First, see if this is a constraint that directly corresponds to an LLVM
17442   // register class.
17443   if (Constraint.size() == 1) {
17444     // GCC Constraint Letters
17445     switch (Constraint[0]) {
17446     default: break;
17447       // TODO: Slight differences here in allocation order and leaving
17448       // RIP in the class. Do they matter any more here than they do
17449       // in the normal allocation?
17450     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
17451       if (Subtarget->is64Bit()) {
17452         if (VT == MVT::i32 || VT == MVT::f32)
17453           return std::make_pair(0U, &X86::GR32RegClass);
17454         if (VT == MVT::i16)
17455           return std::make_pair(0U, &X86::GR16RegClass);
17456         if (VT == MVT::i8 || VT == MVT::i1)
17457           return std::make_pair(0U, &X86::GR8RegClass);
17458         if (VT == MVT::i64 || VT == MVT::f64)
17459           return std::make_pair(0U, &X86::GR64RegClass);
17460         break;
17461       }
17462       // 32-bit fallthrough
17463     case 'Q':   // Q_REGS
17464       if (VT == MVT::i32 || VT == MVT::f32)
17465         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
17466       if (VT == MVT::i16)
17467         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
17468       if (VT == MVT::i8 || VT == MVT::i1)
17469         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
17470       if (VT == MVT::i64)
17471         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
17472       break;
17473     case 'r':   // GENERAL_REGS
17474     case 'l':   // INDEX_REGS
17475       if (VT == MVT::i8 || VT == MVT::i1)
17476         return std::make_pair(0U, &X86::GR8RegClass);
17477       if (VT == MVT::i16)
17478         return std::make_pair(0U, &X86::GR16RegClass);
17479       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
17480         return std::make_pair(0U, &X86::GR32RegClass);
17481       return std::make_pair(0U, &X86::GR64RegClass);
17482     case 'R':   // LEGACY_REGS
17483       if (VT == MVT::i8 || VT == MVT::i1)
17484         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
17485       if (VT == MVT::i16)
17486         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
17487       if (VT == MVT::i32 || !Subtarget->is64Bit())
17488         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
17489       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
17490     case 'f':  // FP Stack registers.
17491       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
17492       // value to the correct fpstack register class.
17493       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
17494         return std::make_pair(0U, &X86::RFP32RegClass);
17495       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
17496         return std::make_pair(0U, &X86::RFP64RegClass);
17497       return std::make_pair(0U, &X86::RFP80RegClass);
17498     case 'y':   // MMX_REGS if MMX allowed.
17499       if (!Subtarget->hasMMX()) break;
17500       return std::make_pair(0U, &X86::VR64RegClass);
17501     case 'Y':   // SSE_REGS if SSE2 allowed
17502       if (!Subtarget->hasSSE2()) break;
17503       // FALL THROUGH.
17504     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
17505       if (!Subtarget->hasSSE1()) break;
17506
17507       switch (VT.getSimpleVT().SimpleTy) {
17508       default: break;
17509       // Scalar SSE types.
17510       case MVT::f32:
17511       case MVT::i32:
17512         return std::make_pair(0U, &X86::FR32RegClass);
17513       case MVT::f64:
17514       case MVT::i64:
17515         return std::make_pair(0U, &X86::FR64RegClass);
17516       // Vector types.
17517       case MVT::v16i8:
17518       case MVT::v8i16:
17519       case MVT::v4i32:
17520       case MVT::v2i64:
17521       case MVT::v4f32:
17522       case MVT::v2f64:
17523         return std::make_pair(0U, &X86::VR128RegClass);
17524       // AVX types.
17525       case MVT::v32i8:
17526       case MVT::v16i16:
17527       case MVT::v8i32:
17528       case MVT::v4i64:
17529       case MVT::v8f32:
17530       case MVT::v4f64:
17531         return std::make_pair(0U, &X86::VR256RegClass);
17532       }
17533       break;
17534     }
17535   }
17536
17537   // Use the default implementation in TargetLowering to convert the register
17538   // constraint into a member of a register class.
17539   std::pair<unsigned, const TargetRegisterClass*> Res;
17540   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
17541
17542   // Not found as a standard register?
17543   if (Res.second == 0) {
17544     // Map st(0) -> st(7) -> ST0
17545     if (Constraint.size() == 7 && Constraint[0] == '{' &&
17546         tolower(Constraint[1]) == 's' &&
17547         tolower(Constraint[2]) == 't' &&
17548         Constraint[3] == '(' &&
17549         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
17550         Constraint[5] == ')' &&
17551         Constraint[6] == '}') {
17552
17553       Res.first = X86::ST0+Constraint[4]-'0';
17554       Res.second = &X86::RFP80RegClass;
17555       return Res;
17556     }
17557
17558     // GCC allows "st(0)" to be called just plain "st".
17559     if (StringRef("{st}").equals_lower(Constraint)) {
17560       Res.first = X86::ST0;
17561       Res.second = &X86::RFP80RegClass;
17562       return Res;
17563     }
17564
17565     // flags -> EFLAGS
17566     if (StringRef("{flags}").equals_lower(Constraint)) {
17567       Res.first = X86::EFLAGS;
17568       Res.second = &X86::CCRRegClass;
17569       return Res;
17570     }
17571
17572     // 'A' means EAX + EDX.
17573     if (Constraint == "A") {
17574       Res.first = X86::EAX;
17575       Res.second = &X86::GR32_ADRegClass;
17576       return Res;
17577     }
17578     return Res;
17579   }
17580
17581   // Otherwise, check to see if this is a register class of the wrong value
17582   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
17583   // turn into {ax},{dx}.
17584   if (Res.second->hasType(VT))
17585     return Res;   // Correct type already, nothing to do.
17586
17587   // All of the single-register GCC register classes map their values onto
17588   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
17589   // really want an 8-bit or 32-bit register, map to the appropriate register
17590   // class and return the appropriate register.
17591   if (Res.second == &X86::GR16RegClass) {
17592     if (VT == MVT::i8) {
17593       unsigned DestReg = 0;
17594       switch (Res.first) {
17595       default: break;
17596       case X86::AX: DestReg = X86::AL; break;
17597       case X86::DX: DestReg = X86::DL; break;
17598       case X86::CX: DestReg = X86::CL; break;
17599       case X86::BX: DestReg = X86::BL; break;
17600       }
17601       if (DestReg) {
17602         Res.first = DestReg;
17603         Res.second = &X86::GR8RegClass;
17604       }
17605     } else if (VT == MVT::i32) {
17606       unsigned DestReg = 0;
17607       switch (Res.first) {
17608       default: break;
17609       case X86::AX: DestReg = X86::EAX; break;
17610       case X86::DX: DestReg = X86::EDX; break;
17611       case X86::CX: DestReg = X86::ECX; break;
17612       case X86::BX: DestReg = X86::EBX; break;
17613       case X86::SI: DestReg = X86::ESI; break;
17614       case X86::DI: DestReg = X86::EDI; break;
17615       case X86::BP: DestReg = X86::EBP; break;
17616       case X86::SP: DestReg = X86::ESP; break;
17617       }
17618       if (DestReg) {
17619         Res.first = DestReg;
17620         Res.second = &X86::GR32RegClass;
17621       }
17622     } else if (VT == MVT::i64) {
17623       unsigned DestReg = 0;
17624       switch (Res.first) {
17625       default: break;
17626       case X86::AX: DestReg = X86::RAX; break;
17627       case X86::DX: DestReg = X86::RDX; break;
17628       case X86::CX: DestReg = X86::RCX; break;
17629       case X86::BX: DestReg = X86::RBX; break;
17630       case X86::SI: DestReg = X86::RSI; break;
17631       case X86::DI: DestReg = X86::RDI; break;
17632       case X86::BP: DestReg = X86::RBP; break;
17633       case X86::SP: DestReg = X86::RSP; break;
17634       }
17635       if (DestReg) {
17636         Res.first = DestReg;
17637         Res.second = &X86::GR64RegClass;
17638       }
17639     }
17640   } else if (Res.second == &X86::FR32RegClass ||
17641              Res.second == &X86::FR64RegClass ||
17642              Res.second == &X86::VR128RegClass) {
17643     // Handle references to XMM physical registers that got mapped into the
17644     // wrong class.  This can happen with constraints like {xmm0} where the
17645     // target independent register mapper will just pick the first match it can
17646     // find, ignoring the required type.
17647
17648     if (VT == MVT::f32 || VT == MVT::i32)
17649       Res.second = &X86::FR32RegClass;
17650     else if (VT == MVT::f64 || VT == MVT::i64)
17651       Res.second = &X86::FR64RegClass;
17652     else if (X86::VR128RegClass.hasType(VT))
17653       Res.second = &X86::VR128RegClass;
17654     else if (X86::VR256RegClass.hasType(VT))
17655       Res.second = &X86::VR256RegClass;
17656   }
17657
17658   return Res;
17659 }
17660
17661 //===----------------------------------------------------------------------===//
17662 //
17663 // X86 cost model.
17664 //
17665 //===----------------------------------------------------------------------===//
17666
17667 struct X86CostTblEntry {
17668   int ISD;
17669   MVT Type;
17670   unsigned Cost;
17671 };
17672
17673 static int
17674 FindInTable(const X86CostTblEntry *Tbl, unsigned len, int ISD, MVT Ty) {
17675   for (unsigned int i = 0; i < len; ++i)
17676     if (Tbl[i].ISD == ISD && Tbl[i].Type == Ty)
17677       return i;
17678
17679   // Could not find an entry.
17680   return -1;
17681 }
17682
17683 struct X86TypeConversionCostTblEntry {
17684   int ISD;
17685   MVT Dst;
17686   MVT Src;
17687   unsigned Cost;
17688 };
17689
17690 static int
17691 FindInConvertTable(const X86TypeConversionCostTblEntry *Tbl, unsigned len,
17692                    int ISD, MVT Dst, MVT Src) {
17693   for (unsigned int i = 0; i < len; ++i)
17694     if (Tbl[i].ISD == ISD && Tbl[i].Src == Src && Tbl[i].Dst == Dst)
17695       return i;
17696
17697   // Could not find an entry.
17698   return -1;
17699 }
17700
17701 ScalarTargetTransformInfo::PopcntHwSupport
17702 X86ScalarTargetTransformImpl::getPopcntHwSupport(unsigned TyWidth) const {
17703   assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
17704   const X86Subtarget &ST = TLI->getTargetMachine().getSubtarget<X86Subtarget>();
17705
17706   // TODO: Currently the __builtin_popcount() implementation using SSE3
17707   //   instructions is inefficient. Once the problem is fixed, we should
17708   //   call ST.hasSSE3() instead of ST.hasSSE4().
17709   return ST.hasSSE41() ? Fast : None;
17710 }
17711
17712 unsigned
17713 X86VectorTargetTransformInfo::getArithmeticInstrCost(unsigned Opcode,
17714                                                      Type *Ty) const {
17715   // Legalize the type.
17716   std::pair<unsigned, MVT> LT = getTypeLegalizationCost(Ty);
17717
17718   int ISD = InstructionOpcodeToISD(Opcode);
17719   assert(ISD && "Invalid opcode");
17720
17721   const X86Subtarget &ST = TLI->getTargetMachine().getSubtarget<X86Subtarget>();
17722
17723   static const X86CostTblEntry AVX1CostTable[] = {
17724     // We don't have to scalarize unsupported ops. We can issue two half-sized
17725     // operations and we only need to extract the upper YMM half.
17726     // Two ops + 1 extract + 1 insert = 4.
17727     { ISD::MUL,     MVT::v8i32,    4 },
17728     { ISD::SUB,     MVT::v8i32,    4 },
17729     { ISD::ADD,     MVT::v8i32,    4 },
17730     { ISD::MUL,     MVT::v4i64,    4 },
17731     { ISD::SUB,     MVT::v4i64,    4 },
17732     { ISD::ADD,     MVT::v4i64,    4 },
17733     };
17734
17735   // Look for AVX1 lowering tricks.
17736   if (ST.hasAVX()) {
17737     int Idx = FindInTable(AVX1CostTable, array_lengthof(AVX1CostTable), ISD,
17738                           LT.second);
17739     if (Idx != -1)
17740       return LT.first * AVX1CostTable[Idx].Cost;
17741   }
17742   // Fallback to the default implementation.
17743   return VectorTargetTransformImpl::getArithmeticInstrCost(Opcode, Ty);
17744 }
17745
17746 unsigned
17747 X86VectorTargetTransformInfo::getVectorInstrCost(unsigned Opcode, Type *Val,
17748                                                  unsigned Index) const {
17749   assert(Val->isVectorTy() && "This must be a vector type");
17750
17751   if (Index != -1U) {
17752     // Legalize the type.
17753     std::pair<unsigned, MVT> LT = getTypeLegalizationCost(Val);
17754
17755     // This type is legalized to a scalar type.
17756     if (!LT.second.isVector())
17757       return 0;
17758
17759     // The type may be split. Normalize the index to the new type.
17760     unsigned Width = LT.second.getVectorNumElements();
17761     Index = Index % Width;
17762
17763     // Floating point scalars are already located in index #0.
17764     if (Val->getScalarType()->isFloatingPointTy() && Index == 0)
17765       return 0;
17766   }
17767
17768   return VectorTargetTransformImpl::getVectorInstrCost(Opcode, Val, Index);
17769 }
17770
17771 unsigned X86VectorTargetTransformInfo::getCmpSelInstrCost(unsigned Opcode,
17772                                                           Type *ValTy,
17773                                                           Type *CondTy) const {
17774   // Legalize the type.
17775   std::pair<unsigned, MVT> LT = getTypeLegalizationCost(ValTy);
17776
17777   MVT MTy = LT.second;
17778
17779   int ISD = InstructionOpcodeToISD(Opcode);
17780   assert(ISD && "Invalid opcode");
17781
17782   const X86Subtarget &ST =
17783   TLI->getTargetMachine().getSubtarget<X86Subtarget>();
17784
17785   static const X86CostTblEntry SSE42CostTbl[] = {
17786     { ISD::SETCC,   MVT::v2f64,   1 },
17787     { ISD::SETCC,   MVT::v4f32,   1 },
17788     { ISD::SETCC,   MVT::v2i64,   1 },
17789     { ISD::SETCC,   MVT::v4i32,   1 },
17790     { ISD::SETCC,   MVT::v8i16,   1 },
17791     { ISD::SETCC,   MVT::v16i8,   1 },
17792   };
17793
17794   static const X86CostTblEntry AVX1CostTbl[] = {
17795     { ISD::SETCC,   MVT::v4f64,   1 },
17796     { ISD::SETCC,   MVT::v8f32,   1 },
17797     // AVX1 does not support 8-wide integer compare.
17798     { ISD::SETCC,   MVT::v4i64,   4 },
17799     { ISD::SETCC,   MVT::v8i32,   4 },
17800     { ISD::SETCC,   MVT::v16i16,  4 },
17801     { ISD::SETCC,   MVT::v32i8,   4 },
17802   };
17803
17804   static const X86CostTblEntry AVX2CostTbl[] = {
17805     { ISD::SETCC,   MVT::v4i64,   1 },
17806     { ISD::SETCC,   MVT::v8i32,   1 },
17807     { ISD::SETCC,   MVT::v16i16,  1 },
17808     { ISD::SETCC,   MVT::v32i8,   1 },
17809   };
17810
17811   if (ST.hasSSE42()) {
17812     int Idx = FindInTable(SSE42CostTbl, array_lengthof(SSE42CostTbl), ISD, MTy);
17813     if (Idx != -1)
17814       return LT.first * SSE42CostTbl[Idx].Cost;
17815   }
17816
17817   if (ST.hasAVX()) {
17818     int Idx = FindInTable(AVX1CostTbl, array_lengthof(AVX1CostTbl), ISD, MTy);
17819     if (Idx != -1)
17820       return LT.first * AVX1CostTbl[Idx].Cost;
17821   }
17822
17823   if (ST.hasAVX2()) {
17824     int Idx = FindInTable(AVX2CostTbl, array_lengthof(AVX2CostTbl), ISD, MTy);
17825     if (Idx != -1)
17826       return LT.first * AVX2CostTbl[Idx].Cost;
17827   }
17828
17829   return VectorTargetTransformImpl::getCmpSelInstrCost(Opcode, ValTy, CondTy);
17830 }
17831
17832 unsigned X86VectorTargetTransformInfo::getCastInstrCost(unsigned Opcode,
17833                                                         Type *Dst,
17834                                                         Type *Src) const {
17835   int ISD = InstructionOpcodeToISD(Opcode);
17836   assert(ISD && "Invalid opcode");
17837
17838   EVT SrcTy = TLI->getValueType(Src);
17839   EVT DstTy = TLI->getValueType(Dst);
17840
17841   if (!SrcTy.isSimple() || !DstTy.isSimple())
17842     return VectorTargetTransformImpl::getCastInstrCost(Opcode, Dst, Src);
17843
17844   const X86Subtarget &ST = TLI->getTargetMachine().getSubtarget<X86Subtarget>();
17845
17846   static const X86TypeConversionCostTblEntry AVXConversionTbl[] = {
17847     { ISD::SIGN_EXTEND, MVT::v8i32, MVT::v8i16, 1 },
17848     { ISD::ZERO_EXTEND, MVT::v8i32, MVT::v8i16, 1 },
17849     { ISD::SIGN_EXTEND, MVT::v4i64, MVT::v4i32, 1 },
17850     { ISD::ZERO_EXTEND, MVT::v4i64, MVT::v4i32, 1 },
17851     { ISD::TRUNCATE,    MVT::v4i32, MVT::v4i64, 1 },
17852     { ISD::TRUNCATE,    MVT::v8i16, MVT::v8i32, 1 },
17853     { ISD::SINT_TO_FP,  MVT::v8f32, MVT::v8i8,  1 },
17854     { ISD::SINT_TO_FP,  MVT::v4f32, MVT::v4i8,  1 },
17855     { ISD::UINT_TO_FP,  MVT::v8f32, MVT::v8i8,  1 },
17856     { ISD::UINT_TO_FP,  MVT::v4f32, MVT::v4i8,  1 },
17857     { ISD::FP_TO_SINT,  MVT::v8i8,  MVT::v8f32, 1 },
17858     { ISD::FP_TO_SINT,  MVT::v4i8,  MVT::v4f32, 1 },
17859     { ISD::ZERO_EXTEND, MVT::v8i32, MVT::v8i1,  6 },
17860     { ISD::SIGN_EXTEND, MVT::v8i32, MVT::v8i1,  9 },
17861     { ISD::TRUNCATE,    MVT::v8i32, MVT::v8i64, 3 },
17862   };
17863
17864   if (ST.hasAVX()) {
17865     int Idx = FindInConvertTable(AVXConversionTbl,
17866                                  array_lengthof(AVXConversionTbl),
17867                                  ISD, DstTy.getSimpleVT(), SrcTy.getSimpleVT());
17868     if (Idx != -1)
17869       return AVXConversionTbl[Idx].Cost;
17870   }
17871
17872   return VectorTargetTransformImpl::getCastInstrCost(Opcode, Dst, Src);
17873 }
17874